forked from vesoft-inc/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement GoExecutor (vesoft-inc#245)
* [WIP] Implement GoExecutor * Address @laura.ding 's comments * Addressed @dangleptr's comments * Addressed @zlcook's comment * Addressed @sherman-the-tank's and @dangleptr's comments * Fixed a stupid error * Reverted changes on ThriftClientManager * Addressed @sherman-the-tank's comments close vesoft-inc#176 close vesoft-inc#177
- Loading branch information
Showing
54 changed files
with
2,553 additions
and
580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
install(FILES nebula-graphd.conf.default DESTINATION etc) | ||
install( | ||
FILES nebula-graphd.conf.default nebula-storaged.conf.default nebula-metad.conf.default | ||
DESTINATION etc | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,42 @@ | ||
########## basics ########## | ||
# Whether run as a daemon process | ||
# Whether to run as a daemon process | ||
--daemonize=true | ||
# The file to host the process id | ||
--pid_file=pids/nebula-graphd.pid | ||
|
||
########## logging ########## | ||
# Directory to host logging files, which must already exist | ||
# The directory to host logging files, which must already exists | ||
--log_dir=logs | ||
# 0, 1, 2, 3 for INFO, WARNING, ERROR, FATAL respectively | ||
# Log level, 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 | ||
# 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 | ||
# 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 | ||
|
||
########## networking ########## | ||
# Network device to listen on | ||
--listen_netdev=any | ||
# Port to listen on | ||
--port=3699 | ||
# seconds before we close the idle connections, 0 for infinite | ||
# To turn on SO_REUSEPORT or not | ||
--reuse_port=false | ||
# Backlog of the listen socket, adjust this together with net.core.somaxconn | ||
--listen_backlog=1024 | ||
# Seconds before the idle connections are closed, 0 for never closed | ||
--client_idle_timeout_secs=0 | ||
# seconds before we expire the idle sessions, 0 for inifnite | ||
# Seconds before the idle sessions are expired, 0 for no expiration | ||
--session_idle_timeout_secs=60000 | ||
# number of threads to accept incoming connections | ||
# The number of threads to accept incoming connections | ||
--num_accept_threads=1 | ||
# number of networking IO threads, 0 for number of physical CPU cores | ||
# The 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 | ||
# HTTP service port | ||
--ws_http_port=0 | ||
# HTTP2 service port | ||
--ws_h2_portt=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.