milvus/internal/datacoord
Xiangyu Wang 12f50cb22c
[skip ci]Update OWNERS files (#11898)
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
2021-11-16 15:41:11 +08:00
..
OWNERS
README.md
allocator.go
allocator_test.go
channel_manager.go
channel_manager_factory.go
channel_manager_test.go
channel_store.go
channel_store_test.go
cluster.go
cluster_test.go
compaction.go
compaction_policy.go
compaction_policy_test.go
compaction_test.go
compaction_trigger.go
compaction_trigger_test.go
datanode_helper.go
errors.go
errors_test.go
garbage_collector.go
garbage_collector_test.go
meta.go
meta_test.go
metrics_info.go
metrics_info_test.go
mock_test.go
param_table.go
param_table_test.go
policy.go
policy_test.go
segment_allocation_policy.go
segment_allocation_policy_test.go
segment_info.go
segment_manager.go
segment_manager_test.go
server.go
server_test.go
services.go
session.go
session_manager.go
util.go
util_test.go

README.md

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.