milvus/internal/datacoord
yah01 89c9cb3680
Fix scan may break GC limitation (#19670)
Signed-off-by: yah01 <yang.cen@zilliz.com>

Signed-off-by: yah01 <yang.cen@zilliz.com>
2022-10-15 15:13:24 +08:00
..
allocator_test.go [skip ci]Update license for dc channel manager (#10591) 2021-10-25 20:19:25 +08:00
allocator.go Separate some proto files (#19218) 2022-09-16 16:56:49 +08:00
channel_checker_test.go Make VChannelInfo read compatible with 2.0.2 (#17995) 2022-07-07 21:58:22 +08:00
channel_checker.go Remove redundant logs (#19412) 2022-09-26 15:40:53 +08:00
channel_manager_factory.go Update some comments for data coord with some minor code refactoring. (#15686) 2022-02-22 13:15:51 +08:00
channel_manager_test.go test: use T.Setenv to set env vars in tests (#19649) 2022-10-11 18:43:23 +08:00
channel_manager.go Add GetDataVChanPositions (#19657) 2022-10-11 16:51:22 +08:00
channel_store_test.go Watch channels with start positions (#18744) 2022-08-22 14:42:52 +08:00
channel_store.go Make VChannelInfo read compatible with 2.0.2 (#17995) 2022-07-07 21:58:22 +08:00
cluster_test.go Support Bulk Load in Milvus 2.2 (#18982) 2022-09-26 18:06:54 +08:00
cluster.go Support Bulk Load in Milvus 2.2 (#18982) 2022-09-26 18:06:54 +08:00
compaction_test.go Add a SyncSegments to sync meta between DN and DC (#19298) 2022-09-27 16:02:53 +08:00
compaction_trigger_test.go Fix datacoord panics when collection info not found (#19706) 2022-10-11 21:39:24 +08:00
compaction_trigger.go Fix datacoord panics when collection info not found (#19706) 2022-10-11 21:39:24 +08:00
compaction.go Add a SyncSegments to sync meta between DN and DC (#19298) 2022-09-27 16:02:53 +08:00
const.go Add distributed lock for segment refgerence (#16782) 2022-05-31 16:36:03 +08:00
errors_test.go Only store segmentID for flushed segments event (#19075) 2022-09-09 15:52:35 +08:00
errors.go Only store segmentID for flushed segments event (#19075) 2022-09-09 15:52:35 +08:00
garbage_collector_test.go Fix scan may break GC limitation (#19670) 2022-10-15 15:13:24 +08:00
garbage_collector.go Fix scan may break GC limitation (#19670) 2022-10-15 15:13:24 +08:00
handler.go Fix datacoord panics when collection info not found (#19706) 2022-10-11 21:39:24 +08:00
meta_test.go Fix scan may break GC limitation (#19670) 2022-10-15 15:13:24 +08:00
meta_util.go Make VChannelInfo read compatible with 2.0.2 (#17995) 2022-07-07 21:58:22 +08:00
meta.go Fix scan may break GC limitation (#19670) 2022-10-15 15:13:24 +08:00
metrics_info_test.go Separate some proto files (#19218) 2022-09-16 16:56:49 +08:00
metrics_info.go Move disk index params to config file (#19714) 2022-10-14 17:51:24 +08:00
mock_test.go Fix datacoord panics when collection info not found (#19706) 2022-10-11 21:39:24 +08:00
OWNERS [skip ci]Update OWNERS files (#11898) 2021-11-16 15:41:11 +08:00
policy_test.go Watch channels with start positions (#18744) 2022-08-22 14:42:52 +08:00
policy.go Make VChannelInfo read compatible with 2.0.2 (#17995) 2022-07-07 21:58:22 +08:00
README.md [skip ci]Change etcd to lowercase (#9983) 2021-10-15 18:58:37 +08:00
segment_allocation_policy_test.go Add policy to seal long time idle segment (#19222) 2022-09-20 20:54:50 +08:00
segment_allocation_policy.go Change compactor policy from loading all binlogs to loading serially (#13716) (#19280) 2022-09-25 20:12:52 +08:00
segment_info.go Support Bulk Load in Milvus 2.2 (#18982) 2022-09-26 18:06:54 +08:00
segment_manager_test.go Support TTL for collection level (#19383) 2022-10-10 20:31:22 +08:00
segment_manager.go Fix datacoord panics when collection info not found (#19706) 2022-10-11 21:39:24 +08:00
segment_reference_manager_test.go Acquiring the segment reference lock on task level (#17544) 2022-06-15 21:38:10 +08:00
segment_reference_manager.go Fix DN flowgraph delete buffer logs (#18657) 2022-08-15 16:28:48 +08:00
server_test.go Fix static-check (#19707) 2022-10-11 17:59:22 +08:00
server.go Fix scan may break GC limitation (#19670) 2022-10-15 15:13:24 +08:00
services.go Fix scan may break GC limitation (#19670) 2022-10-15 15:13:24 +08:00
session_manager.go Add a SyncSegments to sync meta between DN and DC (#19298) 2022-09-27 16:02:53 +08:00
session.go [skip e2e] Refine datacoord session comment (#13796) 2021-12-20 19:48:53 +08:00
util_test.go Support TTL for collection level (#19383) 2022-10-10 20:31:22 +08:00
util.go Fix datacoord panics when collection info not found (#19706) 2022-10-11 21:39:24 +08:00

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.