milvus/internal/datacoord
Enwei Jiao 7445d3711c
feat: trigger compaction to handle index version (#28442)
issue: https://github.com/milvus-io/milvus/issues/28441

---------

Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
2023-11-21 09:26:22 +08:00
..
allocator_test.go
allocator.go
build_index_policy.go
channel_checker_test.go
channel_checker.go
channel_manager_factory.go
channel_manager_test.go fix: Fix channel manager bg checker exit when disable auto balance (#28459) 2023-11-20 18:20:22 +08:00
channel_manager.go fix: Fix channel manager bg checker exit when disable auto balance (#28459) 2023-11-20 18:20:22 +08:00
channel_store_test.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
channel_store.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
channel.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
cluster_test.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
cluster.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
compaction_test.go Enable getting multiple segments in plan result (#28350) 2023-11-14 15:56:19 +08:00
compaction_trigger_test.go feat: trigger compaction to handle index version (#28442) 2023-11-21 09:26:22 +08:00
compaction_trigger.go feat: trigger compaction to handle index version (#28442) 2023-11-21 09:26:22 +08:00
compaction.go Fix compaction unable to notify datanode (#28409) 2023-11-14 16:38:18 +08:00
const.go
coordinator_broker.go enable parameter for dataCoord broker timeout(#26972) (#27825) 2023-10-28 06:14:11 +08:00
errors_test.go
errors.go Refine DataCoord status (#27262) 2023-09-26 17:15:27 +08:00
garbage_collector_test.go
garbage_collector.go
handler.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
index_builder_test.go Fix bug for setting index state when indexnode connecting failed (#28220) 2023-11-07 23:34:26 +08:00
index_builder.go feat: trigger compaction to handle index version (#28442) 2023-11-21 09:26:22 +08:00
index_engine_version_manager_test.go Optimize the codec code of session (#27360) 2023-10-01 10:33:30 +08:00
index_engine_version_manager.go feat: trigger compaction to handle index version (#28442) 2023-11-21 09:26:22 +08:00
index_meta_test.go Limiting the idempotence check for index to user index params (#27615) 2023-10-18 20:18:24 +08:00
index_meta.go Limiting the idempotence check for index to user index params (#27615) 2023-10-18 20:18:24 +08:00
index_service_test.go Add revive sub-lints and fix existing problems (#27495) 2023-10-07 20:53:38 +08:00
index_service.go disable auto balance when old node exists (#28191) 2023-11-07 14:02:20 +08:00
indexnode_manager_test.go Refine state check (#27541) 2023-10-11 21:01:35 +08:00
indexnode_manager.go
meta_test.go Enable getting multiple segments in plan result (#28350) 2023-11-14 15:56:19 +08:00
meta_util.go
meta.go Enable getting multiple segments in plan result (#28350) 2023-11-14 15:56:19 +08:00
metrics_info_test.go Refine state check (#27541) 2023-10-11 21:01:35 +08:00
metrics_info.go disable auto balance when old node exists (#28191) 2023-11-07 14:02:20 +08:00
mock_allocator_test.go
mock_channel_store.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
mock_compaction_plan_context.go
mock_handler.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
mock_index_engine_version_manager.go feat: trigger compaction to handle index version (#28442) 2023-11-21 09:26:22 +08:00
mock_test.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
OWNERS
policy_test.go Fix unstable ConsistencyHashPolicy ut (#28375) 2023-11-13 19:06:20 +08:00
policy.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
README.md
segment_allocation_policy_test.go Adjust datacoord for L0 Delta (#28021) 2023-11-06 15:26:16 +08:00
segment_allocation_policy.go Adjust datacoord for L0 Delta (#28021) 2023-11-06 15:26:16 +08:00
segment_info.go
segment_manager_test.go Adjust datacoord for L0 Delta (#28021) 2023-11-06 15:26:16 +08:00
segment_manager.go Adjust datacoord for L0 Delta (#28021) 2023-11-06 15:26:16 +08:00
server_test.go add internal storage metrics (#28278) 2023-11-19 17:22:25 +08:00
server.go feat: trigger compaction to handle index version (#28442) 2023-11-21 09:26:22 +08:00
services_test.go Change channel to Interface (#27839) 2023-11-13 11:16:18 +08:00
services.go fix: query l0 segment bugs (#28558) 2023-11-20 17:26:23 +08:00
session_manager_test.go Update session manager (#27761) 2023-11-06 22:10:19 +08:00
session_manager.go Enable getting multiple segments in plan result (#28350) 2023-11-14 15:56:19 +08:00
session.go
util_test.go Refine DataCoord status (#27262) 2023-09-26 17:15:27 +08:00
util.go Enable getting multiple segments in plan result (#28350) 2023-11-14 15:56:19 +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.