aboutsummaryrefslogtreecommitdiff
path: root/network/common
diff options
context:
space:
mode:
authorzsxwing <zsxwing@gmail.com>2015-09-23 01:28:02 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2015-09-23 01:28:02 -0700
commit44c28abf120754c0175c65ffd3d4587a350b3798 (patch)
treeeacddd5f023c1e42838b45b754d3a05f4e4c59ac /network/common
parent5548a254755bb84edae2768b94ab1816e1b49b91 (diff)
downloadspark-44c28abf120754c0175c65ffd3d4587a350b3798.tar.gz
spark-44c28abf120754c0175c65ffd3d4587a350b3798.tar.bz2
spark-44c28abf120754c0175c65ffd3d4587a350b3798.zip
[SPARK-10224] [STREAMING] Fix the issue that blockIntervalTimer won't call updateCurrentBuffer when stopping
`blockIntervalTimer.stop(interruptTimer = false)` doesn't guarantee calling `updateCurrentBuffer`. So it's possible that `blockIntervalTimer` will exit when `updateCurrentBuffer` is not empty. Then the data in `currentBuffer` will be lost. To reproduce it, you can add `Thread.sleep(200)` in this line (https://github.com/apache/spark/blob/69c9c177160e32a2fbc9b36ecc52156077fca6fc/streaming/src/main/scala/org/apache/spark/streaming/util/RecurringTimer.scala#L100) and run `StreamingContexSuite`. I cannot write a unit test to reproduce it because I cannot find an approach to force `RecurringTimer` suspend at this line for a few milliseconds. There was a failure in Jenkins here: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/41455/console This PR updates RecurringTimer to make sure `stop(interruptTimer = false)` will call `callback` at least once after the `stop` method is called. Author: zsxwing <zsxwing@gmail.com> Closes #8417 from zsxwing/SPARK-10224.
Diffstat (limited to 'network/common')
0 files changed, 0 insertions, 0 deletions