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.

428 lines
13 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://localhost1:9200,http://localhost2:9200,http://localhost3:9200"
  158. username = ""
  159. password = ""
  160. sniff_enabled = false
  161. healthcheck_enabled = false
  162. # increase the value is recommend, be sure the value in Elastic is greater or equal here
  163. index.max_result_window = 10000
  164. `
  165. NOTIFICATION_TOML_EXAMPLE = `
  166. # A sample TOML config file for SeaweedFS filer store
  167. # Used by both "weed filer" or "weed server -filer" and "weed filer.replicate"
  168. # Put this file to one of the location, with descending priority
  169. # ./notification.toml
  170. # $HOME/.seaweedfs/notification.toml
  171. # /etc/seaweedfs/notification.toml
  172. ####################################################
  173. # notification
  174. # send and receive filer updates for each file to an external message queue
  175. ####################################################
  176. [notification.log]
  177. # this is only for debugging perpose and does not work with "weed filer.replicate"
  178. enabled = false
  179. [notification.kafka]
  180. enabled = false
  181. hosts = [
  182. "localhost:9092"
  183. ]
  184. topic = "seaweedfs_filer"
  185. offsetFile = "./last.offset"
  186. offsetSaveIntervalSeconds = 10
  187. [notification.aws_sqs]
  188. # experimental, let me know if it works
  189. enabled = false
  190. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  191. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  192. region = "us-east-2"
  193. sqs_queue_name = "my_filer_queue" # an existing queue name
  194. [notification.google_pub_sub]
  195. # read credentials doc at https://cloud.google.com/docs/authentication/getting-started
  196. enabled = false
  197. google_application_credentials = "/path/to/x.json" # path to json credential file
  198. project_id = "" # an existing project id
  199. topic = "seaweedfs_filer_topic" # a topic, auto created if does not exists
  200. [notification.gocdk_pub_sub]
  201. # The Go Cloud Development Kit (https://gocloud.dev).
  202. # PubSub API (https://godoc.org/gocloud.dev/pubsub).
  203. # Supports AWS SNS/SQS, Azure Service Bus, Google PubSub, NATS and RabbitMQ.
  204. enabled = false
  205. # This URL will Dial the RabbitMQ server at the URL in the environment
  206. # variable RABBIT_SERVER_URL and open the exchange "myexchange".
  207. # The exchange must have already been created by some other means, like
  208. # the RabbitMQ management plugin.
  209. topic_url = "rabbit://myexchange"
  210. sub_url = "rabbit://myqueue"
  211. `
  212. REPLICATION_TOML_EXAMPLE = `
  213. # A sample TOML config file for replicating SeaweedFS filer
  214. # Used with "weed filer.replicate"
  215. # Put this file to one of the location, with descending priority
  216. # ./replication.toml
  217. # $HOME/.seaweedfs/replication.toml
  218. # /etc/seaweedfs/replication.toml
  219. [source.filer]
  220. enabled = true
  221. grpcAddress = "localhost:18888"
  222. # all files under this directory tree are replicated.
  223. # this is not a directory on your hard drive, but on your filer.
  224. # i.e., all files with this "prefix" are sent to notification message queue.
  225. directory = "/buckets"
  226. [sink.filer]
  227. enabled = false
  228. grpcAddress = "localhost:18888"
  229. # all replicated files are under this directory tree
  230. # this is not a directory on your hard drive, but on your filer.
  231. # i.e., all received files will be "prefixed" to this directory.
  232. directory = "/backup"
  233. replication = ""
  234. collection = ""
  235. ttlSec = 0
  236. [sink.s3]
  237. # read credentials doc at https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/sessions.html
  238. # default loads credentials from the shared credentials file (~/.aws/credentials).
  239. enabled = false
  240. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  241. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  242. region = "us-east-2"
  243. bucket = "your_bucket_name" # an existing bucket
  244. directory = "/" # destination directory
  245. endpoint = ""
  246. [sink.google_cloud_storage]
  247. # read credentials doc at https://cloud.google.com/docs/authentication/getting-started
  248. enabled = false
  249. google_application_credentials = "/path/to/x.json" # path to json credential file
  250. bucket = "your_bucket_seaweedfs" # an existing bucket
  251. directory = "/" # destination directory
  252. [sink.azure]
  253. # experimental, let me know if it works
  254. enabled = false
  255. account_name = ""
  256. account_key = ""
  257. container = "mycontainer" # an existing container
  258. directory = "/" # destination directory
  259. [sink.backblaze]
  260. enabled = false
  261. b2_account_id = ""
  262. b2_master_application_key = ""
  263. bucket = "mybucket" # an existing bucket
  264. directory = "/" # destination directory
  265. `
  266. SECURITY_TOML_EXAMPLE = `
  267. # Put this file to one of the location, with descending priority
  268. # ./security.toml
  269. # $HOME/.seaweedfs/security.toml
  270. # /etc/seaweedfs/security.toml
  271. # this file is read by master, volume server, and filer
  272. # the jwt signing key is read by master and volume server.
  273. # a jwt defaults to expire after 10 seconds.
  274. [jwt.signing]
  275. key = ""
  276. expires_after_seconds = 10 # seconds
  277. # jwt for read is only supported with master+volume setup. Filer does not support this mode.
  278. [jwt.signing.read]
  279. key = ""
  280. expires_after_seconds = 10 # seconds
  281. # all grpc tls authentications are mutual
  282. # the values for the following ca, cert, and key are paths to the PERM files.
  283. # the host name is not checked, so the PERM files can be shared.
  284. [grpc]
  285. ca = ""
  286. [grpc.volume]
  287. cert = ""
  288. key = ""
  289. [grpc.master]
  290. cert = ""
  291. key = ""
  292. [grpc.filer]
  293. cert = ""
  294. key = ""
  295. [grpc.msg_broker]
  296. cert = ""
  297. key = ""
  298. # use this for any place needs a grpc client
  299. # i.e., "weed backup|benchmark|filer.copy|filer.replicate|mount|s3|upload"
  300. [grpc.client]
  301. cert = ""
  302. key = ""
  303. # volume server https options
  304. # Note: work in progress!
  305. # this does not work with other clients, e.g., "weed filer|mount" etc, yet.
  306. [https.client]
  307. enabled = true
  308. [https.volume]
  309. cert = ""
  310. key = ""
  311. `
  312. MASTER_TOML_EXAMPLE = `
  313. # Put this file to one of the location, with descending priority
  314. # ./master.toml
  315. # $HOME/.seaweedfs/master.toml
  316. # /etc/seaweedfs/master.toml
  317. # this file is read by master
  318. [master.maintenance]
  319. # periodically run these scripts are the same as running them from 'weed shell'
  320. scripts = """
  321. lock
  322. ec.encode -fullPercent=95 -quietFor=1h
  323. ec.rebuild -force
  324. ec.balance -force
  325. volume.balance -force
  326. volume.fix.replication
  327. unlock
  328. """
  329. sleep_minutes = 17 # sleep minutes between each script execution
  330. [master.filer]
  331. default = "localhost:8888" # used by maintenance scripts if the scripts needs to use fs related commands
  332. [master.sequencer]
  333. type = "memory" # Choose [memory|etcd] type for storing the file id sequence
  334. # when sequencer.type = etcd, set listen client urls of etcd cluster that store file id sequence
  335. # example : http://127.0.0.1:2379,http://127.0.0.1:2389
  336. sequencer_etcd_urls = "http://127.0.0.1:2379"
  337. # configurations for tiered cloud storage
  338. # old volumes are transparently moved to cloud for cost efficiency
  339. [storage.backend]
  340. [storage.backend.s3.default]
  341. enabled = false
  342. aws_access_key_id = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  343. aws_secret_access_key = "" # if empty, loads from the shared credentials file (~/.aws/credentials).
  344. region = "us-east-2"
  345. bucket = "your_bucket_name" # an existing bucket
  346. endpoint = ""
  347. # create this number of logical volumes if no more writable volumes
  348. # count_x means how many copies of data.
  349. # e.g.:
  350. # 000 has only one copy, copy_1
  351. # 010 and 001 has two copies, copy_2
  352. # 011 has only 3 copies, copy_3
  353. [master.volume_growth]
  354. copy_1 = 7 # create 1 x 7 = 7 actual volumes
  355. copy_2 = 6 # create 2 x 6 = 12 actual volumes
  356. copy_3 = 3 # create 3 x 3 = 9 actual volumes
  357. copy_other = 1 # create n x 1 = n actual volumes
  358. # configuration flags for replication
  359. [master.replication]
  360. # any replication counts should be considered minimums. If you specify 010 and
  361. # have 3 different racks, that's still considered writable. Writes will still
  362. # try to replicate to all available volumes. You should only use this option
  363. # if you are doing your own replication or periodic sync of volumes.
  364. treat_replication_as_minimums = false
  365. `
  366. )