milvus/internal/datanode
wayblink 51f870da7e
feat: Introduce channelCheckpointUpdater to reduce goroutine use in ttNode (#28570)
/kind enhancement

Signed-off-by: wayblink <anyang.wang@zilliz.com>
2023-12-12 13:48:42 +08:00
..
allocator
broker enhance:Remove msgbase unnecessary assignments (#28511) 2023-11-24 15:02:39 +08:00
io feat: Add levelzero compaction in DN (#28470) 2023-11-30 14:30:28 +08:00
iterators feat: Add levelzero compaction in DN (#28470) 2023-11-30 14:30:28 +08:00
metacache fix: Update segment compactTo when compactTo segment is compacted (#28755) 2023-11-27 19:48:26 +08:00
syncmgr enhance: Log channel checkpoint source info in writebuffer (#28993) 2023-12-07 11:50:36 +08:00
writebuffer enhance: Log channel checkpoint source info in writebuffer (#28993) 2023-12-07 11:50:36 +08:00
binlog_io_test.go
binlog_io.go
cache_test.go
cache.go
channel_checkpoint_updater.go feat: Introduce channelCheckpointUpdater to reduce goroutine use in ttNode (#28570) 2023-12-12 13:48:42 +08:00
channel_manager_test.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
channel_manager.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
compaction_executor_test.go fix: Separate schedule and check results loop (#28692) 2023-11-29 10:50:29 +08:00
compaction_executor.go fix: Separate schedule and check results loop (#28692) 2023-11-29 10:50:29 +08:00
compactor_test.go feat: Add levelzero compaction in DN (#28470) 2023-11-30 14:30:28 +08:00
compactor.go feat: Add levelzero compaction in DN (#28470) 2023-11-30 14:30:28 +08:00
data_node_test.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
data_node.go feat: Introduce channelCheckpointUpdater to reduce goroutine use in ttNode (#28570) 2023-12-12 13:48:42 +08:00
data_sync_service_test.go feat: Introduce channelCheckpointUpdater to reduce goroutine use in ttNode (#28570) 2023-12-12 13:48:42 +08:00
data_sync_service.go feat: Introduce channelCheckpointUpdater to reduce goroutine use in ttNode (#28570) 2023-12-12 13:48:42 +08:00
event_manager_test.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
event_manager.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
flow_graph_dd_node_test.go
flow_graph_dd_node.go fix: Separate schedule and check results loop (#28692) 2023-11-29 10:50:29 +08:00
flow_graph_dmstream_input_node_test.go
flow_graph_dmstream_input_node.go
flow_graph_manager_test.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
flow_graph_manager.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
flow_graph_message_test.go
flow_graph_message.go
flow_graph_node.go
flow_graph_time_tick_node.go feat: Introduce channelCheckpointUpdater to reduce goroutine use in ttNode (#28570) 2023-12-12 13:48:42 +08:00
flow_graph_time_ticker.go
flow_graph_write_node.go
flush_task_counter_test.go
flush_task_counter.go
io_pool_test.go
io_pool.go
l0_compactor_test.go feat: Add levelzero compaction in DN (#28470) 2023-11-30 14:30:28 +08:00
l0_compactor.go feat: Add levelzero compaction in DN (#28470) 2023-11-30 14:30:28 +08:00
meta_service_test.go
meta_service.go
meta_util.go
metrics_info.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
mock_fgmanager.go enhance: Add FlowgraphManager interface (#28852) 2023-11-30 18:42:32 +08:00
mock_test.go
OWNERS
rate_collector_test.go
rate_collector.go
README.md
services_test.go fix: Reject compaction task with growing segments (#28925) 2023-12-04 19:06:40 +08:00
services.go feat: Define import API and metadata (#28731) 2023-12-04 19:56:35 +08:00
stats_updater_test.go
stats_updater.go enhance:Remove msgbase unnecessary assignments (#28511) 2023-11-24 15:02:39 +08:00
timetick_sender_test.go
timetick_sender.go
util.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.