Added worker network address and process class details to trace log.
This commit is contained in:
parent
97cd53d649
commit
7a6d7cae96
|
@ -3095,7 +3095,10 @@ ACTOR Future<Void> workerAvailabilityWatch(WorkerInterface worker,
|
|||
cluster->removedDBInfoEndpoints.insert(worker.updateServerDBInfo.getEndpoint());
|
||||
cluster->id_worker.erase(worker.locality.processId());
|
||||
cluster->updateWorkerList.set(worker.locality.processId(), Optional<ProcessData>());
|
||||
TraceEvent("ClusterFailedWorker", cluster->id).detail("WorkerProcessId", worker.locality.processId());
|
||||
TraceEvent("ClusterControllerWorkerFailed", cluster->id)
|
||||
.detail("WorkerProcessId", worker.locality.processId())
|
||||
.detail("WorkerProcessClass", failedWorkerInfo.details.processClass.toString())
|
||||
.detail("WorkerAddress", worker.address());
|
||||
return Void();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue