aboutsummaryrefslogtreecommitdiff
path: root/weed/command/scaffold.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-11-11 21:30:14 -0800
committerChris Lu <chris.lu@gmail.com>2019-11-11 21:30:14 -0800
commitee90236a972acea8722dccfa1b04926d551fc82d (patch)
tree7890d2482177caad2fa72b741435bcefff140cf3 /weed/command/scaffold.go
parent85f8649320033a46e71b20a588930013c00b3fdf (diff)
parentd7852ebb3b8900baeff3d806f8fe2404c511aa5d (diff)
downloadseaweedfs-ee90236a972acea8722dccfa1b04926d551fc82d.tar.xz
seaweedfs-ee90236a972acea8722dccfa1b04926d551fc82d.zip
Merge branch 'master' into refactoring_dat_backend
Diffstat (limited to 'weed/command/scaffold.go')
-rw-r--r--weed/command/scaffold.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/weed/command/scaffold.go b/weed/command/scaffold.go
index 7a988cdcf..6fa72c730 100644
--- a/weed/command/scaffold.go
+++ b/weed/command/scaffold.go
@@ -346,5 +346,12 @@ scripts = """
"""
sleep_minutes = 17 # sleep minutes between each script execution
+sequencer_type = memory # Choose [memory|etcd] type for storing the file id sequence
+
+# when sequencer.type = etcd, set listen client urls of etcd cluster that store file id sequence
+# example : http://127.0.0.1:2379,http://127.0.0.1:2389
+sequencer_etcd_urls = http://127.0.0.1:2379
+
+
`
)