What is the relationship and differences of two segments in DataNode & QueryNode #37073
-
As far as I known, DataNode will handle writing data into object store by But I'm a bit confused when reading the source codes of QueryNode when I found there's a Here we back to the question as QA title. Hoping can get some insight answers from community. Thx. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
A "growing segment" exists both in query node and data node. Once the size of the growing segment exceeds a threshold value, the data node will "seal" it and it becomes a "sealed segment". At the same moment, the query node will know it become a sealed segment. |
Beta Was this translation helpful? Give feedback.
In the design, C++ is the data plane and Go is the control plane. All index building and searching work of vector/scalar data are in C++ side to make it more effici…