milvus/internal/datacoord
Xiaofan 016311ad48
Fix Has Collection Failed on datacoord (#23710)
Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>
2023-04-27 09:50:34 +08:00
..
allocator_test.go
allocator.go
build_index_policy.go
channel_checker_test.go
channel_checker.go Fix watcher loop quit and channel shouldDrop logic (#23402) 2023-04-14 09:54:28 +08:00
channel_manager_factory.go
channel_manager_test.go Fix watcher loop quit and channel shouldDrop logic (#23402) 2023-04-14 09:54:28 +08:00
channel_manager.go Unwatch channel in watch buffer (#23548) 2023-04-20 10:34:31 +08:00
channel_store_test.go
channel_store.go Fix watcher loop quit and channel shouldDrop logic (#23402) 2023-04-14 09:54:28 +08:00
cluster_test.go
cluster.go Add Close method for ChannelManager in datacoord (#23493) 2023-04-18 17:54:31 +08:00
compaction_test.go
compaction_trigger_test.go
compaction_trigger.go Remove index check to trigger compaction (#23657) 2023-04-24 20:26:34 +08:00
compaction.go
const.go
errors_test.go
errors.go
garbage_collector_test.go
garbage_collector.go
handler.go Fix Has Collection Failed on datacoord (#23710) 2023-04-27 09:50:34 +08:00
index_builder_test.go
index_builder.go
index_meta_test.go
index_meta.go
index_service_test.go
index_service.go
indexnode_manager_test.go
indexnode_manager.go
meta_test.go Add disk quota at the collection level (#23704) 2023-04-26 21:52:36 +08:00
meta_util.go
meta.go Add disk quota at the collection level (#23704) 2023-04-26 21:52:36 +08:00
metrics_info_test.go
metrics_info.go Add disk quota at the collection level (#23704) 2023-04-26 21:52:36 +08:00
mock_allocator_test.go
mock_test.go Fix Has Collection Failed on datacoord (#23710) 2023-04-27 09:50:34 +08:00
OWNERS
policy_test.go
policy.go
README.md
segment_allocation_policy_test.go
segment_allocation_policy.go
segment_info.go
segment_manager_test.go
segment_manager.go
server_test.go Fix Has Collection Failed on datacoord (#23710) 2023-04-27 09:50:34 +08:00
server.go Fix Has Collection Failed on datacoord (#23710) 2023-04-27 09:50:34 +08:00
services_test.go fix pull target (#23491) 2023-04-18 18:30:32 +08:00
services.go fix pull target (#23491) 2023-04-18 18:30:32 +08:00
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.