You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

424 lines
12 KiB

5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package command
  2. import (
  3. "io/ioutil"
  4. "path/filepath"
  5. )
  6. func init() {
  7. cmdScaffold.Run = runScaffold // break init cycle
  8. }
  9. var cmdScaffold = &Command{
  10. UsageLine: "scaffold -config=[filer|notification|replication|security|master]",
  11. Short: "generate basic configuration files",
  12. Long: `Generate filer.toml with all possible configurations for you to customize.
  13. The options can also be overwritten by environment variables.
  14. For example, the filer.toml mysql password can be overwritten by environment variable
  15. export WEED_MYSQL_PASSWORD=some_password
  16. Environment variable rules:
  17. * Prefix the variable name with "WEED_"
  18. * Upppercase the reset of variable name.
  19. * Replace '.' with '_'
  20. `,
  21. }
  22. var (
  23. outputPath = cmdScaffold.Flag.String("output", "", "if not empty, save the configuration file to this directory")
  24. config = cmdScaffold.Flag.String("config", "filer", "[filer|notification|replication|security|master] the configuration file to generate")
  25. )
  26. func runScaffold(cmd *Command, args []string) bool {
  27. content := ""
  28. switch *config {
  29. case "filer":
  30. content = FILER_TOML_EXAMPLE
  31. case "notification":
  32. content = NOTIFICATION_TOML_EXAMPLE
  33. case "replication":
  34. content = REPLICATION_TOML_EXAMPLE
  35. case "security":
  36. content = SECURITY_TOML_EXAMPLE
  37. case "master":
  38. content = MASTER_TOML_EXAMPLE
  39. }
  40. if content == "" {
  41. println("need a valid -config option")
  42. return false
  43. }
  44. if *outputPath != "" {
  45. ioutil.WriteFile(filepath.Join(*outputPath, *config+".toml"), []byte(content), 0644)
  46. } else {
  47. println(content)
  48. }
  49. return true
  50. }
  51. const (
  52. FILER_TOML_EXAMPLE = `
  53. # A sample TOML config file for SeaweedFS filer store
  54. # Used with "weed filer" or "weed server -filer"
  55. # Put this file to one of the location, with descending priority
  56. # ./filer.toml
  57. # $HOME/.seaweedfs/filer.toml
  58. # /etc/seaweedfs/filer.toml
  59. ####################################################
  60. # Customizable filer server options
  61. ####################################################
  62. [filer.options]
  63. # with http DELETE, by default the filer would check whether a folder is empty.
  64. # recursive_delete will delete all sub folders and files, similar to "rm -Rf"
  65. recursive_delete = false
  66. # directories under this folder will be automatically creating a separate bucket
  67. buckets_folder = "/buckets"
  68. buckets_fsync = [ # a list of buckets with all write requests fsync=true
  69. "important_bucket",
  70. "should_always_fsync",
  71. ]
  72. ####################################################
  73. # The following are filer store options
  74. ####################################################
  75. [leveldb2]
  76. # local on disk, mostly for simple single-machine setup, fairly scalable
  77. # faster than previous leveldb, recommended.
  78. enabled = true
  79. dir = "." # directory to store level db files
  80. [mysql] # or tidb
  81. # CREATE TABLE IF NOT EXISTS filemeta (
  82. # dirhash BIGINT COMMENT 'first 64 bits of MD5 hash value of directory field',
  83. # name VARCHAR(1000) COMMENT 'directory or file name',
  84. # directory TEXT COMMENT 'full path to parent directory',
  85. # meta LONGBLOB,
  86. # PRIMARY KEY (dirhash, name)
  87. # ) DEFAULT CHARSET=utf8;
  88. enabled = false
  89. hostname = "localhost"
  90. port = 3306
  91. username = "root"
  92. password = ""
  93. database = "" # create or use an existing database
  94. connection_max_idle = 2
  95. connection_max_open = 100
  96. interpolateParams = false
  97. [postgres] # or cockroachdb
  98. # CREATE TABLE IF NOT EXISTS filemeta (
  99. # dirhash BIGINT,
  100. # name VARCHAR(65535),
  101. # directory VARCHAR(65535),
  102. # meta bytea,
  103. # PRIMARY KEY (dirhash, name)
  104. # );
  105. enabled = false
  106. hostname = "localhost"
  107. port = 5432
  108. username = "postgres"
  109. password = ""
  110. database = "" # create or use an existing database
  111. sslmode = "disable"
  112. connection_max_idle = 100
  113. connection_max_open = 100
  114. [cassandra]
  115. # CREATE TABLE filemeta (
  116. # directory varchar,
  117. # name varchar,
  118. # meta blob,
  119. # PRIMARY KEY (directory, name)
  120. # ) WITH CLUSTERING ORDER BY (name ASC);
  121. enabled = false
  122. keyspace="seaweedfs"
  123. hosts=[
  124. "localhost:9042",
  125. ]
  126. [redis2]
  127. enabled = false
  128. address = "localhost:6379"
  129. password = ""
  130. database = 0
  131. [redis_cluster2]
  132. enabled = false
  133. addresses = [
  134. "localhost:30001",
  135. "localhost:30002",
  136. "localhost:30003",
  137. "localhost:30004",
  138. "localhost:30005",
  139. "localhost:30006",
  140. ]
  141. password = ""
  142. # allows reads from slave servers or the master, but all writes still go to the master
  143. readOnly = true
  144. # automatically use the closest Redis server for reads
  145. routeByLatency = true
  146. [etcd]
  147. enabled = false
  148. servers = "localhost:2379"
  149. timeout = "3s"
  150. [mongodb]
  151. enabled = false
  152. uri = "mongodb://localhost:27017"
  153. option_pool_size = 0
  154. database = "seaweedfs"
  155. [elastic7]
  156. enabled = false
  157. servers = "http://localhost:9200"
  158. # increase the value is recommend, be sure the value in Elastic is greater or equal here
  159. index.max_result_window = 10000
  160. `
  161. NOTIFICATION_TOML_EXAMPLE = `
  162. # A sample TOML config file for SeaweedFS filer store
  163. # Used by both "weed filer" or "weed server -filer" and "weed filer.replicate"
  164. # Put this file to one of the location, with descending priority
  165. # ./notification.toml
  166. # $HOME/.seaweedfs/notification.toml
  167. # /etc/seaweedfs/notification.toml
  168. ####################################################
  169. # notification
  170. # send and receive filer updates for each file to an external message queue
  171. ####################################################
  172. [notification.log]
  173. # this is only for debugging perpose and does not work with "weed filer.replicate"
  174. enabled = false
  175. [notification.kafka]
  176. enabled = false
  177. hosts = [
  178. "localhost:9092"
  179. ]
  180. topic = "seaweedfs_filer"
  181. offsetFile = "./last.offset"
  182. offsetSaveIntervalSeconds = 10
  183. [notification.aws_sqs]
  184. # experimental, let me know if it works
  185. enabled = false
  186. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  187. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  188. region = "us-east-2"
  189. sqs_queue_name = "my_filer_queue" # an existing queue name
  190. [notification.google_pub_sub]
  191. # read credentials doc at https://cloud.google.com/docs/authentication/getting-started
  192. enabled = false
  193. google_application_credentials = "/path/to/x.json" # path to json credential file
  194. project_id = "" # an existing project id
  195. topic = "seaweedfs_filer_topic" # a topic, auto created if does not exists
  196. [notification.gocdk_pub_sub]
  197. # The Go Cloud Development Kit (https://gocloud.dev).
  198. # PubSub API (https://godoc.org/gocloud.dev/pubsub).
  199. # Supports AWS SNS/SQS, Azure Service Bus, Google PubSub, NATS and RabbitMQ.
  200. enabled = false
  201. # This URL will Dial the RabbitMQ server at the URL in the environment
  202. # variable RABBIT_SERVER_URL and open the exchange "myexchange".
  203. # The exchange must have already been created by some other means, like
  204. # the RabbitMQ management plugin.
  205. topic_url = "rabbit://myexchange"
  206. sub_url = "rabbit://myqueue"
  207. `
  208. REPLICATION_TOML_EXAMPLE = `
  209. # A sample TOML config file for replicating SeaweedFS filer
  210. # Used with "weed filer.replicate"
  211. # Put this file to one of the location, with descending priority
  212. # ./replication.toml
  213. # $HOME/.seaweedfs/replication.toml
  214. # /etc/seaweedfs/replication.toml
  215. [source.filer]
  216. enabled = true
  217. grpcAddress = "localhost:18888"
  218. # all files under this directory tree are replicated.
  219. # this is not a directory on your hard drive, but on your filer.
  220. # i.e., all files with this "prefix" are sent to notification message queue.
  221. directory = "/buckets"
  222. [sink.filer]
  223. enabled = false
  224. grpcAddress = "localhost:18888"
  225. # all replicated files are under this directory tree
  226. # this is not a directory on your hard drive, but on your filer.
  227. # i.e., all received files will be "prefixed" to this directory.
  228. directory = "/backup"
  229. replication = ""
  230. collection = ""
  231. ttlSec = 0
  232. [sink.s3]
  233. # read credentials doc at https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/sessions.html
  234. # default loads credentials from the shared credentials file (~/.aws/credentials).
  235. enabled = false
  236. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  237. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  238. region = "us-east-2"
  239. bucket = "your_bucket_name" # an existing bucket
  240. directory = "/" # destination directory
  241. endpoint = ""
  242. [sink.google_cloud_storage]
  243. # read credentials doc at https://cloud.google.com/docs/authentication/getting-started
  244. enabled = false
  245. google_application_credentials = "/path/to/x.json" # path to json credential file
  246. bucket = "your_bucket_seaweedfs" # an existing bucket
  247. directory = "/" # destination directory
  248. [sink.azure]
  249. # experimental, let me know if it works
  250. enabled = false
  251. account_name = ""
  252. account_key = ""
  253. container = "mycontainer" # an existing container
  254. directory = "/" # destination directory
  255. [sink.backblaze]
  256. enabled = false
  257. b2_account_id = ""
  258. b2_master_application_key = ""
  259. bucket = "mybucket" # an existing bucket
  260. directory = "/" # destination directory
  261. `
  262. SECURITY_TOML_EXAMPLE = `
  263. # Put this file to one of the location, with descending priority
  264. # ./security.toml
  265. # $HOME/.seaweedfs/security.toml
  266. # /etc/seaweedfs/security.toml
  267. # this file is read by master, volume server, and filer
  268. # the jwt signing key is read by master and volume server.
  269. # a jwt defaults to expire after 10 seconds.
  270. [jwt.signing]
  271. key = ""
  272. expires_after_seconds = 10 # seconds
  273. # jwt for read is only supported with master+volume setup. Filer does not support this mode.
  274. [jwt.signing.read]
  275. key = ""
  276. expires_after_seconds = 10 # seconds
  277. # all grpc tls authentications are mutual
  278. # the values for the following ca, cert, and key are paths to the PERM files.
  279. # the host name is not checked, so the PERM files can be shared.
  280. [grpc]
  281. ca = ""
  282. [grpc.volume]
  283. cert = ""
  284. key = ""
  285. [grpc.master]
  286. cert = ""
  287. key = ""
  288. [grpc.filer]
  289. cert = ""
  290. key = ""
  291. [grpc.msg_broker]
  292. cert = ""
  293. key = ""
  294. # use this for any place needs a grpc client
  295. # i.e., "weed backup|benchmark|filer.copy|filer.replicate|mount|s3|upload"
  296. [grpc.client]
  297. cert = ""
  298. key = ""
  299. # volume server https options
  300. # Note: work in progress!
  301. # this does not work with other clients, e.g., "weed filer|mount" etc, yet.
  302. [https.client]
  303. enabled = true
  304. [https.volume]
  305. cert = ""
  306. key = ""
  307. `
  308. MASTER_TOML_EXAMPLE = `
  309. # Put this file to one of the location, with descending priority
  310. # ./master.toml
  311. # $HOME/.seaweedfs/master.toml
  312. # /etc/seaweedfs/master.toml
  313. # this file is read by master
  314. [master.maintenance]
  315. # periodically run these scripts are the same as running them from 'weed shell'
  316. scripts = """
  317. lock
  318. ec.encode -fullPercent=95 -quietFor=1h
  319. ec.rebuild -force
  320. ec.balance -force
  321. volume.balance -force
  322. volume.fix.replication
  323. unlock
  324. """
  325. sleep_minutes = 17 # sleep minutes between each script execution
  326. [master.filer]
  327. default = "localhost:8888" # used by maintenance scripts if the scripts needs to use fs related commands
  328. [master.sequencer]
  329. type = "memory" # Choose [memory|etcd] type for storing the file id sequence
  330. # when sequencer.type = etcd, set listen client urls of etcd cluster that store file id sequence
  331. # example : http://127.0.0.1:2379,http://127.0.0.1:2389
  332. sequencer_etcd_urls = "http://127.0.0.1:2379"
  333. # configurations for tiered cloud storage
  334. # old volumes are transparently moved to cloud for cost efficiency
  335. [storage.backend]
  336. [storage.backend.s3.default]
  337. enabled = false
  338. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  339. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  340. region = "us-east-2"
  341. bucket = "your_bucket_name" # an existing bucket
  342. endpoint = ""
  343. # create this number of logical volumes if no more writable volumes
  344. # count_x means how many copies of data.
  345. # e.g.:
  346. # 000 has only one copy, copy_1
  347. # 010 and 001 has two copies, copy_2
  348. # 011 has only 3 copies, copy_3
  349. [master.volume_growth]
  350. copy_1 = 7 # create 1 x 7 = 7 actual volumes
  351. copy_2 = 6 # create 2 x 6 = 12 actual volumes
  352. copy_3 = 3 # create 3 x 3 = 9 actual volumes
  353. copy_other = 1 # create n x 1 = n actual volumes
  354. # configuration flags for replication
  355. [master.replication]
  356. # any replication counts should be considered minimums. If you specify 010 and
  357. # have 3 different racks, that's still considered writable. Writes will still
  358. # try to replicate to all available volumes. You should only use this option
  359. # if you are doing your own replication or periodic sync of volumes.
  360. treat_replication_as_minimums = false
  361. `
  362. )