for index all the rows are not getting used #38667
Replies: 2 comments 3 replies
-
In milvus, each segment has an independent index. Index nodes build index for each segment separately. Index tasks are executed asynchronously. 'total_rows': 987000, ------------------------- the collection has 987000 rows (maybe some other rows are not flushed, still in pulsar not consumed by data node, after a while, the left rows will be flushed to new segment) |
Beta Was this translation helpful? Give feedback.
-
could you do count and check if you have 1M rows? |
Beta Was this translation helpful? Give feedback.
-
hi team
below is the my dataframe size
(1000000, 12)
i have created the index
when i seen the logs(describe index ) i noticed for index creation not all the data is used
{'m': '16',
'ef_construct': '100',
'index_type': 'HNSW',
'metric_type': 'L2',
'field_name': 'product_embeddings',
'index_name': 'first_index',
'total_rows': 987000,
'indexed_rows': 758000,
'pending_index_rows': 964000,
'state': 'Finished'}
may i know what is the root cause
Beta Was this translation helpful? Give feedback.
All reactions