dolphinscheduler0701/dolphinscheduler-registry/dolphinscheduler-registry-p.../dolphinscheduler-registry-z...
Wenjun Ruan f0e0395b36
[Chore] Use testcontainer origin exposed port rather than generate random port (#16195)
2024-06-21 22:19:54 +08:00
..
src [Chore] Use testcontainer origin exposed port rather than generate random port (#16195) 2024-06-21 22:19:54 +08:00
README.md fix word spell error (#15716) 2024-03-15 16:45:06 +08:00
pom.xml Add IntegretionTest for registry module (#15981) 2024-05-13 16:35:37 +08:00

README.md

Introduction

This module is the zookeeper registry plugin module, this plugin will use zookeeper as the registry center.

How to use

If you want to set the registry center as zookeeper,you need to set the registry properties in master/worker/api's application.yml

registry:
  type: zookeeper
  zookeeper:
    namespace: dolphinscheduler
    connect-string: localhost:2181
    retry-policy:
      base-sleep-time: 60ms
      max-sleep: 300ms
      max-retries: 5
    session-timeout: 30s
    connection-timeout: 9s
    block-until-connected: 600ms
    # The following options are set according to personal needs    
    digest: ~

After do this config, you can start your DolphinScheduler cluster, your cluster will use zookeeper as registry center to store server metadata.