milvus/internal/datacoord
groot 07599e6a35
[skip ci] Fix a typo (#10106)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
2021-10-18 17:54:41 +08:00
..
OWNERS
README.md [skip ci]Change etcd to lowercase (#9983) 2021-10-15 18:58:37 +08:00
allocator.go
allocator_test.go
channel_manager.go [skip ci] Fix a typo (#10106) 2021-10-18 17:54:41 +08:00
channel_manager_factory.go [skip ci] Add comment for ChannelPolicyFactoryv1 (#9913) 2021-10-14 20:28:33 +08:00
channel_manager_test.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
channel_store.go [skip ci] Fix golint issue for datacoord/channel_store.go (#9995) 2021-10-15 20:44:38 +08:00
cluster.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
cluster_test.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
datanode_helper.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
errors.go
errors_test.go
meta.go
meta_test.go
metrics_info.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
metrics_info_test.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
mock_test.go
param_table.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
param_table_test.go
policy.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
policy_test.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
segment_allocation_policy.go
segment_allocation_policy_test.go
segment_info.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
segment_manager.go Skip reconsume tt msgstream when datacoord restart (#9684) 2021-10-15 11:46:33 +08:00
segment_manager_test.go
server.go Skip reconsume tt msgstream when datacoord restart (#9684) 2021-10-15 11:46:33 +08:00
server_test.go Check server test error (#9954) 2021-10-15 17:12:35 +08:00
services.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
session.go [skip ci]Improve code style (#9918) 2021-10-14 21:22:45 +08:00
session_manager.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
util.go [skip ci] Fix golint issue for datacoord/util.go (#9992) 2021-10-15 20:40:53 +08:00
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.