Skip to content

Commit fce2b21

Browse files
committed
Removed commented lines
1 parent 59496d3 commit fce2b21

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

streaming/src/main/scala/org/apache/spark/streaming/scheduler/ReceivedBlockTracker.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)