forked from vesoft-inc/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnebula-metad.conf.default
36 lines (31 loc) · 1 KB
/
nebula-metad.conf.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
########## basics ##########
# Whether to run as a daemon process
--daemonize=true
# The file to host the process id
--pid_file=pids/nebula-metad.pid
########## logging ##########
# The directory to host logging files, which must already exists
--log_dir=logs
# Log level, 0, 1, 2, 3 for INFO, WARNING, ERROR, FATAL respectively
--minloglevel=0
# Verbose log level, 1, 2, 3, 4, the higher of the level, the more verbose of the logging
--v=4
# Maximum seconds to buffer the log messages
--logbufsecs=0
########## networking ##########
# Local ip
--local_ip=127.0.0.1
# Meta daemon listening port
--port=45500
# HTTP service port
--ws_http_port=11000
# HTTP2 service port
--ws_h2_port=11002
########## storage ##########
# Root data path, multi paths should be split by comma.For rocksdb engine, one path one instance.
--data_path=data/meta
########## Misc #########
# The default number of parts when a space is created
--default_parts_num=1024
# The default replica factor when a space is created
--default_replica_factor=1