Skip to content

Commit

Permalink
Merge branch 'dev-1.10.0-webank' of https://github.com/WeDataSphere/l…
Browse files Browse the repository at this point in the history
…inkis into dev-1.10.0-webank
  • Loading branch information
aiceflower committed Jan 13, 2025
2 parents db8b7de + a227f2a commit d25f96c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ class TaskExecutionServiceImpl
val sleepInterval = ComputationExecutorConf.ENGINE_PROGRESS_FETCH_INTERVAL.getValue
scheduler.submit(new Runnable {
override def run(): Unit = {
logger.info(s"start daemon thread ${task.getTaskId}, ${task.getStatus}")
logger.info(s"start progress daemon thread for task ${task.getTaskId}, status ${task.getStatus}")
Utils.tryQuietly(Thread.sleep(TimeUnit.MILLISECONDS.convert(1, TimeUnit.SECONDS)))
while (!ExecutionNodeStatus.isCompleted(task.getStatus)) {
Utils.tryAndWarn {
Expand Down Expand Up @@ -419,7 +419,7 @@ class TaskExecutionServiceImpl
Thread.sleep(TimeUnit.MILLISECONDS.convert(sleepInterval, TimeUnit.SECONDS))
)
}
logger.info(s"daemon thread exit ${task.getTaskId}, ${task.getStatus}")
logger.info(s"End progress daemon thread exit task ${task.getTaskId}, status ${task.getStatus}")
}
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ class RMMonitorRest extends Logging {

def appendMessageData(message: Message, key: String, value: AnyRef): Message = {
val result = mapper.writeValueAsString(value)
logger.info(s"appendMessageData result: $result")
message.data(key, mapper.readTree(result))
}

Expand Down

0 comments on commit d25f96c

Please sign in to comment.