You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (Protos.TaskInfo taskInfo : clusterState.getTaskList()) {
if (taskInfo.getExecutor().getExecutorId().getValue().equals(executorId.getValue())) {
LOGGER.debug("Found task match for " + executorId.getValue() + ". Sending status update.");
statusUpdate(driver, Protos.TaskStatus.newBuilder().setExecutorId(executorId).setSlaveId(slaveId).setTaskId(taskInfo.getTaskId()).setState(Protos.TaskState.TASK_ERROR).build());
}
}
The text was updated successfully, but these errors were encountered:
The healthcheck calls the executor lost method, but this method isn't implemented in the scheduler.
This depends on #303 and #318
Need code like the following:
The text was updated successfully, but these errors were encountered: