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.

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