milvus/internal/datanode
cai.zhang 04c306e63f
fix: Fix clustering compaction task leak (#36800)
issue: #36686 

bug reason:
- The clustering compaction tasks on the datanode were never cleaned up.
- The clustering compaction task contains a mapping from clustering key
to buffer, this caused a large memory leak.

fix:
- clean the tasks on datanode by datacoord when clustering compaction
finished.
- reset the mapping that from clustering key to buffer on datanode when
clustering finished.

Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>
2024-10-17 20:43:30 +08:00
..
allocator Replace manual composed grpc call with Broker methods (#27676) 2023-10-13 09:55:34 +08:00
channel enhance: Add more info in logs (#36731) 2024-10-10 17:51:25 +08:00
compaction fix: Fix clustering compaction task leak (#36800) 2024-10-17 20:43:30 +08:00
importv2 feat: add bulk insert support for Functions (#36715) 2024-10-12 17:19:20 +08:00
iterators enhance: Add ctx in SyncTask.Run to be cancellable (#34042) 2024-06-25 14:22:04 +08:00
util enhance: Implement flusher in streamingNode (#34942) 2024-08-02 18:30:23 +08:00
data_node_test.go enhance: Implement flusher in streamingNode (#34942) 2024-08-02 18:30:23 +08:00
data_node.go fix: Remove enableLevelZeroSegment config (#36535) 2024-10-17 11:59:24 +08:00
metrics_info.go enhance: Implement flusher in streamingNode (#34942) 2024-08-02 18:30:23 +08:00
OWNERS
README.md
services_test.go feat: support embedding bm25 sparse vector and flush bm25 stats log (#36036) 2024-09-19 10:57:12 +08:00
services.go enhance: Rename preAllocatedSegments (#35871) 2024-09-01 17:09:01 +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.