aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-08-05 16:45:19 -0700
committerChris Lu <chris.lu@gmail.com>2019-08-05 16:45:21 -0700
commitc79274f7ebd3939727b3aba240175cd65ad95238 (patch)
tree89dd05de864cf495b0844ef37a49e8acbc5706ba
parent21a37787ba5fcb41318b28f33ec07b2f20c18edf (diff)
downloadseaweedfs-c79274f7ebd3939727b3aba240175cd65ad95238.tar.xz
seaweedfs-c79274f7ebd3939727b3aba240175cd65ad95238.zip
notes on supported meta data store
-rw-r--r--weed/command/scaffold.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/scaffold.go b/weed/command/scaffold.go
index 67e0ae7c9..0b4cb26a3 100644
--- a/weed/command/scaffold.go
+++ b/weed/command/scaffold.go
@@ -78,7 +78,7 @@ dir = "." # directory to store level db files
# multiple filers on shared storage, fairly scalable
####################################################
-[mysql]
+[mysql] # or tidb
# CREATE TABLE IF NOT EXISTS filemeta (
# dirhash BIGINT COMMENT 'first 64 bits of MD5 hash value of directory field',
# name VARCHAR(1000) COMMENT 'directory or file name',
@@ -96,7 +96,7 @@ database = "" # create or use an existing database
connection_max_idle = 2
connection_max_open = 100
-[postgres]
+[postgres] # or cockroachdb
# CREATE TABLE IF NOT EXISTS filemeta (
# dirhash BIGINT,
# name VARCHAR(65535),