-
Notifications
You must be signed in to change notification settings - Fork 240
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
Support _ in spark conf of integration tests #6358
Support _ in spark conf of integration tests #6358
Conversation
Signed-off-by: Gera Shegalov <gera@apache.org>
Fixes NVIDIA#6351 - Allow escaping _ by duplicating it - Add support for --packages and --jars in xdist - Remove a stale comment from spark-tests TODO: use xdist for external sources such as Delta and Iceberg Signed-off-by: Gera Shegalov <gera@apache.org>
build |
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.
Most of the issues I have are nits. Combining a lot of small things together into a single PR is not ideal for me, but I am okay with it. Just confused because it was not reflected in the name of the PR at all. I had to read the description to know what was happening.
The one I really care about is setting the memory size for the test.
Can't repro the CI failure locally, retrying |
build |
Since it's a very basic ClassNofFound for SQLPlugin class it may be related to a potential findspark version discrepancy. |
Use logging Signed-off-by: Gera Shegalov <gera@apache.org>
Signed-off-by: Gera Shegalov <gera@apache.org>
build |
The reason there is a discrepancy with the CI is that CI explicitly puts pyspark on the PYTHONPATH
Thus the code that relies on pyspark not being found to fallback on findspark initialization does not kick in On the other hand in the wrapper script we explicitly avoid using xdist if findspark is not found. |
build |
build |
Signed-off-by: Gera Shegalov <gera@apache.org>
build |
1 similar comment
build |
Signed-off-by: Gera Shegalov <gera@apache.org>
build |
build |
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.
Thanks for explaining the changes. This is fine. Just would like to see a comment on the one thing that is still left, but it is not critical.
Signed-off-by: Gera Shegalov <gera@apache.org>
build |
Fixes #6351
Additional refactoring and fixes
Will file a follow-up issue to convert non-xdist tests relying on
SPARK_SUBMIT_ARGS
for external sources such as Delta and Iceberg to xdist . The following works locally:Signed-off-by: Gera Shegalov gera@apache.org