Skip to content
Snippets Groups Projects
Commit d92b0673 authored by Mosharaf Chowdhury's avatar Mosharaf Chowdhury
Browse files

Fixed log message in CustomParallelLocalFileShuffle that was giving some problem in log processing.

parent 3b21a5fb
No related branches found
No related tags found
No related merge requests found
......@@ -155,9 +155,6 @@ extends Shuffle[K, V, C] with Logging {
private var receptionSucceeded = false
override def run: Unit = {
val readStartTime = System.currentTimeMillis
logInfo("BEGIN READ: http://%s:%d/shuffle/%s".format(hostAddress, listenPort, requestPath))
// Setup the timeout mechanism
var timeOutTask = new TimerTask {
override def run: Unit = {
......@@ -190,6 +187,9 @@ extends Shuffle[K, V, C] with Logging {
// Turn the timer OFF, if the sender responds before timeout
timeOutTimer.cancel()
val readStartTime = System.currentTimeMillis
logInfo("BEGIN READ: http://%s:%d/shuffle/%s".format(hostAddress, listenPort, requestPath))
// Receive the file
if (requestedFileLen != -1) {
// Add this to combiners
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment