You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Verbose log level, 1, 2, 3, 4, the higher of the level, the more verbose of the logging
16
+
--v=0
17
+
# Maximum seconds to buffer the log messages
18
+
--logbufsecs=0
19
+
# Whether to redirect stdout and stderr to separate output files
20
+
--redirect_stdout=true
21
+
# Destination filename of stdout and stderr, which will also reside in log_dir.
22
+
--stdout_log_file=storaged-stdout.log
23
+
--stderr_log_file=storaged-stderr.log
24
+
# 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.
25
+
--stderrthreshold=2
26
+
# Wether logging files' name contain timestamp.
27
+
--timestamp_in_logfile_name=true
28
+
29
+
########## networking ##########
30
+
# Meta server address
31
+
--meta_server_addrs=127.0.0.1:9559
32
+
# Local ip
33
+
--local_ip=127.0.0.1
34
+
# Storage daemon listening port
35
+
--port=9789
36
+
# HTTP service ip
37
+
--ws_ip=127.0.0.1
38
+
# HTTP service port
39
+
--ws_http_port=19789
40
+
# heartbeat with meta service
41
+
--heartbeat_interval_secs=10
42
+
43
+
########## storage ##########
44
+
# Listener wal directory. only one path is allowed.
45
+
--listener_path=data/listener
46
+
# This parameter can be ignored for compatibility. let's fill A default value of "data"
47
+
--data_path=data
48
+
# The type of part manager, [memory | meta]
49
+
--part_man_type=memory
50
+
# The default reserved bytes for one batch operation
51
+
--rocksdb_batch_size=4096
52
+
# The default block cache size used in BlockBasedTable.
53
+
# The unit is MB.
54
+
--rocksdb_block_cache=4
55
+
# The type of storage engine, `rocksdb', `memory', etc.
0 commit comments