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.

533 lines
15 KiB

5 years ago
4 years ago
4 years ago
4 years ago
4 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. case "shell":
  40. content = SHELL_TOML_EXAMPLE
  41. }
  42. if content == "" {
  43. println("need a valid -config option")
  44. return false
  45. }
  46. if *outputPath != "" {
  47. ioutil.WriteFile(filepath.Join(*outputPath, *config+".toml"), []byte(content), 0644)
  48. } else {
  49. println(content)
  50. }
  51. return true
  52. }
  53. const (
  54. FILER_TOML_EXAMPLE = `
  55. # A sample TOML config file for SeaweedFS filer store
  56. # Used with "weed filer" or "weed server -filer"
  57. # Put this file to one of the location, with descending priority
  58. # ./filer.toml
  59. # $HOME/.seaweedfs/filer.toml
  60. # /etc/seaweedfs/filer.toml
  61. ####################################################
  62. # Customizable filer server options
  63. ####################################################
  64. [filer.options]
  65. # with http DELETE, by default the filer would check whether a folder is empty.
  66. # recursive_delete will delete all sub folders and files, similar to "rm -Rf"
  67. recursive_delete = false
  68. # directories under this folder will be automatically creating a separate bucket
  69. buckets_folder = "/buckets"
  70. ####################################################
  71. # The following are filer store options
  72. ####################################################
  73. [leveldb2]
  74. # local on disk, mostly for simple single-machine setup, fairly scalable
  75. # faster than previous leveldb, recommended.
  76. enabled = true
  77. dir = "./filerldb2" # directory to store level db files
  78. [leveldb3]
  79. # similar to leveldb2.
  80. # each bucket has its own meta store.
  81. enabled = false
  82. dir = "./filerldb3" # directory to store level db files
  83. [rocksdb]
  84. # local on disk, similar to leveldb
  85. # since it is using a C wrapper, you need to install rocksdb and build it by yourself
  86. enabled = false
  87. dir = "./filerrdb" # directory to store rocksdb files
  88. [mysql] # or memsql, tidb
  89. # CREATE TABLE IF NOT EXISTS filemeta (
  90. # dirhash BIGINT COMMENT 'first 64 bits of MD5 hash value of directory field',
  91. # name VARCHAR(1000) COMMENT 'directory or file name',
  92. # directory TEXT COMMENT 'full path to parent directory',
  93. # meta LONGBLOB,
  94. # PRIMARY KEY (dirhash, name)
  95. # ) DEFAULT CHARSET=utf8;
  96. enabled = false
  97. hostname = "localhost"
  98. port = 3306
  99. username = "root"
  100. password = ""
  101. database = "" # create or use an existing database
  102. connection_max_idle = 2
  103. connection_max_open = 100
  104. connection_max_lifetime_seconds = 0
  105. interpolateParams = false
  106. [mysql2] # or memsql, tidb
  107. enabled = false
  108. createTable = """
  109. CREATE TABLE IF NOT EXISTS %s (
  110. dirhash BIGINT,
  111. name VARCHAR(1000),
  112. directory TEXT,
  113. meta LONGBLOB,
  114. PRIMARY KEY (dirhash, name)
  115. ) DEFAULT CHARSET=utf8;
  116. """
  117. hostname = "localhost"
  118. port = 3306
  119. username = "root"
  120. password = ""
  121. database = "" # create or use an existing database
  122. connection_max_idle = 2
  123. connection_max_open = 100
  124. connection_max_lifetime_seconds = 0
  125. interpolateParams = false
  126. [postgres] # or cockroachdb, YugabyteDB
  127. # CREATE TABLE IF NOT EXISTS filemeta (
  128. # dirhash BIGINT,
  129. # name VARCHAR(65535),
  130. # directory VARCHAR(65535),
  131. # meta bytea,
  132. # PRIMARY KEY (dirhash, name)
  133. # );
  134. enabled = false
  135. hostname = "localhost"
  136. port = 5432
  137. username = "postgres"
  138. password = ""
  139. database = "" # create or use an existing database
  140. sslmode = "disable"
  141. connection_max_idle = 100
  142. connection_max_open = 100
  143. [postgres2]
  144. enabled = false
  145. createTable = """
  146. CREATE TABLE IF NOT EXISTS %s (
  147. dirhash BIGINT,
  148. name VARCHAR(65535),
  149. directory VARCHAR(65535),
  150. meta bytea,
  151. PRIMARY KEY (dirhash, name)
  152. );
  153. """
  154. hostname = "localhost"
  155. port = 5432
  156. username = "postgres"
  157. password = ""
  158. database = "" # create or use an existing database
  159. sslmode = "disable"
  160. connection_max_idle = 100
  161. connection_max_open = 100
  162. [cassandra]
  163. # CREATE TABLE filemeta (
  164. # directory varchar,
  165. # name varchar,
  166. # meta blob,
  167. # PRIMARY KEY (directory, name)
  168. # ) WITH CLUSTERING ORDER BY (name ASC);
  169. enabled = false
  170. keyspace="seaweedfs"
  171. hosts=[
  172. "localhost:9042",
  173. ]
  174. username=""
  175. password=""
  176. # This changes the data layout. Only add new directories. Removing/Updating will cause data loss.
  177. superLargeDirectories = []
  178. [hbase]
  179. enabled = false
  180. zkquorum = ""
  181. table = "seaweedfs"
  182. [redis2]
  183. enabled = false
  184. address = "localhost:6379"
  185. password = ""
  186. database = 0
  187. # This changes the data layout. Only add new directories. Removing/Updating will cause data loss.
  188. superLargeDirectories = []
  189. [redis_cluster2]
  190. enabled = false
  191. addresses = [
  192. "localhost:30001",
  193. "localhost:30002",
  194. "localhost:30003",
  195. "localhost:30004",
  196. "localhost:30005",
  197. "localhost:30006",
  198. ]
  199. password = ""
  200. # allows reads from slave servers or the master, but all writes still go to the master
  201. readOnly = false
  202. # automatically use the closest Redis server for reads
  203. routeByLatency = false
  204. # This changes the data layout. Only add new directories. Removing/Updating will cause data loss.
  205. superLargeDirectories = []
  206. [etcd]
  207. enabled = false
  208. servers = "localhost:2379"
  209. timeout = "3s"
  210. [mongodb]
  211. enabled = false
  212. uri = "mongodb://localhost:27017"
  213. option_pool_size = 0
  214. database = "seaweedfs"
  215. [elastic7]
  216. enabled = false
  217. servers = [
  218. "http://localhost1:9200",
  219. "http://localhost2:9200",
  220. "http://localhost3:9200",
  221. ]
  222. username = ""
  223. password = ""
  224. sniff_enabled = false
  225. healthcheck_enabled = false
  226. # increase the value is recommend, be sure the value in Elastic is greater or equal here
  227. index.max_result_window = 10000
  228. ##########################
  229. ##########################
  230. # To add path-specific filer store:
  231. #
  232. # 1. Add a name following the store type separated by a dot ".". E.g., cassandra.tmp
  233. # 2. Add a location configuraiton. E.g., location = "/tmp/"
  234. # 3. Copy and customize all other configurations.
  235. # Make sure they are not the same if using the same store type!
  236. # 4. Set enabled to true
  237. #
  238. # The following is just using cassandra as an example
  239. ##########################
  240. [redis2.tmp]
  241. enabled = false
  242. location = "/tmp/"
  243. address = "localhost:6379"
  244. password = ""
  245. database = 1
  246. `
  247. NOTIFICATION_TOML_EXAMPLE = `
  248. # A sample TOML config file for SeaweedFS filer store
  249. # Used by both "weed filer" or "weed server -filer" and "weed filer.replicate"
  250. # Put this file to one of the location, with descending priority
  251. # ./notification.toml
  252. # $HOME/.seaweedfs/notification.toml
  253. # /etc/seaweedfs/notification.toml
  254. ####################################################
  255. # notification
  256. # send and receive filer updates for each file to an external message queue
  257. ####################################################
  258. [notification.log]
  259. # this is only for debugging perpose and does not work with "weed filer.replicate"
  260. enabled = false
  261. [notification.kafka]
  262. enabled = false
  263. hosts = [
  264. "localhost:9092"
  265. ]
  266. topic = "seaweedfs_filer"
  267. offsetFile = "./last.offset"
  268. offsetSaveIntervalSeconds = 10
  269. [notification.aws_sqs]
  270. # experimental, let me know if it works
  271. enabled = false
  272. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  273. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  274. region = "us-east-2"
  275. sqs_queue_name = "my_filer_queue" # an existing queue name
  276. [notification.google_pub_sub]
  277. # read credentials doc at https://cloud.google.com/docs/authentication/getting-started
  278. enabled = false
  279. google_application_credentials = "/path/to/x.json" # path to json credential file
  280. project_id = "" # an existing project id
  281. topic = "seaweedfs_filer_topic" # a topic, auto created if does not exists
  282. [notification.gocdk_pub_sub]
  283. # The Go Cloud Development Kit (https://gocloud.dev).
  284. # PubSub API (https://godoc.org/gocloud.dev/pubsub).
  285. # Supports AWS SNS/SQS, Azure Service Bus, Google PubSub, NATS and RabbitMQ.
  286. enabled = false
  287. # This URL will Dial the RabbitMQ server at the URL in the environment
  288. # variable RABBIT_SERVER_URL and open the exchange "myexchange".
  289. # The exchange must have already been created by some other means, like
  290. # the RabbitMQ management plugin.
  291. topic_url = "rabbit://myexchange"
  292. sub_url = "rabbit://myqueue"
  293. `
  294. REPLICATION_TOML_EXAMPLE = `
  295. # A sample TOML config file for replicating SeaweedFS filer
  296. # Used with "weed filer.replicate"
  297. # Put this file to one of the location, with descending priority
  298. # ./replication.toml
  299. # $HOME/.seaweedfs/replication.toml
  300. # /etc/seaweedfs/replication.toml
  301. [source.filer]
  302. enabled = true
  303. grpcAddress = "localhost:18888"
  304. # all files under this directory tree are replicated.
  305. # this is not a directory on your hard drive, but on your filer.
  306. # i.e., all files with this "prefix" are sent to notification message queue.
  307. directory = "/buckets"
  308. [sink.filer]
  309. enabled = false
  310. grpcAddress = "localhost:18888"
  311. # all replicated files are under this directory tree
  312. # this is not a directory on your hard drive, but on your filer.
  313. # i.e., all received files will be "prefixed" to this directory.
  314. directory = "/backup"
  315. replication = ""
  316. collection = ""
  317. ttlSec = 0
  318. [sink.s3]
  319. # read credentials doc at https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/sessions.html
  320. # default loads credentials from the shared credentials file (~/.aws/credentials).
  321. enabled = false
  322. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  323. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  324. region = "us-east-2"
  325. bucket = "your_bucket_name" # an existing bucket
  326. directory = "/" # destination directory
  327. endpoint = ""
  328. [sink.google_cloud_storage]
  329. # read credentials doc at https://cloud.google.com/docs/authentication/getting-started
  330. enabled = false
  331. google_application_credentials = "/path/to/x.json" # path to json credential file
  332. bucket = "your_bucket_seaweedfs" # an existing bucket
  333. directory = "/" # destination directory
  334. [sink.azure]
  335. # experimental, let me know if it works
  336. enabled = false
  337. account_name = ""
  338. account_key = ""
  339. container = "mycontainer" # an existing container
  340. directory = "/" # destination directory
  341. [sink.backblaze]
  342. enabled = false
  343. b2_account_id = ""
  344. b2_master_application_key = ""
  345. bucket = "mybucket" # an existing bucket
  346. directory = "/" # destination directory
  347. `
  348. SECURITY_TOML_EXAMPLE = `
  349. # Put this file to one of the location, with descending priority
  350. # ./security.toml
  351. # $HOME/.seaweedfs/security.toml
  352. # /etc/seaweedfs/security.toml
  353. # this file is read by master, volume server, and filer
  354. # the jwt signing key is read by master and volume server.
  355. # a jwt defaults to expire after 10 seconds.
  356. [jwt.signing]
  357. key = ""
  358. expires_after_seconds = 10 # seconds
  359. # jwt for read is only supported with master+volume setup. Filer does not support this mode.
  360. [jwt.signing.read]
  361. key = ""
  362. expires_after_seconds = 10 # seconds
  363. # all grpc tls authentications are mutual
  364. # the values for the following ca, cert, and key are paths to the PERM files.
  365. # the host name is not checked, so the PERM files can be shared.
  366. [grpc]
  367. ca = ""
  368. [grpc.volume]
  369. cert = ""
  370. key = ""
  371. [grpc.master]
  372. cert = ""
  373. key = ""
  374. [grpc.filer]
  375. cert = ""
  376. key = ""
  377. [grpc.msg_broker]
  378. cert = ""
  379. key = ""
  380. # use this for any place needs a grpc client
  381. # i.e., "weed backup|benchmark|filer.copy|filer.replicate|mount|s3|upload"
  382. [grpc.client]
  383. cert = ""
  384. key = ""
  385. # volume server https options
  386. # Note: work in progress!
  387. # this does not work with other clients, e.g., "weed filer|mount" etc, yet.
  388. [https.client]
  389. enabled = true
  390. [https.volume]
  391. cert = ""
  392. key = ""
  393. `
  394. MASTER_TOML_EXAMPLE = `
  395. # Put this file to one of the location, with descending priority
  396. # ./master.toml
  397. # $HOME/.seaweedfs/master.toml
  398. # /etc/seaweedfs/master.toml
  399. # this file is read by master
  400. [master.maintenance]
  401. # periodically run these scripts are the same as running them from 'weed shell'
  402. scripts = """
  403. lock
  404. ec.encode -fullPercent=95 -quietFor=1h
  405. ec.rebuild -force
  406. ec.balance -force
  407. volume.balance -force
  408. volume.fix.replication
  409. unlock
  410. """
  411. sleep_minutes = 17 # sleep minutes between each script execution
  412. [master.filer]
  413. default = "localhost:8888" # used by maintenance scripts if the scripts needs to use fs related commands
  414. [master.sequencer]
  415. type = "raft" # Choose [raft|etcd] type for storing the file id sequence
  416. # when sequencer.type = etcd, set listen client urls of etcd cluster that store file id sequence
  417. # example : http://127.0.0.1:2379,http://127.0.0.1:2389
  418. sequencer_etcd_urls = "http://127.0.0.1:2379"
  419. # configurations for tiered cloud storage
  420. # old volumes are transparently moved to cloud for cost efficiency
  421. [storage.backend]
  422. [storage.backend.s3.default]
  423. enabled = false
  424. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  425. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  426. region = "us-east-2"
  427. bucket = "your_bucket_name" # an existing bucket
  428. endpoint = ""
  429. # create this number of logical volumes if no more writable volumes
  430. # count_x means how many copies of data.
  431. # e.g.:
  432. # 000 has only one copy, copy_1
  433. # 010 and 001 has two copies, copy_2
  434. # 011 has only 3 copies, copy_3
  435. [master.volume_growth]
  436. copy_1 = 7 # create 1 x 7 = 7 actual volumes
  437. copy_2 = 6 # create 2 x 6 = 12 actual volumes
  438. copy_3 = 3 # create 3 x 3 = 9 actual volumes
  439. copy_other = 1 # create n x 1 = n actual volumes
  440. # configuration flags for replication
  441. [master.replication]
  442. # any replication counts should be considered minimums. If you specify 010 and
  443. # have 3 different racks, that's still considered writable. Writes will still
  444. # try to replicate to all available volumes. You should only use this option
  445. # if you are doing your own replication or periodic sync of volumes.
  446. treat_replication_as_minimums = false
  447. `
  448. SHELL_TOML_EXAMPLE = `
  449. [cluster]
  450. default = "c1"
  451. [cluster.c1]
  452. master = "localhost:9333" # comma-separated master servers
  453. filer = "localhost:8888" # filer host and port
  454. [cluster.c2]
  455. master = ""
  456. filer = ""
  457. `
  458. )