github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/nebula/configs/nebula-metad.conf.tpl (about) 1 ########## basics ########## 2 # Whether to run as a daemon process 3 --daemonize=true 4 # The file to host the process id 5 --pid_file=pids/nebula-metad.pid 6 --license_path=nebula.license 7 8 ########## logging ########## 9 # The directory to host logging files 10 --log_dir=logs 11 # Log level, 0, 1, 2, 3 for INFO, WARNING, ERROR, FATAL respectively 12 --minloglevel=0 13 # Verbose log level, 1, 2, 3, 4, the higher of the level, the more verbose of the logging 14 --v=0 15 # Maximum seconds to buffer the log messages 16 --logbufsecs=0 17 # Whether to redirect stdout and stderr to separate output files 18 --redirect_stdout=true 19 # Destination filename of stdout and stderr, which will also reside in log_dir. 20 --stdout_log_file=metad-stdout.log 21 --stderr_log_file=metad-stderr.log 22 # Copy log messages at or above this level to stderr in addition to logfiles. The numbers of severity levels INFO, WARNING, ERROR, and FATAL are 0, 1, 2, and 3, respectively. 23 --stderrthreshold=3 24 # wether logging files' name contain time stamp, If Using logrotate to rotate logging files, than should set it to true. 25 --timestamp_in_logfile_name=true 26 27 ########## networking ########## 28 # Comma separated Meta Server addresses 29 --meta_server_addrs=127.0.0.1:9559 30 # Local IP used to identify the nebula-metad process. 31 # Change it to an address other than loopback if the service is distributed or 32 # will be accessed remotely. 33 --local_ip=127.0.0.1 34 # Meta daemon listening port 35 --port=9559 36 # HTTP service ip 37 --ws_ip=0.0.0.0 38 # HTTP service port 39 --ws_http_port=19559 40 # Port to listen on Storage with HTTP protocol, it corresponds to ws_http_port in storage's configuration file 41 --ws_storage_http_port=19779 42 43 ########## storage ########## 44 # Root data path, here should be only single path for metad 45 --data_path=data/meta 46 47 # !!! Minimum reserved bytes of data path 48 --minimum_reserved_bytes=268435456 49 ########## Misc ######### 50 # The default number of parts when a space is created 51 --default_parts_num=10 52 # The default replica factor when a space is created 53 --default_replica_factor=1 54 55 --heartbeat_interval_secs=10 56 --agent_heartbeat_interval_secs=60 57 58 ########## Black box ######## 59 # Enable black box 60 --ng_black_box_switch=true 61 # Black box log folder 62 --ng_black_box_home=black_box 63 # Black box dump metrics log period 64 --ng_black_box_dump_period_seconds=5 65 # Black box log files expire time 66 --ng_black_box_file_lifetime_seconds=1800