mirror of https://github.com/milvus-io/milvus.git
Returns collection instead of copy to make leaderMutex work (#17206)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/17216/head
parent
de0ba6d495
commit
e06d6d7cc6
|
@ -216,15 +216,7 @@ func (m *MetaCache) GetCollectionInfo(ctx context.Context, collectionName string
|
||||||
}
|
}
|
||||||
|
|
||||||
metrics.ProxyCacheHitCounter.WithLabelValues(strconv.FormatInt(Params.ProxyCfg.GetNodeID(), 10), "GetCollectionInfo", metrics.CacheHitLabel).Inc()
|
metrics.ProxyCacheHitCounter.WithLabelValues(strconv.FormatInt(Params.ProxyCfg.GetNodeID(), 10), "GetCollectionInfo", metrics.CacheHitLabel).Inc()
|
||||||
return &collectionInfo{
|
return collInfo, nil
|
||||||
collID: collInfo.collID,
|
|
||||||
schema: collInfo.schema,
|
|
||||||
partInfo: collInfo.partInfo,
|
|
||||||
createdTimestamp: collInfo.createdTimestamp,
|
|
||||||
createdUtcTimestamp: collInfo.createdUtcTimestamp,
|
|
||||||
shardLeaders: collInfo.shardLeaders,
|
|
||||||
isLoaded: collInfo.isLoaded,
|
|
||||||
}, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MetaCache) GetCollectionSchema(ctx context.Context, collectionName string) (*schemapb.CollectionSchema, error) {
|
func (m *MetaCache) GetCollectionSchema(ctx context.Context, collectionName string) (*schemapb.CollectionSchema, error) {
|
||||||
|
|
Loading…
Reference in New Issue