-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-40432][SS][PYTHON] Introduce GroupStateImpl and GroupStateTimeout in PySpark #37889
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
sql/catalyst/src/main/java/org/apache/spark/sql/streaming/GroupStateTimeout.java
Outdated
Show resolved
Hide resolved
…pStateTimeout.java Co-authored-by: Hyukjin Kwon <[email protected]>
|
@HyukjinKwon |
|
https://github.com/apache/spark/pull/37889/checks?check_run_id=8369923150 This only fails at Python linter and I'm going to fix it. After fixing the lint I'll run the linter locally, and merge the PR once I confirm the linter does not complain. |
|
I'll just fix it and submit it, and see the build result again. There are more checks which are skipped due to python linter failure. |
|
https://github.com/HeartSaVioR/spark/runs/8376291859 The build only failed on yarn (org.apache.spark.deploy.yarn.YarnClusterSuite) which is unrelated to this change. I'm going to merge this. |
…out in PySpark ### What changes were proposed in this pull request? This PR introduces GroupStateImpl and GroupStateTimeout in PySpark, and updates Scala codebase to support convenient conversion between PySpark implementation and Scala implementation. Co-authored with HyukjinKwon . This is a breakdown PR of apache#37863. ### Why are the changes needed? This change will be leveraged in SPARK-40434. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? N/A. We will make sure test suites are constructed via E2E manner under SPARK-40431. Closes apache#37889 from HeartSaVioR/SPARK-40432. Lead-authored-by: Jungtaek Lim <[email protected]> Co-authored-by: Hyukjin Kwon <[email protected]> Signed-off-by: Jungtaek Lim <[email protected]>
What changes were proposed in this pull request?
This PR introduces GroupStateImpl and GroupStateTimeout in PySpark, and updates Scala codebase to support convenient conversion between PySpark implementation and Scala implementation.
Co-authored with @HyukjinKwon .
This is a breakdown PR of #37863.
Why are the changes needed?
This change will be leveraged in SPARK-40434.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
N/A. We will make sure test suites are constructed via E2E manner under SPARK-40431.