mirror of https://github.com/milvus-io/milvus.git
Use path.Join when init ChunkCache path (#27433)
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>pull/27426/head
parent
63ac43a3b8
commit
7d0dd0047d
|
@ -236,13 +236,13 @@ func (node *QueryNode) InitSegcore() error {
|
|||
if len(mmapDirPath) == 0 {
|
||||
mmapDirPath = paramtable.Get().LocalStorageCfg.Path.GetValue()
|
||||
}
|
||||
mmapDirPath += "/chunk_cache"
|
||||
chunkCachePath := path.Join(mmapDirPath, "chunk_cache")
|
||||
policy := paramtable.Get().QueryNodeCfg.ReadAheadPolicy.GetValue()
|
||||
err = initcore.InitChunkCache(mmapDirPath, policy)
|
||||
err = initcore.InitChunkCache(chunkCachePath, policy)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
log.Info("InitChunkCache done", zap.String("dir", mmapDirPath), zap.String("policy", policy))
|
||||
log.Info("InitChunkCache done", zap.String("dir", chunkCachePath), zap.String("policy", policy))
|
||||
|
||||
initcore.InitTraceConfig(paramtable.Get())
|
||||
return nil
|
||||
|
|
Loading…
Reference in New Issue