server.go 17.6 KB
Newer Older
Y
yah01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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.

B
Bingyi Sun 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
package querycoordv2

import (
	"context"
	"errors"
	"fmt"
	"os"
	"sort"
	"sync"
	"sync/atomic"
	"syscall"
	"time"

Y
yah01 已提交
30
	"github.com/milvus-io/milvus/internal/metrics"
31 32
	"github.com/milvus-io/milvus/internal/util/timerecord"

S
SimFG 已提交
33 34
	"github.com/milvus-io/milvus-proto/go-api/commonpb"
	"github.com/milvus-io/milvus-proto/go-api/milvuspb"
B
Bingyi Sun 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	"github.com/milvus-io/milvus/internal/allocator"
	"github.com/milvus-io/milvus/internal/common"
	"github.com/milvus-io/milvus/internal/kv"
	etcdkv "github.com/milvus-io/milvus/internal/kv/etcd"
	"github.com/milvus-io/milvus/internal/log"
	"github.com/milvus-io/milvus/internal/querycoordv2/balance"
	"github.com/milvus-io/milvus/internal/querycoordv2/checkers"
	"github.com/milvus-io/milvus/internal/querycoordv2/dist"
	"github.com/milvus-io/milvus/internal/querycoordv2/job"
	"github.com/milvus-io/milvus/internal/querycoordv2/meta"
	"github.com/milvus-io/milvus/internal/querycoordv2/observers"
	"github.com/milvus-io/milvus/internal/querycoordv2/params"
	"github.com/milvus-io/milvus/internal/querycoordv2/session"
	"github.com/milvus-io/milvus/internal/querycoordv2/task"
	"github.com/milvus-io/milvus/internal/types"
	"github.com/milvus-io/milvus/internal/util/dependency"
	"github.com/milvus-io/milvus/internal/util/metricsinfo"
	"github.com/milvus-io/milvus/internal/util/sessionutil"
	"github.com/milvus-io/milvus/internal/util/tsoutil"
	"github.com/milvus-io/milvus/internal/util/typeutil"
W
wei liu 已提交
55 56 57
	clientv3 "go.etcd.io/etcd/client/v3"
	"go.uber.org/zap"
	"golang.org/x/sync/errgroup"
B
Bingyi Sun 已提交
58 59 60 61
)

var (
	// Only for re-export
E
Enwei Jiao 已提交
62
	Params = params.Params
B
Bingyi Sun 已提交
63 64 65 66 67 68 69 70
)

type Server struct {
	ctx                 context.Context
	cancel              context.CancelFunc
	wg                  sync.WaitGroup
	status              atomic.Value
	etcdCli             *clientv3.Client
E
Enwei Jiao 已提交
71
	address             string
B
Bingyi Sun 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
	session             *sessionutil.Session
	kv                  kv.MetaKv
	idAllocator         func() (int64, error)
	factory             dependency.Factory
	metricsCacheManager *metricsinfo.MetricsCacheManager

	// Coordinators
	dataCoord  types.DataCoord
	rootCoord  types.RootCoord
	indexCoord types.IndexCoord

	// Meta
	store     meta.Store
	meta      *meta.Meta
	dist      *meta.DistributionManager
	targetMgr *meta.TargetManager
	broker    meta.Broker

	// Session
	cluster session.Cluster
	nodeMgr *session.NodeManager

	// Schedulers
	jobScheduler  *job.Scheduler
	taskScheduler task.Scheduler

	// HeartBeat
	distController *dist.Controller

	// Checkers
	checkerController *checkers.CheckerController

	// Observers
	collectionObserver *observers.CollectionObserver
	leaderObserver     *observers.LeaderObserver
W
wei liu 已提交
107
	targetObserver     *observers.TargetObserver
B
Bingyi Sun 已提交
108 109

	balancer balance.Balance
110 111 112 113

	// Active-standby
	enableActiveStandBy bool
	activateFunc        func()
B
Bingyi Sun 已提交
114 115 116 117 118 119 120 121 122
}

func NewQueryCoord(ctx context.Context, factory dependency.Factory) (*Server, error) {
	ctx, cancel := context.WithCancel(ctx)
	server := &Server{
		ctx:     ctx,
		cancel:  cancel,
		factory: factory,
	}
123
	server.UpdateStateCode(commonpb.StateCode_Abnormal)
B
Bingyi Sun 已提交
124 125 126 127 128
	return server, nil
}

func (s *Server) Register() error {
	s.session.Register()
129 130 131
	if s.enableActiveStandBy {
		s.session.ProcessActiveStandBy(s.activateFunc)
	}
B
Bingyi Sun 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
	go s.session.LivenessCheck(s.ctx, func() {
		log.Error("QueryCoord disconnected from etcd, process will exit", zap.Int64("serverID", s.session.ServerID))
		if err := s.Stop(); err != nil {
			log.Fatal("failed to stop server", zap.Error(err))
		}
		// manually send signal to starter goroutine
		if s.session.TriggerKill {
			if p, err := os.FindProcess(os.Getpid()); err == nil {
				p.Signal(syscall.SIGINT)
			}
		}
	})
	return nil
}

func (s *Server) Init() error {
	log.Info("QueryCoord start init",
149
		zap.String("meta-root-path", Params.EtcdCfg.MetaRootPath.GetValue()),
E
Enwei Jiao 已提交
150
		zap.String("address", s.address))
B
Bingyi Sun 已提交
151 152

	// Init QueryCoord session
153
	s.session = sessionutil.NewSession(s.ctx, Params.EtcdCfg.MetaRootPath.GetValue(), s.etcdCli)
B
Bingyi Sun 已提交
154 155 156
	if s.session == nil {
		return fmt.Errorf("failed to create session")
	}
E
Enwei Jiao 已提交
157
	s.session.Init(typeutil.QueryCoordRole, s.address, true, true)
158 159
	s.enableActiveStandBy = Params.QueryCoordCfg.EnableActiveStandby
	s.session.SetEnableActiveStandBy(s.enableActiveStandBy)
B
Bingyi Sun 已提交
160 161 162
	s.factory.Init(Params)

	// Init KV
163
	etcdKV := etcdkv.NewEtcdKV(s.etcdCli, Params.EtcdCfg.MetaRootPath.GetValue())
B
Bingyi Sun 已提交
164
	s.kv = etcdKV
X
Xiaofan 已提交
165
	log.Info("query coordinator try to connect etcd success")
B
Bingyi Sun 已提交
166 167

	// Init ID allocator
168
	idAllocatorKV := tsoutil.NewTSOKVBase(s.etcdCli, Params.EtcdCfg.KvRootPath.GetValue(), "querycoord-id-allocator")
B
Bingyi Sun 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
	idAllocator := allocator.NewGlobalIDAllocator("idTimestamp", idAllocatorKV)
	err := idAllocator.Initialize()
	if err != nil {
		log.Error("query coordinator id allocator initialize failed", zap.Error(err))
		return err
	}
	s.idAllocator = func() (int64, error) {
		return idAllocator.AllocOne()
	}

	// Init metrics cache manager
	s.metricsCacheManager = metricsinfo.NewMetricsCacheManager()

	// Init meta
	err = s.initMeta()
	if err != nil {
		return err
	}
	// Init session
X
Xiaofan 已提交
188
	log.Info("init session")
B
Bingyi Sun 已提交
189 190 191 192
	s.nodeMgr = session.NewNodeManager()
	s.cluster = session.NewCluster(s.nodeMgr)

	// Init schedulers
X
Xiaofan 已提交
193
	log.Info("init schedulers")
B
Bingyi Sun 已提交
194 195 196 197 198 199 200 201 202 203 204 205
	s.jobScheduler = job.NewScheduler()
	s.taskScheduler = task.NewScheduler(
		s.ctx,
		s.meta,
		s.dist,
		s.targetMgr,
		s.broker,
		s.cluster,
		s.nodeMgr,
	)

	// Init heartbeat
X
Xiaofan 已提交
206
	log.Info("init dist controller")
B
Bingyi Sun 已提交
207 208 209 210 211 212 213 214 215
	s.distController = dist.NewDistController(
		s.cluster,
		s.nodeMgr,
		s.dist,
		s.targetMgr,
		s.taskScheduler,
	)

	// Init balancer
X
Xiaofan 已提交
216
	log.Info("init balancer")
B
Bingyi Sun 已提交
217 218 219 220 221
	s.balancer = balance.NewRowCountBasedBalancer(
		s.taskScheduler,
		s.nodeMgr,
		s.dist,
		s.meta,
222
		s.targetMgr,
B
Bingyi Sun 已提交
223 224 225
	)

	// Init checker controller
X
Xiaofan 已提交
226
	log.Info("init checker controller")
B
Bingyi Sun 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
	s.checkerController = checkers.NewCheckerController(
		s.meta,
		s.dist,
		s.targetMgr,
		s.balancer,
		s.taskScheduler,
	)

	// Init observers
	s.initObserver()

	log.Info("QueryCoord init success")
	return err
}

func (s *Server) initMeta() error {
243 244
	record := timerecord.NewTimeRecorder("querycoord")

X
Xiaofan 已提交
245
	log.Info("init meta")
B
Bingyi Sun 已提交
246 247 248
	s.store = meta.NewMetaStore(s.kv)
	s.meta = meta.NewMeta(s.idAllocator, s.store)

X
Xiaofan 已提交
249
	log.Info("recover meta...")
B
Bingyi Sun 已提交
250 251 252 253 254
	err := s.meta.CollectionManager.Recover()
	if err != nil {
		log.Error("failed to recover collections")
		return err
	}
Y
yah01 已提交
255 256
	metrics.QueryCoordNumCollections.WithLabelValues().Set(float64(len(s.meta.GetAll())))

Y
yah01 已提交
257
	err = s.meta.ReplicaManager.Recover(s.meta.CollectionManager.GetAll())
B
Bingyi Sun 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
	if err != nil {
		log.Error("failed to recover replicas")
		return err
	}

	s.dist = &meta.DistributionManager{
		SegmentDistManager: meta.NewSegmentDistManager(),
		ChannelDistManager: meta.NewChannelDistManager(),
		LeaderViewManager:  meta.NewLeaderViewManager(),
	}
	s.broker = meta.NewCoordinatorBroker(
		s.dataCoord,
		s.rootCoord,
		s.indexCoord,
	)
W
wei liu 已提交
273 274
	s.targetMgr = meta.NewTargetManager(s.broker, s.meta)

275
	record.Record("Server initMeta")
B
Bingyi Sun 已提交
276 277 278 279
	return nil
}

func (s *Server) initObserver() {
X
Xiaofan 已提交
280
	log.Info("init observers")
B
Bingyi Sun 已提交
281 282 283 284 285 286 287 288 289 290 291
	s.collectionObserver = observers.NewCollectionObserver(
		s.dist,
		s.meta,
		s.targetMgr,
	)
	s.leaderObserver = observers.NewLeaderObserver(
		s.dist,
		s.meta,
		s.targetMgr,
		s.cluster,
	)
W
wei liu 已提交
292
	s.targetObserver = observers.NewTargetObserver(
B
Bingyi Sun 已提交
293 294
		s.meta,
		s.targetMgr,
W
wei liu 已提交
295
		s.dist,
296
		s.broker,
B
Bingyi Sun 已提交
297 298 299
	)
}

J
Jiquan Long 已提交
300 301 302 303 304 305
func (s *Server) afterStart() {
	now := time.Now()
	Params.QueryCoordCfg.CreatedTime = now
	Params.QueryCoordCfg.UpdatedTime = now
}

B
Bingyi Sun 已提交
306 307 308 309 310 311 312 313
func (s *Server) Start() error {
	log.Info("start watcher...")
	sessions, revision, err := s.session.GetSessions(typeutil.QueryNodeRole)
	if err != nil {
		return err
	}
	for _, node := range sessions {
		s.nodeMgr.Add(session.NewNodeInfo(node.ServerID, node.Address))
314
		s.taskScheduler.AddExecutor(node.ServerID)
B
Bingyi Sun 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
	}
	s.checkReplicas()
	for _, node := range sessions {
		s.handleNodeUp(node.ServerID)
	}
	s.wg.Add(1)
	go s.watchNodes(revision)

	log.Info("start recovering dist and target")
	err = s.recover()
	if err != nil {
		return err
	}

	log.Info("start cluster...")
	s.cluster.Start(s.ctx)

	log.Info("start job scheduler...")
	s.jobScheduler.Start(s.ctx)

335 336 337
	log.Info("start task scheduler...")
	s.taskScheduler.Start(s.ctx)

B
Bingyi Sun 已提交
338 339 340 341 342 343
	log.Info("start checker controller...")
	s.checkerController.Start(s.ctx)

	log.Info("start observers...")
	s.collectionObserver.Start(s.ctx)
	s.leaderObserver.Start(s.ctx)
W
wei liu 已提交
344
	s.targetObserver.Start(s.ctx)
B
Bingyi Sun 已提交
345

346 347 348 349 350 351 352 353 354 355 356
	if s.enableActiveStandBy {
		s.activateFunc = func() {
			// todo to complete
			log.Info("querycoord switch from standby to active, activating")
			s.initMeta()
			s.UpdateStateCode(commonpb.StateCode_Healthy)
		}
		s.UpdateStateCode(commonpb.StateCode_StandBy)
	} else {
		s.UpdateStateCode(commonpb.StateCode_Healthy)
	}
B
Bingyi Sun 已提交
357 358
	log.Info("QueryCoord started")

J
Jiquan Long 已提交
359 360
	s.afterStart()

B
Bingyi Sun 已提交
361 362 363 364 365
	return nil
}

func (s *Server) Stop() error {
	s.cancel()
B
Bingyi Sun 已提交
366 367 368
	if s.session != nil {
		s.session.Revoke(time.Second)
	}
B
Bingyi Sun 已提交
369

B
Bingyi Sun 已提交
370 371 372 373
	if s.session != nil {
		log.Info("stop cluster...")
		s.cluster.Stop()
	}
B
Bingyi Sun 已提交
374

B
Bingyi Sun 已提交
375 376 377 378
	if s.distController != nil {
		log.Info("stop dist controller...")
		s.distController.Stop()
	}
B
Bingyi Sun 已提交
379

B
Bingyi Sun 已提交
380 381 382 383
	if s.checkerController != nil {
		log.Info("stop checker controller...")
		s.checkerController.Stop()
	}
B
Bingyi Sun 已提交
384

B
Bingyi Sun 已提交
385 386 387 388
	if s.taskScheduler != nil {
		log.Info("stop task scheduler...")
		s.taskScheduler.Stop()
	}
389

B
Bingyi Sun 已提交
390 391 392 393
	if s.jobScheduler != nil {
		log.Info("stop job scheduler...")
		s.jobScheduler.Stop()
	}
B
Bingyi Sun 已提交
394 395

	log.Info("stop observers...")
B
Bingyi Sun 已提交
396 397 398 399 400 401
	if s.collectionObserver != nil {
		s.collectionObserver.Stop()
	}
	if s.leaderObserver != nil {
		s.leaderObserver.Stop()
	}
W
wei liu 已提交
402 403
	if s.targetObserver != nil {
		s.targetObserver.Stop()
B
Bingyi Sun 已提交
404
	}
B
Bingyi Sun 已提交
405 406

	s.wg.Wait()
B
Bingyi Sun 已提交
407
	log.Info("QueryCoord stop successfully")
B
Bingyi Sun 已提交
408 409 410 411
	return nil
}

// UpdateStateCode updates the status of the coord, including healthy, unhealthy
412
func (s *Server) UpdateStateCode(code commonpb.StateCode) {
B
Bingyi Sun 已提交
413 414 415
	s.status.Store(code)
}

416
func (s *Server) GetComponentStates(ctx context.Context) (*milvuspb.ComponentStates, error) {
B
Bingyi Sun 已提交
417 418 419 420
	nodeID := common.NotRegisteredID
	if s.session != nil && s.session.Registered() {
		nodeID = s.session.ServerID
	}
421
	serviceComponentInfo := &milvuspb.ComponentInfo{
B
Bingyi Sun 已提交
422 423
		// NodeID:    Params.QueryCoordID, // will race with QueryCoord.Register()
		NodeID:    nodeID,
424
		StateCode: s.status.Load().(commonpb.StateCode),
B
Bingyi Sun 已提交
425 426
	}

427
	return &milvuspb.ComponentStates{
B
Bingyi Sun 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
		Status: &commonpb.Status{
			ErrorCode: commonpb.ErrorCode_Success,
		},
		State: serviceComponentInfo,
		//SubcomponentStates: subComponentInfos,
	}, nil
}

func (s *Server) GetStatisticsChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
	return &milvuspb.StringResponse{
		Status: &commonpb.Status{
			ErrorCode: commonpb.ErrorCode_Success,
			Reason:    "",
		},
	}, nil
}

func (s *Server) GetTimeTickChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
	return &milvuspb.StringResponse{
		Status: &commonpb.Status{
			ErrorCode: commonpb.ErrorCode_Success,
			Reason:    "",
		},
		Value: Params.CommonCfg.QueryCoordTimeTick,
	}, nil
}

E
Enwei Jiao 已提交
455 456 457 458
func (s *Server) SetAddress(address string) {
	s.address = address
}

B
Bingyi Sun 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
// SetEtcdClient sets etcd's client
func (s *Server) SetEtcdClient(etcdClient *clientv3.Client) {
	s.etcdCli = etcdClient
}

// SetRootCoord sets root coordinator's client
func (s *Server) SetRootCoord(rootCoord types.RootCoord) error {
	if rootCoord == nil {
		return errors.New("null RootCoord interface")
	}

	s.rootCoord = rootCoord
	return nil
}

// SetDataCoord sets data coordinator's client
func (s *Server) SetDataCoord(dataCoord types.DataCoord) error {
	if dataCoord == nil {
		return errors.New("null DataCoord interface")
	}

	s.dataCoord = dataCoord
	return nil
}

// SetIndexCoord sets index coordinator's client
func (s *Server) SetIndexCoord(indexCoord types.IndexCoord) error {
	if indexCoord == nil {
		return errors.New("null IndexCoord interface")
	}

	s.indexCoord = indexCoord
	return nil
}

func (s *Server) recover() error {
	// Recover target managers
	group, ctx := errgroup.WithContext(s.ctx)
	for _, collection := range s.meta.GetAll() {
		collection := collection
		group.Go(func() error {
			return s.recoverCollectionTargets(ctx, collection)
		})
	}
	err := group.Wait()
	if err != nil {
		return err
	}

	// Recover dist
	s.distController.SyncAll(s.ctx)

	return nil
}

func (s *Server) recoverCollectionTargets(ctx context.Context, collection int64) error {
W
wei liu 已提交
515
	err := s.targetMgr.UpdateCollectionNextTarget(collection)
B
Bingyi Sun 已提交
516
	if err != nil {
517 518 519 520 521 522
		s.meta.CollectionManager.RemoveCollection(collection)
		s.meta.ReplicaManager.RemoveCollection(collection)
		log.Error("failed to recover collection due to update next target failed",
			zap.Int64("collectionID", collection),
			zap.Error(err),
		)
B
Bingyi Sun 已提交
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
	}
	return nil
}

func (s *Server) watchNodes(revision int64) {
	defer s.wg.Done()

	eventChan := s.session.WatchServices(typeutil.QueryNodeRole, revision+1, nil)
	for {
		select {
		case <-s.ctx.Done():
			log.Info("stop watching nodes, QueryCoord stopped")
			return

		case event, ok := <-eventChan:
			if !ok {
				// ErrCompacted is handled inside SessionWatcher
				log.Error("Session Watcher channel closed", zap.Int64("serverID", s.session.ServerID))
				go s.Stop()
				if s.session.TriggerKill {
					if p, err := os.FindProcess(os.Getpid()); err == nil {
						p.Signal(syscall.SIGINT)
					}
				}
				return
			}

			switch event.EventType {
			case sessionutil.SessionAddEvent:
				nodeID := event.Session.ServerID
				addr := event.Session.Address
				log.Info("add node to NodeManager",
					zap.Int64("nodeID", nodeID),
					zap.String("nodeAddr", addr),
				)
				s.nodeMgr.Add(session.NewNodeInfo(nodeID, addr))
				s.handleNodeUp(nodeID)
				s.metricsCacheManager.InvalidateSystemInfoMetrics()

			case sessionutil.SessionDelEvent:
				nodeID := event.Session.ServerID
				log.Info("a node down, remove it", zap.Int64("nodeID", nodeID))
				s.nodeMgr.Remove(nodeID)
				s.handleNodeDown(nodeID)
				s.metricsCacheManager.InvalidateSystemInfoMetrics()
			}
		}
	}
}

func (s *Server) handleNodeUp(node int64) {
	log := log.With(zap.Int64("nodeID", node))
575
	s.taskScheduler.AddExecutor(node)
B
Bingyi Sun 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
	s.distController.StartDistInstance(s.ctx, node)

	for _, collection := range s.meta.CollectionManager.GetAll() {
		log := log.With(zap.Int64("collectionID", collection))
		replica := s.meta.ReplicaManager.GetByCollectionAndNode(collection, node)
		if replica == nil {
			replicas := s.meta.ReplicaManager.GetByCollection(collection)
			sort.Slice(replicas, func(i, j int) bool {
				return replicas[i].Nodes.Len() < replicas[j].Nodes.Len()
			})
			replica := replicas[0]
			// TODO(yah01): this may fail, need a component to check whether a node is assigned
			err := s.meta.ReplicaManager.AddNode(replica.GetID(), node)
			if err != nil {
				log.Warn("failed to assign node to replicas",
					zap.Int64("replicaID", replica.GetID()),
					zap.Error(err),
				)
			}
			log.Info("assign node to replica",
				zap.Int64("replicaID", replica.GetID()))
		}
	}
}

func (s *Server) handleNodeDown(node int64) {
	log := log.With(zap.Int64("nodeID", node))
603
	s.taskScheduler.RemoveExecutor(node)
B
Bingyi Sun 已提交
604 605 606 607 608 609 610
	s.distController.Remove(node)

	// Refresh the targets, to avoid consuming messages too early from channel
	// FIXME(yah01): the leads to miss data, the segments flushed between the two check points
	// are missed, it will recover for a while.
	channels := s.dist.ChannelDistManager.GetByNode(node)
	for _, channel := range channels {
W
wei liu 已提交
611
		err := s.targetMgr.UpdateCollectionNextTarget(channel.GetCollectionID())
B
Bingyi Sun 已提交
612
		if err != nil {
W
wei liu 已提交
613 614
			msg := "failed to update next targets for collection"
			log.Error(msg,
B
Bingyi Sun 已提交
615
				zap.Error(err))
W
wei liu 已提交
616
			continue
B
Bingyi Sun 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
		}
	}

	// Clear dist
	s.dist.LeaderViewManager.Update(node)
	s.dist.ChannelDistManager.Update(node)
	s.dist.SegmentDistManager.Update(node)

	// Clear meta
	for _, collection := range s.meta.CollectionManager.GetAll() {
		log := log.With(zap.Int64("collectionID", collection))
		replica := s.meta.ReplicaManager.GetByCollectionAndNode(collection, node)
		if replica == nil {
			continue
		}
		err := s.meta.ReplicaManager.RemoveNode(replica.GetID(), node)
		if err != nil {
			log.Warn("failed to remove node from collection's replicas",
				zap.Int64("replicaID", replica.GetID()),
				zap.Error(err),
			)
		}
		log.Info("remove node from replica",
			zap.Int64("replicaID", replica.GetID()))
	}

	// Clear tasks
	s.taskScheduler.RemoveByNode(node)
}

// checkReplicas checks whether replica contains offline node, and remove those nodes
func (s *Server) checkReplicas() {
	for _, collection := range s.meta.CollectionManager.GetAll() {
		log := log.With(zap.Int64("collectionID", collection))
		replicas := s.meta.ReplicaManager.GetByCollection(collection)
		for _, replica := range replicas {
			replica := replica.Clone()
			toRemove := make([]int64, 0)
			for node := range replica.Nodes {
				if s.nodeMgr.Get(node) == nil {
					toRemove = append(toRemove, node)
				}
			}

			if len(toRemove) > 0 {
Y
yah01 已提交
662 663 664 665
				log := log.With(
					zap.Int64("replicaID", replica.GetID()),
					zap.Int64s("offlineNodes", toRemove),
				)
X
Xiaofan 已提交
666
				log.Info("some nodes are offline, remove them from replica", zap.Any("toRemove", toRemove))
B
Bingyi Sun 已提交
667 668 669 670 671 672 673 674 675
				replica.RemoveNode(toRemove...)
				err := s.meta.ReplicaManager.Put(replica)
				if err != nil {
					log.Warn("failed to remove offline nodes from replica")
				}
			}
		}
	}
}