[skip ci] Refine datacoord meta comment (#13112)

Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
pull/13116/merge
edward.zeng 2021-12-09 22:07:10 +08:00 committed by GitHub
parent c5a17e1531
commit 4459611126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ type meta struct {
segments *SegmentsInfo // segment id to segment info segments *SegmentsInfo // segment id to segment info
} }
// NewMeta create meta from provided `kv.TxnKV` // NewMeta creates meta from provided `kv.TxnKV`
func newMeta(kv kv.TxnKV) (*meta, error) { func newMeta(kv kv.TxnKV) (*meta, error) {
mt := &meta{ mt := &meta{
client: kv, client: kv,
@ -63,7 +63,7 @@ func newMeta(kv kv.TxnKV) (*meta, error) {
return mt, nil return mt, nil
} }
// reloadFromKV load meta from KV storage // reloadFromKV loads meta from KV storage
func (m *meta) reloadFromKV() error { func (m *meta) reloadFromKV() error {
_, values, err := m.client.LoadWithPrefix(segmentPrefix) _, values, err := m.client.LoadWithPrefix(segmentPrefix)
if err != nil { if err != nil {
@ -82,7 +82,7 @@ func (m *meta) reloadFromKV() error {
return nil return nil
} }
// AddCollection add collection into meta // AddCollection adds a collection into meta
// Note that collection info is just for caching and will not be set into etcd from datacoord // Note that collection info is just for caching and will not be set into etcd from datacoord
func (m *meta) AddCollection(collection *datapb.CollectionInfo) { func (m *meta) AddCollection(collection *datapb.CollectionInfo) {
m.Lock() m.Lock()