milvus/internal/datacoord
sunby 4036830b2d
Fix modify segment without clone (#10498)
issue: #10430
Signed-off-by: sunby <bingyi.sun@zilliz.com>
2021-10-23 13:31:09 +08:00
..
allocator_test.go Check error in allocator test (#8621) 2021-09-27 10:46:08 +08:00
allocator.go Add Comment for datacoord cluster (#7676) 2021-09-10 11:26:00 +08:00
channel_manager_factory.go [skip ci]Add comment for NewBgChecker (#10224) 2021-10-19 21:00:35 +08:00
channel_manager_test.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
channel_manager.go [skip ci] Fix a typo (#10106) 2021-10-18 17:54:41 +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_test.go Check cluster error (#10116) 2021-10-21 10:57:03 +08:00
cluster.go Add a timed flush trigger mechanism (#10197) 2021-10-20 15:02:36 +08:00
datanode_helper.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
errors_test.go Expose metrics of data cluster (#7177) 2021-09-01 10:13:15 +08:00
errors.go [skip ci]Clarify the errors of DataCoord (#9771) 2021-10-13 11:02:34 +08:00
meta_test.go Support stats and delta log SaveBinlog logic (#10156) 2021-10-19 14:32:41 +08:00
meta.go Fix modify segment without clone (#10498) 2021-10-23 13:31:09 +08:00
metrics_info_test.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
metrics_info.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +08:00
mock_test.go Use the server id as identifier in system topology graph (#9825) 2021-10-14 11:12:38 +08:00
OWNERS Remove unused label rules (#7929) 2021-09-18 18:19:51 +08:00
param_table_test.go Add a channel prefix for all channels (#8166) 2021-09-23 10:53:53 +08:00
param_table.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
policy.go Use etcd to watch channel on datanode (#7115) 2021-10-14 15:44:34 +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 datacoord unit tests (#7197) 2021-08-20 17:50:12 +08:00
segment_allocation_policy.go [skip ci] Fix AllocationPolicy golint (#8883) 2021-09-29 20:52:09 +08:00
segment_info.go Add a timed flush trigger mechanism (#10197) 2021-10-20 15:02:36 +08:00
segment_manager_test.go Make NewMeta private (#9057) 2021-10-02 23:09:56 +08:00
segment_manager.go Fix a typo (#10339) 2021-10-21 14:16:37 +08:00
server_test.go Trim segmentinfo binlog for VChaninfo usage (#10425) 2021-10-22 14:35:13 +08:00
server.go Trim segmentinfo binlog for VChaninfo usage (#10425) 2021-10-22 14:35:13 +08:00
services.go Get stats delta path from datacoord (#10362) 2021-10-22 14:31:13 +08:00
session_manager.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
util_test.go Add datacoord unit tests (#7197) 2021-08-20 17:50:12 +08:00
util.go [skip ci] Fix golint issue for datacoord/util.go (#9992) 2021-10-15 20:40:53 +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.