File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
streaming/src/main/scala/org/apache/spark/streaming/scheduler Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,6 @@ class ReceivedBlockTracker(
147147 // Insert the recovered block information
148148 def insertAddedBlock (receivedBlockInfo : ReceivedBlockInfo ) {
149149 logTrace(s " Recovery: Inserting added block $receivedBlockInfo" )
150- // println(s"Recovery: Inserting added block $receivedBlockInfo")
151150 getReceivedBlockQueue(receivedBlockInfo.streamId) += receivedBlockInfo
152151 }
153152
@@ -156,16 +155,13 @@ class ReceivedBlockTracker(
156155 def insertAllocatedBatch (time : Time , allocatedBlocks : AllocatedBlocks ) {
157156 logTrace(s " Recovery: Inserting allocated batch for time $time to " +
158157 s " ${allocatedBlocks.streamIdToAllocatedBlocks}" )
159- // println(s"Recovery: Inserting allocated batch for time $time to " +
160- // s"${allocatedBlocks.streamIdToAllocatedBlocks}")
161158 streamIdToUnallocatedBlockQueues.values.foreach { _.clear() }
162159 timeToAllocatedBlocks.put(time, allocatedBlocks)
163160 }
164161
165162 // Cleanup the batch allocations
166163 def cleanupBatches (batchTimes : Seq [Time ]) {
167164 logTrace(s " Recovery: Cleaning up batches $batchTimes" )
168- // println(s"Recovery: Cleaning up batches ${batchTimes}")
169165 timeToAllocatedBlocks --= batchTimes
170166 }
171167
You can’t perform that action at this time.
0 commit comments