milvus/internal/datacoord/file_resource_manager.go
aoiasd 354ab2f55e
enhance: sync file resource to querynode and datanode (#44480)
relate:https://github.com/milvus-io/milvus/issues/43687
Support use file resource with sync mode.
Auto download or remove file resource to local when user add or remove
file resource.
Sync file resource to node when find new node session.

---------

Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
2025-12-04 16:23:11 +08:00

158 lines
3.9 KiB
Go

// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package datacoord contains core functions in datacoord
package datacoord
import (
"context"
"sync"
"time"
"go.uber.org/zap"
"github.com/milvus-io/milvus/internal/datacoord/session"
"github.com/milvus-io/milvus/internal/util/fileresource"
"github.com/milvus-io/milvus/pkg/v2/log"
"github.com/milvus-io/milvus/pkg/v2/proto/internalpb"
"github.com/milvus-io/milvus/pkg/v2/util/conc"
"github.com/milvus-io/milvus/pkg/v2/util/merr"
"github.com/milvus-io/milvus/pkg/v2/util/paramtable"
)
type FileResourceManager struct {
ctx context.Context
meta *meta
// version distribution
nodeManager session.NodeManager
distribution map[int64]uint64
notifyCh chan struct{}
sf conc.Singleflight[any]
once sync.Once
// close
closeCh chan struct{}
wg sync.WaitGroup
}
func NewFileResourceManager(ctx context.Context, meta *meta, nodeManager session.NodeManager) *FileResourceManager {
return &FileResourceManager{
ctx: ctx,
meta: meta,
nodeManager: nodeManager,
distribution: map[int64]uint64{},
closeCh: make(chan struct{}),
sf: conc.Singleflight[any]{},
}
}
func (m *FileResourceManager) syncLoop() {
defer m.wg.Done()
for {
select {
case <-m.notifyCh:
err := m.sync()
if err != nil {
// retry if error exist
m.sf.Do("retry", func() (any, error) {
time.Sleep(5 * time.Second)
m.Notify()
return nil, nil
})
}
case <-m.ctx.Done():
return
case <-m.closeCh:
return
}
}
}
func (m *FileResourceManager) Start() {
if fileresource.IsSyncMode(paramtable.Get().DataCoordCfg.FileResourceMode.GetValue()) {
m.once.Do(func() {
m.notifyCh = make(chan struct{}, 1)
m.wg.Add(1)
go m.syncLoop()
})
}
}
func (m *FileResourceManager) Close() {
close(m.closeCh)
m.wg.Wait()
}
// notify sync file resource to datanode
// if file resource mode was Sync
func (m *FileResourceManager) Notify() {
if m == nil || m.notifyCh == nil {
return
}
select {
case m.notifyCh <- struct{}{}:
default:
}
}
func (m *FileResourceManager) sync() error {
nodes := m.nodeManager.GetClientIDs()
var syncErr error
resources, version := m.meta.ListFileResource(m.ctx)
newDistribution := make(map[int64]uint64)
for _, node := range nodes {
newDistribution[node] = m.distribution[node]
if m.distribution[node] < version {
c, err := m.nodeManager.GetClient(node)
if err != nil {
log.Warn("sync file resource failed, fetch client failed", zap.Error(err))
syncErr = err
continue
}
status, err := c.SyncFileResource(m.ctx, &internalpb.SyncFileResourceRequest{
Resources: resources,
Version: version,
})
if err != nil {
syncErr = err
log.Warn("sync file resource failed", zap.Int64("nodeID", node), zap.Error(err))
continue
}
if err = merr.Error(status); err != nil {
log.Warn("sync file resource failed", zap.Int64("nodeID", node), zap.Error(err))
syncErr = err
continue
}
newDistribution[node] = version
log.Info("finish sync file resource to data node", zap.Int64("node", node), zap.Uint64("version", version))
}
}
m.distribution = newDistribution
if syncErr != nil {
return syncErr
}
return nil
}