milvus/internal/datacoord
Ten Thousand Leaves f0b036a35a
Move bulk load segment lock happen early (#17612)
issue: #17600
Signed-off-by: Yuchen Gao <yuchen.gao@zilliz.com>
2022-06-27 13:56:17 +08:00
..
OWNERS
README.md
allocator.go
allocator_test.go
channel_checker.go
channel_checker_test.go
channel_manager.go Refine some codes about the datanode (#17720) 2022-06-23 09:58:14 +08:00
channel_manager_factory.go
channel_manager_test.go Enhance channel manager ut (#17682) 2022-06-23 18:08:14 +08:00
channel_store.go Check duplication before adding channel info in DataCoord (#17742) 2022-06-24 16:30:15 +08:00
channel_store_test.go
cluster.go
cluster_test.go
compaction.go
compaction_test.go
compaction_trigger.go Fix compaction selection policy (#17690) 2022-06-22 19:00:14 +08:00
compaction_trigger_test.go Fix compaction selection policy (#17690) 2022-06-22 19:00:14 +08:00
const.go
errors.go
errors_test.go
garbage_collector.go
garbage_collector_test.go
handler.go
meta.go
meta_test.go
metrics_info.go
metrics_info_test.go
mock_test.go Move bulk load segment lock happen early (#17612) 2022-06-27 13:56:17 +08:00
policy.go
policy_test.go
segment_allocation_policy.go
segment_allocation_policy_test.go
segment_info.go
segment_manager.go Move bulk load segment lock happen early (#17612) 2022-06-27 13:56:17 +08:00
segment_manager_test.go Move bulk load segment lock happen early (#17612) 2022-06-27 13:56:17 +08:00
segment_reference_manager.go
segment_reference_manager_test.go
server.go Move bulk load segment lock happen early (#17612) 2022-06-27 13:56:17 +08:00
server_test.go Move bulk load segment lock happen early (#17612) 2022-06-27 13:56:17 +08:00
services.go Move bulk load segment lock happen early (#17612) 2022-06-27 13:56:17 +08:00
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.