milvus/internal/datacoord
Xu Tong 9166011c4a
Add float16 vector (#25852)
Signed-off-by: Writer-X <1256866856@qq.com>
2023-09-08 10:03:16 +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
channel_manager.go
channel_store_test.go
channel_store.go
cluster_test.go
cluster.go
compaction_test.go
compaction_trigger_test.go Add timeout in dispatcher, AsConsumer and Seek (#26686) 2023-09-08 09:51:17 +08:00
compaction_trigger.go Remove TimeTravel in compactor (#26785) 2023-09-04 17:41:48 +08:00
compaction.go
const.go
coordinator_broker.go
errors_test.go
errors.go
garbage_collector_test.go Decouple basetable and componentparam (#26725) 2023-09-05 10:31:48 +08:00
garbage_collector.go
handler.go Workaround fix ChannelManager holding mutex too long (#26870) 2023-09-06 14:29:40 +08:00
index_builder_test.go Decouple basetable and componentparam (#26725) 2023-09-05 10:31:48 +08:00
index_builder.go
index_meta_test.go
index_meta.go
index_service_test.go
index_service.go Avoid the panic when the status of rpc response is nil (#26910) 2023-09-07 19:23:15 +08:00
indexnode_manager_test.go
indexnode_manager.go
meta_test.go Decouple basetable and componentparam (#26725) 2023-09-05 10:31:48 +08:00
meta_util.go
meta.go
metrics_info_test.go
metrics_info.go
mock_allocator_test.go Organize all mockery generation commands in Makefile (#26826) 2023-09-04 21:19:48 +08:00
mock_compaction_plan_context.go Organize all mockery generation commands in Makefile (#26826) 2023-09-04 21:19:48 +08:00
mock_handler.go Organize all mockery generation commands in Makefile (#26826) 2023-09-04 21:19:48 +08:00
mock_test.go
OWNERS
policy_test.go
policy.go
README.md
segment_allocation_policy_test.go
segment_allocation_policy.go
segment_info.go
segment_manager_test.go Decouple basetable and componentparam (#26725) 2023-09-05 10:31:48 +08:00
segment_manager.go
server_test.go Add timeout in dispatcher, AsConsumer and Seek (#26686) 2023-09-08 09:51:17 +08:00
server.go Add timeout in dispatcher, AsConsumer and Seek (#26686) 2023-09-08 09:51:17 +08:00
services_test.go
services.go Avoid the panic when the status of rpc response is nil (#26910) 2023-09-07 19:23:15 +08:00
session_manager.go
session.go
util_test.go Remove TimeTravel in compactor (#26785) 2023-09-04 17:41:48 +08:00
util.go Add float16 vector (#25852) 2023-09-08 10:03:16 +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.