fsck: update devcount, forget devs on unfixable FIDs
[MogileFS-Server.git] / conf / mogilefsd.conf
blobad3ebb92e6076d90b6173e9d9ebd6fc308542c92
1 # Enable daemon mode to work in background and use syslog
2 daemonize = 1
3 # Where to store the pid of the daemon (must be the same in the init script)
4 pidfile = /var/run/mogilefsd/mogilefsd.pid
5 # Database connection information
6 db_dsn = DBI:mysql:mogilefs:host=127.0.0.1
7 db_user = username
8 db_pass = password
9 # IP:PORT to listen on for mogilefs client requests
10 listen = 127.0.0.1:7001
11 # Optional, if you don't define the port above.
12 conf_port = 7001
13 # Number of query workers to start by default.
14 query_jobs = 10
15 # Number of delete workers to start by default.
16 delete_jobs = 1
17 # Number of replicate workers to start by default.
18 replicate_jobs = 5
19 # Number of reaper workers to start by default.
20 # (you don't usually need to increase this)
21 reaper_jobs = 1
22 # Number of fsck workers to start by default.
23 # (these can cause a lot of load when fsck'ing)
24 #fsck_jobs = 1
25 # Minimum amount of space to reserve in megabytes
26 # default: 100
27 # Consider setting this to be larger than the largest file you
28 # would normally be uploading.
29 #min_free_space = 200
30 # Number of seconds to wait for a storage node to respond.
31 # default: 2
32 # Keep this low, so busy storage nodes are quickly ignored.
33 #node_timeout = 2
34 # Number of seconds to wait to connect to a storage node.
35 # default: 2
36 # Keep this low so overloaded nodes get skipped.
37 #conn_timeout = 2
38 # Allow replication to use the secondary node get port,
39 # if you have apache or similar configured for GET's
40 #repl_use_get_port = 1