milvus/internal/datacoord
godchen 69ec3832a4
[skip e2e]Sort imports (#14811)
Signed-off-by: godchen0212 <qingxiang.chen@zilliz.com>
2022-01-05 17:17:26 +08:00
..
OWNERS
README.md
allocator.go
allocator_test.go
channel_manager.go [skip e2e]Sort imports (#14817) 2022-01-05 14:20:04 +08:00
channel_manager_factory.go
channel_manager_test.go
channel_store.go
channel_store_test.go
cluster.go
cluster_test.go
compaction.go [skip e2e]Sort imports (#14816) 2022-01-05 14:18:08 +08:00
compaction_policy.go
compaction_policy_test.go
compaction_test.go
compaction_trigger.go [skip e2e]Sort imports (#14815) 2022-01-05 14:16:17 +08:00
compaction_trigger_test.go
errors.go
errors_test.go
garbage_collector.go [skip e2e]Sort imports (#14814) 2022-01-05 14:14:21 +08:00
garbage_collector_test.go
handler.go [skip e2e]Sort imports (#14813) 2022-01-05 14:12:27 +08:00
meta.go [skip e2e]Sort imports (#14812) 2022-01-05 14:10:35 +08:00
meta_test.go
metrics_info.go [skip e2e]Sort imports (#14811) 2022-01-05 17:17:26 +08:00
metrics_info_test.go
mock_test.go
policy.go [skip e2e]Sort imports (#14810) 2022-01-05 14:08:42 +08:00
policy_test.go
segment_allocation_policy.go
segment_allocation_policy_test.go
segment_info.go [skip e2e]Sort imports (#14809) 2022-01-05 14:06:48 +08:00
segment_manager.go
segment_manager_test.go
server.go [skip e2e]Sort imports (#14807) 2022-01-05 14:04:46 +08:00
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.