@@ -273,6 +273,7 @@ func (p *commonConfig) init(base *BaseTable) {
273273 // --- rootcoord ---
274274 p .RootCoordTimeTick = ParamItem {
275275 Key : "msgChannel.chanNamePrefix.rootCoordTimeTick" ,
276+ DefaultValue : "rootcoord-timetick" ,
276277 Version : "2.1.0" ,
277278 FallbackKeys : []string {"common.chanNamePrefix.rootCoordTimeTick" },
278279 PanicIfEmpty : true ,
@@ -283,6 +284,7 @@ func (p *commonConfig) init(base *BaseTable) {
283284
284285 p .RootCoordStatistics = ParamItem {
285286 Key : "msgChannel.chanNamePrefix.rootCoordStatistics" ,
287+ DefaultValue : "rootcoord-statistics" ,
286288 Version : "2.1.0" ,
287289 FallbackKeys : []string {"common.chanNamePrefix.rootCoordStatistics" },
288290 PanicIfEmpty : true ,
@@ -293,6 +295,7 @@ func (p *commonConfig) init(base *BaseTable) {
293295
294296 p .RootCoordDml = ParamItem {
295297 Key : "msgChannel.chanNamePrefix.rootCoordDml" ,
298+ DefaultValue : "rootcoord-dml" ,
296299 Version : "2.1.0" ,
297300 FallbackKeys : []string {"common.chanNamePrefix.rootCoordDml" },
298301 PanicIfEmpty : true ,
@@ -303,6 +306,7 @@ func (p *commonConfig) init(base *BaseTable) {
303306
304307 p .ReplicateMsgChannel = ParamItem {
305308 Key : "msgChannel.chanNamePrefix.replicateMsg" ,
309+ DefaultValue : "replicate-msg" ,
306310 Version : "2.3.2" ,
307311 FallbackKeys : []string {"common.chanNamePrefix.replicateMsg" },
308312 PanicIfEmpty : true ,
@@ -313,6 +317,7 @@ func (p *commonConfig) init(base *BaseTable) {
313317
314318 p .QueryCoordTimeTick = ParamItem {
315319 Key : "msgChannel.chanNamePrefix.queryTimeTick" ,
320+ DefaultValue : "queryTimeTick" ,
316321 Version : "2.1.0" ,
317322 FallbackKeys : []string {"common.chanNamePrefix.queryTimeTick" },
318323 PanicIfEmpty : true ,
@@ -323,6 +328,7 @@ func (p *commonConfig) init(base *BaseTable) {
323328
324329 p .DataCoordTimeTick = ParamItem {
325330 Key : "msgChannel.chanNamePrefix.dataCoordTimeTick" ,
331+ DefaultValue : "datacoord-timetick-channel" ,
326332 Version : "2.1.0" ,
327333 FallbackKeys : []string {"common.chanNamePrefix.dataCoordTimeTick" },
328334 PanicIfEmpty : true ,
@@ -333,6 +339,7 @@ func (p *commonConfig) init(base *BaseTable) {
333339
334340 p .DataCoordSegmentInfo = ParamItem {
335341 Key : "msgChannel.chanNamePrefix.dataCoordSegmentInfo" ,
342+ DefaultValue : "segment-info-channel" ,
336343 Version : "2.1.0" ,
337344 FallbackKeys : []string {"common.chanNamePrefix.dataCoordSegmentInfo" },
338345 PanicIfEmpty : true ,
@@ -343,6 +350,7 @@ func (p *commonConfig) init(base *BaseTable) {
343350
344351 p .DataCoordSubName = ParamItem {
345352 Key : "msgChannel.subNamePrefix.dataCoordSubNamePrefix" ,
353+ DefaultValue : "dataCoord" ,
346354 Version : "2.1.0" ,
347355 FallbackKeys : []string {"common.subNamePrefix.dataCoordSubNamePrefix" },
348356 PanicIfEmpty : true ,
@@ -369,6 +377,7 @@ func (p *commonConfig) init(base *BaseTable) {
369377
370378 p .DataNodeSubName = ParamItem {
371379 Key : "msgChannel.subNamePrefix.dataNodeSubNamePrefix" ,
380+ DefaultValue : "dataNode" ,
372381 Version : "2.1.0" ,
373382 FallbackKeys : []string {"common.subNamePrefix.dataNodeSubNamePrefix" },
374383 PanicIfEmpty : true ,
@@ -2255,31 +2264,31 @@ func (p *queryNodeConfig) init(base *BaseTable) {
22552264 p .MmapEnabled .Init (base .mgr )
22562265
22572266 p .LazyLoadEnabled = ParamItem {
2258- Key : "queryNode.lazyloadEnabled " ,
2267+ Key : "queryNode.lazyload.enabled " ,
22592268 Version : "2.4.2" ,
22602269 DefaultValue : "false" ,
22612270 Doc : "Enable lazyload for loading data" ,
22622271 Export : true ,
22632272 }
22642273 p .LazyLoadEnabled .Init (base .mgr )
22652274 p .LazyLoadWaitTimeout = ParamItem {
2266- Key : "queryNode.lazyloadWaitTimeout " ,
2275+ Key : "queryNode.lazyload.waitTimeout " ,
22672276 Version : "2.4.2" ,
22682277 DefaultValue : "30000" ,
22692278 Doc : "max wait timeout duration in milliseconds before start to do lazyload search and retrieve" ,
22702279 Export : true ,
22712280 }
22722281 p .LazyLoadWaitTimeout .Init (base .mgr )
22732282 p .LazyLoadRequestResourceTimeout = ParamItem {
2274- Key : "queryNode.lazyLoadRequestResourceTimeout " ,
2283+ Key : "queryNode.lazyload.requestResourceTimeout " ,
22752284 Version : "2.4.2" ,
22762285 DefaultValue : "5000" ,
22772286 Doc : "max timeout in milliseconds for waiting request resource for lazy load, 5s by default" ,
22782287 Export : true ,
22792288 }
22802289 p .LazyLoadRequestResourceTimeout .Init (base .mgr )
22812290 p .LazyLoadRequestResourceRetryInterval = ParamItem {
2282- Key : "queryNode.lazyLoadRequestResourceRetryInterval " ,
2291+ Key : "queryNode.lazyload.requestResourceRetryInterval " ,
22832292 Version : "2.4.2" ,
22842293 DefaultValue : "2000" ,
22852294 Doc : "retry interval in milliseconds for waiting request resource for lazy load, 2s by default" ,
@@ -2288,7 +2297,7 @@ func (p *queryNodeConfig) init(base *BaseTable) {
22882297 p .LazyLoadRequestResourceRetryInterval .Init (base .mgr )
22892298
22902299 p .LazyLoadMaxRetryTimes = ParamItem {
2291- Key : "queryNode.lazyLoadMaxRetryTimes " ,
2300+ Key : "queryNode.lazyload.maxRetryTimes " ,
22922301 Version : "2.4.2" ,
22932302 DefaultValue : "1" ,
22942303 Doc : "max retry times for lazy load, 1 by default" ,
@@ -2297,7 +2306,7 @@ func (p *queryNodeConfig) init(base *BaseTable) {
22972306 p .LazyLoadMaxRetryTimes .Init (base .mgr )
22982307
22992308 p .LazyLoadMaxEvictPerRetry = ParamItem {
2300- Key : "queryNode.lazyLoadMaxEvictPerRetry " ,
2309+ Key : "queryNode.lazyload.maxEvictPerRetry " ,
23012310 Version : "2.4.2" ,
23022311 DefaultValue : "1" ,
23032312 Doc : "max evict count for lazy load, 1 by default" ,
0 commit comments