aboutsummaryrefslogtreecommitdiff
path: root/weed/command
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2022-04-20 14:39:13 -0700
committerGitHub <noreply@github.com>2022-04-20 14:39:13 -0700
commit7c4a556940fba65840ec2522394ea3a4e0a78fb4 (patch)
tree7f3e02d6e69d10913d882c5f87d9156001e1b77c /weed/command
parentd1fd40358215a6237f51e0918659f74cc7269ff1 (diff)
parent1d6a9e66b608f77a0da9a6903802bb24ff0629d7 (diff)
downloadseaweedfs-7c4a556940fba65840ec2522394ea3a4e0a78fb4.tar.xz
seaweedfs-7c4a556940fba65840ec2522394ea3a4e0a78fb4.zip
Merge pull request #2764 from gfxlabs/a
arangodb filer store
Diffstat (limited to 'weed/command')
-rw-r--r--weed/command/imports.go1
-rw-r--r--weed/command/scaffold/filer.toml10
2 files changed, 11 insertions, 0 deletions
diff --git a/weed/command/imports.go b/weed/command/imports.go
index 3792c45c4..5b3195907 100644
--- a/weed/command/imports.go
+++ b/weed/command/imports.go
@@ -15,6 +15,7 @@ import (
_ "github.com/chrislusf/seaweedfs/weed/replication/sink/localsink"
_ "github.com/chrislusf/seaweedfs/weed/replication/sink/s3sink"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/arangodb"
_ "github.com/chrislusf/seaweedfs/weed/filer/cassandra"
_ "github.com/chrislusf/seaweedfs/weed/filer/elastic/v7"
_ "github.com/chrislusf/seaweedfs/weed/filer/etcd"
diff --git a/weed/command/scaffold/filer.toml b/weed/command/scaffold/filer.toml
index 5d4513c36..0a505bbdc 100644
--- a/weed/command/scaffold/filer.toml
+++ b/weed/command/scaffold/filer.toml
@@ -285,6 +285,16 @@ healthcheck_enabled = false
index.max_result_window = 10000
+[arangodb] # in development dont use it
+enabled = false
+db_name = "seaweedfs"
+servers=["http://localhost:8529"] # list of servers to connect to
+# only basic auth supported for now
+username=""
+password=""
+# skip tls cert validation
+insecure_skip_verify = true
+
##########################
##########################