gaoyan1998 opened a new issue, #17175: URL: https://github.com/apache/dolphinscheduler/issues/17175
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened At `CosStorageOperatorFactory.java` ``` private CosStorageProperties getCosStorageProperties() { // 这里是根据TENCENT_CLOUD_COS_PROPERTY_PREFIX前缀获取配置,但是下面的RESOURCE_UPLOAD_PATH并不是这个前缀,导致基础路径配置无法生效,永远是 /dolphinscheduler Map<String, String> cosPropertiesMap = PropertyUtils.getByPrefix(CosStorageConstants.TENCENT_CLOUD_COS_PROPERTY_PREFIX); return CosStorageProperties.builder() .region(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_COS_REGION)) .accessKeyId(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_ACCESS_KEY_ID)) .accessKeySecret(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_ACCESS_KEY_SECRET)) .bucketName(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_COS_BUCKET_NAME)) .resourceUploadPath( cosPropertiesMap.getOrDefault(StorageConstants.RESOURCE_UPLOAD_PATH, CosStorageConstants.DEFAULT_COS_RESOURCE_UPLOAD_PATH)) .build(); } ``` ### What you expected to happen COS Resource Get resourceUploadPath is incorrect ### How to reproduce Like this ``` Map<String, String> cosPropertiesMap = PropertyUtils.getByPrefix(CosStorageConstants.TENCENT_CLOUD_COS_PROPERTY_PREFIX); return CosStorageProperties.builder() .region(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_COS_REGION)) .accessKeyId(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_ACCESS_KEY_ID)) .accessKeySecret(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_ACCESS_KEY_SECRET)) .bucketName(cosPropertiesMap.get(CosStorageConstants.TENCENT_CLOUD_COS_BUCKET_NAME)) //这里修改为不从前缀获取 .resourceUploadPath( PropertyUtils.getString(StorageConstants.RESOURCE_UPLOAD_PATH, CosStorageConstants.DEFAULT_COS_RESOURCE_UPLOAD_PATH)) .build(); } ``` ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [x] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
