Skip to content
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

ORC-1752: Fix NumberFormatException when reading json timestamp type in benchmark #1995

Closed
wants to merge 1 commit into from

Conversation

cxzl25
Copy link
Contributor

@cxzl25 cxzl25 commented Aug 5, 2024

What changes were proposed in this pull request?

This PR aims to fix NumberFormatException when reading json timestamp type in benchmark.

Why are the changes needed?

Because the source data of the benchmark has two timestamp formats, we need to be compatible with both Long and String timestamp formats.

Exception in thread "main" java.lang.NumberFormatException: For input string: "2015-11-04T12:00:00Z"
	at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
	at java.base/java.lang.Long.parseLong(Long.java:711)
	at java.base/java.lang.Long.parseLong(Long.java:836)
	at com.google.gson.JsonPrimitive.getAsLong(JsonPrimitive.java:206)
	at org.apache.orc.bench.core.convert.json.JsonReader$TimestampColumnConverter.convert(JsonReader.java:175)
	at org.apache.orc.bench.core.convert.json.JsonReader.nextBatch(JsonReader.java:86)
	at org.apache.orc.bench.core.convert.GenerateVariants$RecursiveReader.nextBatch(GenerateVariants.java:195)
	at org.apache.orc.bench.core.convert.GenerateVariants.run(GenerateVariants.java:154)
	at org.apache.orc.bench.core.Driver.main(Driver.java:64)

How was this patch tested?

java -jar core/target/orc-benchmarks-core-*-uber.jar generate data
java -jar core/target/orc-benchmarks-core-*-uber.jar scan data

Was this patch authored or co-authored using generative AI tooling?

No

@github-actions github-actions bot added the JAVA label Aug 5, 2024
@dongjoon-hyun dongjoon-hyun added this to the 2.0.2 milestone Aug 5, 2024
Copy link
Member

@dongjoon-hyun dongjoon-hyun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1, LGTM.

dongjoon-hyun pushed a commit that referenced this pull request Aug 5, 2024
…in benchmark

### What changes were proposed in this pull request?
This PR aims to fix NumberFormatException when reading json timestamp type in benchmark.

### Why are the changes needed?
Because the source data of the benchmark has two timestamp formats, we need to be compatible with both Long and String timestamp formats.

```java
Exception in thread "main" java.lang.NumberFormatException: For input string: "2015-11-04T12:00:00Z"
	at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
	at java.base/java.lang.Long.parseLong(Long.java:711)
	at java.base/java.lang.Long.parseLong(Long.java:836)
	at com.google.gson.JsonPrimitive.getAsLong(JsonPrimitive.java:206)
	at org.apache.orc.bench.core.convert.json.JsonReader$TimestampColumnConverter.convert(JsonReader.java:175)
	at org.apache.orc.bench.core.convert.json.JsonReader.nextBatch(JsonReader.java:86)
	at org.apache.orc.bench.core.convert.GenerateVariants$RecursiveReader.nextBatch(GenerateVariants.java:195)
	at org.apache.orc.bench.core.convert.GenerateVariants.run(GenerateVariants.java:154)
	at org.apache.orc.bench.core.Driver.main(Driver.java:64)
```

### How was this patch tested?
```bash
java -jar core/target/orc-benchmarks-core-*-uber.jar generate data
java -jar core/target/orc-benchmarks-core-*-uber.jar scan data
```

### Was this patch authored or co-authored using generative AI tooling?
No

Closes #1995 from cxzl25/ORC-1752.

Authored-by: sychen <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 954ba0c)
Signed-off-by: Dongjoon Hyun <[email protected]>
@dongjoon-hyun
Copy link
Member

Merged to main/2.0.

dongjoon-hyun added a commit that referenced this pull request Aug 5, 2024
### What changes were proposed in this pull request?

This PR aims to use Apache Avro 1.12.0 in `bench` module.

### Why are the changes needed?

Apache Avro 1.12.0 is the latest feature release.

Since we are fixing this area recently, we had better keep it up-to-date in order to avoid re-validation in the future.
- #1930
- #1995

### How was this patch tested?

Pass the CIs.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #1996 from dongjoon-hyun/ORC-1753.

Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
dongjoon-hyun added a commit that referenced this pull request Aug 5, 2024
### What changes were proposed in this pull request?

This PR aims to use Apache Avro 1.12.0 in `bench` module.

### Why are the changes needed?

Apache Avro 1.12.0 is the latest feature release.

Since we are fixing this area recently, we had better keep it up-to-date in order to avoid re-validation in the future.
- #1930
- #1995

### How was this patch tested?

Pass the CIs.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #1996 from dongjoon-hyun/ORC-1753.

Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit e43ce79)
Signed-off-by: Dongjoon Hyun <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants