[SPARK-13464][Streaming][PySpark] Fix failed streaming in pyspark in branch 1.3#11339
[SPARK-13464][Streaming][PySpark] Fix failed streaming in pyspark in branch 1.3#11339viirya wants to merge 1 commit intoapache:branch-1.3from
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 <viirya@gmail.com> 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.