milvus/internal/datanode
XuanYang-cn 225b2c66a0
Fix datanode ut using register bug (#10885)
Resolves: #10881
See also: #8058

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
2021-11-01 11:01:49 +08:00
..
allocator_test.go
allocator.go
binlog_io_test.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
binlog_io.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
cache_test.go
cache.go
data_node_test.go Fix datanode ut using register bug (#10885) 2021-11-01 11:01:49 +08:00
data_node.go Fix datanode ut using register bug (#10885) 2021-11-01 11:01:49 +08:00
data_sync_service_test.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
data_sync_service.go Fix segments not removed from flushingCache (#10738) 2021-10-27 16:06:24 +08:00
errors_test.go
errors.go
flow_graph_dd_node_test.go
flow_graph_dd_node.go
flow_graph_delete_node_test.go
flow_graph_delete_node.go Fix datanode ut using register bug (#10885) 2021-11-01 11:01:49 +08:00
flow_graph_dmstream_input_node_test.go
flow_graph_dmstream_input_node.go
flow_graph_insert_buffer_node_test.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
flow_graph_insert_buffer_node.go Fix datanode ut using register bug (#10885) 2021-11-01 11:01:49 +08:00
flow_graph_message_test.go
flow_graph_message.go
flow_graph_node.go
flush_manager_test.go Add injection logic for FlushManager (#10580) 2021-10-25 20:17:34 +08:00
flush_manager.go Add injectFlush method for flushManager interface (#10659) 2021-10-28 19:16:31 +08:00
flush_task_test.go Add injection logic for FlushManager (#10580) 2021-10-25 20:17:34 +08:00
flush_task.go Add injection logic for FlushManager (#10580) 2021-10-25 20:17:34 +08:00
meta_service_test.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
meta_service.go
metrics_info.go
mock_test.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
OWNERS
param_table_test.go
param_table.go Supprot to read the configuration of minio from environment variables (#10534) 2021-10-26 15:10:03 +08:00
README.md
segment_replica_test.go Add methods in segment replica (#10582) 2021-10-27 17:14:28 +08:00
segment_replica.go Add methods in segment replica (#10582) 2021-10-27 17:14:28 +08:00
type_def.go

Data Node

DataNode is the component to write insert and delete messages into persistent blob storage, for example MinIO or S3.

Dependency

  • KV store: a kv store that persists messages into blob storage.
  • Message stream: receive messages and publish imformation
  • Root Coordinator: get the latest unique IDs.
  • Data Coordinator: get the flush information and which message stream to subscribe.