This commit is contained in:
parent
149553c52b
commit
344293102d
|
|
@ -25,7 +25,6 @@
|
|||
<artifactId>dolphinscheduler-alert-server</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
|
||||
<dependencies>
|
||||
<!-- dolphinscheduler -->
|
||||
<dependency>
|
||||
|
|
@ -157,4 +156,5 @@
|
|||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -17,57 +17,53 @@
|
|||
|
||||
package org.apache.dolphinscheduler.alert;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.dolphinscheduler.dao.AlertDao;
|
||||
import org.apache.dolphinscheduler.dao.PluginDao;
|
||||
import org.apache.dolphinscheduler.dao.entity.Alert;
|
||||
import org.apache.dolphinscheduler.remote.NettyRemotingServer;
|
||||
import org.apache.dolphinscheduler.remote.config.NettyServerConfig;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.InjectMocks;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.Mockito;
|
||||
import org.mockito.MockitoAnnotations;
|
||||
import org.mockito.junit.MockitoJUnitRunner;
|
||||
import org.mockito.junit.jupiter.MockitoExtension;
|
||||
import org.powermock.reflect.Whitebox;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ExtendWith(MockitoExtension.class)
|
||||
public class AlertServerTest {
|
||||
|
||||
|
||||
@RunWith(MockitoJUnitRunner.class)
|
||||
public class AlertServerTest extends TestCase {
|
||||
|
||||
@InjectMocks
|
||||
private AlertServer alertServer;
|
||||
|
||||
@Mock
|
||||
private PluginDao pluginDao;
|
||||
|
||||
|
||||
@Mock
|
||||
private AlertConfig alertConfig;
|
||||
|
||||
@Mock
|
||||
private AlertSenderService alertSenderService;
|
||||
|
||||
@Test
|
||||
public void testStart() {
|
||||
|
||||
Mockito.when(pluginDao.checkPluginDefineTableExist()).thenReturn(true);
|
||||
@InjectMocks
|
||||
private AlertServer alertServer;
|
||||
|
||||
Mockito.when(alertConfig.getPort()).thenReturn(50052);
|
||||
@BeforeEach
|
||||
void init() {
|
||||
Mockito.lenient().when(pluginDao.checkPluginDefineTableExist()).thenReturn(true);
|
||||
|
||||
Mockito.lenient().when(alertConfig.getPort()).thenReturn(50052);
|
||||
|
||||
Mockito.doNothing().when(alertSenderService).start();
|
||||
|
||||
}
|
||||
@Test
|
||||
public void alertServerStartSuccessfully() {
|
||||
|
||||
alertServer.run(null);
|
||||
|
||||
|
||||
NettyRemotingServer nettyRemotingServer = Whitebox.getInternalState(alertServer, "nettyRemotingServer");
|
||||
|
||||
|
||||
NettyServerConfig nettyServerConfig = Whitebox.getInternalState(nettyRemotingServer, "serverConfig");
|
||||
|
||||
Assert.assertEquals(50052, nettyServerConfig.getListenPort());
|
||||
|
||||
Assertions.assertEquals(50052, nettyServerConfig.getListenPort());
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,6 @@
|
|||
<artifactId>dolphinscheduler-api</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
@ -37,7 +36,6 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<!-- dolphinscheduler -->
|
||||
<dependency>
|
||||
|
|
@ -157,6 +155,12 @@
|
|||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.curator</groupId>
|
||||
<artifactId>curator-test</artifactId>
|
||||
|
|
@ -196,7 +200,6 @@
|
|||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<testResources>
|
||||
<testResource>
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
package org.apache.dolphinscheduler.api.service.impl;
|
||||
|
||||
import org.apache.dolphinscheduler.api.enums.Status;
|
||||
import org.apache.dolphinscheduler.api.k8s.K8sClientService;
|
||||
import org.apache.dolphinscheduler.api.service.K8sNamespaceService;
|
||||
import org.apache.dolphinscheduler.api.utils.PageInfo;
|
||||
import org.apache.dolphinscheduler.api.utils.Result;
|
||||
|
|
@ -29,7 +30,6 @@ import org.apache.dolphinscheduler.dao.entity.User;
|
|||
import org.apache.dolphinscheduler.dao.mapper.ClusterMapper;
|
||||
import org.apache.dolphinscheduler.dao.mapper.K8sNamespaceMapper;
|
||||
import org.apache.dolphinscheduler.remote.exceptions.RemotingException;
|
||||
import org.apache.dolphinscheduler.api.k8s.K8sClientService;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
|
|
@ -60,14 +60,14 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
private static final Logger logger = LoggerFactory.getLogger(K8SNamespaceServiceImpl.class);
|
||||
|
||||
private static String resourceYaml = "apiVersion: v1\n"
|
||||
+ "kind: ResourceQuota\n"
|
||||
+ "metadata:\n"
|
||||
+ " name: ${name}\n"
|
||||
+ " namespace: ${namespace}\n"
|
||||
+ "spec:\n"
|
||||
+ " hard:\n"
|
||||
+ " ${limitCpu}\n"
|
||||
+ " ${limitMemory}\n";
|
||||
+ "kind: ResourceQuota\n"
|
||||
+ "metadata:\n"
|
||||
+ " name: ${name}\n"
|
||||
+ " namespace: ${namespace}\n"
|
||||
+ "spec:\n"
|
||||
+ " hard:\n"
|
||||
+ " ${limitCpu}\n"
|
||||
+ " ${limitMemory}\n";
|
||||
|
||||
@Autowired
|
||||
private K8sNamespaceMapper k8sNamespaceMapper;
|
||||
|
|
@ -120,7 +120,8 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
* @return
|
||||
*/
|
||||
@Override
|
||||
public Map<String, Object> createK8sNamespace(User loginUser, String namespace, Long clusterCode, Double limitsCpu, Integer limitsMemory) {
|
||||
public Map<String, Object> createK8sNamespace(User loginUser, String namespace, Long clusterCode, Double limitsCpu,
|
||||
Integer limitsMemory) {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
if (isNotAdmin(loginUser, result)) {
|
||||
return result;
|
||||
|
|
@ -211,7 +212,8 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
* @return
|
||||
*/
|
||||
@Override
|
||||
public Map<String, Object> updateK8sNamespace(User loginUser, int id, String userName, Double limitsCpu, Integer limitsMemory) {
|
||||
public Map<String, Object> updateK8sNamespace(User loginUser, int id, String userName, Double limitsCpu,
|
||||
Integer limitsMemory) {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
if (isNotAdmin(loginUser, result)) {
|
||||
return result;
|
||||
|
|
@ -333,7 +335,7 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
* @return yaml file
|
||||
*/
|
||||
private String genDefaultResourceYaml(K8sNamespace k8sNamespace) {
|
||||
//resource use same name with namespace
|
||||
// resource use same name with namespace
|
||||
String name = k8sNamespace.getNamespace();
|
||||
String namespace = k8sNamespace.getNamespace();
|
||||
String cpuStr = null;
|
||||
|
|
@ -347,7 +349,7 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
}
|
||||
|
||||
String result = resourceYaml.replace("${name}", name)
|
||||
.replace("${namespace}", namespace);
|
||||
.replace("${namespace}", namespace);
|
||||
if (cpuStr == null) {
|
||||
result = result.replace("${limitCpu}", "");
|
||||
} else {
|
||||
|
|
@ -362,7 +364,6 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
return result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* query unauthorized namespace
|
||||
*
|
||||
|
|
@ -455,7 +456,8 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
* @param authedNamespaceList authed namespace list
|
||||
* @return namespace list that authorization
|
||||
*/
|
||||
private List<K8sNamespace> getUnauthorizedNamespaces(Set<K8sNamespace> namespaceSet, List<K8sNamespace> authedNamespaceList) {
|
||||
private List<K8sNamespace> getUnauthorizedNamespaces(Set<K8sNamespace> namespaceSet,
|
||||
List<K8sNamespace> authedNamespaceList) {
|
||||
List<K8sNamespace> resultList = new ArrayList<>();
|
||||
for (K8sNamespace k8sNamespace : namespaceSet) {
|
||||
boolean existAuth = false;
|
||||
|
|
@ -473,4 +475,4 @@ public class K8SNamespaceServiceImpl extends BaseServiceImpl implements K8sNames
|
|||
}
|
||||
return resultList;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ import static org.apache.dolphinscheduler.common.Constants.COPY_SUFFIX;
|
|||
import static org.apache.dolphinscheduler.common.Constants.DEFAULT_WORKER_GROUP;
|
||||
import static org.apache.dolphinscheduler.common.Constants.EMPTY_STRING;
|
||||
import static org.apache.dolphinscheduler.common.Constants.IMPORT_SUFFIX;
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.COMPLEX_TASK_TYPES;
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.TASK_TYPE_SQL;
|
||||
|
||||
import org.apache.dolphinscheduler.api.dto.DagDataSchedule;
|
||||
|
|
|
|||
|
|
@ -98,10 +98,11 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
*/
|
||||
@Transactional
|
||||
@Override
|
||||
public Map<String, Object> createProcessTaskRelation(User loginUser, long projectCode, long processDefinitionCode, long preTaskCode, long postTaskCode) {
|
||||
public Map<String, Object> createProcessTaskRelation(User loginUser, long projectCode, long processDefinitionCode,
|
||||
long preTaskCode, long postTaskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
|
|
@ -115,11 +116,14 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
return result;
|
||||
}
|
||||
updateProcessDefiniteVersion(loginUser, result, processDefinition);
|
||||
List<ProcessTaskRelation> processTaskRelationList = processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode);
|
||||
List<ProcessTaskRelation> processTaskRelationList =
|
||||
processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode);
|
||||
List<ProcessTaskRelation> processTaskRelations = Lists.newArrayList(processTaskRelationList);
|
||||
if (!processTaskRelations.isEmpty()) {
|
||||
Map<Long, ProcessTaskRelation> preTaskCodeMap = processTaskRelations.stream().filter(r -> r.getPostTaskCode() == postTaskCode)
|
||||
.collect(Collectors.toMap(ProcessTaskRelation::getPreTaskCode, processTaskRelation -> processTaskRelation));
|
||||
Map<Long, ProcessTaskRelation> preTaskCodeMap =
|
||||
processTaskRelations.stream().filter(r -> r.getPostTaskCode() == postTaskCode)
|
||||
.collect(Collectors.toMap(ProcessTaskRelation::getPreTaskCode,
|
||||
processTaskRelation -> processTaskRelation));
|
||||
if (!preTaskCodeMap.isEmpty()) {
|
||||
if (preTaskCodeMap.containsKey(preTaskCode) || (!preTaskCodeMap.containsKey(0L) && preTaskCode == 0L)) {
|
||||
putMsg(result, Status.PROCESS_TASK_RELATION_EXIST, String.valueOf(processDefinitionCode));
|
||||
|
|
@ -135,7 +139,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
ProcessTaskRelation processTaskRelation = setRelation(processDefinition, postTaskDefinition);
|
||||
if (preTaskCode != 0L) {
|
||||
TaskDefinition preTaskDefinition = taskDefinitionMapper.queryByCode(preTaskCode);
|
||||
List<ProcessTaskRelation> upstreamTaskRelationList = processTaskRelations.stream().filter(r -> r.getPostTaskCode() == preTaskCode).collect(Collectors.toList());
|
||||
List<ProcessTaskRelation> upstreamTaskRelationList = processTaskRelations.stream()
|
||||
.filter(r -> r.getPostTaskCode() == preTaskCode).collect(Collectors.toList());
|
||||
// upstream is or not exist
|
||||
if (upstreamTaskRelationList.isEmpty()) {
|
||||
ProcessTaskRelation preProcessTaskRelation = setRelation(processDefinition, preTaskDefinition);
|
||||
|
|
@ -169,7 +174,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
return processTaskRelation;
|
||||
}
|
||||
|
||||
private void updateProcessDefiniteVersion(User loginUser, Map<String, Object> result, ProcessDefinition processDefinition) {
|
||||
private void updateProcessDefiniteVersion(User loginUser, Map<String, Object> result,
|
||||
ProcessDefinition processDefinition) {
|
||||
int insertVersion = processService.saveProcessDefine(loginUser, processDefinition, Boolean.TRUE, Boolean.TRUE);
|
||||
if (insertVersion <= 0) {
|
||||
putMsg(result, Status.UPDATE_PROCESS_DEFINITION_ERROR);
|
||||
|
|
@ -189,10 +195,11 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
*/
|
||||
@Transactional
|
||||
@Override
|
||||
public Map<String, Object> deleteTaskProcessRelation(User loginUser, long projectCode, long processDefinitionCode, long taskCode) {
|
||||
public Map<String, Object> deleteTaskProcessRelation(User loginUser, long projectCode, long processDefinitionCode,
|
||||
long taskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
|
|
@ -210,7 +217,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
putMsg(result, Status.TASK_DEFINE_NOT_EXIST, String.valueOf(taskCode));
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> processTaskRelations = processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode);
|
||||
List<ProcessTaskRelation> processTaskRelations =
|
||||
processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode);
|
||||
List<ProcessTaskRelation> processTaskRelationList = Lists.newArrayList(processTaskRelations);
|
||||
if (CollectionUtils.isEmpty(processTaskRelationList)) {
|
||||
putMsg(result, Status.DATA_IS_NULL, "processTaskRelationList");
|
||||
|
|
@ -232,8 +240,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
updateProcessDefiniteVersion(loginUser, result, processDefinition);
|
||||
updateRelation(loginUser, result, processDefinition, processTaskRelationList);
|
||||
if (TASK_TYPE_CONDITIONS.equals(taskDefinition.getTaskType())
|
||||
|| TASK_TYPE_DEPENDENT.equals(taskDefinition.getTaskType())
|
||||
|| TASK_TYPE_SUB_PROCESS.equals(taskDefinition.getTaskType())) {
|
||||
|| TASK_TYPE_DEPENDENT.equals(taskDefinition.getTaskType())
|
||||
|| TASK_TYPE_SUB_PROCESS.equals(taskDefinition.getTaskType())) {
|
||||
int deleteTaskDefinition = taskDefinitionMapper.deleteByCode(taskCode);
|
||||
if (0 == deleteTaskDefinition) {
|
||||
putMsg(result, Status.DELETE_TASK_DEFINE_BY_CODE_ERROR);
|
||||
|
|
@ -246,9 +254,11 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
|
||||
private void updateRelation(User loginUser, Map<String, Object> result, ProcessDefinition processDefinition,
|
||||
List<ProcessTaskRelation> processTaskRelationList) {
|
||||
List<ProcessTaskRelationLog> relationLogs = processTaskRelationList.stream().map(ProcessTaskRelationLog::new).collect(Collectors.toList());
|
||||
int insertResult = processService.saveTaskRelation(loginUser, processDefinition.getProjectCode(), processDefinition.getCode(),
|
||||
processDefinition.getVersion(), relationLogs, Lists.newArrayList(), Boolean.TRUE);
|
||||
List<ProcessTaskRelationLog> relationLogs =
|
||||
processTaskRelationList.stream().map(ProcessTaskRelationLog::new).collect(Collectors.toList());
|
||||
int insertResult = processService.saveTaskRelation(loginUser, processDefinition.getProjectCode(),
|
||||
processDefinition.getCode(),
|
||||
processDefinition.getVersion(), relationLogs, Lists.newArrayList(), Boolean.TRUE);
|
||||
if (insertResult == Constants.EXIT_CODE_SUCCESS) {
|
||||
putMsg(result, Status.SUCCESS);
|
||||
result.put(Constants.DATA_LIST, processDefinition);
|
||||
|
|
@ -269,10 +279,11 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
*/
|
||||
@Transactional
|
||||
@Override
|
||||
public Map<String, Object> deleteUpstreamRelation(User loginUser, long projectCode, String preTaskCodes, long taskCode) {
|
||||
public Map<String, Object> deleteUpstreamRelation(User loginUser, long projectCode, String preTaskCodes,
|
||||
long taskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
|
|
@ -286,12 +297,14 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
return result;
|
||||
}
|
||||
|
||||
List<Long> preTaskCodeList = Lists.newArrayList(preTaskCodes.split(Constants.COMMA)).stream().map(Long::parseLong).collect(Collectors.toList());
|
||||
List<Long> preTaskCodeList = Lists.newArrayList(preTaskCodes.split(Constants.COMMA)).stream()
|
||||
.map(Long::parseLong).collect(Collectors.toList());
|
||||
if (preTaskCodeList.contains(0L)) {
|
||||
putMsg(result, Status.DATA_IS_NULL, "preTaskCodes");
|
||||
return result;
|
||||
}
|
||||
List<Long> currentUpstreamList = upstreamList.stream().map(ProcessTaskRelation::getPreTaskCode).collect(Collectors.toList());
|
||||
List<Long> currentUpstreamList =
|
||||
upstreamList.stream().map(ProcessTaskRelation::getPreTaskCode).collect(Collectors.toList());
|
||||
if (currentUpstreamList.contains(0L)) {
|
||||
putMsg(result, Status.DATA_IS_NOT_VALID, "currentUpstreamList");
|
||||
return result;
|
||||
|
|
@ -303,12 +316,15 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
putMsg(result, Status.DATA_IS_NOT_VALID, StringUtils.join(preTaskCodeList, Constants.COMMA));
|
||||
return result;
|
||||
}
|
||||
ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(upstreamList.get(0).getProcessDefinitionCode());
|
||||
ProcessDefinition processDefinition =
|
||||
processDefinitionMapper.queryByCode(upstreamList.get(0).getProcessDefinitionCode());
|
||||
if (processDefinition == null) {
|
||||
putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(upstreamList.get(0).getProcessDefinitionCode()));
|
||||
putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST,
|
||||
String.valueOf(upstreamList.get(0).getProcessDefinitionCode()));
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> processTaskRelations = processTaskRelationMapper.queryByProcessCode(projectCode, processDefinition.getCode());
|
||||
List<ProcessTaskRelation> processTaskRelations =
|
||||
processTaskRelationMapper.queryByProcessCode(projectCode, processDefinition.getCode());
|
||||
List<ProcessTaskRelation> processTaskRelationList = Lists.newArrayList(processTaskRelations);
|
||||
List<ProcessTaskRelation> processTaskRelationWaitRemove = Lists.newArrayList();
|
||||
for (ProcessTaskRelation processTaskRelation : processTaskRelationList) {
|
||||
|
|
@ -318,7 +334,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
processTaskRelationWaitRemove.add(processTaskRelation);
|
||||
}
|
||||
} else {
|
||||
if (processTaskRelation.getPostTaskCode() == taskCode && (currentUpstreamList.isEmpty() || tmpCurrent.isEmpty())) {
|
||||
if (processTaskRelation.getPostTaskCode() == taskCode
|
||||
&& (currentUpstreamList.isEmpty() || tmpCurrent.isEmpty())) {
|
||||
processTaskRelation.setPreTaskVersion(0);
|
||||
processTaskRelation.setPreTaskCode(0L);
|
||||
}
|
||||
|
|
@ -341,10 +358,11 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
*/
|
||||
@Transactional
|
||||
@Override
|
||||
public Map<String, Object> deleteDownstreamRelation(User loginUser, long projectCode, String postTaskCodes, long taskCode) {
|
||||
public Map<String, Object> deleteDownstreamRelation(User loginUser, long projectCode, String postTaskCodes,
|
||||
long taskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
|
|
@ -352,24 +370,31 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
putMsg(result, Status.DATA_IS_NULL, "postTaskCodes");
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> downstreamList = processTaskRelationMapper.queryDownstreamByCode(projectCode, taskCode);
|
||||
List<ProcessTaskRelation> downstreamList =
|
||||
processTaskRelationMapper.queryDownstreamByCode(projectCode, taskCode);
|
||||
if (CollectionUtils.isEmpty(downstreamList)) {
|
||||
putMsg(result, Status.DATA_IS_NULL, "taskCode");
|
||||
return result;
|
||||
}
|
||||
List<Long> postTaskCodeList = Lists.newArrayList(postTaskCodes.split(Constants.COMMA)).stream().map(Long::parseLong).collect(Collectors.toList());
|
||||
List<Long> postTaskCodeList = Lists.newArrayList(postTaskCodes.split(Constants.COMMA)).stream()
|
||||
.map(Long::parseLong).collect(Collectors.toList());
|
||||
if (postTaskCodeList.contains(0L)) {
|
||||
putMsg(result, Status.DATA_IS_NULL, "postTaskCodes");
|
||||
return result;
|
||||
}
|
||||
ProcessDefinition processDefinition = processDefinitionMapper.queryByCode(downstreamList.get(0).getProcessDefinitionCode());
|
||||
ProcessDefinition processDefinition =
|
||||
processDefinitionMapper.queryByCode(downstreamList.get(0).getProcessDefinitionCode());
|
||||
if (processDefinition == null) {
|
||||
putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(downstreamList.get(0).getProcessDefinitionCode()));
|
||||
putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST,
|
||||
String.valueOf(downstreamList.get(0).getProcessDefinitionCode()));
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> processTaskRelations = processTaskRelationMapper.queryByProcessCode(projectCode, processDefinition.getCode());
|
||||
List<ProcessTaskRelation> processTaskRelations =
|
||||
processTaskRelationMapper.queryByProcessCode(projectCode, processDefinition.getCode());
|
||||
List<ProcessTaskRelation> processTaskRelationList = Lists.newArrayList(processTaskRelations);
|
||||
processTaskRelationList.removeIf(processTaskRelation -> postTaskCodeList.contains(processTaskRelation.getPostTaskCode()) && processTaskRelation.getPreTaskCode() == taskCode);
|
||||
processTaskRelationList
|
||||
.removeIf(processTaskRelation -> postTaskCodeList.contains(processTaskRelation.getPostTaskCode())
|
||||
&& processTaskRelation.getPreTaskCode() == taskCode);
|
||||
updateProcessDefiniteVersion(loginUser, result, processDefinition);
|
||||
updateRelation(loginUser, result, processDefinition, processTaskRelationList);
|
||||
return result;
|
||||
|
|
@ -386,24 +411,25 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
@Override
|
||||
public Map<String, Object> queryUpstreamRelation(User loginUser, long projectCode, long taskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> processTaskRelationList = processTaskRelationMapper.queryUpstreamByCode(projectCode, taskCode);
|
||||
List<ProcessTaskRelation> processTaskRelationList =
|
||||
processTaskRelationMapper.queryUpstreamByCode(projectCode, taskCode);
|
||||
List<TaskDefinitionLog> taskDefinitionLogList = new ArrayList<>();
|
||||
if (CollectionUtils.isNotEmpty(processTaskRelationList)) {
|
||||
Set<TaskDefinition> taskDefinitions = processTaskRelationList
|
||||
.stream()
|
||||
.map(processTaskRelation -> {
|
||||
TaskDefinition taskDefinition = buildTaskDefinition();
|
||||
taskDefinition.setProjectCode(processTaskRelation.getProjectCode());
|
||||
taskDefinition.setCode(processTaskRelation.getPreTaskCode());
|
||||
taskDefinition.setVersion(processTaskRelation.getPreTaskVersion());
|
||||
return taskDefinition;
|
||||
})
|
||||
.collect(Collectors.toSet());
|
||||
.stream()
|
||||
.map(processTaskRelation -> {
|
||||
TaskDefinition taskDefinition = buildTaskDefinition();
|
||||
taskDefinition.setProjectCode(processTaskRelation.getProjectCode());
|
||||
taskDefinition.setCode(processTaskRelation.getPreTaskCode());
|
||||
taskDefinition.setVersion(processTaskRelation.getPreTaskVersion());
|
||||
return taskDefinition;
|
||||
})
|
||||
.collect(Collectors.toSet());
|
||||
taskDefinitionLogList = taskDefinitionLogMapper.queryByTaskDefinitions(taskDefinitions);
|
||||
}
|
||||
result.put(Constants.DATA_LIST, taskDefinitionLogList);
|
||||
|
|
@ -422,24 +448,25 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
@Override
|
||||
public Map<String, Object> queryDownstreamRelation(User loginUser, long projectCode, long taskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> processTaskRelationList = processTaskRelationMapper.queryDownstreamByCode(projectCode, taskCode);
|
||||
List<ProcessTaskRelation> processTaskRelationList =
|
||||
processTaskRelationMapper.queryDownstreamByCode(projectCode, taskCode);
|
||||
List<TaskDefinitionLog> taskDefinitionLogList = new ArrayList<>();
|
||||
if (CollectionUtils.isNotEmpty(processTaskRelationList)) {
|
||||
Set<TaskDefinition> taskDefinitions = processTaskRelationList
|
||||
.stream()
|
||||
.map(processTaskRelation -> {
|
||||
TaskDefinition taskDefinition = buildTaskDefinition();
|
||||
taskDefinition.setProjectCode(processTaskRelation.getProjectCode());
|
||||
taskDefinition.setCode(processTaskRelation.getPostTaskCode());
|
||||
taskDefinition.setVersion(processTaskRelation.getPostTaskVersion());
|
||||
return taskDefinition;
|
||||
})
|
||||
.collect(Collectors.toSet());
|
||||
.stream()
|
||||
.map(processTaskRelation -> {
|
||||
TaskDefinition taskDefinition = buildTaskDefinition();
|
||||
taskDefinition.setProjectCode(processTaskRelation.getProjectCode());
|
||||
taskDefinition.setCode(processTaskRelation.getPostTaskCode());
|
||||
taskDefinition.setVersion(processTaskRelation.getPostTaskVersion());
|
||||
return taskDefinition;
|
||||
})
|
||||
.collect(Collectors.toSet());
|
||||
taskDefinitionLogList = taskDefinitionLogMapper.queryByTaskDefinitions(taskDefinitions);
|
||||
}
|
||||
result.put(Constants.DATA_LIST, taskDefinitionLogList);
|
||||
|
|
@ -459,10 +486,11 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
*/
|
||||
@Transactional
|
||||
@Override
|
||||
public Map<String, Object> deleteEdge(User loginUser, long projectCode, long processDefinitionCode, long preTaskCode, long postTaskCode) {
|
||||
public Map<String, Object> deleteEdge(User loginUser, long projectCode, long processDefinitionCode,
|
||||
long preTaskCode, long postTaskCode) {
|
||||
Project project = projectMapper.queryByCode(projectCode);
|
||||
//check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode,null);
|
||||
// check user access for project
|
||||
Map<String, Object> result = projectService.checkProjectAndAuth(loginUser, project, projectCode, null);
|
||||
if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
||||
return result;
|
||||
}
|
||||
|
|
@ -471,7 +499,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
putMsg(result, Status.PROCESS_DEFINE_NOT_EXIST, String.valueOf(processDefinitionCode));
|
||||
return result;
|
||||
}
|
||||
List<ProcessTaskRelation> processTaskRelations = processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode);
|
||||
List<ProcessTaskRelation> processTaskRelations =
|
||||
processTaskRelationMapper.queryByProcessCode(projectCode, processDefinitionCode);
|
||||
List<ProcessTaskRelation> processTaskRelationList = Lists.newArrayList(processTaskRelations);
|
||||
if (CollectionUtils.isEmpty(processTaskRelationList)) {
|
||||
putMsg(result, Status.DATA_IS_NULL, "processTaskRelationList");
|
||||
|
|
@ -522,6 +551,7 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
private TaskDefinition buildTaskDefinition() {
|
||||
|
||||
return new TaskDefinition() {
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
|
|
@ -532,8 +562,8 @@ public class ProcessTaskRelationServiceImpl extends BaseServiceImpl implements P
|
|||
}
|
||||
TaskDefinition that = (TaskDefinition) o;
|
||||
return getCode() == that.getCode()
|
||||
&& getVersion() == that.getVersion()
|
||||
&& getProjectCode() == that.getProjectCode();
|
||||
&& getVersion() == that.getVersion()
|
||||
&& getProjectCode() == that.getProjectCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -71,9 +71,11 @@ public class TaskInstanceControllerTest extends AbstractControllerTest {
|
|||
result.setMsg(Status.SUCCESS.getMsg());
|
||||
|
||||
when(taskInstanceService.queryTaskListPaging(any(), eq(1L), eq(1), eq(""), eq(""), eq(""), eq(""), any(), any(),
|
||||
eq(""), Mockito.any(), eq("192.168.xx.xx"), eq(TaskExecuteType.BATCH), any(), any())).thenReturn(result);
|
||||
eq(""), Mockito.any(), eq("192.168.xx.xx"), eq(TaskExecuteType.BATCH), any(), any()))
|
||||
.thenReturn(result);
|
||||
Result taskResult = taskInstanceController.queryTaskListPaging(null, 1L, 1, "", "", "",
|
||||
"", "", TaskExecutionStatus.SUCCESS, "192.168.xx.xx", "2020-01-01 00:00:00", "2020-01-02 00:00:00", TaskExecuteType.BATCH, pageNo, pageSize);
|
||||
"", "", TaskExecutionStatus.SUCCESS, "192.168.xx.xx", "2020-01-01 00:00:00", "2020-01-02 00:00:00",
|
||||
TaskExecuteType.BATCH, pageNo, pageSize);
|
||||
Assert.assertEquals(Integer.valueOf(Status.SUCCESS.getCode()), taskResult.getCode());
|
||||
}
|
||||
|
||||
|
|
@ -91,9 +93,9 @@ public class TaskInstanceControllerTest extends AbstractControllerTest {
|
|||
MvcResult mvcResult = mockMvc.perform(post("/projects/{projectName}/task-instance/force-success", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
|
||||
.andReturn();
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
|
|
|
|||
|
|
@ -19,8 +19,13 @@ package org.apache.dolphinscheduler.common.utils;
|
|||
|
||||
import org.apache.dolphinscheduler.common.shell.ShellExecutor;
|
||||
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
import oshi.SystemInfo;
|
||||
import oshi.hardware.CentralProcessor;
|
||||
import oshi.hardware.GlobalMemory;
|
||||
import oshi.hardware.HardwareAbstractionLayer;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
|
|
@ -42,11 +47,6 @@ import java.util.regex.Pattern;
|
|||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import oshi.SystemInfo;
|
||||
import oshi.hardware.CentralProcessor;
|
||||
import oshi.hardware.GlobalMemory;
|
||||
import oshi.hardware.HardwareAbstractionLayer;
|
||||
|
||||
/**
|
||||
* os utils
|
||||
*/
|
||||
|
|
@ -101,7 +101,7 @@ public class OSUtils {
|
|||
*/
|
||||
public static double diskAvailable() {
|
||||
File file = new File(".");
|
||||
long freeSpace = file.getFreeSpace(); //unallocated / free disk space in bytes.
|
||||
long freeSpace = file.getFreeSpace(); // unallocated / free disk space in bytes.
|
||||
|
||||
double diskAvailable = freeSpace / 1024.0 / 1024 / 1024;
|
||||
|
||||
|
|
@ -160,7 +160,7 @@ public class OSUtils {
|
|||
long now = System.currentTimeMillis();
|
||||
if (now - prevTickTime > 950) {
|
||||
// Enough time has elapsed.
|
||||
cpuUsage = processor.getSystemCpuLoadBetweenTicks(prevTicks);
|
||||
cpuUsage = processor.getSystemCpuLoadBetweenTicks(prevTicks);
|
||||
prevTickTime = System.currentTimeMillis();
|
||||
prevTicks = processor.getSystemCpuLoadTicks();
|
||||
}
|
||||
|
|
@ -198,8 +198,9 @@ public class OSUtils {
|
|||
private static List<String> getUserListFromLinux() throws IOException {
|
||||
List<String> userList = new ArrayList<>();
|
||||
|
||||
try (BufferedReader bufferedReader = new BufferedReader(
|
||||
new InputStreamReader(new FileInputStream("/etc/passwd")))) {
|
||||
try (
|
||||
BufferedReader bufferedReader = new BufferedReader(
|
||||
new InputStreamReader(new FileInputStream("/etc/passwd")))) {
|
||||
String line;
|
||||
|
||||
while ((line = bufferedReader.readLine()) != null) {
|
||||
|
|
@ -273,14 +274,14 @@ public class OSUtils {
|
|||
* @return boolean
|
||||
*/
|
||||
public static boolean existTenantCodeInLinux(String tenantCode) {
|
||||
try{
|
||||
String result = exeCmd("id "+ tenantCode);
|
||||
if (!StringUtils.isEmpty(result)){
|
||||
try {
|
||||
String result = exeCmd("id " + tenantCode);
|
||||
if (!StringUtils.isEmpty(result)) {
|
||||
return result.contains("uid=");
|
||||
}
|
||||
}catch (Exception e){
|
||||
//because ShellExecutor method throws exception to the linux return status is not 0
|
||||
//not exist user return status is 1
|
||||
} catch (Exception e) {
|
||||
// because ShellExecutor method throws exception to the linux return status is not 0
|
||||
// not exist user return status is 1
|
||||
logger.error(e.getMessage(), e);
|
||||
}
|
||||
return false;
|
||||
|
|
@ -472,8 +473,9 @@ public class OSUtils {
|
|||
// system available physical memory
|
||||
double availablePhysicalMemorySize = availablePhysicalMemorySize();
|
||||
if (loadAverage > maxCpuLoadAvg || availablePhysicalMemorySize < reservedMemory) {
|
||||
logger.warn("Current cpu load average {} is too high or available memory {}G is too low, under max.cpuLoad.avg={} and reserved.memory={}G",
|
||||
loadAverage, availablePhysicalMemorySize, maxCpuLoadAvg, reservedMemory);
|
||||
logger.warn(
|
||||
"Current cpu load average {} is too high or available memory {}G is too low, under max.cpuLoad.avg={} and reserved.memory={}G",
|
||||
loadAverage, availablePhysicalMemorySize, maxCpuLoadAvg, reservedMemory);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -16,18 +16,17 @@
|
|||
*/
|
||||
package org.apache.dolphinscheduler.common.os;
|
||||
|
||||
import org.apache.dolphinscheduler.common.utils.OSUtils;
|
||||
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
import org.apache.dolphinscheduler.common.utils.OSUtils;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* OSUtilsTest
|
||||
*/
|
||||
|
|
@ -64,7 +63,7 @@ public class OSUtilsTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void availablePhysicalMemorySize(){
|
||||
public void availablePhysicalMemorySize() {
|
||||
double physicalMemorySize = OSUtils.availablePhysicalMemorySize();
|
||||
logger.info("physicalMemorySize : {}", physicalMemorySize);
|
||||
Assert.assertTrue(physicalMemorySize >= 0.0);
|
||||
|
|
@ -72,31 +71,29 @@ public class OSUtilsTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void existTenantCodeInLinux(){
|
||||
if (SystemUtils.IS_OS_LINUX){
|
||||
public void existTenantCodeInLinux() {
|
||||
if (SystemUtils.IS_OS_LINUX) {
|
||||
boolean test = OSUtils.existTenantCodeInLinux("root");
|
||||
Assert.assertTrue(test);
|
||||
boolean test1 = OSUtils.existTenantCodeInLinux("xxxtt");
|
||||
Assert.assertFalse(test1);
|
||||
}else{
|
||||
Assert.assertFalse("system must be linux",false);
|
||||
} else {
|
||||
Assert.assertFalse("system must be linux", false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void existOSTenandCode(){
|
||||
if (SystemUtils.IS_OS_LINUX){
|
||||
public void existOSTenandCode() {
|
||||
if (SystemUtils.IS_OS_LINUX) {
|
||||
List<String> userList = OSUtils.getUserList();
|
||||
Assert.assertTrue(userList.contains("root"));
|
||||
Assert.assertFalse(userList.contains("xxxtt"));
|
||||
}else{
|
||||
Assert.assertFalse("system must be linux",false);
|
||||
} else {
|
||||
Assert.assertFalse("system must be linux", false);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,17 +17,18 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.datasource.api.utils;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.*;
|
||||
import static org.apache.dolphinscheduler.spi.utils.Constants.RESOURCE_STORAGE_TYPE;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.ResUploadType;
|
||||
import org.apache.dolphinscheduler.spi.utils.PropertyUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.*;
|
||||
import static org.apache.dolphinscheduler.spi.utils.Constants.RESOURCE_STORAGE_TYPE;
|
||||
|
||||
/**
|
||||
* common utils
|
||||
*/
|
||||
|
|
@ -36,7 +37,7 @@ public class CommonUtils {
|
|||
private CommonUtils() {
|
||||
throw new UnsupportedOperationException("Construct CommonUtils");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* if upload resource is HDFS and kerberos startup is true , else false
|
||||
*
|
||||
|
|
@ -70,7 +71,8 @@ public class CommonUtils {
|
|||
* @param loginUserKeytabPath loginUserKeytabPath
|
||||
* @throws IOException errors
|
||||
*/
|
||||
public static void loadKerberosConf(String javaSecurityKrb5Conf, String loginUserKeytabUsername, String loginUserKeytabPath) throws IOException {
|
||||
public static void loadKerberosConf(String javaSecurityKrb5Conf, String loginUserKeytabUsername,
|
||||
String loginUserKeytabPath) throws IOException {
|
||||
Configuration configuration = new Configuration();
|
||||
configuration.setClassLoader(configuration.getClass().getClassLoader());
|
||||
loadKerberosConf(javaSecurityKrb5Conf, loginUserKeytabUsername, loginUserKeytabPath, configuration);
|
||||
|
|
@ -86,12 +88,16 @@ public class CommonUtils {
|
|||
* @return load kerberos config return true
|
||||
* @throws IOException errors
|
||||
*/
|
||||
public static boolean loadKerberosConf(String javaSecurityKrb5Conf, String loginUserKeytabUsername, String loginUserKeytabPath, Configuration configuration) throws IOException {
|
||||
public static boolean loadKerberosConf(String javaSecurityKrb5Conf, String loginUserKeytabUsername,
|
||||
String loginUserKeytabPath, Configuration configuration) throws IOException {
|
||||
if (CommonUtils.getKerberosStartupState()) {
|
||||
System.setProperty(JAVA_SECURITY_KRB5_CONF, StringUtils.defaultIfBlank(javaSecurityKrb5Conf, PropertyUtils.getString(JAVA_SECURITY_KRB5_CONF_PATH)));
|
||||
System.setProperty(JAVA_SECURITY_KRB5_CONF, StringUtils.defaultIfBlank(javaSecurityKrb5Conf,
|
||||
PropertyUtils.getString(JAVA_SECURITY_KRB5_CONF_PATH)));
|
||||
configuration.set(HADOOP_SECURITY_AUTHENTICATION, KERBEROS);
|
||||
UserGroupInformation.setConfiguration(configuration);
|
||||
UserGroupInformation.loginUserFromKeytab(StringUtils.defaultIfBlank(loginUserKeytabUsername, PropertyUtils.getString(LOGIN_USER_KEY_TAB_USERNAME)),
|
||||
UserGroupInformation.loginUserFromKeytab(
|
||||
StringUtils.defaultIfBlank(loginUserKeytabUsername,
|
||||
PropertyUtils.getString(LOGIN_USER_KEY_TAB_USERNAME)),
|
||||
StringUtils.defaultIfBlank(loginUserKeytabPath, PropertyUtils.getString(LOGIN_USER_KEY_TAB_PATH)));
|
||||
return true;
|
||||
}
|
||||
|
|
@ -134,7 +140,7 @@ public class CommonUtils {
|
|||
public static String getHdfsDataBasePath() {
|
||||
String resourceUploadPath = PropertyUtils.getString(RESOURCE_UPLOAD_PATH, "/dolphinscheduler");
|
||||
if ("/".equals(resourceUploadPath)) {
|
||||
// if basepath is configured to /, the generated url may be //default/resources (with extra leading /)
|
||||
// if basepath is configured to /, the generated url may be //default/resources (with extra leading /)
|
||||
return "";
|
||||
} else {
|
||||
return resourceUploadPath;
|
||||
|
|
|
|||
|
|
@ -46,8 +46,10 @@ import java.io.InputStream;
|
|||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.stream.Collectors;
|
||||
|
|
@ -166,8 +168,9 @@ public class LoggerRequestProcessor implements NettyRequestProcessor {
|
|||
if (!checkPathSecurity(logPath)) {
|
||||
throw new IllegalArgumentException("Illegal path");
|
||||
}
|
||||
List<String> appIds = LogUtils.getAppIdsFromLogFile(logPath);
|
||||
channel.writeAndFlush(new GetAppIdResponseCommand(appIds).convert2Command(command.getOpaque()));
|
||||
Set<String> appIds = LogUtils.getAppIdsFromLogFile(logPath);
|
||||
channel.writeAndFlush(
|
||||
new GetAppIdResponseCommand(new ArrayList<>(appIds)).convert2Command(command.getOpaque()));
|
||||
break;
|
||||
default:
|
||||
throw new IllegalArgumentException("unknown commandType: " + commandType);
|
||||
|
|
|
|||
|
|
@ -68,6 +68,7 @@ public class TaskExecutionContextBuilder {
|
|||
taskExecutionContext.setCurrentExecutionStatus(TaskExecutionStatus.SUBMITTED_SUCCESS);
|
||||
taskExecutionContext.setCpuQuota(taskInstance.getCpuQuota());
|
||||
taskExecutionContext.setMemoryMax(taskInstance.getMemoryMax());
|
||||
taskExecutionContext.setAppIds(taskInstance.getAppLink());
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@ import org.apache.dolphinscheduler.remote.command.TaskRejectCommand;
|
|||
|
||||
import java.util.Date;
|
||||
|
||||
import io.netty.channel.Channel;
|
||||
import lombok.Data;
|
||||
import io.netty.channel.Channel;
|
||||
|
||||
/**
|
||||
* task event
|
||||
|
|
@ -113,6 +113,7 @@ public class TaskEvent {
|
|||
event.setStartTime(command.getStartTime());
|
||||
event.setExecutePath(command.getExecutePath());
|
||||
event.setLogPath(command.getLogPath());
|
||||
event.setAppIds(command.getAppIds());
|
||||
event.setChannel(channel);
|
||||
event.setWorkerAddress(workerAddress);
|
||||
event.setEvent(TaskEventType.RUNNING);
|
||||
|
|
|
|||
|
|
@ -165,7 +165,6 @@ public class ServerNodeManager implements InitializingBean {
|
|||
// init executor service
|
||||
executorService =
|
||||
Executors.newSingleThreadScheduledExecutor(new NamedThreadFactory("ServerNodeManagerExecutor"));
|
||||
|
||||
executorService.scheduleWithFixedDelay(new WorkerNodeInfoAndGroupDbSyncTask(), 0, 10, TimeUnit.SECONDS);
|
||||
|
||||
// init MasterNodeListener listener
|
||||
|
|
@ -228,8 +227,12 @@ public class ServerNodeManager implements InitializingBean {
|
|||
}
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
protected Set<String> getWorkerAddressByWorkerGroup(Map<String, String> newWorkerNodeInfo,
|
||||
WorkerGroup wg) {
|
||||
=======
|
||||
protected Set<String> getWorkerAddressByWorkerGroup(Map<String, String> newWorkerNodeInfo, WorkerGroup wg) {
|
||||
>>>>>>> 2e61c76c2 ([Improvement] Add remote task model (#11767))
|
||||
Set<String> nodes = new HashSet<>();
|
||||
String[] addrs = wg.getAddrList().split(Constants.COMMA);
|
||||
for (String addr : addrs) {
|
||||
|
|
@ -346,8 +349,13 @@ public class ServerNodeManager implements InitializingBean {
|
|||
logger.warn("current addr:{} is not in active master list",
|
||||
masterConfig.getMasterAddress());
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
logger.info("update master nodes, master size: {}, slot: {}, addr: {}", MASTER_SIZE,
|
||||
MASTER_SLOT, masterConfig.getMasterAddress());
|
||||
=======
|
||||
logger.info("update master nodes, master size: {}, slot: {}, addr: {}", MASTER_SIZE, MASTER_SLOT,
|
||||
masterConfig.getMasterAddress());
|
||||
>>>>>>> 2e61c76c2 ([Improvement] Add remote task model (#11767))
|
||||
} finally {
|
||||
masterLock.unlock();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -386,7 +386,7 @@ public class WorkflowExecuteRunnable implements Callable<WorkflowSubmitStatue> {
|
|||
if (!processInstance.isBlocked()) {
|
||||
submitPostNode(Long.toString(taskInstance.getTaskCode()));
|
||||
}
|
||||
} else if (taskInstance.taskCanRetry() && processInstance.getState().isReadyStop()) {
|
||||
} else if (taskInstance.taskCanRetry() && !processInstance.getState().isReadyStop()) {
|
||||
// retry task
|
||||
logger.info("Retry taskInstance taskInstance state: {}", taskInstance.getState());
|
||||
retryTaskInstance(taskInstance);
|
||||
|
|
@ -842,6 +842,9 @@ public class WorkflowExecuteRunnable implements Callable<WorkflowSubmitStatue> {
|
|||
}
|
||||
if (task.taskCanRetry()) {
|
||||
if (task.getState().isNeedFaultTolerance()) {
|
||||
task.setFlag(Flag.NO);
|
||||
processService.updateTaskInstance(task);
|
||||
|
||||
// tolerantTaskInstance add to standby list directly
|
||||
TaskInstance tolerantTaskInstance = cloneTolerantTaskInstance(task);
|
||||
addTaskToStandByList(tolerantTaskInstance);
|
||||
|
|
@ -1080,6 +1083,11 @@ public class WorkflowExecuteRunnable implements Callable<WorkflowSubmitStatue> {
|
|||
// todo relative funtion: TaskInstance.retryTaskIntervalOverTime
|
||||
newTaskInstance.setState(taskInstance.getState());
|
||||
newTaskInstance.setEndTime(taskInstance.getEndTime());
|
||||
|
||||
if (taskInstance.getState() == TaskExecutionStatus.NEED_FAULT_TOLERANCE) {
|
||||
newTaskInstance.setAppLink(taskInstance.getAppLink());
|
||||
}
|
||||
|
||||
return newTaskInstance;
|
||||
}
|
||||
|
||||
|
|
@ -1100,6 +1108,7 @@ public class WorkflowExecuteRunnable implements Callable<WorkflowSubmitStatue> {
|
|||
newTaskInstance.setProcessInstance(processInstance);
|
||||
newTaskInstance.setRetryTimes(taskInstance.getRetryTimes());
|
||||
newTaskInstance.setState(taskInstance.getState());
|
||||
newTaskInstance.setAppLink(taskInstance.getAppLink());
|
||||
return newTaskInstance;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -17,13 +17,7 @@
|
|||
|
||||
package org.apache.dolphinscheduler.server.master.service;
|
||||
|
||||
import io.micrometer.core.annotation.Counted;
|
||||
import io.micrometer.core.annotation.Timed;
|
||||
import lombok.NonNull;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.commons.lang3.time.StopWatch;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.Flag;
|
||||
import org.apache.dolphinscheduler.common.enums.NodeType;
|
||||
import org.apache.dolphinscheduler.common.model.Server;
|
||||
import org.apache.dolphinscheduler.common.utils.LoggerUtils;
|
||||
|
|
@ -47,9 +41,9 @@ import org.apache.dolphinscheduler.server.utils.ProcessUtils;
|
|||
import org.apache.dolphinscheduler.service.process.ProcessService;
|
||||
import org.apache.dolphinscheduler.service.registry.RegistryClient;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.commons.lang3.time.StopWatch;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
|
@ -57,6 +51,15 @@ import java.util.Optional;
|
|||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import lombok.NonNull;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import io.micrometer.core.annotation.Counted;
|
||||
import io.micrometer.core.annotation.Timed;
|
||||
|
||||
@Service
|
||||
public class MasterFailoverService {
|
||||
|
||||
|
|
@ -241,7 +244,6 @@ public class MasterFailoverService {
|
|||
}
|
||||
|
||||
taskInstance.setState(TaskExecutionStatus.NEED_FAULT_TOLERANCE);
|
||||
taskInstance.setFlag(Flag.NO);
|
||||
processService.saveTaskInstance(taskInstance);
|
||||
}
|
||||
|
||||
|
|
@ -285,7 +287,8 @@ public class MasterFailoverService {
|
|||
// The processInstance is newly created
|
||||
return false;
|
||||
}
|
||||
if (processInstance.getRestartTime() != null && processInstance.getRestartTime().after(beFailoveredMasterStartupTime)) {
|
||||
if (processInstance.getRestartTime() != null
|
||||
&& processInstance.getRestartTime().after(beFailoveredMasterStartupTime)) {
|
||||
// the processInstance is already be failovered.
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
package org.apache.dolphinscheduler.service.log;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.apache.dolphinscheduler.common.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.common.utils.LoggerUtils;
|
||||
import org.apache.dolphinscheduler.common.utils.NetUtils;
|
||||
|
|
@ -37,11 +36,16 @@ import org.apache.dolphinscheduler.remote.command.log.ViewLogResponseCommand;
|
|||
import org.apache.dolphinscheduler.remote.config.NettyClientConfig;
|
||||
import org.apache.dolphinscheduler.remote.exceptions.RemotingException;
|
||||
import org.apache.dolphinscheduler.remote.utils.Host;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.NonNull;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* log client
|
||||
|
|
@ -92,7 +96,8 @@ public class LogClientService implements AutoCloseable {
|
|||
* @return log content
|
||||
*/
|
||||
public String rollViewLog(String host, int port, String path, int skipLineNum, int limit) {
|
||||
logger.info("roll view log, host : {}, port : {}, path {}, skipLineNum {} ,limit {}", host, port, path, skipLineNum, limit);
|
||||
logger.info("roll view log, host : {}, port : {}, path {}, skipLineNum {} ,limit {}", host, port, path,
|
||||
skipLineNum, limit);
|
||||
RollViewLogRequestCommand request = new RollViewLogRequestCommand(path, skipLineNum, limit);
|
||||
String result = "";
|
||||
final Host address = new Host(host, port);
|
||||
|
|
@ -202,18 +207,20 @@ public class LogClientService implements AutoCloseable {
|
|||
return result;
|
||||
}
|
||||
|
||||
public @Nullable List<String> getAppIds(@NonNull String host, int port, @NonNull String taskLogFilePath) throws RemotingException, InterruptedException {
|
||||
public @Nullable List<String> getAppIds(@NonNull String host, int port,
|
||||
@NonNull String taskLogFilePath) throws RemotingException, InterruptedException {
|
||||
logger.info("Begin to get appIds from worker: {}:{} taskLogPath: {}", host, port, taskLogFilePath);
|
||||
final Host workerAddress = new Host(host, port);
|
||||
List<String> appIds = null;
|
||||
try {
|
||||
if (NetUtils.getHost().equals(host)) {
|
||||
appIds = LogUtils.getAppIdsFromLogFile(taskLogFilePath);
|
||||
appIds = new ArrayList<>(LogUtils.getAppIdsFromLogFile(taskLogFilePath));
|
||||
} else {
|
||||
final Command command = new GetAppIdRequestCommand(taskLogFilePath).convert2Command();
|
||||
Command response = this.client.sendSync(workerAddress, command, LOG_REQUEST_TIMEOUT);
|
||||
if (response != null) {
|
||||
GetAppIdResponseCommand responseCommand = JSONUtils.parseObject(response.getBody(), GetAppIdResponseCommand.class);
|
||||
GetAppIdResponseCommand responseCommand =
|
||||
JSONUtils.parseObject(response.getBody(), GetAppIdResponseCommand.class);
|
||||
appIds = responseCommand.getAppIds();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* 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.plugin.task.api;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ApplicationInfo;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
public abstract class AbstractRemoteTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* constructor
|
||||
*
|
||||
* @param taskExecutionContext taskExecutionContext
|
||||
*/
|
||||
protected AbstractRemoteTask(TaskExecutionContext taskExecutionContext) {
|
||||
super(taskExecutionContext);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancel() throws TaskException {
|
||||
this.cancelApplication();
|
||||
}
|
||||
|
||||
public abstract Set<String> getApplicationIds() throws TaskException;
|
||||
|
||||
public abstract void cancelApplication() throws TaskException;
|
||||
|
||||
/**
|
||||
* If appIds is empty, submit a new remote application; otherwise, just track application status.
|
||||
*
|
||||
* @param taskCallBack
|
||||
* @throws TaskException
|
||||
*/
|
||||
@Override
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
// if appIds is not empty, just track application status, avoid resubmitting remote task
|
||||
if (StringUtils.isNotEmpty(taskRequest.getAppIds())) {
|
||||
setAppIds(taskRequest.getAppIds());
|
||||
trackApplicationStatus();
|
||||
return;
|
||||
}
|
||||
|
||||
// submit a remote application
|
||||
submitApplication();
|
||||
|
||||
if (StringUtils.isNotEmpty(getAppIds())) {
|
||||
taskRequest.setAppIds(getAppIds());
|
||||
// callback to update remote application info
|
||||
taskCallBack.updateRemoteApplicationInfo(taskRequest.getTaskInstanceId(), new ApplicationInfo(getAppIds()));
|
||||
}
|
||||
|
||||
// keep tracking application status
|
||||
trackApplicationStatus();
|
||||
}
|
||||
|
||||
/**
|
||||
* submit a new remote application and get application info
|
||||
*
|
||||
* @return
|
||||
* @throws TaskException
|
||||
*/
|
||||
public abstract void submitApplication() throws TaskException;
|
||||
|
||||
/**
|
||||
* keep checking application status
|
||||
* @throws TaskException
|
||||
*/
|
||||
public abstract void trackApplicationStatus() throws TaskException;
|
||||
}
|
||||
|
|
@ -18,6 +18,7 @@
|
|||
package org.apache.dolphinscheduler.plugin.task.api;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.enums.TaskExecutionStatus;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.TaskAlertInfo;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parameters.AbstractParameters;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
|
@ -29,19 +30,28 @@ import java.io.IOException;
|
|||
import java.io.InputStreamReader;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.StringJoiner;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.slf4j.Marker;
|
||||
import org.slf4j.MarkerFactory;
|
||||
|
||||
/**
|
||||
* executive task
|
||||
*/
|
||||
public abstract class AbstractTask {
|
||||
|
||||
/**
|
||||
* rules for extracting application ID
|
||||
*/
|
||||
protected static final Pattern YARN_APPLICATION_REGEX = Pattern.compile(TaskConstants.YARN_APPLICATION_REGEX);
|
||||
public static final Marker FINALIZE_SESSION_MARKER = MarkerFactory.getMarker("FINALIZE_SESSION");
|
||||
|
||||
protected final Logger logger = LoggerFactory.getLogger(String.format(TaskConstants.TASK_LOG_LOGGER_NAME_FORMAT, getClass()));
|
||||
|
||||
public String rgex = "['\"]*\\$\\{(.*?)\\}['\"]*";
|
||||
|
||||
/**
|
||||
* varPool string
|
||||
|
|
@ -68,11 +78,6 @@ public abstract class AbstractTask {
|
|||
*/
|
||||
protected String appIds;
|
||||
|
||||
/**
|
||||
* cancel flag
|
||||
*/
|
||||
protected volatile boolean cancel = false;
|
||||
|
||||
/**
|
||||
* exit code
|
||||
*/
|
||||
|
|
@ -101,6 +106,7 @@ public abstract class AbstractTask {
|
|||
return null;
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
public abstract void handle() throws TaskException;
|
||||
|
||||
/**
|
||||
|
|
@ -156,6 +162,9 @@ public abstract class AbstractTask {
|
|||
}
|
||||
return null;
|
||||
}
|
||||
public abstract void handle(TaskCallBack taskCallBack) throws TaskException;
|
||||
|
||||
public abstract void cancel() throws TaskException;
|
||||
|
||||
public void setVarPool(String varPool) {
|
||||
this.varPool = varPool;
|
||||
|
|
@ -178,14 +187,6 @@ public abstract class AbstractTask {
|
|||
this.exitStatusCode = exitStatusCode;
|
||||
}
|
||||
|
||||
public String getAppIds() {
|
||||
return appIds;
|
||||
}
|
||||
|
||||
public void setAppIds(String appIds) {
|
||||
this.appIds = appIds;
|
||||
}
|
||||
|
||||
public int getProcessId() {
|
||||
return processId;
|
||||
}
|
||||
|
|
@ -202,6 +203,14 @@ public abstract class AbstractTask {
|
|||
this.resultString = resultString;
|
||||
}
|
||||
|
||||
public String getAppIds() {
|
||||
return appIds;
|
||||
}
|
||||
|
||||
public void setAppIds(String appIds) {
|
||||
this.appIds = appIds;
|
||||
}
|
||||
|
||||
public boolean getNeedAlert() {
|
||||
return needAlert;
|
||||
}
|
||||
|
|
@ -245,4 +254,52 @@ public abstract class AbstractTask {
|
|||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* log handle
|
||||
*
|
||||
* @param logs log list
|
||||
*/
|
||||
public void logHandle(LinkedBlockingQueue<String> logs) {
|
||||
// note that the "new line" is added here to facilitate log parsing
|
||||
if (logs.contains(FINALIZE_SESSION_MARKER.toString())) {
|
||||
logger.info(FINALIZE_SESSION_MARKER, FINALIZE_SESSION_MARKER.toString());
|
||||
} else {
|
||||
StringJoiner joiner = new StringJoiner("\n\t");
|
||||
while (!logs.isEmpty()) {
|
||||
joiner.add(logs.poll());
|
||||
}
|
||||
logger.info(" -> {}", joiner);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* regular expressions match the contents between two specified strings
|
||||
*
|
||||
* @param content content
|
||||
* @param rgex rgex
|
||||
* @param sqlParamsMap sql params map
|
||||
* @param paramsPropsMap params props map
|
||||
*/
|
||||
public void setSqlParamsMap(String content, String rgex, Map<Integer, Property> sqlParamsMap,
|
||||
Map<String, Property> paramsPropsMap,int taskInstanceId) {
|
||||
Pattern pattern = Pattern.compile(rgex);
|
||||
Matcher m = pattern.matcher(content);
|
||||
int index = 1;
|
||||
while (m.find()) {
|
||||
|
||||
String paramName = m.group(1);
|
||||
Property prop = paramsPropsMap.get(paramName);
|
||||
|
||||
if (prop == null) {
|
||||
logger.error("setSqlParamsMap: No Property with paramName: {} is found in paramsPropsMap of task instance"
|
||||
+ " with id: {}. So couldn't put Property in sqlParamsMap.", paramName, taskInstanceId);
|
||||
} else {
|
||||
sqlParamsMap.put(index, prop);
|
||||
index++;
|
||||
logger.info("setSqlParamsMap: Property with paramName: {} put in sqlParamsMap of content {} successfully.", paramName, content);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,97 +0,0 @@
|
|||
/*
|
||||
* 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.plugin.task.api;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.StringJoiner;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.slf4j.Marker;
|
||||
import org.slf4j.MarkerFactory;
|
||||
|
||||
public abstract class AbstractTaskExecutor extends AbstractTask {
|
||||
|
||||
public static final Marker FINALIZE_SESSION_MARKER = MarkerFactory.getMarker("FINALIZE_SESSION");
|
||||
|
||||
protected final Logger logger = LoggerFactory.getLogger(String.format(TaskConstants.TASK_LOG_LOGGER_NAME_FORMAT, getClass()));
|
||||
|
||||
public String rgex = "['\"]*\\$\\{(.*?)\\}['\"]*";
|
||||
/**
|
||||
* constructor
|
||||
*
|
||||
* @param taskRequest taskRequest
|
||||
*/
|
||||
protected AbstractTaskExecutor(TaskExecutionContext taskRequest) {
|
||||
super(taskRequest);
|
||||
}
|
||||
|
||||
/**
|
||||
* log handle
|
||||
*
|
||||
* @param logs log list
|
||||
*/
|
||||
public void logHandle(LinkedBlockingQueue<String> logs) {
|
||||
// note that the "new line" is added here to facilitate log parsing
|
||||
if (logs.contains(FINALIZE_SESSION_MARKER.toString())) {
|
||||
logger.info(FINALIZE_SESSION_MARKER, FINALIZE_SESSION_MARKER.toString());
|
||||
} else {
|
||||
StringJoiner joiner = new StringJoiner("\n\t");
|
||||
while (!logs.isEmpty()) {
|
||||
joiner.add(logs.poll());
|
||||
}
|
||||
logger.info(" -> {}", joiner);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* regular expressions match the contents between two specified strings
|
||||
*
|
||||
* @param content content
|
||||
* @param rgex rgex
|
||||
* @param sqlParamsMap sql params map
|
||||
* @param paramsPropsMap params props map
|
||||
*/
|
||||
public void setSqlParamsMap(String content, String rgex, Map<Integer, Property> sqlParamsMap,
|
||||
Map<String, Property> paramsPropsMap,int taskInstanceId) {
|
||||
Pattern pattern = Pattern.compile(rgex);
|
||||
Matcher m = pattern.matcher(content);
|
||||
int index = 1;
|
||||
while (m.find()) {
|
||||
|
||||
String paramName = m.group(1);
|
||||
Property prop = paramsPropsMap.get(paramName);
|
||||
|
||||
if (prop == null) {
|
||||
logger.error("setSqlParamsMap: No Property with paramName: {} is found in paramsPropsMap of task instance"
|
||||
+ " with id: {}. So couldn't put Property in sqlParamsMap.", paramName, taskInstanceId);
|
||||
} else {
|
||||
sqlParamsMap.put(index, prop);
|
||||
index++;
|
||||
logger.info("setSqlParamsMap: Property with paramName: {} put in sqlParamsMap of content {} successfully.", paramName, content);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -19,13 +19,16 @@ package org.apache.dolphinscheduler.plugin.task.api;
|
|||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ResourceInfo;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.TaskResponse;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.utils.LogUtils;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* abstract yarn task
|
||||
*/
|
||||
public abstract class AbstractYarnTask extends AbstractTaskExecutor {
|
||||
public abstract class AbstractYarnTask extends AbstractRemoteTask {
|
||||
|
||||
/**
|
||||
* process task
|
||||
|
|
@ -49,8 +52,9 @@ public abstract class AbstractYarnTask extends AbstractTaskExecutor {
|
|||
logger);
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// SHELL task exit code
|
||||
TaskResponse response = shellCommandExecutor.run(buildCommand());
|
||||
|
|
@ -70,17 +74,54 @@ public abstract class AbstractYarnTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
// todo
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* cancel application
|
||||
*
|
||||
* @param status status
|
||||
* @throws Exception exception
|
||||
* @throws TaskException exception
|
||||
*/
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
cancel = true;
|
||||
public void cancelApplication() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* get application ids
|
||||
* @return
|
||||
* @throws TaskException
|
||||
*/
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return LogUtils.getAppIdsFromLogFile(taskRequest.getLogPath(), logger);
|
||||
}
|
||||
|
||||
/**
|
||||
* find app id
|
||||
*
|
||||
* @param line line
|
||||
* @return appid
|
||||
*/
|
||||
protected String findAppId(String line) {
|
||||
Matcher matcher = YARN_APPLICATION_REGEX.matcher(line);
|
||||
if (matcher.find()) {
|
||||
return matcher.group();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* 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.plugin.task.api;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ApplicationInfo;
|
||||
|
||||
public interface TaskCallBack {
|
||||
|
||||
public void updateRemoteApplicationInfo(int taskInstanceId, ApplicationInfo applicationInfo);
|
||||
}
|
||||
|
|
@ -17,11 +17,11 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.enums;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.EnumValue;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.EnumValue;
|
||||
|
||||
public enum TaskExecutionStatus {
|
||||
|
||||
SUBMITTED_SUCCESS(0, "submit success"),
|
||||
|
|
@ -80,7 +80,7 @@ public enum TaskExecutionStatus {
|
|||
}
|
||||
|
||||
public boolean isFailure() {
|
||||
return this == TaskExecutionStatus.FAILURE;
|
||||
return this == TaskExecutionStatus.FAILURE || this == NEED_FAULT_TOLERANCE;
|
||||
}
|
||||
|
||||
public boolean isPause() {
|
||||
|
|
|
|||
|
|
@ -17,13 +17,15 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.k8s;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.k8s.impl.K8sTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.TaskResponse;
|
||||
|
||||
public abstract class AbstractK8sTask extends AbstractTaskExecutor {
|
||||
public abstract class AbstractK8sTask extends AbstractRemoteTask {
|
||||
/**
|
||||
* process task
|
||||
*/
|
||||
|
|
@ -38,8 +40,9 @@ public abstract class AbstractK8sTask extends AbstractTaskExecutor {
|
|||
this.abstractK8sTaskExecutor = new K8sTaskExecutor(logger,taskRequest);
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
TaskResponse response = abstractK8sTaskExecutor.run(buildCommand());
|
||||
setExitStatusCode(response.getExitStatusCode());
|
||||
|
|
@ -50,15 +53,25 @@ public abstract class AbstractK8sTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
// todo
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* cancel application
|
||||
*
|
||||
* @param status status
|
||||
* @throws Exception exception
|
||||
*/
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
cancel = true;
|
||||
public void cancelApplication() throws TaskException {
|
||||
// cancel process
|
||||
abstractK8sTaskExecutor.cancelApplication(buildCommand());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,10 +17,12 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.loop;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ApplicationInfo;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.utils.RetryUtils;
|
||||
|
||||
import java.time.Duration;
|
||||
|
|
@ -34,7 +36,12 @@ import lombok.NonNull;
|
|||
* <p>
|
||||
* The loop task type means, we will submit a task, and loop the task status until the task is finished.
|
||||
*/
|
||||
public abstract class BaseLoopTaskExecutor extends AbstractTaskExecutor {
|
||||
public abstract class BaseLoopTaskExecutor extends AbstractRemoteTask {
|
||||
|
||||
/**
|
||||
* cancel flag
|
||||
*/
|
||||
protected volatile boolean cancel = false;
|
||||
|
||||
/**
|
||||
* The task instance info will be set when task has submitted successful.
|
||||
|
|
@ -46,11 +53,13 @@ public abstract class BaseLoopTaskExecutor extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
final long loopInterval = getTaskInstanceStatusQueryInterval().toMillis();
|
||||
loopTaskInstanceInfo = submitLoopTask();
|
||||
this.appIds = loopTaskInstanceInfo.getTaskInstanceId();
|
||||
this.setAppIds(loopTaskInstanceInfo.getTaskInstanceId());
|
||||
taskCallBack.updateRemoteApplicationInfo(taskRequest.getTaskInstanceId(), new ApplicationInfo(getAppIds()));
|
||||
|
||||
// loop the task status until the task is finished or task has been canceled.
|
||||
// we use retry utils here to avoid the task status query failure due to network failure.
|
||||
// the default retry policy is 3 times, and the interval is 1 second.
|
||||
|
|
@ -94,8 +103,7 @@ public abstract class BaseLoopTaskExecutor extends AbstractTaskExecutor {
|
|||
/**
|
||||
* Query the loop task status, if query failed, directly throw exception
|
||||
*/
|
||||
public abstract @NonNull LoopTaskInstanceStatus queryTaskInstanceStatus(@NonNull LoopTaskInstanceInfo taskInstanceInfo)
|
||||
throws TaskException;
|
||||
public abstract @NonNull LoopTaskInstanceStatus queryTaskInstanceStatus(@NonNull LoopTaskInstanceInfo taskInstanceInfo) throws TaskException;
|
||||
|
||||
/**
|
||||
* Get the interval time to query the loop task status
|
||||
|
|
@ -110,8 +118,8 @@ public abstract class BaseLoopTaskExecutor extends AbstractTaskExecutor {
|
|||
public abstract void cancelLoopTaskInstance(@Nullable LoopTaskInstanceInfo taskInstanceInfo) throws TaskException;
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
public void cancelApplication() throws TaskException {
|
||||
this.cancel = true;
|
||||
cancelLoopTaskInstance(loopTaskInstanceInfo);
|
||||
super.cancelApplication(status);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* 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.plugin.task.api.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class ApplicationInfo {
|
||||
|
||||
String appIds;
|
||||
}
|
||||
|
|
@ -17,8 +17,6 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.stream;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public interface StreamTask {
|
||||
public void savePoint() throws Exception;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,47 +17,46 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.utils;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.experimental.UtilityClass;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.slf4j.Logger;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.experimental.UtilityClass;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
|
||||
@Slf4j
|
||||
@UtilityClass
|
||||
public class LogUtils {
|
||||
|
||||
private static final Pattern APPLICATION_REGEX = Pattern.compile(TaskConstants.YARN_APPLICATION_REGEX);
|
||||
|
||||
public List<String> getAppIdsFromLogFile(@NonNull String logPath) {
|
||||
public Set<String> getAppIdsFromLogFile(@NonNull String logPath) {
|
||||
return getAppIdsFromLogFile(logPath, log);
|
||||
}
|
||||
|
||||
public List<String> getAppIdsFromLogFile(@NonNull String logPath, Logger logger) {
|
||||
public Set<String> getAppIdsFromLogFile(@NonNull String logPath, Logger logger) {
|
||||
File logFile = new File(logPath);
|
||||
if (!logFile.exists() || !logFile.isFile()) {
|
||||
return Collections.emptyList();
|
||||
return Collections.emptySet();
|
||||
}
|
||||
Set<String> appIds = new HashSet<>();
|
||||
try (Stream<String> stream = Files.lines(Paths.get(logPath))) {
|
||||
stream.filter(line -> {
|
||||
Matcher matcher = APPLICATION_REGEX.matcher(line);
|
||||
return matcher.find();
|
||||
}
|
||||
).forEach(line -> {
|
||||
Matcher matcher = APPLICATION_REGEX.matcher(line);
|
||||
return matcher.find();
|
||||
}).forEach(line -> {
|
||||
Matcher matcher = APPLICATION_REGEX.matcher(line);
|
||||
if (matcher.find()) {
|
||||
String appId = matcher.group();
|
||||
|
|
@ -66,10 +65,10 @@ public class LogUtils {
|
|||
}
|
||||
}
|
||||
});
|
||||
return new ArrayList<>(appIds);
|
||||
return appIds;
|
||||
} catch (IOException e) {
|
||||
logger.error("Get appId from log file erro, logPath: {}", logPath, e);
|
||||
return Collections.emptyList();
|
||||
return Collections.emptySet();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,11 +17,12 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.utils;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
import java.util.Set;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.List;
|
||||
import com.google.common.collect.Sets;
|
||||
|
||||
public class LogUtilsTest {
|
||||
|
||||
|
|
@ -30,7 +31,7 @@ public class LogUtilsTest {
|
|||
|
||||
@Test
|
||||
public void getAppIdsFromLogFile() {
|
||||
List<String> appIds = LogUtils.getAppIdsFromLogFile(APP_ID_FILE);
|
||||
Assert.assertEquals(Lists.newArrayList("application_1548381669007_1234"), appIds);
|
||||
Set<String> appIds = LogUtils.getAppIdsFromLogFile(APP_ID_FILE);
|
||||
Assert.assertEquals(Sets.newHashSet("application_1548381669007_1234"), appIds);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,9 +18,11 @@
|
|||
package org.apache.dolphinscheduler.plugin.task.chunjun;
|
||||
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.commons.lang.SystemUtils;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -41,6 +43,7 @@ import java.nio.file.attribute.FileAttribute;
|
|||
import java.nio.file.attribute.PosixFilePermission;
|
||||
import java.nio.file.attribute.PosixFilePermissions;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
|
@ -51,7 +54,7 @@ import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.RWXR_XR_
|
|||
/**
|
||||
* chunjun task
|
||||
*/
|
||||
public class ChunJunTask extends AbstractTaskExecutor {
|
||||
public class ChunJunTask extends AbstractTask {
|
||||
/**
|
||||
* chunjun path
|
||||
*/
|
||||
|
|
@ -104,7 +107,7 @@ public class ChunJunTask extends AbstractTaskExecutor {
|
|||
* @throws TaskException exception
|
||||
*/
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
Map<String, Property> paramsMap = taskExecutionContext.getPrepareParamsMap();
|
||||
|
||||
|
|
@ -113,7 +116,9 @@ public class ChunJunTask extends AbstractTaskExecutor {
|
|||
TaskResponse commandExecuteResult = shellCommandExecutor.run(shellCommandFilePath);
|
||||
|
||||
setExitStatusCode(commandExecuteResult.getExitStatusCode());
|
||||
setAppIds(String.join(TaskConstants.COMMA, getApplicationIds()));
|
||||
|
||||
// todo get applicationId
|
||||
setAppIds(String.join(TaskConstants.COMMA, Collections.emptySet()));
|
||||
setProcessId(commandExecuteResult.getProcessId());
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
|
|
@ -251,13 +256,16 @@ public class ChunJunTask extends AbstractTaskExecutor {
|
|||
/**
|
||||
* cancel ChunJun process
|
||||
*
|
||||
* @param cancelApplication cancelApplication
|
||||
* @throws Exception if error throws Exception
|
||||
*/
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void cancel() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,8 +33,9 @@ import org.apache.commons.io.FileUtils;
|
|||
import org.apache.commons.lang3.SystemUtils;
|
||||
import org.apache.dolphinscheduler.plugin.datasource.api.plugin.DataSourceClientProvider;
|
||||
import org.apache.dolphinscheduler.plugin.datasource.api.utils.DataSourceUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -75,7 +76,7 @@ import static org.apache.dolphinscheduler.plugin.datasource.api.utils.PasswordUt
|
|||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.RWXR_XR_X;
|
||||
|
||||
public class DataxTask extends AbstractTaskExecutor {
|
||||
public class DataxTask extends AbstractTask {
|
||||
/**
|
||||
* jvm parameters
|
||||
*/
|
||||
|
|
@ -147,7 +148,7 @@ public class DataxTask extends AbstractTaskExecutor {
|
|||
* @throws TaskException if error throws Exception
|
||||
*/
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// replace placeholder,and combine local and global parameters
|
||||
Map<String, Property> paramsMap = taskExecutionContext.getPrepareParamsMap();
|
||||
|
|
@ -158,7 +159,6 @@ public class DataxTask extends AbstractTaskExecutor {
|
|||
TaskResponse commandExecuteResult = shellCommandExecutor.run(shellCommandFilePath);
|
||||
|
||||
setExitStatusCode(commandExecuteResult.getExitStatusCode());
|
||||
setAppIds(String.join(TaskConstants.COMMA, getApplicationIds()));
|
||||
setProcessId(commandExecuteResult.getProcessId());
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
|
|
@ -175,14 +175,16 @@ public class DataxTask extends AbstractTaskExecutor {
|
|||
/**
|
||||
* cancel DataX process
|
||||
*
|
||||
* @param cancelApplication cancelApplication
|
||||
* @throws Exception if error throws Exception
|
||||
* @throws TaskException if error throws Exception
|
||||
*/
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication)
|
||||
throws Exception {
|
||||
public void cancel() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -21,7 +21,10 @@ import com.fasterxml.jackson.core.JsonProcessingException;
|
|||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.fasterxml.jackson.databind.node.MissingNode;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -40,12 +43,14 @@ import org.apache.http.util.EntityUtils;
|
|||
|
||||
import java.net.URI;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
|
||||
public class DinkyTask extends AbstractTaskExecutor {
|
||||
public class DinkyTask extends AbstractRemoteTask {
|
||||
|
||||
/**
|
||||
* taskExecutionContext
|
||||
|
|
@ -67,6 +72,11 @@ public class DinkyTask extends AbstractTaskExecutor {
|
|||
this.taskExecutionContext = taskExecutionContext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
final String taskParams = taskExecutionContext.getTaskParams();
|
||||
|
|
@ -77,8 +87,9 @@ public class DinkyTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
|
||||
String address = this.dinkyParameters.getAddress();
|
||||
|
|
@ -130,6 +141,16 @@ public class DinkyTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* map dinky task status to exitStatusCode
|
||||
*
|
||||
|
|
@ -166,8 +187,7 @@ public class DinkyTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
super.cancelApplication(status);
|
||||
public void cancelApplication() throws TaskException {
|
||||
String address = this.dinkyParameters.getAddress();
|
||||
String taskId = this.dinkyParameters.getTaskId();
|
||||
logger.info("trying terminate dinky task, taskId: {}, address: {}, taskId: {}",
|
||||
|
|
|
|||
|
|
@ -17,9 +17,11 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.dvc;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.TaskResponse;
|
||||
|
|
@ -29,12 +31,10 @@ import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
|
||||
/**
|
||||
* shell task
|
||||
*/
|
||||
public class DvcTask extends AbstractTaskExecutor {
|
||||
public class DvcTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* dvc parameters
|
||||
|
|
@ -75,13 +75,12 @@ public class DvcTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// construct process
|
||||
String command = buildCommand();
|
||||
TaskResponse commandExecuteResult = shellCommandExecutor.run(command);
|
||||
setExitStatusCode(commandExecuteResult.getExitStatusCode());
|
||||
setAppIds(String.join(TaskConstants.COMMA, getApplicationIds()));
|
||||
setProcessId(commandExecuteResult.getProcessId());
|
||||
parameters.dealOutParam(shellCommandExecutor.getVarPool());
|
||||
} catch (InterruptedException e) {
|
||||
|
|
@ -97,9 +96,13 @@ public class DvcTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void cancel() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
public String buildCommand() {
|
||||
|
|
@ -159,12 +162,9 @@ public class DvcTask extends AbstractTaskExecutor {
|
|||
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public AbstractParameters getParameters() {
|
||||
return parameters;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@ import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKN
|
|||
import static com.fasterxml.jackson.databind.DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL;
|
||||
import static com.fasterxml.jackson.databind.MapperFeature.REQUIRE_SETTERS_FOR_GETTERS;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parameters.AbstractParameters;
|
||||
|
|
@ -44,7 +45,7 @@ import com.fasterxml.jackson.databind.PropertyNamingStrategy;
|
|||
*
|
||||
* @since v3.1.0
|
||||
*/
|
||||
public abstract class AbstractEmrTask extends AbstractTaskExecutor {
|
||||
public abstract class AbstractEmrTask extends AbstractRemoteTask {
|
||||
|
||||
final TaskExecutionContext taskExecutionContext;
|
||||
EmrParameters emrParameters;
|
||||
|
|
|
|||
|
|
@ -30,11 +30,15 @@ import com.amazonaws.services.elasticmapreduce.model.StepState;
|
|||
import com.amazonaws.services.elasticmapreduce.model.StepStatus;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import com.google.common.collect.Sets;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
|
|
@ -62,7 +66,12 @@ public class EmrAddStepsTask extends AbstractEmrTask {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
StepStatus stepStatus = null;
|
||||
try {
|
||||
AddJobFlowStepsRequest addJobFlowStepsRequest = createAddJobFlowStepsRequest();
|
||||
|
|
@ -77,13 +86,27 @@ public class EmrAddStepsTask extends AbstractEmrTask {
|
|||
|
||||
stepStatus = getStepStatus();
|
||||
|
||||
} catch (EmrTaskException | SdkBaseException e) {
|
||||
logger.error("emr task submit failed with error", e);
|
||||
throw new TaskException("emr task submit fail", e);
|
||||
} finally {
|
||||
final int exitStatusCode = calculateExitStatusCode(stepStatus);
|
||||
setExitStatusCode(exitStatusCode);
|
||||
logger.info("emr task finished with step status : {}", stepStatus);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
StepStatus stepStatus = getStepStatus();
|
||||
|
||||
try {
|
||||
while (waitingStateSet.contains(stepStatus.getState())) {
|
||||
TimeUnit.SECONDS.sleep(10);
|
||||
stepStatus = getStepStatus();
|
||||
}
|
||||
|
||||
} catch (EmrTaskException | SdkBaseException e) {
|
||||
logger.error("emr task submit failed with error", e);
|
||||
logger.error("emr task failed with error", e);
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
throw new TaskException("Execute emr task failed", e);
|
||||
|
|
@ -154,8 +177,7 @@ public class EmrAddStepsTask extends AbstractEmrTask {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
super.cancelApplication(status);
|
||||
public void cancelApplication() throws TaskException {
|
||||
logger.info("trying cancel emr step, taskId:{}, clusterId:{}, stepId:{}", this.taskExecutionContext.getTaskInstanceId(), clusterId, stepId);
|
||||
CancelStepsRequest cancelStepsRequest = new CancelStepsRequest().withClusterId(clusterId).withStepIds(stepId);
|
||||
CancelStepsResult cancelStepsResult = emrClient.cancelSteps(cancelStepsRequest);
|
||||
|
|
|
|||
|
|
@ -21,7 +21,9 @@ import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
|||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import com.amazonaws.SdkBaseException;
|
||||
|
|
@ -41,10 +43,9 @@ import com.google.common.collect.Sets;
|
|||
public class EmrJobFlowTask extends AbstractEmrTask {
|
||||
|
||||
private final HashSet<String> waitingStateSet = Sets.newHashSet(
|
||||
ClusterState.STARTING.toString(),
|
||||
ClusterState.BOOTSTRAPPING.toString(),
|
||||
ClusterState.RUNNING.toString()
|
||||
);
|
||||
ClusterState.STARTING.toString(),
|
||||
ClusterState.BOOTSTRAPPING.toString(),
|
||||
ClusterState.RUNNING.toString());
|
||||
|
||||
/**
|
||||
* constructor
|
||||
|
|
@ -56,7 +57,12 @@ public class EmrJobFlowTask extends AbstractEmrTask {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
ClusterStatus clusterStatus = null;
|
||||
try {
|
||||
RunJobFlowRequest runJobFlowRequest = createRunJobFlowRequest();
|
||||
|
|
@ -65,18 +71,34 @@ public class EmrJobFlowTask extends AbstractEmrTask {
|
|||
RunJobFlowResult result = emrClient.runJobFlow(runJobFlowRequest);
|
||||
|
||||
clusterId = result.getJobFlowId();
|
||||
// Failover on EMR Task type has not been implemented. In this time, DS only supports failover on yarn task type . Other task type, such as EMR task, k8s task not ready yet.
|
||||
// Failover on EMR Task type has not been implemented. In this time, DS only supports failover on yarn task
|
||||
// type . Other task type, such as EMR task, k8s task not ready yet.
|
||||
setAppIds(clusterId);
|
||||
|
||||
clusterStatus = getClusterStatus();
|
||||
|
||||
} catch (EmrTaskException | SdkBaseException e) {
|
||||
logger.error("emr task submit failed with error", e);
|
||||
throw new TaskException("emr task submit failed", e);
|
||||
} finally {
|
||||
final int exitStatusCode = calculateExitStatusCode(clusterStatus);
|
||||
setExitStatusCode(exitStatusCode);
|
||||
logger.info("emr task finished with cluster status : {}", clusterStatus);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
ClusterStatus clusterStatus = null;
|
||||
try {
|
||||
clusterStatus = getClusterStatus();
|
||||
|
||||
while (waitingStateSet.contains(clusterStatus.getState())) {
|
||||
TimeUnit.SECONDS.sleep(10);
|
||||
clusterStatus = getClusterStatus();
|
||||
}
|
||||
|
||||
} catch (EmrTaskException | SdkBaseException e) {
|
||||
logger.error("emr task submit failed with error", e);
|
||||
logger.error("emr task failed with error", e);
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
throw new TaskException("Execute emr task failed", e);
|
||||
|
|
@ -123,7 +145,8 @@ public class EmrJobFlowTask extends AbstractEmrTask {
|
|||
case TERMINATED:
|
||||
case TERMINATING:
|
||||
String code = stateChangeReason.getCode();
|
||||
if (code != null && code.equalsIgnoreCase(ClusterStateChangeReasonCode.ALL_STEPS_COMPLETED.toString())) {
|
||||
if (code != null
|
||||
&& code.equalsIgnoreCase(ClusterStateChangeReasonCode.ALL_STEPS_COMPLETED.toString())) {
|
||||
return TaskConstants.EXIT_CODE_SUCCESS;
|
||||
} else {
|
||||
return TaskConstants.EXIT_CODE_KILL;
|
||||
|
|
@ -148,9 +171,9 @@ public class EmrJobFlowTask extends AbstractEmrTask {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
super.cancelApplication(status);
|
||||
logger.info("trying terminate job flow, taskId:{}, clusterId:{}", this.taskExecutionContext.getTaskInstanceId(), clusterId);
|
||||
public void cancelApplication() throws TaskException {
|
||||
logger.info("trying terminate job flow, taskId:{}, clusterId:{}", this.taskExecutionContext.getTaskInstanceId(),
|
||||
clusterId);
|
||||
TerminateJobFlowsRequest terminateJobFlowsRequest = new TerminateJobFlowsRequest().withJobFlowIds(clusterId);
|
||||
TerminateJobFlowsResult terminateJobFlowsResult = emrClient.terminateJobFlows(terminateJobFlowsRequest);
|
||||
logger.info("the result of terminate job flow is:{}", terminateJobFlowsResult);
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ import static org.powermock.api.mockito.PowerMockito.mockStatic;
|
|||
import static org.powermock.api.mockito.PowerMockito.spy;
|
||||
import static org.powermock.api.mockito.PowerMockito.when;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
|
||||
|
|
@ -88,6 +90,9 @@ public class EmrAddStepsTaskTest {
|
|||
private EmrAddStepsTask emrAddStepsTask;
|
||||
private AmazonElasticMapReduce emrClient;
|
||||
private Step step;
|
||||
private TaskCallBack taskCallBack = (taskInstanceId, appIds) -> {
|
||||
|
||||
};
|
||||
|
||||
@Before
|
||||
public void before() throws Exception {
|
||||
|
|
@ -116,15 +121,14 @@ public class EmrAddStepsTaskTest {
|
|||
emrAddStepsTask.init();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(expected = TaskException.class)
|
||||
public void testCanNotParseJson() throws Exception {
|
||||
mockStatic(JSONUtils.class);
|
||||
when(emrAddStepsTask, "createAddJobFlowStepsRequest").thenThrow(new EmrTaskException("can not parse AddJobFlowStepsRequest from json", new Exception("error")));
|
||||
emrAddStepsTask.handle();
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrAddStepsTask.getExitStatusCode());
|
||||
emrAddStepsTask.handle(taskCallBack);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(expected = TaskException.class)
|
||||
public void testDefineJsonStepNotOne() throws Exception {
|
||||
// mock EmrParameters and EmrAddStepsTask
|
||||
EmrParameters emrParameters = buildErrorEmrTaskParameters();
|
||||
|
|
@ -134,16 +138,14 @@ public class EmrAddStepsTaskTest {
|
|||
emrAddStepsTask = spy(new EmrAddStepsTask(taskExecutionContext));
|
||||
doReturn(emrClient).when(emrAddStepsTask, "createEmrClient");
|
||||
emrAddStepsTask.init();
|
||||
emrAddStepsTask.handle();
|
||||
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrAddStepsTask.getExitStatusCode());
|
||||
emrAddStepsTask.handle(taskCallBack);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testHandle() throws Exception {
|
||||
when(step.getStatus()).thenReturn(pendingState, runningState, completedState);
|
||||
|
||||
emrAddStepsTask.handle();
|
||||
emrAddStepsTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, emrAddStepsTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
|
|
@ -151,19 +153,18 @@ public class EmrAddStepsTaskTest {
|
|||
public void testHandleUserRequestTerminate() throws Exception {
|
||||
when(step.getStatus()).thenReturn(pendingState, runningState, cancelledState);
|
||||
|
||||
emrAddStepsTask.handle();
|
||||
emrAddStepsTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_KILL, emrAddStepsTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(expected = TaskException.class)
|
||||
public void testHandleError() throws Exception {
|
||||
when(step.getStatus()).thenReturn(pendingState, runningState, failedState);
|
||||
emrAddStepsTask.handle();
|
||||
emrAddStepsTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrAddStepsTask.getExitStatusCode());
|
||||
|
||||
when(emrClient.addJobFlowSteps(any())).thenThrow(new AmazonElasticMapReduceException("error"), new EmrTaskException());
|
||||
emrAddStepsTask.handle();
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrAddStepsTask.getExitStatusCode());
|
||||
emrAddStepsTask.handle(taskCallBack);
|
||||
}
|
||||
|
||||
private EmrParameters buildEmrTaskParameters() {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ import static org.powermock.api.mockito.PowerMockito.mockStatic;
|
|||
import static org.powermock.api.mockito.PowerMockito.spy;
|
||||
import static org.powermock.api.mockito.PowerMockito.when;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
|
||||
|
|
@ -117,6 +119,9 @@ public class EmrJobFlowTaskTest {
|
|||
private EmrJobFlowTask emrJobFlowTask;
|
||||
private AmazonElasticMapReduce emrClient;
|
||||
private Cluster cluster;
|
||||
private TaskCallBack taskCallBack = (taskInstanceId, appIds) -> {
|
||||
|
||||
};
|
||||
|
||||
@Before
|
||||
public void before() throws Exception {
|
||||
|
|
@ -146,7 +151,7 @@ public class EmrJobFlowTaskTest {
|
|||
|
||||
when(cluster.getStatus()).thenReturn(startingStatus, softwareConfigStatus, runningStatus, terminatingStatus);
|
||||
|
||||
emrJobFlowTask.handle();
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, emrJobFlowTask.getExitStatusCode());
|
||||
|
||||
}
|
||||
|
|
@ -155,7 +160,7 @@ public class EmrJobFlowTaskTest {
|
|||
public void testHandleAliveWhenNoSteps() throws Exception {
|
||||
when(cluster.getStatus()).thenReturn(startingStatus, softwareConfigStatus, runningStatus, waitingStatus);
|
||||
|
||||
emrJobFlowTask.handle();
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, emrJobFlowTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
|
|
@ -163,7 +168,7 @@ public class EmrJobFlowTaskTest {
|
|||
public void testHandleUserRequestTerminate() throws Exception {
|
||||
when(cluster.getStatus()).thenReturn(startingStatus, userRequestTerminateStatus);
|
||||
|
||||
emrJobFlowTask.handle();
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_KILL, emrJobFlowTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
|
|
@ -171,36 +176,28 @@ public class EmrJobFlowTaskTest {
|
|||
public void testHandleTerminatedWithError() throws Exception {
|
||||
when(cluster.getStatus()).thenReturn(startingStatus, softwareConfigStatus, runningStatus, terminatedWithErrorsStatus);
|
||||
|
||||
emrJobFlowTask.handle();
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrJobFlowTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(expected = TaskException.class)
|
||||
public void testCanNotParseJson() throws Exception {
|
||||
mockStatic(JSONUtils.class);
|
||||
when(emrJobFlowTask, "createRunJobFlowRequest").thenThrow(new EmrTaskException("can not parse RunJobFlowRequest from json", new Exception("error")));
|
||||
emrJobFlowTask.handle();
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrJobFlowTask.getExitStatusCode());
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(expected = TaskException.class)
|
||||
public void testClusterStatusNull() throws Exception {
|
||||
|
||||
when(emrClient.describeCluster(any())).thenReturn(null);
|
||||
|
||||
emrJobFlowTask.handle();
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrJobFlowTask.getExitStatusCode());
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(expected = TaskException.class)
|
||||
public void testRunJobFlowError() throws Exception {
|
||||
|
||||
when(emrClient.runJobFlow(any())).thenThrow(new AmazonElasticMapReduceException("error"), new EmrTaskException());
|
||||
emrJobFlowTask.handle();
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrJobFlowTask.getExitStatusCode());
|
||||
emrJobFlowTask.handle();
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, emrJobFlowTask.getExitStatusCode());
|
||||
|
||||
emrJobFlowTask.handle(taskCallBack);
|
||||
}
|
||||
|
||||
private String buildEmrTaskParameters() {
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
package org.apache.dolphinscheduler.plugin.task.flink;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ResourceInfo;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parameters.AbstractParameters;
|
||||
|
|
@ -97,7 +98,7 @@ public class FlinkStreamTask extends FlinkTask implements StreamTask {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
public void cancelApplication() throws TaskException {
|
||||
Set<String> appIds = getApplicationIds();
|
||||
if (CollectionUtils.isEmpty(appIds)) {
|
||||
logger.error("can not get appId, taskInstanceId:{}", taskExecutionContext.getTaskInstanceId());
|
||||
|
|
@ -110,8 +111,11 @@ public class FlinkStreamTask extends FlinkTask implements StreamTask {
|
|||
|
||||
ProcessBuilder processBuilder = new ProcessBuilder();
|
||||
processBuilder.command(args);
|
||||
processBuilder.start();
|
||||
super.cancelApplication(status);
|
||||
try {
|
||||
processBuilder.start();
|
||||
} catch (IOException e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ package org.apache.dolphinscheduler.plugin.task.flink;
|
|||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractYarnTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ResourceInfo;
|
||||
|
|
@ -32,6 +33,7 @@ import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
|||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
|
@ -112,7 +114,7 @@ public class FlinkTask extends AbstractYarnTask {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws IOException {
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
Set<String> appIds = new HashSet<>();
|
||||
|
||||
File file = new File(taskRequest.getLogPath());
|
||||
|
|
@ -131,6 +133,10 @@ public class FlinkTask extends AbstractYarnTask {
|
|||
appIds.add(appId);
|
||||
}
|
||||
}
|
||||
} catch (FileNotFoundException e) {
|
||||
throw new TaskException("get application id error, file not found, path:" + taskRequest.getLogPath());
|
||||
} catch (IOException e) {
|
||||
throw new TaskException("get application id error, path:" + taskRequest.getLogPath(), e);
|
||||
}
|
||||
return appIds;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,8 +19,10 @@ package org.apache.dolphinscheduler.plugin.task.hivecli;
|
|||
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
|
|
@ -34,10 +36,12 @@ import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
|||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public class HiveCliTask extends AbstractTaskExecutor {
|
||||
public class HiveCliTask extends AbstractRemoteTask {
|
||||
|
||||
private HiveCliParameters hiveCliParameters;
|
||||
|
||||
|
|
@ -54,6 +58,11 @@ public class HiveCliTask extends AbstractTaskExecutor {
|
|||
logger);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
logger.info("hiveCli task params {}", taskExecutionContext.getTaskParams());
|
||||
|
|
@ -65,8 +74,9 @@ public class HiveCliTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
final TaskResponse taskResponse = shellCommandExecutor.run(buildCommand());
|
||||
setExitStatusCode(taskResponse.getExitStatusCode());
|
||||
|
|
@ -85,6 +95,16 @@ public class HiveCliTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
protected String buildCommand() {
|
||||
|
||||
final List<String> args = new ArrayList<>();
|
||||
|
|
@ -126,8 +146,12 @@ public class HiveCliTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
public void cancelApplication() throws TaskException {
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,14 +19,14 @@ package org.apache.dolphinscheduler.plugin.task.http;
|
|||
|
||||
import static org.apache.dolphinscheduler.plugin.task.http.HttpTaskConstants.APPLICATION_JSON;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parameters.AbstractParameters;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parser.ParamUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parser.ParameterUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.utils.MapUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
|
@ -48,13 +48,12 @@ import org.apache.http.util.EntityUtils;
|
|||
import java.io.IOException;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||||
|
||||
public class HttpTask extends AbstractTaskExecutor {
|
||||
public class HttpTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* output
|
||||
|
|
@ -90,7 +89,7 @@ public class HttpTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
long startTime = System.currentTimeMillis();
|
||||
String formatTimeStamp = DateUtils.formatTimeStamp(startTime);
|
||||
String statusCode = null;
|
||||
|
|
@ -114,6 +113,11 @@ public class HttpTask extends AbstractTaskExecutor {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancel() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* send request
|
||||
*
|
||||
|
|
|
|||
|
|
@ -76,11 +76,11 @@ public class HttpTaskTest {
|
|||
HttpTask headHttpTask = generateHttpTask(HttpMethod.HEAD, HttpStatus.SC_OK);
|
||||
HttpTask putHttpTask = generateHttpTask(HttpMethod.PUT, HttpStatus.SC_OK);
|
||||
HttpTask deleteHttpTask = generateHttpTask(HttpMethod.DELETE, HttpStatus.SC_OK);
|
||||
getHttpTask.handle();
|
||||
postHttpTask.handle();
|
||||
headHttpTask.handle();
|
||||
putHttpTask.handle();
|
||||
deleteHttpTask.handle();
|
||||
getHttpTask.handle(null);
|
||||
postHttpTask.handle(null);
|
||||
headHttpTask.handle(null);
|
||||
putHttpTask.handle(null);
|
||||
deleteHttpTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, getHttpTask.getExitStatusCode());
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, postHttpTask.getExitStatusCode());
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, headHttpTask.getExitStatusCode());
|
||||
|
|
@ -91,7 +91,7 @@ public class HttpTaskTest {
|
|||
@Test
|
||||
public void testHandleCheckCodeDefaultError() throws Exception {
|
||||
HttpTask getHttpTask = generateHttpTask(HttpMethod.GET, HttpStatus.SC_BAD_REQUEST);
|
||||
getHttpTask.handle();
|
||||
getHttpTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, getHttpTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
|
|
@ -102,8 +102,8 @@ public class HttpTaskTest {
|
|||
condition, HttpStatus.SC_CREATED, "");
|
||||
HttpTask httpErrorTask = generateHttpTask(HttpMethod.GET, HttpCheckCondition.STATUS_CODE_CUSTOM,
|
||||
condition, HttpStatus.SC_OK, "");
|
||||
httpTask.handle();
|
||||
httpErrorTask.handle();
|
||||
httpTask.handle(null);
|
||||
httpErrorTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, httpTask.getExitStatusCode());
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, httpErrorTask.getExitStatusCode());
|
||||
}
|
||||
|
|
@ -114,8 +114,8 @@ public class HttpTaskTest {
|
|||
"success", HttpStatus.SC_OK, "{\"status\": \"success\"}");
|
||||
HttpTask httpErrorTask = generateHttpTask(HttpMethod.GET, HttpCheckCondition.BODY_CONTAINS,
|
||||
"success", HttpStatus.SC_OK, "{\"status\": \"failed\"}");
|
||||
httpTask.handle();
|
||||
httpErrorTask.handle();
|
||||
httpTask.handle(null);
|
||||
httpErrorTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, httpTask.getExitStatusCode());
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, httpErrorTask.getExitStatusCode());
|
||||
}
|
||||
|
|
@ -126,8 +126,8 @@ public class HttpTaskTest {
|
|||
"failed", HttpStatus.SC_OK, "{\"status\": \"success\"}");
|
||||
HttpTask httpErrorTask = generateHttpTask(HttpMethod.GET, HttpCheckCondition.BODY_NOT_CONTAINS,
|
||||
"failed", HttpStatus.SC_OK, "{\"status\": \"failed\"}");
|
||||
httpTask.handle();
|
||||
httpErrorTask.handle();
|
||||
httpTask.handle(null);
|
||||
httpErrorTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, httpTask.getExitStatusCode());
|
||||
Assert.assertEquals(EXIT_CODE_FAILURE, httpErrorTask.getExitStatusCode());
|
||||
}
|
||||
|
|
@ -148,7 +148,7 @@ public class HttpTaskTest {
|
|||
HttpTask httpTask = generateHttpTask(MOCK_DISPATCH_PATH_REQ_BODY_TO_RES_BODY, HttpMethod.POST,
|
||||
httpParams, prepareParamsMap, HttpCheckCondition.BODY_CONTAINS, "20220812",
|
||||
HttpStatus.SC_OK, "");
|
||||
httpTask.handle();
|
||||
httpTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, httpTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
|
|
@ -168,7 +168,7 @@ public class HttpTaskTest {
|
|||
HttpTask httpTask = generateHttpTask(MOCK_DISPATCH_PATH_REQ_PARAMS_TO_RES_BODY, HttpMethod.POST,
|
||||
httpParams, prepareParamsMap, HttpCheckCondition.BODY_CONTAINS, "20220812",
|
||||
HttpStatus.SC_OK, "");
|
||||
httpTask.handle();
|
||||
httpTask.handle(null);
|
||||
Assert.assertEquals(EXIT_CODE_SUCCESS, httpTask.getExitStatusCode());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -18,8 +18,11 @@
|
|||
package org.apache.dolphinscheduler.plugin.task.jupyter;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -35,10 +38,12 @@ import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public class JupyterTask extends AbstractTaskExecutor {
|
||||
public class JupyterTask extends AbstractRemoteTask {
|
||||
|
||||
/**
|
||||
* jupyter parameters
|
||||
|
|
@ -60,6 +65,11 @@ public class JupyterTask extends AbstractTaskExecutor {
|
|||
logger);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
logger.info("jupyter task params {}", taskExecutionContext.getTaskParams());
|
||||
|
|
@ -76,8 +86,9 @@ public class JupyterTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// SHELL task exit code
|
||||
TaskResponse response = shellCommandExecutor.run(buildCommand());
|
||||
|
|
@ -96,6 +107,16 @@ public class JupyterTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* create command
|
||||
*
|
||||
|
|
@ -223,9 +244,13 @@ public class JupyterTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void cancelApplication() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -30,7 +30,9 @@ import org.apache.dolphinscheduler.plugin.task.api.parameters.K8sTaskParameters;
|
|||
import org.apache.dolphinscheduler.plugin.task.api.parser.ParamUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public class K8sTask extends AbstractK8sTask {
|
||||
|
||||
|
|
@ -56,6 +58,11 @@ public class K8sTask extends AbstractK8sTask {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public AbstractParameters getParameters() {
|
||||
return k8sTaskParameters;
|
||||
|
|
|
|||
|
|
@ -20,8 +20,9 @@ package org.apache.dolphinscheduler.plugin.task.mlflow;
|
|||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
|
||||
import org.apache.dolphinscheduler.common.thread.ThreadUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -42,7 +43,7 @@ import java.util.regex.Pattern;
|
|||
/**
|
||||
* shell task
|
||||
*/
|
||||
public class MlflowTask extends AbstractTaskExecutor {
|
||||
public class MlflowTask extends AbstractTask {
|
||||
|
||||
private static final Pattern GIT_CHECK_PATTERN = Pattern.compile("^(git@|https?://)");
|
||||
/**
|
||||
|
|
@ -111,7 +112,7 @@ public class MlflowTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// construct process
|
||||
String command = buildCommand();
|
||||
|
|
@ -123,7 +124,6 @@ public class MlflowTask extends AbstractTaskExecutor {
|
|||
exitCode = commandExecuteResult.getExitStatusCode();
|
||||
}
|
||||
setExitStatusCode(exitCode);
|
||||
setAppIds(String.join(TaskConstants.COMMA, getApplicationIds()));
|
||||
setProcessId(commandExecuteResult.getProcessId());
|
||||
mlflowParameters.dealOutParam(shellCommandExecutor.getVarPool());
|
||||
} catch (InterruptedException e) {
|
||||
|
|
@ -139,9 +139,13 @@ public class MlflowTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void cancel() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
public String buildCommand() {
|
||||
|
|
|
|||
|
|
@ -18,7 +18,10 @@
|
|||
package org.apache.dolphinscheduler.plugin.task.pigeon;
|
||||
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -27,6 +30,7 @@ import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
|||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
import org.apache.http.HttpEntity;
|
||||
import org.apache.http.StatusLine;
|
||||
import org.apache.http.client.ClientProtocolException;
|
||||
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||
import org.apache.http.client.methods.HttpPost;
|
||||
import org.apache.http.entity.StringEntity;
|
||||
|
|
@ -36,18 +40,21 @@ import org.apache.http.util.EntityUtils;
|
|||
import org.java_websocket.client.WebSocketClient;
|
||||
import org.java_websocket.handshake.ServerHandshake;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.URI;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
/**
|
||||
* TIS DataX Task
|
||||
**/
|
||||
public class PigeonTask extends AbstractTaskExecutor {
|
||||
public class PigeonTask extends AbstractRemoteTask {
|
||||
|
||||
public static final String KEY_POOL_VAR_PIGEON_HOST = "p_host";
|
||||
private final TaskExecutionContext taskExecutionContext;
|
||||
|
|
@ -62,6 +69,11 @@ public class PigeonTask extends AbstractTaskExecutor {
|
|||
this.config = PigeonConfig.getInstance();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
super.init();
|
||||
|
|
@ -72,8 +84,9 @@ public class PigeonTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
// Trigger PIGEON DataX pipeline
|
||||
logger.info("start execute PIGEON task");
|
||||
long startTime = System.currentTimeMillis();
|
||||
|
|
@ -153,13 +166,22 @@ public class PigeonTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
private void addFormUrlencoded(HttpPost post) {
|
||||
post.addHeader("content-type", "application/x-www-form-urlencoded");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
super.cancelApplication(status);
|
||||
public void cancelApplication() throws TaskException {
|
||||
logger.info("start to cancelApplication");
|
||||
Objects.requireNonNull(triggerResult, "triggerResult can not be null");
|
||||
logger.info("start to cancelApplication taskId:{}", triggerResult.getTaskId());
|
||||
|
|
@ -181,8 +203,12 @@ public class PigeonTask extends AbstractTaskExecutor {
|
|||
if (CollectionUtils.isNotEmpty(errormsg)) {
|
||||
errs.append(",errs:").append(errormsg.stream().collect(Collectors.joining(",")));
|
||||
}
|
||||
throw new Exception("cancel PIGEON job faild taskId:" + triggerResult.getTaskId() + errs.toString());
|
||||
throw new TaskException("cancel PIGEON job faild taskId:" + triggerResult.getTaskId() + errs);
|
||||
}
|
||||
} catch (ClientProtocolException e) {
|
||||
throw new TaskException("client protocol error", e);
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("pigeon execute error", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ public class PigeonTaskTest {
|
|||
file("src/test/resources/org/apache/dolphinscheduler/plugin/task/pigeon/PigeonTaskTest.json"));
|
||||
|
||||
running(server, () -> {
|
||||
pigeonTask.handle();
|
||||
pigeonTask.handle(null);
|
||||
|
||||
Assert.assertEquals("PIGEON execute be success", TaskExecutionStatus.SUCCESS, pigeonTask.getExitStatus());
|
||||
});
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@ import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_COD
|
|||
|
||||
import org.apache.dolphinscheduler.plugin.datasource.api.plugin.DataSourceClientProvider;
|
||||
import org.apache.dolphinscheduler.plugin.datasource.api.utils.DataSourceUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.enums.DataType;
|
||||
|
|
@ -49,7 +50,7 @@ import com.google.common.collect.Maps;
|
|||
/**
|
||||
* procedure task
|
||||
*/
|
||||
public class ProcedureTask extends AbstractTaskExecutor {
|
||||
public class ProcedureTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* procedure parameters
|
||||
|
|
@ -88,7 +89,7 @@ public class ProcedureTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
logger.info("procedure type : {}, datasource : {}, method : {} , localParams : {}",
|
||||
procedureParameters.getType(),
|
||||
procedureParameters.getDatasource(),
|
||||
|
|
@ -142,6 +143,11 @@ public class ProcedureTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancel() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
private String formatSql(Map<Integer, Property> sqlParamsMap, Map<String, Property> paramsMap) {
|
||||
// combining local and global parameters
|
||||
setSqlParamsMap(procedureParameters.getMethod(), rgex, sqlParamsMap, paramsMap,
|
||||
|
|
|
|||
|
|
@ -17,8 +17,9 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.python;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -27,7 +28,6 @@ import org.apache.dolphinscheduler.plugin.task.api.model.TaskResponse;
|
|||
import org.apache.dolphinscheduler.plugin.task.api.parameters.AbstractParameters;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parser.ParamUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.parser.ParameterUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.utils.MapUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
|
||||
import org.apache.commons.io.FileUtils;
|
||||
|
|
@ -37,7 +37,6 @@ import java.io.IOException;
|
|||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import com.google.common.base.Preconditions;
|
||||
|
|
@ -45,7 +44,7 @@ import com.google.common.base.Preconditions;
|
|||
/**
|
||||
* python task
|
||||
*/
|
||||
public class PythonTask extends AbstractTaskExecutor {
|
||||
public class PythonTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* python parameters
|
||||
|
|
@ -100,7 +99,7 @@ public class PythonTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// generate the content of this python script
|
||||
String pythonScriptContent = buildPythonScriptContent();
|
||||
|
|
@ -113,7 +112,6 @@ public class PythonTask extends AbstractTaskExecutor {
|
|||
|
||||
TaskResponse taskResponse = shellCommandExecutor.run(command);
|
||||
setExitStatusCode(taskResponse.getExitStatusCode());
|
||||
setAppIds(String.join(TaskConstants.COMMA, getApplicationIds()));
|
||||
setProcessId(taskResponse.getProcessId());
|
||||
setVarPool(shellCommandExecutor.getVarPool());
|
||||
} catch (Exception e) {
|
||||
|
|
@ -124,9 +122,13 @@ public class PythonTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void cancel() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -17,8 +17,9 @@
|
|||
|
||||
package org.apache.dolphinscheduler.plugin.task.pytorch;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -33,7 +34,7 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class PytorchTask extends AbstractTaskExecutor {
|
||||
public class PytorchTask extends AbstractTask {
|
||||
|
||||
private final ShellCommandExecutor shellCommandExecutor;
|
||||
protected PytorchParameters pytorchParameters;
|
||||
|
|
@ -65,12 +66,11 @@ public class PytorchTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
String command = buildPythonExecuteCommand();
|
||||
TaskResponse taskResponse = shellCommandExecutor.run(command);
|
||||
setExitStatusCode(taskResponse.getExitStatusCode());
|
||||
setAppIds(taskResponse.getAppIds());
|
||||
setProcessId(taskResponse.getProcessId());
|
||||
setVarPool(shellCommandExecutor.getVarPool());
|
||||
} catch (InterruptedException e) {
|
||||
|
|
@ -84,6 +84,11 @@ public class PytorchTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancel() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
|
||||
public String buildPythonExecuteCommand() throws Exception {
|
||||
List<String> args = new ArrayList<>();
|
||||
|
|
|
|||
|
|
@ -23,6 +23,10 @@ import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
|||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
|
|
@ -39,75 +43,57 @@ import com.amazonaws.services.sagemaker.model.StopPipelineExecutionResult;
|
|||
|
||||
public class PipelineUtils {
|
||||
|
||||
protected final Logger logger =
|
||||
LoggerFactory.getLogger(String.format(TaskConstants.TASK_LOG_LOGGER_NAME_FORMAT, getClass()));
|
||||
private static final String EXECUTING = "Executing";
|
||||
private static final String SUCCEEDED = "Succeeded";
|
||||
|
||||
protected final Logger logger = LoggerFactory.getLogger(String.format(TaskConstants.TASK_LOG_LOGGER_NAME_FORMAT, getClass()));
|
||||
private final AmazonSageMaker client;
|
||||
private String pipelineExecutionArn;
|
||||
private String clientRequestToken;
|
||||
private String pipelineStatus;
|
||||
public PipelineId startPipelineExecution(AmazonSageMaker client, StartPipelineExecutionRequest request) {
|
||||
StartPipelineExecutionResult result = client.startPipelineExecution(request);
|
||||
String pipelineExecutionArn = result.getPipelineExecutionArn();
|
||||
String clientRequestToken = request.getClientRequestToken();
|
||||
logger.info("Start success, pipeline: {}, token: {}", pipelineExecutionArn, clientRequestToken);
|
||||
|
||||
public PipelineUtils(AmazonSageMaker client) {
|
||||
this.client = client;
|
||||
return new PipelineId(pipelineExecutionArn, clientRequestToken);
|
||||
}
|
||||
|
||||
public int startPipelineExecution(StartPipelineExecutionRequest request) {
|
||||
int exitStatusCode = TaskConstants.EXIT_CODE_FAILURE;
|
||||
try {
|
||||
StartPipelineExecutionResult result = client.startPipelineExecution(request);
|
||||
pipelineExecutionArn = result.getPipelineExecutionArn();
|
||||
clientRequestToken = request.getClientRequestToken();
|
||||
exitStatusCode = TaskConstants.EXIT_CODE_SUCCESS;
|
||||
logger.info("Start pipeline: {} success", pipelineExecutionArn);
|
||||
} catch (Exception e) {
|
||||
logger.error("Start pipeline error: {}", e.getMessage());
|
||||
}
|
||||
|
||||
return exitStatusCode;
|
||||
}
|
||||
|
||||
public void stopPipelineExecution() {
|
||||
public void stopPipelineExecution(AmazonSageMaker client, PipelineId pipelineId) {
|
||||
StopPipelineExecutionRequest request = new StopPipelineExecutionRequest();
|
||||
request.setPipelineExecutionArn(pipelineExecutionArn);
|
||||
request.setClientRequestToken(clientRequestToken);
|
||||
|
||||
try {
|
||||
StopPipelineExecutionResult result = client.stopPipelineExecution(request);
|
||||
logger.info("Stop pipeline: {} success", result.getPipelineExecutionArn());
|
||||
} catch (Exception e) {
|
||||
logger.error("Stop pipeline error: {}", e.getMessage());
|
||||
}
|
||||
request.setPipelineExecutionArn(pipelineId.getPipelineExecutionArn());
|
||||
request.setClientRequestToken(pipelineId.getClientRequestToken());
|
||||
|
||||
StopPipelineExecutionResult result = client.stopPipelineExecution(request);
|
||||
logger.info("Stop pipeline: {} success", result.getPipelineExecutionArn());
|
||||
}
|
||||
|
||||
public int checkPipelineExecutionStatus() {
|
||||
describePipelineExecution();
|
||||
while (pipelineStatus.equals("Executing")) {
|
||||
public int checkPipelineExecutionStatus(AmazonSageMaker client, PipelineId pipelineId) {
|
||||
String pipelineStatus = describePipelineExecution(client, pipelineId);
|
||||
while (EXECUTING.equals(pipelineStatus)) {
|
||||
logger.info("check Pipeline Steps running");
|
||||
listPipelineExecutionSteps();
|
||||
listPipelineExecutionSteps(client, pipelineId);
|
||||
ThreadUtils.sleep(SagemakerConstants.CHECK_PIPELINE_EXECUTION_STATUS_INTERVAL);
|
||||
describePipelineExecution();
|
||||
describePipelineExecution(client, pipelineId);
|
||||
}
|
||||
|
||||
int exitStatusCode = TaskConstants.EXIT_CODE_FAILURE;
|
||||
if (pipelineStatus.equals("Succeeded")) {
|
||||
if (SUCCEEDED.equals(pipelineStatus)) {
|
||||
exitStatusCode = TaskConstants.EXIT_CODE_SUCCESS;
|
||||
}
|
||||
logger.info("exit : {}", exitStatusCode);
|
||||
logger.info("PipelineExecutionStatus : {}", pipelineStatus);
|
||||
logger.info("PipelineExecutionStatus : {}, exitStatusCode: {}", pipelineStatus, exitStatusCode);
|
||||
return exitStatusCode;
|
||||
}
|
||||
|
||||
private void describePipelineExecution() {
|
||||
private String describePipelineExecution(AmazonSageMaker client, PipelineId pipelineId) {
|
||||
DescribePipelineExecutionRequest request = new DescribePipelineExecutionRequest();
|
||||
request.setPipelineExecutionArn(pipelineExecutionArn);
|
||||
request.setPipelineExecutionArn(pipelineId.getPipelineExecutionArn());
|
||||
DescribePipelineExecutionResult result = client.describePipelineExecution(request);
|
||||
pipelineStatus = result.getPipelineExecutionStatus();
|
||||
logger.info("PipelineExecutionStatus: {}", pipelineStatus);
|
||||
logger.info("PipelineExecutionStatus: {}", result.getPipelineExecutionStatus());
|
||||
return result.getPipelineExecutionStatus();
|
||||
}
|
||||
|
||||
private void listPipelineExecutionSteps() {
|
||||
private void listPipelineExecutionSteps(AmazonSageMaker client, PipelineId pipelineId) {
|
||||
ListPipelineExecutionStepsRequest request = new ListPipelineExecutionStepsRequest();
|
||||
request.setPipelineExecutionArn(pipelineExecutionArn);
|
||||
request.setPipelineExecutionArn(pipelineId.getPipelineExecutionArn());
|
||||
request.setMaxResults(SagemakerConstants.PIPELINE_MAX_RESULTS);
|
||||
ListPipelineExecutionStepsResult result = client.listPipelineExecutionSteps(request);
|
||||
List<PipelineExecutionStep> steps = result.getPipelineExecutionSteps();
|
||||
|
|
@ -119,7 +105,12 @@ public class PipelineUtils {
|
|||
}
|
||||
}
|
||||
|
||||
public String getPipelineExecutionArn() {
|
||||
return pipelineExecutionArn;
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public static class PipelineId {
|
||||
|
||||
private String pipelineExecutionArn;
|
||||
private String clientRequestToken;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKN
|
|||
import static com.fasterxml.jackson.databind.DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL;
|
||||
import static com.fasterxml.jackson.databind.MapperFeature.REQUIRE_SETTERS_FOR_GETTERS;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -31,8 +31,11 @@ import org.apache.dolphinscheduler.plugin.task.api.parser.ParamUtils;
|
|||
import org.apache.dolphinscheduler.plugin.task.api.parser.ParameterUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.PropertyUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import com.amazonaws.auth.AWSCredentialsProvider;
|
||||
import com.amazonaws.auth.AWSStaticCredentialsProvider;
|
||||
|
|
@ -46,34 +49,43 @@ import com.fasterxml.jackson.databind.PropertyNamingStrategy;
|
|||
/**
|
||||
* SagemakerTask task, Used to start Sagemaker pipeline
|
||||
*/
|
||||
public class SagemakerTask extends AbstractTaskExecutor {
|
||||
public class SagemakerTask extends AbstractRemoteTask {
|
||||
|
||||
private static final ObjectMapper objectMapper =
|
||||
new ObjectMapper().configure(FAIL_ON_UNKNOWN_PROPERTIES, false).configure(ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT, true).configure(READ_UNKNOWN_ENUM_VALUES_AS_NULL, true)
|
||||
.configure(REQUIRE_SETTERS_FOR_GETTERS, true).setPropertyNamingStrategy(new PropertyNamingStrategy.UpperCamelCaseStrategy());
|
||||
/**
|
||||
* taskExecutionContext
|
||||
*/
|
||||
private final TaskExecutionContext taskExecutionContext;
|
||||
new ObjectMapper().configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
|
||||
.configure(ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT, true)
|
||||
.configure(READ_UNKNOWN_ENUM_VALUES_AS_NULL, true)
|
||||
.configure(REQUIRE_SETTERS_FOR_GETTERS, true)
|
||||
.setPropertyNamingStrategy(new PropertyNamingStrategy.UpperCamelCaseStrategy());
|
||||
/**
|
||||
* SageMaker parameters
|
||||
*/
|
||||
private SagemakerParameters parameters;
|
||||
private PipelineUtils utils;
|
||||
|
||||
private final AmazonSageMaker client;
|
||||
private final PipelineUtils utils;
|
||||
private PipelineUtils.PipelineId pipelineId;
|
||||
|
||||
public SagemakerTask(TaskExecutionContext taskExecutionContext) {
|
||||
super(taskExecutionContext);
|
||||
client = createClient();
|
||||
utils = new PipelineUtils();
|
||||
}
|
||||
|
||||
this.taskExecutionContext = taskExecutionContext;
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
logger.info("Sagemaker task params {}", taskExecutionContext.getTaskParams());
|
||||
logger.info("Sagemaker task params {}", taskRequest.getTaskParams());
|
||||
|
||||
parameters = JSONUtils.parseObject(taskExecutionContext.getTaskParams(), SagemakerParameters.class);
|
||||
parameters = JSONUtils.parseObject(taskRequest.getTaskParams(), SagemakerParameters.class);
|
||||
|
||||
if (parameters == null) {
|
||||
throw new SagemakerTaskException("Sagemaker task params is empty");
|
||||
}
|
||||
if (!parameters.checkParameters()) {
|
||||
throw new SagemakerTaskException("Sagemaker task params is not valid");
|
||||
}
|
||||
|
|
@ -81,41 +93,51 @@ public class SagemakerTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void submitApplication() throws TaskException {
|
||||
try {
|
||||
int exitStatusCode = handleStartPipeline();
|
||||
setExitStatusCode(exitStatusCode);
|
||||
StartPipelineExecutionRequest request = createStartPipelineRequest();
|
||||
|
||||
// Start pipeline
|
||||
pipelineId = utils.startPipelineExecution(client, request);
|
||||
|
||||
// set AppId
|
||||
setAppIds(JSONUtils.toJsonString(pipelineId));
|
||||
} catch (Exception e) {
|
||||
setExitStatusCode(TaskConstants.EXIT_CODE_FAILURE);
|
||||
throw new TaskException("SageMaker task error", e);
|
||||
throw new TaskException("SageMaker task submit error", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) {
|
||||
// stop pipeline
|
||||
utils.stopPipelineExecution();
|
||||
public void cancelApplication() {
|
||||
initPipelineId();
|
||||
try {
|
||||
// stop pipeline
|
||||
utils.stopPipelineExecution(client, pipelineId);
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
public int handleStartPipeline() {
|
||||
int exitStatusCode;
|
||||
StartPipelineExecutionRequest request = createStartPipelineRequest();
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
initPipelineId();
|
||||
// Keep checking the health status
|
||||
exitStatusCode = utils.checkPipelineExecutionStatus(client, pipelineId);
|
||||
}
|
||||
|
||||
try {
|
||||
AmazonSageMaker client = createClient();
|
||||
utils = new PipelineUtils(client);
|
||||
setAppIds(utils.getPipelineExecutionArn());
|
||||
} catch (Exception e) {
|
||||
throw new SagemakerTaskException("can not connect aws ", e);
|
||||
/**
|
||||
* init sagemaker applicationId if null
|
||||
*/
|
||||
private void initPipelineId() {
|
||||
if (pipelineId == null) {
|
||||
if (StringUtils.isNotEmpty(getAppIds())) {
|
||||
pipelineId = JSONUtils.parseObject(getAppIds(), PipelineUtils.PipelineId.class);
|
||||
}
|
||||
}
|
||||
|
||||
// Start pipeline
|
||||
exitStatusCode = utils.startPipelineExecution(request);
|
||||
if (exitStatusCode == TaskConstants.EXIT_CODE_SUCCESS) {
|
||||
// Keep checking the health status
|
||||
exitStatusCode = utils.checkPipelineExecutionStatus();
|
||||
if (pipelineId == null) {
|
||||
throw new TaskException("sagemaker applicationID is null");
|
||||
}
|
||||
return exitStatusCode;
|
||||
}
|
||||
|
||||
public StartPipelineExecutionRequest createStartPipelineRequest() throws SagemakerTaskException {
|
||||
|
|
@ -142,11 +164,11 @@ public class SagemakerTask extends AbstractTaskExecutor {
|
|||
|
||||
private String parseRequstJson(String requestJson) {
|
||||
// combining local and global parameters
|
||||
Map<String, Property> paramsMap = taskExecutionContext.getPrepareParamsMap();
|
||||
Map<String, Property> paramsMap = taskRequest.getPrepareParamsMap();
|
||||
return ParameterUtils.convertParameterPlaceholders(requestJson, ParamUtils.convert(paramsMap));
|
||||
}
|
||||
|
||||
private AmazonSageMaker createClient() {
|
||||
protected AmazonSageMaker createClient() {
|
||||
final String awsAccessKeyId = PropertyUtils.getString(TaskConstants.AWS_ACCESS_KEY_ID);
|
||||
final String awsSecretAccessKey = PropertyUtils.getString(TaskConstants.AWS_SECRET_ACCESS_KEY);
|
||||
final String awsRegion = PropertyUtils.getString(TaskConstants.AWS_REGION);
|
||||
|
|
@ -154,9 +176,9 @@ public class SagemakerTask extends AbstractTaskExecutor {
|
|||
final AWSCredentialsProvider awsCredentialsProvider = new AWSStaticCredentialsProvider(basicAWSCredentials);
|
||||
// create a SageMaker client
|
||||
return AmazonSageMakerClientBuilder.standard()
|
||||
.withCredentials(awsCredentialsProvider)
|
||||
.withRegion(awsRegion)
|
||||
.build();
|
||||
.withCredentials(awsCredentialsProvider)
|
||||
.withRegion(awsRegion)
|
||||
.build();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,10 +37,8 @@ import org.junit.Before;
|
|||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mockito;
|
||||
import org.powermock.api.mockito.PowerMockito;
|
||||
import org.powermock.core.classloader.annotations.PowerMockIgnore;
|
||||
import org.powermock.core.classloader.annotations.PrepareForTest;
|
||||
import org.powermock.core.classloader.annotations.SuppressStaticInitializationFor;
|
||||
import org.powermock.modules.junit4.PowerMockRunner;
|
||||
|
||||
import com.amazonaws.services.sagemaker.AmazonSageMaker;
|
||||
|
|
@ -54,24 +52,23 @@ import com.amazonaws.services.sagemaker.model.StopPipelineExecutionResult;
|
|||
@RunWith(PowerMockRunner.class)
|
||||
@PrepareForTest({JSONUtils.class, PropertyUtils.class,})
|
||||
@PowerMockIgnore({"javax.*"})
|
||||
@SuppressStaticInitializationFor("org.apache.dolphinscheduler.spi.utils.PropertyUtils")
|
||||
public class SagemakerTaskTest {
|
||||
|
||||
private final String pipelineExecutionArn = "test-pipeline-arn";
|
||||
private final String clientRequestToken = "test-pipeline-token";
|
||||
private SagemakerTask sagemakerTask;
|
||||
private AmazonSageMaker client;
|
||||
private PipelineUtils pipelineUtils;
|
||||
private PipelineUtils pipelineUtils = new PipelineUtils();
|
||||
|
||||
@Before
|
||||
public void before() {
|
||||
PowerMockito.mockStatic(PropertyUtils.class);
|
||||
String parameters = buildParameters();
|
||||
TaskExecutionContext taskExecutionContext = Mockito.mock(TaskExecutionContext.class);
|
||||
Mockito.when(taskExecutionContext.getTaskParams()).thenReturn(parameters);
|
||||
|
||||
client = mock(AmazonSageMaker.class);
|
||||
sagemakerTask = new SagemakerTask(taskExecutionContext);
|
||||
sagemakerTask.init();
|
||||
client = mock(AmazonSageMaker.class);
|
||||
pipelineUtils = new PipelineUtils(client);
|
||||
|
||||
StartPipelineExecutionResult startPipelineExecutionResult = mock(StartPipelineExecutionResult.class);
|
||||
when(startPipelineExecutionResult.getPipelineExecutionArn()).thenReturn(pipelineExecutionArn);
|
||||
|
|
@ -82,7 +79,8 @@ public class SagemakerTaskTest {
|
|||
DescribePipelineExecutionResult describePipelineExecutionResult = mock(DescribePipelineExecutionResult.class);
|
||||
when(describePipelineExecutionResult.getPipelineExecutionStatus()).thenReturn("Executing", "Succeeded");
|
||||
|
||||
ListPipelineExecutionStepsResult listPipelineExecutionStepsResult = mock(ListPipelineExecutionStepsResult.class);
|
||||
ListPipelineExecutionStepsResult listPipelineExecutionStepsResult =
|
||||
mock(ListPipelineExecutionStepsResult.class);
|
||||
PipelineExecutionStep pipelineExecutionStep = mock(PipelineExecutionStep.class);
|
||||
List<PipelineExecutionStep> pipelineExecutionSteps = new ArrayList<>();
|
||||
pipelineExecutionSteps.add(pipelineExecutionStep);
|
||||
|
|
@ -110,10 +108,11 @@ public class SagemakerTaskTest {
|
|||
|
||||
@Test
|
||||
public void testPipelineExecution() throws Exception {
|
||||
pipelineUtils.startPipelineExecution(sagemakerTask.createStartPipelineRequest());
|
||||
Assert.assertEquals(pipelineExecutionArn, pipelineUtils.getPipelineExecutionArn());
|
||||
Assert.assertEquals(0, pipelineUtils.checkPipelineExecutionStatus());
|
||||
pipelineUtils.stopPipelineExecution();
|
||||
PipelineUtils.PipelineId pipelineId =
|
||||
pipelineUtils.startPipelineExecution(client, sagemakerTask.createStartPipelineRequest());
|
||||
Assert.assertEquals(pipelineExecutionArn, pipelineId.getPipelineExecutionArn());
|
||||
Assert.assertEquals(0, pipelineUtils.checkPipelineExecutionStatus(client, pipelineId));
|
||||
pipelineUtils.stopPipelineExecution(client, pipelineId);
|
||||
}
|
||||
|
||||
private String buildParameters() {
|
||||
|
|
|
|||
|
|
@ -19,8 +19,11 @@ package org.apache.dolphinscheduler.plugin.task.seatunnel;
|
|||
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.apache.commons.lang3.BooleanUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -36,8 +39,10 @@ import java.nio.charset.StandardCharsets;
|
|||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.EXIT_CODE_FAILURE;
|
||||
import static org.apache.dolphinscheduler.plugin.task.seatunnel.Constants.CONFIG_OPTIONS;
|
||||
|
|
@ -45,7 +50,7 @@ import static org.apache.dolphinscheduler.plugin.task.seatunnel.Constants.CONFIG
|
|||
/**
|
||||
* seatunnel task
|
||||
*/
|
||||
public class SeatunnelTask extends AbstractTaskExecutor {
|
||||
public class SeatunnelTask extends AbstractRemoteTask {
|
||||
|
||||
/**
|
||||
* seatunnel parameters
|
||||
|
|
@ -76,6 +81,11 @@ public class SeatunnelTask extends AbstractTaskExecutor {
|
|||
logger);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
logger.info("SeaTunnel task params {}", taskExecutionContext.getTaskParams());
|
||||
|
|
@ -84,8 +94,9 @@ public class SeatunnelTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// construct process
|
||||
String command = buildCommand();
|
||||
|
|
@ -107,9 +118,23 @@ public class SeatunnelTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
private String buildCommand() throws Exception {
|
||||
|
|
|
|||
|
|
@ -18,8 +18,10 @@
|
|||
package org.apache.dolphinscheduler.plugin.task.shell;
|
||||
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -47,7 +49,7 @@ import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.RWXR_XR_
|
|||
/**
|
||||
* shell task
|
||||
*/
|
||||
public class ShellTask extends AbstractTaskExecutor {
|
||||
public class ShellTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* shell parameters
|
||||
|
|
@ -90,13 +92,12 @@ public class ShellTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
// construct process
|
||||
String command = buildCommand();
|
||||
TaskResponse commandExecuteResult = shellCommandExecutor.run(command);
|
||||
setExitStatusCode(commandExecuteResult.getExitStatusCode());
|
||||
setAppIds(String.join(TaskConstants.COMMA, getApplicationIds()));
|
||||
setProcessId(commandExecuteResult.getProcessId());
|
||||
shellParameters.dealOutParam(shellCommandExecutor.getVarPool());
|
||||
} catch (InterruptedException e) {
|
||||
|
|
@ -112,9 +113,13 @@ public class ShellTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean cancelApplication) throws Exception {
|
||||
public void cancel() throws TaskException {
|
||||
// cancel process
|
||||
shellCommandExecutor.cancelApplication();
|
||||
try {
|
||||
shellCommandExecutor.cancelApplication();
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel application error", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -23,8 +23,9 @@ import org.apache.commons.collections4.CollectionUtils;
|
|||
import org.apache.dolphinscheduler.plugin.datasource.api.plugin.DataSourceClientProvider;
|
||||
import org.apache.dolphinscheduler.plugin.datasource.api.utils.CommonUtils;
|
||||
import org.apache.dolphinscheduler.plugin.datasource.api.utils.DataSourceUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.SQLTaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -60,7 +61,7 @@ import java.util.regex.Matcher;
|
|||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public class SqlTask extends AbstractTaskExecutor {
|
||||
public class SqlTask extends AbstractTask {
|
||||
|
||||
/**
|
||||
* taskExecutionContext
|
||||
|
|
@ -114,7 +115,7 @@ public class SqlTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
logger.info("Full sql parameters: {}", sqlParameters);
|
||||
logger.info("sql type : {}, datasource : {}, sql : {} , localParams : {},udfs : {},showType : {},connParams : {},varPool : {} ,query max result limit {}",
|
||||
sqlParameters.getType(),
|
||||
|
|
@ -164,6 +165,11 @@ public class SqlTask extends AbstractTaskExecutor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancel() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* execute function and sql
|
||||
*
|
||||
|
|
|
|||
|
|
@ -19,7 +19,10 @@ package org.apache.dolphinscheduler.plugin.task.zeppelin;
|
|||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import kong.unirest.Unirest;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractRemoteTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
|
|
@ -32,11 +35,13 @@ import org.apache.zeppelin.client.ParagraphResult;
|
|||
import org.apache.zeppelin.client.Status;
|
||||
import org.apache.zeppelin.client.ZeppelinClient;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public class ZeppelinTask extends AbstractTaskExecutor {
|
||||
public class ZeppelinTask extends AbstractRemoteTask {
|
||||
|
||||
/**
|
||||
* taskExecutionContext
|
||||
|
|
@ -74,8 +79,9 @@ public class ZeppelinTask extends AbstractTaskExecutor {
|
|||
this.zClient = getZeppelinClient();
|
||||
}
|
||||
|
||||
// todo split handle to submit and track
|
||||
@Override
|
||||
public void handle() throws TaskException {
|
||||
public void handle(TaskCallBack taskCallBack) throws TaskException {
|
||||
try {
|
||||
final String paragraphId = this.zeppelinParameters.getParagraphId();
|
||||
final String productionNoteDirectory = this.zeppelinParameters.getProductionNoteDirectory();
|
||||
|
|
@ -142,6 +148,15 @@ public class ZeppelinTask extends AbstractTaskExecutor {
|
|||
logger.error("zeppelin task submit failed with error", e);
|
||||
throw new TaskException("Execute ZeppelinTask exception");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void submitApplication() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trackApplicationStatus() throws TaskException {
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -188,9 +203,8 @@ public class ZeppelinTask extends AbstractTaskExecutor {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void cancelApplication(boolean status) throws Exception {
|
||||
public void cancelApplication() throws TaskException {
|
||||
final String restEndpoint = this.zeppelinParameters.getRestEndpoint();
|
||||
super.cancelApplication(status);
|
||||
final String noteId = this.zeppelinParameters.getNoteId();
|
||||
final String paragraphId = this.zeppelinParameters.getParagraphId();
|
||||
if (paragraphId == null) {
|
||||
|
|
@ -207,7 +221,11 @@ public class ZeppelinTask extends AbstractTaskExecutor {
|
|||
this.taskExecutionContext.getTaskInstanceId(),
|
||||
noteId,
|
||||
paragraphId);
|
||||
this.zClient.cancelParagraph(noteId, paragraphId);
|
||||
try {
|
||||
this.zClient.cancelParagraph(noteId, paragraphId);
|
||||
} catch (Exception e) {
|
||||
throw new TaskException("cancel paragraph error", e);
|
||||
}
|
||||
logger.info("zeppelin task terminated, taskId: {}, noteId: {}, paragraphId: {}",
|
||||
this.taskExecutionContext.getTaskInstanceId(),
|
||||
noteId,
|
||||
|
|
@ -216,4 +234,9 @@ public class ZeppelinTask extends AbstractTaskExecutor {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getApplicationIds() throws TaskException {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ import static org.powermock.api.mockito.PowerMockito.spy;
|
|||
import static org.powermock.api.mockito.PowerMockito.when;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.spi.utils.DateUtils;
|
||||
|
|
@ -73,6 +75,9 @@ public class ZeppelinTaskTest {
|
|||
private ZeppelinTask zeppelinTask;
|
||||
private ParagraphResult paragraphResult;
|
||||
private NoteResult noteResult;
|
||||
private TaskCallBack taskCallBack = (taskInstanceId, appIds) -> {
|
||||
|
||||
};
|
||||
|
||||
@Before
|
||||
public void before() throws Exception {
|
||||
|
|
@ -95,7 +100,7 @@ public class ZeppelinTaskTest {
|
|||
@Test
|
||||
public void testHandleWithParagraphExecutionSuccess() throws Exception {
|
||||
when(this.paragraphResult.getStatus()).thenReturn(Status.FINISHED);
|
||||
this.zeppelinTask.handle();
|
||||
this.zeppelinTask.handle(taskCallBack);
|
||||
Mockito.verify(this.zClient).executeParagraph(MOCK_NOTE_ID,
|
||||
MOCK_PARAGRAPH_ID,
|
||||
(Map<String, String>) mapper.readValue(MOCK_PARAMETERS, Map.class));
|
||||
|
|
@ -107,7 +112,7 @@ public class ZeppelinTaskTest {
|
|||
@Test
|
||||
public void testHandleWithParagraphExecutionAborted() throws Exception {
|
||||
when(this.paragraphResult.getStatus()).thenReturn(Status.ABORT);
|
||||
this.zeppelinTask.handle();
|
||||
this.zeppelinTask.handle(taskCallBack);
|
||||
Mockito.verify(this.zClient).executeParagraph(MOCK_NOTE_ID,
|
||||
MOCK_PARAGRAPH_ID,
|
||||
(Map<String, String>) mapper.readValue(MOCK_PARAMETERS, Map.class));
|
||||
|
|
@ -119,7 +124,7 @@ public class ZeppelinTaskTest {
|
|||
@Test
|
||||
public void testHandleWithParagraphExecutionError() throws Exception {
|
||||
when(this.paragraphResult.getStatus()).thenReturn(Status.ERROR);
|
||||
this.zeppelinTask.handle();
|
||||
this.zeppelinTask.handle(taskCallBack);
|
||||
Mockito.verify(this.zClient).executeParagraph(MOCK_NOTE_ID,
|
||||
MOCK_PARAGRAPH_ID,
|
||||
(Map<String, String>) mapper.readValue(MOCK_PARAMETERS, Map.class));
|
||||
|
|
@ -133,7 +138,7 @@ public class ZeppelinTaskTest {
|
|||
when(this.zClient.executeParagraph(any(), any(), any(Map.class))).
|
||||
thenThrow(new TaskException("Something wrong happens from zeppelin side"));
|
||||
// when(this.paragraphResult.getStatus()).thenReturn(Status.ERROR);
|
||||
this.zeppelinTask.handle();
|
||||
this.zeppelinTask.handle(taskCallBack);
|
||||
Mockito.verify(this.zClient).executeParagraph(MOCK_NOTE_ID,
|
||||
MOCK_PARAGRAPH_ID,
|
||||
(Map<String, String>) mapper.readValue(MOCK_PARAMETERS, Map.class));
|
||||
|
|
@ -159,7 +164,7 @@ public class ZeppelinTaskTest {
|
|||
when(paragraphResult.getResultInText()).thenReturn("mock-zeppelin-paragraph-execution-result");
|
||||
this.zeppelinTask.init();
|
||||
when(this.paragraphResult.getStatus()).thenReturn(Status.FINISHED);
|
||||
this.zeppelinTask.handle();
|
||||
this.zeppelinTask.handle(taskCallBack);
|
||||
Mockito.verify(this.zClient).executeNote(MOCK_NOTE_ID,
|
||||
(Map<String, String>) mapper.readValue(MOCK_PARAMETERS, Map.class));
|
||||
Mockito.verify(this.noteResult).getParagraphResultList();
|
||||
|
|
@ -186,7 +191,7 @@ public class ZeppelinTaskTest {
|
|||
this.zeppelinTask.init();
|
||||
when(this.paragraphResult.getStatus()).thenReturn(Status.FINISHED);
|
||||
when(DateUtils.getTimestampString()).thenReturn("123456789");
|
||||
this.zeppelinTask.handle();
|
||||
this.zeppelinTask.handle(taskCallBack);
|
||||
Mockito.verify(this.zClient).cloneNote(
|
||||
MOCK_NOTE_ID,
|
||||
String.format("%s%s_%s", MOCK_PRODUCTION_DIRECTORY, MOCK_NOTE_ID, "123456789"));
|
||||
|
|
|
|||
|
|
@ -25,11 +25,11 @@ import org.apache.dolphinscheduler.remote.utils.Host;
|
|||
import org.apache.dolphinscheduler.server.worker.config.WorkerConfig;
|
||||
import org.apache.dolphinscheduler.server.worker.rpc.WorkerRpcClient;
|
||||
|
||||
import lombok.NonNull;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import lombok.NonNull;
|
||||
|
||||
@Component
|
||||
public class TaskExecuteRunningMessageSender implements MessageSender<TaskExecuteRunningCommand> {
|
||||
|
||||
|
|
@ -46,10 +46,10 @@ public class TaskExecuteRunningMessageSender implements MessageSender<TaskExecut
|
|||
|
||||
public TaskExecuteRunningCommand buildMessage(@NonNull TaskExecutionContext taskExecutionContext,
|
||||
@NonNull String messageReceiverAddress) {
|
||||
TaskExecuteRunningCommand taskExecuteRunningMessage
|
||||
= new TaskExecuteRunningCommand(workerConfig.getWorkerAddress(),
|
||||
messageReceiverAddress,
|
||||
System.currentTimeMillis());
|
||||
TaskExecuteRunningCommand taskExecuteRunningMessage =
|
||||
new TaskExecuteRunningCommand(workerConfig.getWorkerAddress(),
|
||||
messageReceiverAddress,
|
||||
System.currentTimeMillis());
|
||||
taskExecuteRunningMessage.setTaskInstanceId(taskExecutionContext.getTaskInstanceId());
|
||||
taskExecuteRunningMessage.setProcessInstanceId(taskExecutionContext.getProcessInstanceId());
|
||||
taskExecuteRunningMessage.setStatus(taskExecutionContext.getCurrentExecutionStatus());
|
||||
|
|
@ -57,6 +57,7 @@ public class TaskExecuteRunningMessageSender implements MessageSender<TaskExecut
|
|||
taskExecuteRunningMessage.setHost(taskExecutionContext.getHost());
|
||||
taskExecuteRunningMessage.setStartTime(taskExecutionContext.getStartTime());
|
||||
taskExecuteRunningMessage.setExecutePath(taskExecutionContext.getExecutePath());
|
||||
taskExecuteRunningMessage.setAppIds(taskExecutionContext.getAppIds());
|
||||
return taskExecuteRunningMessage;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ public class TaskKillProcessor implements NettyRequestProcessor {
|
|||
return;
|
||||
}
|
||||
try {
|
||||
task.cancelApplication(true);
|
||||
task.cancel();
|
||||
} catch (Exception e) {
|
||||
logger.error("kill task error", e);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ package org.apache.dolphinscheduler.server.worker.runner;
|
|||
|
||||
import lombok.NonNull;
|
||||
import org.apache.dolphinscheduler.common.storage.StorageOperate;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.server.worker.config.WorkerConfig;
|
||||
|
|
@ -41,11 +42,11 @@ public class DefaultWorkerDelayTaskExecuteRunnable extends WorkerDelayTaskExecut
|
|||
}
|
||||
|
||||
@Override
|
||||
public void executeTask() throws TaskException {
|
||||
public void executeTask(TaskCallBack taskCallBack) throws TaskException {
|
||||
if (task == null) {
|
||||
throw new TaskException("The task plugin instance is not initialized");
|
||||
}
|
||||
task.handle();
|
||||
task.handle(taskCallBack);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -0,0 +1,62 @@
|
|||
/*
|
||||
* 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;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContextCacheManager;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ApplicationInfo;
|
||||
import org.apache.dolphinscheduler.remote.command.CommandType;
|
||||
import org.apache.dolphinscheduler.server.worker.rpc.WorkerMessageSender;
|
||||
|
||||
import lombok.Builder;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
@Builder
|
||||
public class TaskCallbackImpl implements TaskCallBack {
|
||||
|
||||
protected final Logger logger =
|
||||
LoggerFactory.getLogger(String.format(TaskConstants.TASK_LOG_LOGGER_NAME_FORMAT, TaskCallbackImpl.class));
|
||||
|
||||
private final WorkerMessageSender workerMessageSender;
|
||||
|
||||
private final String masterAddress;
|
||||
|
||||
public TaskCallbackImpl(WorkerMessageSender workerMessageSender, String masterAddress) {
|
||||
this.workerMessageSender = workerMessageSender;
|
||||
this.masterAddress = masterAddress;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateRemoteApplicationInfo(int taskInstanceId, ApplicationInfo applicationInfo) {
|
||||
TaskExecutionContext taskExecutionContext =
|
||||
TaskExecutionContextCacheManager.getByTaskInstanceId(taskInstanceId);
|
||||
if (taskExecutionContext == null) {
|
||||
logger.error("task execution context is empty, taskInstanceId: {}, applicationInfo:{}", taskInstanceId,
|
||||
applicationInfo);
|
||||
return;
|
||||
}
|
||||
|
||||
logger.info("send remote application info {}", applicationInfo);
|
||||
taskExecutionContext.setAppIds(applicationInfo.getAppIds());
|
||||
workerMessageSender.sendMessageWithRetry(taskExecutionContext, masterAddress, CommandType.TASK_EXECUTE_RUNNING);
|
||||
}
|
||||
}
|
||||
|
|
@ -26,6 +26,7 @@ import org.apache.dolphinscheduler.common.utils.CommonUtils;
|
|||
import org.apache.dolphinscheduler.common.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.common.utils.LoggerUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTask;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskCallBack;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskChannel;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskConstants;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
||||
|
|
@ -90,7 +91,7 @@ public abstract class WorkerTaskExecuteRunnable implements Runnable {
|
|||
logger.info("Set task logger name: {}", taskLogName);
|
||||
}
|
||||
|
||||
protected abstract void executeTask();
|
||||
protected abstract void executeTask(TaskCallBack taskCallBack);
|
||||
|
||||
protected void afterExecute() throws TaskException {
|
||||
if (task == null) {
|
||||
|
|
@ -118,7 +119,7 @@ public abstract class WorkerTaskExecuteRunnable implements Runnable {
|
|||
// cancel the task
|
||||
if (task != null) {
|
||||
try {
|
||||
task.cancelApplication(true);
|
||||
task.cancel();
|
||||
ProcessUtils.killYarnJob(taskExecutionContext);
|
||||
} catch (Exception e) {
|
||||
logger.error("Task execute failed and cancel the application failed, this will not affect the taskInstance status, but you need to check manual", e);
|
||||
|
|
@ -148,7 +149,8 @@ public abstract class WorkerTaskExecuteRunnable implements Runnable {
|
|||
|
||||
beforeExecute();
|
||||
|
||||
executeTask();
|
||||
TaskCallBack taskCallBack = TaskCallbackImpl.builder().workerMessageSender(workerMessageSender).masterAddress(masterAddress).build();
|
||||
executeTask(taskCallBack);
|
||||
|
||||
afterExecute();
|
||||
|
||||
|
|
|
|||
|
|
@ -17,10 +17,6 @@
|
|||
|
||||
package org.apache.dolphinscheduler.server.worker.utils;
|
||||
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections.MapUtils;
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
import org.apache.commons.lang3.tuple.Pair;
|
||||
import org.apache.dolphinscheduler.common.exception.StorageOperateNoConfiguredException;
|
||||
import org.apache.dolphinscheduler.common.storage.StorageOperate;
|
||||
import org.apache.dolphinscheduler.common.utils.CommonUtils;
|
||||
|
|
@ -31,7 +27,11 @@ import org.apache.dolphinscheduler.plugin.task.api.TaskException;
|
|||
import org.apache.dolphinscheduler.plugin.task.api.TaskExecutionContext;
|
||||
import org.apache.dolphinscheduler.server.worker.config.WorkerConfig;
|
||||
import org.apache.dolphinscheduler.server.worker.metrics.WorkerServerMetrics;
|
||||
import org.slf4j.Logger;
|
||||
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections.MapUtils;
|
||||
import org.apache.commons.lang3.SystemUtils;
|
||||
import org.apache.commons.lang3.tuple.Pair;
|
||||
|
||||
import java.io.File;
|
||||
import java.nio.file.Files;
|
||||
|
|
@ -40,6 +40,8 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
|
||||
public class TaskExecutionCheckerUtils {
|
||||
|
||||
public static void checkTenantExist(WorkerConfig workerConfig, TaskExecutionContext taskExecutionContext) {
|
||||
|
|
@ -59,12 +61,14 @@ public class TaskExecutionCheckerUtils {
|
|||
osUserExistFlag = OSUtils.getUserList().contains(taskExecutionContext.getTenantCode());
|
||||
}
|
||||
if (!osUserExistFlag) {
|
||||
throw new TaskException(String.format("TenantCode: %s doesn't exist", taskExecutionContext.getTenantCode()));
|
||||
throw new TaskException(
|
||||
String.format("TenantCode: %s doesn't exist", taskExecutionContext.getTenantCode()));
|
||||
}
|
||||
} catch (TaskException ex) {
|
||||
throw ex;
|
||||
} catch (Exception ex) {
|
||||
throw new TaskException(String.format("TenantCode: %s doesn't exist", taskExecutionContext.getTenantCode()));
|
||||
throw new TaskException(
|
||||
String.format("TenantCode: %s doesn't exist", taskExecutionContext.getTenantCode()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -84,7 +88,8 @@ public class TaskExecutionCheckerUtils {
|
|||
}
|
||||
}
|
||||
|
||||
public static void downloadResourcesIfNeeded(StorageOperate storageOperate, TaskExecutionContext taskExecutionContext, Logger logger) {
|
||||
public static void downloadResourcesIfNeeded(StorageOperate storageOperate,
|
||||
TaskExecutionContext taskExecutionContext, Logger logger) {
|
||||
String execLocalPath = taskExecutionContext.getExecutePath();
|
||||
Map<String, String> projectRes = taskExecutionContext.getResources();
|
||||
if (MapUtils.isEmpty(projectRes)) {
|
||||
|
|
@ -113,7 +118,8 @@ public class TaskExecutionCheckerUtils {
|
|||
String resPath = storageOperate.getResourceFileName(tenantCode, fullName);
|
||||
logger.info("get resource file from path:{}", resPath);
|
||||
long resourceDownloadStartTime = System.currentTimeMillis();
|
||||
storageOperate.download(tenantCode, resPath, execLocalPath + File.separator + fullName, false, true);
|
||||
storageOperate.download(tenantCode, resPath, execLocalPath + File.separator + fullName, false,
|
||||
true);
|
||||
WorkerServerMetrics
|
||||
.recordWorkerResourceDownloadTime(System.currentTimeMillis() - resourceDownloadStartTime);
|
||||
WorkerServerMetrics.recordWorkerResourceDownloadSize(
|
||||
|
|
|
|||
41
pom.xml
41
pom.xml
|
|
@ -63,14 +63,15 @@
|
|||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<spring.boot.version>2.6.1</spring.boot.version>
|
||||
<java.version>1.8</java.version>
|
||||
<junit.version>4.12</junit.version>
|
||||
<junit.version>5.9.0</junit.version>
|
||||
<mockito.version>3.9.0</mockito.version>
|
||||
<spotbugs.version>3.1.12</spotbugs.version>
|
||||
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
|
||||
<maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
|
||||
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
||||
<maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
|
||||
<maven-source-plugin.version>2.4</maven-source-plugin.version>
|
||||
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
|
||||
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
|
||||
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
|
||||
<maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
|
||||
<rpm-maven-plugion.version>2.2.0</rpm-maven-plugion.version>
|
||||
|
|
@ -308,6 +309,13 @@
|
|||
<artifactId>dolphinscheduler-tools</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit</groupId>
|
||||
<artifactId>junit-bom</artifactId>
|
||||
<version>${junit.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</dependencyManagement>
|
||||
|
|
@ -320,9 +328,25 @@
|
|||
of the submodules.
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${junit.version}</version>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.vintage</groupId>
|
||||
<artifactId>junit-vintage-engine</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>${mockito.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-junit-jupiter</artifactId>
|
||||
<version>${mockito.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
@ -580,13 +604,6 @@
|
|||
<jacoco-agent.destfile>${project.build.directory}/jacoco.exec</jacoco-agent.destfile>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.surefire</groupId>
|
||||
<artifactId>surefire-junit4</artifactId>
|
||||
<version>${maven-surefire-plugin.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<!-- jenkins plugin jacoco report-->
|
||||
|
|
|
|||
Loading…
Reference in New Issue