-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-10224][Streaming]Fix the issue that blockIntervalTimer won't call updateCurrentBuffer when stopping #8417
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
Changes from all commits
94f108b
a1c9354
193d191
429728f
e8e490d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -184,9 +184,10 @@ class BlockGeneratorSuite extends SparkFunSuite with BeforeAndAfter { | |||
| // Verify that the final data is present in the final generated block and | ||||
| // pushed before complete stop | ||||
| assert(blockGenerator.isStopped() === false) // generator has not stopped yet | ||||
| clock.advance(blockIntervalMs) // force block generation | ||||
| failAfter(1 second) { | ||||
| thread.join() | ||||
| eventually(timeout(10 seconds), interval(10 milliseconds)) { | ||||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a race condition here. If spark/streaming/src/main/scala/org/apache/spark/streaming/util/RecurringTimer.scala Line 96 in 69c9c17
Therefore I called |
||||
| // Keep calling `advance` to avoid blocking forever in `clock.waitTillTime` | ||||
| clock.advance(blockIntervalMs) | ||||
| assert(thread.isAlive === false) | ||||
| } | ||||
| assert(blockGenerator.isStopped() === true) // generator has finally been completely stopped | ||||
| assert(listener.pushedData === data, "All data not pushed by stop()") | ||||
|
|
||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package org.apache.spark.streaming.util | ||
|
|
||
| import scala.collection.mutable | ||
| import scala.concurrent.duration._ | ||
|
|
||
| import org.scalatest.PrivateMethodTester | ||
| import org.scalatest.concurrent.Eventually._ | ||
|
|
||
| import org.apache.spark.SparkFunSuite | ||
| import org.apache.spark.util.ManualClock | ||
|
|
||
| class RecurringTimerSuite extends SparkFunSuite with PrivateMethodTester { | ||
|
|
||
| test("basic") { | ||
| val clock = new ManualClock() | ||
| val results = new mutable.ArrayBuffer[Long]() with mutable.SynchronizedBuffer[Long] | ||
| val timer = new RecurringTimer(clock, 100, time => { | ||
| results += time | ||
| }, "RecurringTimerSuite-basic") | ||
| timer.start(0) | ||
| eventually(timeout(10.seconds), interval(10.millis)) { | ||
| assert(results === Seq(0L)) | ||
| } | ||
| clock.advance(100) | ||
| eventually(timeout(10.seconds), interval(10.millis)) { | ||
| assert(results === Seq(0L, 100L)) | ||
| } | ||
| clock.advance(200) | ||
| eventually(timeout(10.seconds), interval(10.millis)) { | ||
| assert(results === Seq(0L, 100L, 200L, 300L)) | ||
| } | ||
| assert(timer.stop(interruptTimer = true) === 300L) | ||
| } | ||
|
|
||
| test("SPARK-10224: call 'callback' after stopping") { | ||
| val clock = new ManualClock() | ||
| val results = new mutable.ArrayBuffer[Long]() with mutable.SynchronizedBuffer[Long] | ||
| val timer = new RecurringTimer(clock, 100, time => { | ||
| results += time | ||
| }, "RecurringTimerSuite-SPARK-10224") | ||
| timer.start(0) | ||
| eventually(timeout(10.seconds), interval(10.millis)) { | ||
| assert(results === Seq(0L)) | ||
| } | ||
| @volatile var lastTime = -1L | ||
| // Now RecurringTimer is waiting for the next interval | ||
| val thread = new Thread { | ||
| override def run(): Unit = { | ||
| lastTime = timer.stop(interruptTimer = false) | ||
| } | ||
| } | ||
| thread.start() | ||
| val stopped = PrivateMethod[RecurringTimer]('stopped) | ||
| // Make sure the `stopped` field has been changed | ||
| eventually(timeout(10.seconds), interval(10.millis)) { | ||
| assert(timer.invokePrivate(stopped()) === true) | ||
| } | ||
| clock.advance(200) | ||
| // When RecurringTimer is awake from clock.waitTillTime, it will call `callback` once. | ||
| // Then it will find `stopped` is true and exit the loop, but it should call `callback` again | ||
| // before exiting its internal thread. | ||
| thread.join() | ||
| assert(results === Seq(0L, 100L, 200L)) | ||
| assert(lastTime === 200L) | ||
| } | ||
| } |
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.
Could you update the docs on stop() to capture the information that it is guaranteed that there will be at least one callback after the stop has been called.