-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-26246][SQL] Inferring TimestampType from JSON #23201
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
Conversation
|
Test build #99580 has finished for PR 23201 at commit
|
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/json/JsonInferSchema.scala
Outdated
Show resolved
Hide resolved
|
Test build #99613 has finished for PR 23201 at commit
|
|
@cloud-fan May I ask you to look at this PR, please. |
| decimalTry.getOrElse(StringType) | ||
| case VALUE_STRING => StringType | ||
| case VALUE_STRING => | ||
| val stringValue = parser.getText |
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.
shall we abstract out this logic for all the text sources?
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.
Yes, we can do that. There is some common code that could be shared. Can we do it in a separate PR?
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.
sure. How many text data sources already support it?
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.
DateType is not inferred at all but there is another type inference code that could be shared between JSON and CSV (maybe somewhere else).
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.
I checked PartitioningUtils.inferPartitionColumnValue, we try timestamp first and then date. Shall we follow it?
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.
do you mean partition value type inference will have a different result than json value type inference?
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.
I didn't mean type inference in partition values but you are probably right we should follow the same logic in schema inferring in datasources and partition value types.
Just wondering how it works for now, this code:
spark/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/PartitioningUtils.scala
Lines 474 to 482 in 5a140b7
| val unescapedRaw = unescapePathName(raw) | |
| // try and parse the date, if no exception occurs this is a candidate to be resolved as | |
| // TimestampType | |
| DateTimeUtils.getThreadLocalTimestampFormat(timeZone).parse(unescapedRaw) | |
| // SPARK-23436: see comment for date | |
| val timestampValue = Cast(Literal(unescapedRaw), TimestampType, Some(timeZone.getID)).eval() | |
| // Disallow TimestampType if the cast returned null | |
| require(timestampValue != null) | |
| Literal.create(timestampValue, TimestampType) |
spark/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/csv/CSVInferSchema.scala
Line 163 in f982ca0
| if ((allCatch opt timeParser.parse(field)).isDefined) { |
Maybe inferPartitionColumnValue should ask a datasource for inferring date/timestamp types?
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.
the partition feature is shared between all the file-based sources, I think it's an overkill to make it differ with different data sources.
The simplest solution to me is asking all text sources to follow the behavior of partition value type inference.
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.
Yea, one time I tried to match it with CSV a long long ago but I kind of gave up due to behaviour changes IIRC. If that's possible, it should be awesome.
If that's difficult, matching the behaviour within text based datasource (meaning CSV and JSON I guess) should be good enough.
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.
If we switch the order here, we don't need the length check here, right?
@cloud-fan, that works only if we use default date/timestamp patterns. Both should do the exact match with pattern, which unfortunately the current parsing library (SimpleDateFormat) does not allow.
The order here is just to make it look better and both shouldn't be dependent on its order. I think we should support those inferences after completely switching the library to java.time.format.* (which does an exact match, and exists in JDK 8) without a legacy. That should make this change easier without a hole.
|
Test build #100202 has finished for PR 23201 at commit
|
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/json/JsonInferSchemaSuite.scala
Outdated
Show resolved
Hide resolved
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/json/JsonInferSchemaSuite.scala
Outdated
Show resolved
Hide resolved
|
LGTM |
|
@HyukjinKwon @cloud-fan To be consistent to CSV datasource, should we infer |
|
SGTM |
|
Test build #100261 has finished for PR 23201 at commit
|
|
Test build #100262 has finished for PR 23201 at commit
|
HyukjinKwon
left a comment
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.
LGTM as well
|
Merged to master. |
|
Is there an option flag for this? This is a breaking change for people, and we need a way to fallback. |
No, I will add it. |
|
@rxin Would a JSON specific option be enough or we need a global SQL config for that? I mean JSON option |
|
Here is the PR: #23455 |
## What changes were proposed in this pull request? The `JsonInferSchema` class is extended to support `TimestampType` inferring from string fields in JSON input: - If the `prefersDecimal` option is set to `true`, it tries to infer decimal type from the string field. - If decimal type inference fails or `prefersDecimal` is disabled, `JsonInferSchema` tries to infer `TimestampType`. - If timestamp type inference fails, `StringType` is returned as the inferred type. ## How was this patch tested? Added new test suite - `JsonInferSchemaSuite` to check date and timestamp types inferring from JSON using `JsonInferSchema` directly. A few tests were added `JsonSuite` to check type merging and roundtrip tests. This changes was tested by `JsonSuite`, `JsonExpressionsSuite` and `JsonFunctionsSuite` as well. Closes apache#23201 from MaxGekk/json-infer-time. Lead-authored-by: Maxim Gekk <[email protected]> Co-authored-by: Maxim Gekk <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
| case VALUE_STRING if options.prefersDecimal => | ||
| case VALUE_STRING => | ||
| val field = parser.getText | ||
| val decimalTry = allCatch opt { |
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.
Yea, I think this was a mistake. Previously if prefersDecimal was false (by default), it won't try decimal casting. Now looks we're trying decimal try always. @bersprockets, can you open a PR to fix it? I think we can just make it lazy.
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.
We shouldn't. The opt method calls body by name: def opt[U >: T](body: => U): Option[U] It should not try infer if options.prefersDecimal is false.
... or prefersDecimal became true by default?
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.
@HyukjinKwon What's the problem here. Could you give more context (JIRA, PR), please.
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.
Here, SPARK-26711. You're cc'ed there as well :).
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.
The problem here is decimal conversion looks always being tried even when prefersDecimal is false. Previously, it checked prefersDecimal first so decimal try wasn't made. This looks causing performance regression.
I mean
scala> if (prefersDecimal) allCatch opt { println("im expensive"); true }
res0: Any = ()
scala> allCatch opt { println("im expensive"); true }
im expensive
res1: Option[Boolean] = Some(true)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.
and making it lazy will save us by short circuiting. I wanted to open a PR right away but wanted to let him open since this is what I investigated at SPARK-26711.
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.
re: #23201 (comment)
That's being called by name within opt I believe.
## What changes were proposed in this pull request? The `JsonInferSchema` class is extended to support `TimestampType` inferring from string fields in JSON input: - If the `prefersDecimal` option is set to `true`, it tries to infer decimal type from the string field. - If decimal type inference fails or `prefersDecimal` is disabled, `JsonInferSchema` tries to infer `TimestampType`. - If timestamp type inference fails, `StringType` is returned as the inferred type. ## How was this patch tested? Added new test suite - `JsonInferSchemaSuite` to check date and timestamp types inferring from JSON using `JsonInferSchema` directly. A few tests were added `JsonSuite` to check type merging and roundtrip tests. This changes was tested by `JsonSuite`, `JsonExpressionsSuite` and `JsonFunctionsSuite` as well. Closes apache#23201 from MaxGekk/json-infer-time. Lead-authored-by: Maxim Gekk <[email protected]> Co-authored-by: Maxim Gekk <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
What changes were proposed in this pull request?
The
JsonInferSchemaclass is extended to supportTimestampTypeinferring from string fields in JSON input:prefersDecimaloption is set totrue, it tries to infer decimal type from the string field.prefersDecimalis disabled,JsonInferSchematries to inferTimestampType.StringTypeis returned as the inferred type.How was this patch tested?
Added new test suite -
JsonInferSchemaSuiteto check date and timestamp types inferring from JSON usingJsonInferSchemadirectly. A few tests were addedJsonSuiteto check type merging and roundtrip tests. This changes was tested byJsonSuite,JsonExpressionsSuiteandJsonFunctionsSuiteas well.