-
Notifications
You must be signed in to change notification settings - Fork 169
fix(workflow-operator): fail loudly on unparsable scan rows #6323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
eugenegujing
wants to merge
1
commit into
apache:main
from
eugenegujing:fix/workflow-operator-scan-silent-row-drop
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
89 changes: 89 additions & 0 deletions
89
...rator/src/main/scala/org/apache/texera/amber/operator/source/scan/ScanRowParseError.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,89 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| package org.apache.texera.amber.operator.source.scan | ||
|
|
||
| import org.apache.texera.amber.core.tuple.{Attribute, AttributeTypeUtils, Schema} | ||
|
|
||
| import scala.util.Try | ||
|
|
||
| /** | ||
| * Builds actionable errors for scan sources when a row's values do not parse into | ||
| * the inferred schema. The console title line in the UI truncates, so the essential | ||
| * facts (row number, offending value, column name, expected type) come first. | ||
| */ | ||
| object ScanRowParseError { | ||
|
|
||
| /** | ||
| * Builds a RuntimeException describing why a row failed to parse. | ||
| * | ||
| * The failing column is identified by re-parsing each raw field individually; | ||
| * this only runs on a row that has already failed, so the extra cost is irrelevant. | ||
| * If no single column can be identified (e.g. a malformed JSON line or a structural | ||
| * row error), a generic fallback message carrying the original reason is used. | ||
| * | ||
| * @param rawFields raw field values of the failing row, in schema order | ||
| * (may be empty or shorter than the schema) | ||
| * @param schema the inferred schema of the scan | ||
| * @param inferReadLimit number of rows used for type inference (desc.INFER_READ_LIMIT) | ||
| * @param rowNumber 1-based row number, if cheaply available | ||
| * @param cause the original parse exception | ||
| */ | ||
| def build( | ||
| rawFields: Seq[Any], | ||
| schema: Schema, | ||
| inferReadLimit: Int, | ||
| rowNumber: Option[Int], | ||
| cause: Throwable | ||
| ): RuntimeException = { | ||
| val message = findFailingColumn(rawFields, schema) match { | ||
| case Some((attribute, value)) => | ||
| val prefix = rowNumber.map(n => s"Row $n: value").getOrElse("Value") | ||
| s"$prefix '$value' in column '${attribute.getName}' cannot be read as " + | ||
| s"${attribute.getType.name()}. " + | ||
| s"Column types were inferred from the first $inferReadLimit rows of the file, " + | ||
| "and this value does not match. " + | ||
| "Fix the value in the file, or clean the data before scanning." | ||
| case None => | ||
| val reason = Option(cause.getMessage).getOrElse(cause.getClass.getSimpleName) | ||
| val prefix = rowNumber.map(n => s"Row $n").getOrElse("A row") | ||
| s"$prefix could not be parsed into the inferred schema: $reason. " + | ||
| s"Column types were inferred from the first $inferReadLimit rows of the file. " + | ||
| "Fix the row in the file, or clean the data before scanning." | ||
| } | ||
| new RuntimeException(message, cause) | ||
| } | ||
|
|
||
| /** | ||
| * Re-parses each raw field against its attribute type; the first failure identifies | ||
| * the offending column. Missing trailing fields are treated as null (as the scan does) | ||
| * and thus never fail. | ||
| */ | ||
| private def findFailingColumn( | ||
| rawFields: Seq[Any], | ||
| schema: Schema | ||
| ): Option[(Attribute, Any)] = { | ||
| schema.getAttributes.iterator | ||
| .zip(rawFields.iterator) | ||
| .find { | ||
| case (attribute, value) => | ||
| Try(AttributeTypeUtils.parseField(value, attribute.getType)).isFailure | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When
limitis set below 100 andoffsetshifts the output window past that smaller sample, a parse failure will claim "first 100 rows", sending the user to the wrong spot in the file. I recommend passing the actual sample size instead: