修改:data文件信息查询,增加getSlaveInfo字段,控制可不查tag和标签信息,默认查询

This commit is contained in:
2026-03-27 14:45:47 +08:00
parent 4d22f187c5
commit 0700ac1a7c
3 changed files with 14 additions and 6 deletions

View File

@@ -265,6 +265,8 @@ public class HpcHandler implements ExecutionHandler<Map<String, Object>,HPCExecu
// 查data表
GetFileBaseInfoReq getFileBaseInfoReq = new GetFileBaseInfoReq();
getFileBaseInfoReq.setFileId(outputDirId);
// 不需要查询文件的标签信息
getFileBaseInfoReq.setGetSlaveInfo(false);
SdmResponse<FileMetadataInfoResp> fileBaseInfoResp = dataFeignClient.getFileBaseInfo(getFileBaseInfoReq);
if(!fileBaseInfoResp.isSuccess()||fileBaseInfoResp.getData()==null){
CoreLogger.warn("getFileBaseInfo failed,outputDirId:{}",outputDirId);