-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-13464][Streaming][PySpark] Fix failed streaming in pyspark in branch 1.3 #11339
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
|
This failed test: The input should be [0], [0, 1], [0, 1, 2], [0, 1, 2, 3], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4, 5]. After filter operation and count, we actually get: |
|
cc @mengxr |
|
Test build #51843 has finished for PR 11339 at commit
|
|
Why it passes all tests but shows test failed? |
|
retest this please. |
|
Test build #51852 has finished for PR 11339 at commit
|
|
@rxin any idea about why it reports test failed even all tests are passed? Thanks. |
|
From jenkins console output, it shows |
|
It's probably because some earlier test didn't actually finish. This happens a lot with streaming leaks. |
|
Is it because some streaming tests not actually passes? Not sure how to detect this. |
|
cc @zsxwing BTW why are we backporting stuff into 1.3? |
|
retest this please |
|
LGTM |
|
Test build #51907 timed out for PR 11339 at commit |
|
retest this please. |
|
Test build #51915 has finished for PR 11339 at commit
|
|
Hmm, what the step |
|
@zsxwing any idea about this? I think this change should not cause any failure like that. This just changes the expected result for one test. |
|
retest this please |
|
Test build #51979 has finished for PR 11339 at commit
|
|
Test FAILed. |
|
Okey, I'm going to merge this because all Python tests passed. Thanks, @viirya |
…branch 1.3 JIRA: https://issues.apache.org/jira/browse/SPARK-13464 ## What changes were proposed in this pull request? During backport a mllib feature, I found that the clearly checkouted branch-1.3 codebase would fail at the test `test_reduce_by_key_and_window_with_none_invFunc` in pyspark/streaming. We should fix it. ## How was the this patch tested? Unit test `test_reduce_by_key_and_window_with_none_invFunc` is fixed. Author: Liang-Chi Hsieh <[email protected]> Closes #11339 from viirya/fix-streaming-test-branch-1.3.
|
@viirya I have merged your pr. Could you close this one? Thanks! |
|
@zsxwing thanks! |
JIRA: https://issues.apache.org/jira/browse/SPARK-13464
What changes were proposed in this pull request?
During backport a mllib feature, I found that the clearly checkouted branch-1.3 codebase would fail at the test
test_reduce_by_key_and_window_with_none_invFuncin pyspark/streaming. We should fix it.How was the this patch tested?
Unit test
test_reduce_by_key_and_window_with_none_invFuncis fixed.