milvus/internal/datanode
Letian Jiang 2be217bcf4
Specify appropriate timestamp in initPKBloomFilter (#15823) (#15826)
Signed-off-by: Letian Jiang <letian.jiang@zilliz.com>
2022-03-03 17:33:56 +08:00
..
allocator_test.go Change genKey into JoinIDPath (#12959) 2021-12-09 11:09:06 +08:00
allocator.go Use GlobalParamTable for all components (#13885) 2021-12-23 18:39:11 +08:00
binlog_io_test.go Make FieldBinlog in a segment unique for a field (#14632) 2021-12-30 20:29:22 +08:00
binlog_io.go Refactor logs in binlog_io to reduce output (#15827) 2022-03-02 16:49:55 +08:00
cache_test.go [skip ci]Update license on datanode (#9960) 2021-10-15 18:03:25 +08:00
cache.go Complete drop collection procedure in DN (#11552) 2021-11-11 20:56:49 +08:00
compaction_executor_test.go Fix compaction ut datarace (#15267) 2022-01-18 17:49:39 +08:00
compaction_executor.go Add prometheus metrics for DataNode (#15650) 2022-02-28 19:11:55 +08:00
compactor_test.go Make compaction not generate empty segment (#15707) 2022-02-28 10:17:54 +08:00
compactor.go Add prometheus metrics for DataNode (#15650) 2022-02-28 19:11:55 +08:00
data_node_test.go Add EtcdConfig and move PulsarConfig/RocksdbConfig/MinioConfig into BaseParamTable (#15434) 2022-02-07 10:09:45 +08:00
data_node.go Refine log level in data (#15821) 2022-03-02 15:35:55 +08:00
data_sync_service_test.go Use PulsarConfig in GlobalParams for all components (#15046) 2022-01-09 23:45:33 +08:00
data_sync_service.go Specify appropriate timestamp in initPKBloomFilter (#15823) (#15826) 2022-03-03 17:33:56 +08:00
errors_test.go [skip ci]Update license for datesync (#9959) 2021-10-15 18:01:38 +08:00
errors.go Normalize DataNode term in errors.go (#13688) 2021-12-20 12:20:50 +08:00
event_manager.go Refine log level in data (#15821) 2022-03-02 15:35:55 +08:00
flow_graph_dd_node_test.go Improve name of flowgraph node (#14538) 2021-12-30 10:33:46 +08:00
flow_graph_dd_node.go Refine log level in data (#15821) 2022-03-02 15:35:55 +08:00
flow_graph_delete_node_test.go Add EtcdConfig and move PulsarConfig/RocksdbConfig/MinioConfig into BaseParamTable (#15434) 2022-02-07 10:09:45 +08:00
flow_graph_delete_node.go Fix metrics label conflict (#15839) 2022-03-03 16:05:57 +08:00
flow_graph_dmstream_input_node_test.go Add timeout for reader next (#12308) 2021-11-26 22:45:24 +08:00
flow_graph_dmstream_input_node.go Refine log level in data (#15821) 2022-03-02 15:35:55 +08:00
flow_graph_insert_buffer_node_test.go Add prometheus metrics for DataNode (#15650) 2022-02-28 19:11:55 +08:00
flow_graph_insert_buffer_node.go Fix metrics label conflict (#15839) 2022-03-03 16:05:57 +08:00
flow_graph_manager_test.go Add EtcdConfig and move PulsarConfig/RocksdbConfig/MinioConfig into BaseParamTable (#15434) 2022-02-07 10:09:45 +08:00
flow_graph_manager.go Refine log level in data (#15821) 2022-03-02 15:35:55 +08:00
flow_graph_message_test.go [skip ci]Update license for datanode (#9963) 2021-10-15 18:09:00 +08:00
flow_graph_message.go Complete drop collection procedure in DN (#11552) 2021-11-11 20:56:49 +08:00
flow_graph_node.go [skip ci]Update license for datanode (#9963) 2021-10-15 18:09:00 +08:00
flow_graph_time_ticker_test.go Move segment statistics update to datanode tt loop (#13233) 2021-12-15 10:53:16 +08:00
flow_graph_time_ticker.go Move segment statistics update to datanode tt loop (#13233) 2021-12-15 10:53:16 +08:00
flush_manager_test.go Fix datanode flush manager injection unit test (#15358) 2022-01-27 10:23:40 +08:00
flush_manager.go Fix metrics label conflict (#15839) 2022-03-03 16:05:57 +08:00
flush_task_test.go Fix flush manager injection logic with multiple segments (#12260) 2021-11-24 18:41:16 +08:00
flush_task.go Fix EntriesNum is not passed in flush task (#15482) 2022-02-09 10:05:46 +08:00
meta_service_test.go Add binlog io for compaction (#10536) 2021-10-25 20:13:51 +08:00
meta_service.go Use GlobalParamTable for all components (#13885) 2021-12-23 18:39:11 +08:00
metrics_info.go Use GlobalParamTable for all components (#13885) 2021-12-23 18:39:11 +08:00
mock_test.go Implement automatic item expiration on compaction (#14418) 2022-02-07 22:45:46 +08:00
OWNERS [skip ci]Update OWNERS files (#11898) 2021-11-16 15:41:11 +08:00
README.md [skip ci]Change uppercase of MinIO (#9539) 2021-10-09 11:22:58 +08:00
segment_replica_test.go Specify appropriate timestamp in initPKBloomFilter (#15823) (#15826) 2022-03-03 17:33:56 +08:00
segment_replica.go Specify appropriate timestamp in initPKBloomFilter (#15823) (#15826) 2022-03-03 17:33:56 +08:00
type_def.go [skip ci]Update license for datanode (#9963) 2021-10-15 18:09:00 +08:00

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.