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
# Related configuration of pulsar, used to manage Milvus logs of recent mutation operations, output streaming log, and provide log publish-subscribe services.
97
102
pulsar:
@@ -104,9 +109,9 @@ pulsar:
104
109
105
110
# If you want to enable kafka, needs to comment the pulsar configs
106
111
# kafka:
107
-
# brokerList:
108
-
# saslUsername:
109
-
# saslPassword:
112
+
# brokerList:
113
+
# saslUsername:
114
+
# saslPassword:
110
115
# saslMechanisms: PLAIN
111
116
# securityProtocol: SASL_SSL
112
117
@@ -120,6 +125,21 @@ rocksmq:
120
125
retentionSizeInMB: 8192# 8 GB, 8 * 1024 MB, The retention size of the message in rocksmq.
121
126
compactionInterval: 86400# 1 day, trigger rocksdb compaction every day to remove deleted data
122
127
128
+
# natsmq configuration.
129
+
natsmq:
130
+
server: # server side configuration for natsmq.
131
+
port: 4222# 4222 by default, Port for nats server listening.
132
+
storeDir: /var/lib/milvus/nats # /var/lib/milvus/nats by default, directory to use for JetStream storage of nats.
133
+
maxFileStore: 17179869184# (B) 16GB by default, Maximum size of the 'file' storage.
134
+
maxPayload: 8388608# (B) 8MB by default, Maximum number of bytes in a message payload.
135
+
maxPending: 67108864# (B) 64MB by default, Maximum number of bytes buffered for a connection Applies to client connections.
136
+
initializeTimeout: 4000# (ms) 4s by default, waiting for initialization of natsmq finished.
137
+
monitor:
138
+
debug: false # false by default, If true enable debug log messages.
139
+
logTime: true # true by default, If set to false, log without timestamps.
140
+
logFile: # no log file by default, Log file path relative to.. .
141
+
logSizeLimit: 0# (B) 0, unlimited by default, Size in bytes after the log file rolls over to a new one.
142
+
123
143
# Related configuration of rootCoord, used to handle data definition language (DDL) and data control language (DCL) requests
124
144
rootCoord:
125
145
dmlChannelNum: 16# The number of dml channels created at system startup
0 commit comments