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 to milvus-io#44452
Remove the deprecated lazy load feature which has been superseded by
warmup-related parameters. This cleanup includes:
- Remove AddFieldDataInfoForSealed from C++ segcore layer
- Remove IsLazyLoad() method and isLazyLoad field from segment
- Remove lazy load checks in proxy alterCollectionTask
- Remove DiskCache lazy load handling in search/retrieve paths
- Remove LazyLoadEnableKey constant and related helper functions
- Update mock files to reflect interface changes
---------
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
Copy file name to clipboardExpand all lines: configs/milvus.yaml
-7Lines changed: 0 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -531,13 +531,6 @@ queryNode:
531
531
growingMmapEnabled: false
532
532
fixedFileSizeForMmapAlloc: 1# tmp file size for mmap chunk manager
533
533
maxDiskUsagePercentageForMmapAlloc: 50# disk percentage used in mmap chunk manager
534
-
lazyload:
535
-
enabled: false # Enable lazyload for loading data
536
-
waitTimeout: 30000# max wait timeout duration in milliseconds before start to do lazyload search and retrieve
537
-
requestResourceTimeout: 5000# max timeout in milliseconds for waiting request resource for lazy load, 5s by default
538
-
requestResourceRetryInterval: 2000# retry interval in milliseconds for waiting request resource for lazy load, 2s by default
539
-
maxRetryTimes: 1# max retry times for lazy load, 1 by default
540
-
maxEvictPerRetry: 1# max evict count for lazy load, 1 by default
541
534
indexOffsetCacheEnabled: false # enable index offset cache for some scalar indexes, now is just for bitmap index, enable this param can improve performance for retrieving raw data from index
0 commit comments