分布式调度框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

80 lines
3.5 KiB

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.dolphinscheduler.server.worker.runner.operator;
import org.apache.dolphinscheduler.extract.worker.transportor.UpdateWorkflowHostRequest;
import org.apache.dolphinscheduler.extract.worker.transportor.UpdateWorkflowHostResponse;
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
import org.apache.dolphinscheduler.plugin.task.api.utils.LogUtils;
import org.apache.dolphinscheduler.server.worker.message.MessageRetryRunner;
import org.apache.dolphinscheduler.server.worker.runner.WorkerTaskExecutor;
import org.apache.dolphinscheduler.server.worker.runner.WorkerTaskExecutorHolder;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Slf4j
@Component
public class UpdateWorkflowHostOperationFunction
implements
ITaskInstanceOperationFunction<UpdateWorkflowHostRequest, UpdateWorkflowHostResponse> {
@Autowired
private MessageRetryRunner messageRetryRunner;
public UpdateWorkflowHostOperationFunction(MessageRetryRunner messageRetryRunner) {
this.messageRetryRunner = messageRetryRunner;
}
@Override
public UpdateWorkflowHostResponse operate(UpdateWorkflowHostRequest updateWorkflowHostRequest) {
try {
final int taskInstanceId = updateWorkflowHostRequest.getTaskInstanceId();
final String workflowHost = updateWorkflowHostRequest.getWorkflowHost();
LogUtils.setTaskInstanceIdMDC(taskInstanceId);
log.info("Received UpdateWorkflowHostRequest: {}", updateWorkflowHostRequest);
boolean updateWorkerTaskExecutor = updateHostInWorkflowTaskExecutor(taskInstanceId, workflowHost);
boolean updateMessage = updateHostInMessage(taskInstanceId, workflowHost);
if (updateWorkerTaskExecutor || updateMessage) {
return UpdateWorkflowHostResponse.success();
}
return UpdateWorkflowHostResponse.failed("The taskInstance is not in the worker");
} finally {
LogUtils.removeTaskInstanceIdMDC();
LogUtils.removeTaskInstanceLogFullPathMDC();
}
}
private boolean updateHostInWorkflowTaskExecutor(int taskInstanceId, String workflowHost) {
WorkerTaskExecutor workerTaskExecutor = WorkerTaskExecutorHolder.get(taskInstanceId);
if (workerTaskExecutor == null) {
return false;
}
TaskExecutionContext taskExecutionContext = workerTaskExecutor.getTaskExecutionContext();
taskExecutionContext.setWorkflowInstanceHost(workflowHost);
return true;
}
private boolean updateHostInMessage(int taskInstanceId, String workflowHost) {
return messageRetryRunner.updateMessageHost(taskInstanceId, workflowHost);
}
}