Newer
Older
# Directory to host logging files, which must already exist
--log_dir=logs
# 0, 1, 2, 3 for INFO, WARNING, ERROR, FATAL respectively
--minloglevel=0
# verbose loging 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
# Whether to redirect stdout and stderr to separate output files
--redirect_stdout=true
# Destination filename of stdout and stderr, which will also reside in log_dir.
--stdout_log_file=stdout.log
--stderr_log_file=stderr.log
# File to host the process id, which also resides in log_dir
--pid_file=nebula-graphd.pid
# Network device to listen on
--listen_netdev=any
# Port to listen on
--port=3699
# seconds before we close the idle connections, 0 for infinite
--client_idle_timeout_secs=0
# seconds before we expire the idle sessions, 0 for inifnite
--session_idle_timeout_secs=60000
# number of threads to accept incoming connections
--num_accept_threads=1
# number of networking IO threads, 0 for number of physical CPU cores
--num_netio_threads=0
# turn on SO_REUSEPORT or not
--reuse_port=false
# Backlog of the listen socket, adjust this together with net.core.somaxconn
--listen_backlog=1024