Skip to content

[SPARK-47099][SQL][FOLLOWUP] Regenerate try_arithmetic.sql.out.java21 #45235

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
wants to merge 1 commit into from

Conversation

dongjoon-hyun
Copy link
Member

@dongjoon-hyun dongjoon-hyun commented Feb 23, 2024

What changes were proposed in this pull request?

This is a follow-up of #45177

Why are the changes needed?

To recover Java 21 Daily CI.

Does this PR introduce any user-facing change?

No.

How was this patch tested?

Manually with Java 21.

$ build/sbt "sql/testOnly *.SQLQueryTestSuite -- -z try_arithmetic"
Using /Users/dongjoon/.jenv/versions/21 as default JAVA_HOME.
Note, this will be overridden by -java-home if it is set.
Using SPARK_LOCAL_IP=localhost
[info] welcome to sbt 1.9.3 (Apple Inc. Java 21.0.2)
...
[info] SQLQueryTestSuite:
12:33:19.091 WARN org.apache.hadoop.util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
[info] - ansi/try_arithmetic.sql (1 second, 37 milliseconds)
[info] - ansi/try_arithmetic.sql_analyzer_test (114 milliseconds)
[info] - try_arithmetic.sql (688 milliseconds)
[info] - try_arithmetic.sql_analyzer_test (93 milliseconds)
12:33:24.980 WARN org.apache.spark.sql.SQLQueryTestSuite:
=== Metrics of Analyzer/Optimizer Rules ===
Total number of runs: 75794
Total time: 0.335704411 seconds

Rule                                                                                  Effective Time / Total Time                     Effective Runs / Total Runs

org.apache.spark.sql.catalyst.optimizer.ConstantFolding                               59501877 / 60217667                             108 / 336
org.apache.spark.sql.catalyst.analysis.An...
12:33:24.981 WARN org.apache.spark.sql.SQLQueryTestSuite:
=== Metrics of Whole-stage Codegen ===
Total code generation time: 0.051986919 seconds
Total compile time: 0.116905665 seconds

12:33:25.012 WARN org.apache.spark.sql.SQLQueryTestSuite:

===== POSSIBLE THREAD LEAK IN SUITE o.a.s.sql.SQLQueryTestSuite, threads: QueryStageCreator-0 (daemon=true), Idle Worker Monitor for python3 (daemon=true), rpc-boss-3-1 (daemon=true), process reaper (pid 15500) (daemon=true), ForkJoinPool.commonPool-worker-3 (daemon=true), ForkJoinPool.commonPool-worker-2 (daemon=true), shuffle-boss-6-1 (daemon=true), ForkJoinPool.commonPool-worker-1 (daemon=true) =====
[info] Run completed in 8 seconds, 79 milliseconds.
[info] Total number of tests run: 4
[info] Suites: completed 1, aborted 0
[info] Tests: succeeded 4, failed 0, canceled 0, ignored 0, pending 0
[info] All tests passed.
[success] Total time: 118 s (01:58), completed Feb 23, 2024, 12:33:25 PM

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

No.

@dongjoon-hyun
Copy link
Member Author

cc @panbingkun , @MaxGekk

@dongjoon-hyun dongjoon-hyun changed the title [SPARK-47099][SQL][FOLLOWUP] Regenerate try_arithmetic.sql.out.java21 [SPARK-47099][SQL][FOLLOWUP] Regenerate try_arithmetic.sql.out.java21 Feb 23, 2024
@dongjoon-hyun
Copy link
Member Author

Thank you, @MaxGekk .

Merged to master.

@panbingkun
Copy link
Contributor

Thank you for helping to fix this issue. Thank you very much.

ericm-db pushed a commit to ericm-db/spark that referenced this pull request Mar 5, 2024
### What changes were proposed in this pull request?

This is a follow-up of apache#45177

### Why are the changes needed?

To recover Java 21 Daily CI.
- https://github.com/apache/spark/actions/workflows/build_maven_java21.yml
  - https://github.com/apache/spark/actions/runs/8020316098/job/21917446965

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Manually with Java 21.

```
$ build/sbt "sql/testOnly *.SQLQueryTestSuite -- -z try_arithmetic"
Using /Users/dongjoon/.jenv/versions/21 as default JAVA_HOME.
Note, this will be overridden by -java-home if it is set.
Using SPARK_LOCAL_IP=localhost
[info] welcome to sbt 1.9.3 (Apple Inc. Java 21.0.2)
...
[info] SQLQueryTestSuite:
12:33:19.091 WARN org.apache.hadoop.util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
[info] - ansi/try_arithmetic.sql (1 second, 37 milliseconds)
[info] - ansi/try_arithmetic.sql_analyzer_test (114 milliseconds)
[info] - try_arithmetic.sql (688 milliseconds)
[info] - try_arithmetic.sql_analyzer_test (93 milliseconds)
12:33:24.980 WARN org.apache.spark.sql.SQLQueryTestSuite:
=== Metrics of Analyzer/Optimizer Rules ===
Total number of runs: 75794
Total time: 0.335704411 seconds

Rule                                                                                  Effective Time / Total Time                     Effective Runs / Total Runs

org.apache.spark.sql.catalyst.optimizer.ConstantFolding                               59501877 / 60217667                             108 / 336
org.apache.spark.sql.catalyst.analysis.An...
12:33:24.981 WARN org.apache.spark.sql.SQLQueryTestSuite:
=== Metrics of Whole-stage Codegen ===
Total code generation time: 0.051986919 seconds
Total compile time: 0.116905665 seconds

12:33:25.012 WARN org.apache.spark.sql.SQLQueryTestSuite:

===== POSSIBLE THREAD LEAK IN SUITE o.a.s.sql.SQLQueryTestSuite, threads: QueryStageCreator-0 (daemon=true), Idle Worker Monitor for python3 (daemon=true), rpc-boss-3-1 (daemon=true), process reaper (pid 15500) (daemon=true), ForkJoinPool.commonPool-worker-3 (daemon=true), ForkJoinPool.commonPool-worker-2 (daemon=true), shuffle-boss-6-1 (daemon=true), ForkJoinPool.commonPool-worker-1 (daemon=true) =====
[info] Run completed in 8 seconds, 79 milliseconds.
[info] Total number of tests run: 4
[info] Suites: completed 1, aborted 0
[info] Tests: succeeded 4, failed 0, canceled 0, ignored 0, pending 0
[info] All tests passed.
[success] Total time: 118 s (01:58), completed Feb 23, 2024, 12:33:25 PM
```

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

No.

Closes apache#45235 from dongjoon-hyun/SPARK-47099.

Authored-by: Dongjoon Hyun <[email protected]>
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.

None yet

3 participants