We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d904b25 commit fe69fbfCopy full SHA for fe69fbf
streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobGenerator.scala
@@ -220,7 +220,7 @@ class JobGenerator(jobScheduler: JobScheduler) extends Logging {
220
logInfo("Batches pending processing (" + pendingTimes.size + " batches): " +
221
pendingTimes.mkString(", "))
222
// Reschedule jobs for these times
223
- val timesToReschedule = (pendingTimes ++ downTimes).filter { _ != restartTime }
+ val timesToReschedule = (pendingTimes ++ downTimes).filter { _ < restartTime }
224
.distinct.sorted(Time.ordering)
225
logInfo("Batches to reschedule (" + timesToReschedule.size + " batches): " +
226
timesToReschedule.mkString(", "))
0 commit comments