rickchengx commented on code in PR #13332: URL: https://github.com/apache/dolphinscheduler/pull/13332#discussion_r1062044849
########## dolphinscheduler-common/src/main/resources/common.properties: ########## @@ -127,4 +127,19 @@ ml.mlflow.preset_repository_version="main" appId.collect=log # The default env list will be load by Shell task, e.g. /etc/profile,~/.bash_profile -shell.env_source_list= \ No newline at end of file +shell.env_source_list= + +# remote logging +remote.logging.enable=false +# if remote.logging.enable = true, set the target of remote logging +remote.logging.target=OSS +# oss access key id, required if you set remote.logging.target=OSS +remote.logging.oss.access.key.id=<access.key.id> +# oss access key secret, required if you set remote.logging.target=OSS +remote.logging.oss.access.key.secret=<access.key.secret> +# oss bucket name, required if you set remote.logging.target=OSS +remote.logging.oss.bucket.name=<bucket.name> +# oss endpoint, required if you set remote.logging.target=OSS +remote.logging.oss.endpoint=<endpoint> +# oss base directory, required if you set remote.logging.target=OSS +remote.logging.oss.base.dir=logs Review Comment: I also thought about this problem, and I rechecked the relevant configuration in [Airflow](https://airflow.apache.org/docs/apache-airflow/1.10.13/howto/write-logs.html). I think we could use `remote.logging.base.dir` instead, which can be shared by multiple plugins (OSS / S3 / GCS) -- 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]
