milvus/internal/datacoord
sunby a55019825b
Fix stale segments selector (#11051)
Signed-off-by: sunby <bingyi.sun@zilliz.com>
2021-11-01 22:30:04 +08:00
..
allocator_test.go
allocator.go [skip ci]Fix allocator typo (#10998) 2021-11-01 16:54:07 +08:00
channel_manager_factory.go
channel_manager_test.go
channel_manager.go
channel_store_test.go
channel_store.go [skip ci] Fix lint for datacoord/channel_store.og (#10964) 2021-10-30 21:08:00 +08:00
cluster_test.go
cluster.go
datanode_helper.go
errors_test.go
errors.go
meta_test.go
meta.go
metrics_info_test.go
metrics_info.go
mock_test.go
OWNERS
param_table_test.go
param_table.go
policy_test.go
policy.go [skip ci] Fix lint for AvgAssignRegisterPolicy (#10965) 2021-10-30 21:03:52 +08:00
README.md
segment_allocation_policy_test.go
segment_allocation_policy.go
segment_info.go
segment_manager_test.go
segment_manager.go
server_test.go
server.go Fix stale segments selector (#11051) 2021-11-01 22:30:04 +08:00
services.go
session_manager.go
session.go
util_test.go
util.go

Data Coordinator

Data cooridnator(datacoord for short) is the component to organize DataNodes and segments allocations.

Dependency

  • KV store: a kv store has all the meta info datacoord needs to operate. (etcd)
  • Message stream: a message stream to communicate statistics information with data nodes. (Pulsar)
  • Root Coordinator: timestamp, id and meta source.
  • Data Node(s): could be an instance or a cluster, actual worker group handles data modification operations.