未验证 提交 bfff3a7c 编写于 作者: X xuhhui 提交者: GitHub

fix error (#11206)

上级 d73ad2e7
...@@ -218,7 +218,8 @@ public class TaskExecutionContext implements Serializable { ...@@ -218,7 +218,8 @@ public class TaskExecutionContext implements Serializable {
private ExecutionStatus currentExecutionStatus; private ExecutionStatus currentExecutionStatus;
/** /**
* Task Logger name should be like: Task-{processDefinitionId}-{processInstanceId}-{taskInstanceId} * Task Logger name should be like:
* TaskAppId=TASK-{firstSubmitTime}-{processDefineCode}_{processDefineVersion}-{processInstanceId}-{taskInstanceId}
*/ */
private String taskLogName; private String taskLogName;
......
...@@ -298,10 +298,10 @@ public class TaskExecuteThread implements Runnable, Delayed { ...@@ -298,10 +298,10 @@ public class TaskExecuteThread implements Runnable, Delayed {
// query the tenant code of the resource according to the name of the resource // query the tenant code of the resource according to the name of the resource
String fullName = fileDownload.getLeft(); String fullName = fileDownload.getLeft();
String tenantCode = fileDownload.getRight(); String tenantCode = fileDownload.getRight();
String resHdfsPath = storageOperate.getResourceFileName(tenantCode, fullName); String resPath = storageOperate.getResourceFileName(tenantCode, fullName);
logger.info("get resource file from hdfs :{}", resHdfsPath); logger.info("get resource file from path:{}", resPath);
long resourceDownloadStartTime = System.currentTimeMillis(); long resourceDownloadStartTime = System.currentTimeMillis();
storageOperate.download(tenantCode, resHdfsPath, execLocalPath + File.separator + fullName, false, true); storageOperate.download(tenantCode, resPath, execLocalPath + File.separator + fullName, false, true);
WorkerServerMetrics.recordWorkerResourceDownloadTime(System.currentTimeMillis() - resourceDownloadStartTime); WorkerServerMetrics.recordWorkerResourceDownloadTime(System.currentTimeMillis() - resourceDownloadStartTime);
WorkerServerMetrics.recordWorkerResourceDownloadSize( WorkerServerMetrics.recordWorkerResourceDownloadSize(
Files.size(Paths.get(execLocalPath, fullName))); Files.size(Paths.get(execLocalPath, fullName)));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册