This is an automated email from the ASF dual-hosted git repository.
caishunfeng pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
from 41a8ba9aab Support alert server HA (#13865)
add 7ee66f2d02 [Feature-13429][Remote Logging] Add support for writing
task logs to Google Cloud Storage (#13777)
No new revisions were added by this update.
Summary of changes:
docs/docs/en/guide/remote-logging.md | 11 ++
docs/docs/zh/guide/remote-logging.md | 13 +-
.../src/main/resources/logback-spring.xml | 1 +
dolphinscheduler-common/pom.xml | 28 ++++
.../common/constants/Constants.java | 7 +
.../common/log/remote/GcsRemoteLogHandler.java | 153 +++++++++++++++++++++
.../common/log/remote/RemoteLogHandlerFactory.java | 2 +
.../common/log/remote/RemoteLogUtils.java | 17 +--
.../dolphinscheduler/common/utils/LogUtils.java | 9 ++
.../src/main/resources/common.properties | 4 +
.../common/log/remote/RemoteLogHandlerTest.java | 21 ++-
.../src/main/resources/logback-spring.xml | 2 +
.../src/main/resources/logback-spring.xml | 1 +
.../src/main/resources/logback-spring.xml | 1 +
14 files changed, 255 insertions(+), 15 deletions(-)
create mode 100644
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/log/remote/GcsRemoteLogHandler.java