How to get the current progress or status of building index? #3963
-
Hi all, I am wondering it would be great if someone could help with indexing issues. When we created a collection with create() function building an index at the same time, then, we insert some data. How can we get to know the index building is done? And how we can track the progress of building index? Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Shichao, The get_collection_info(collection_name) function can get the information about the collection, including the index. For more information about index, you can use sqlite or mysql to get the meta data, and view metadata table fields. And if you want to track the process, you can check the Sincerely. |
Beta Was this translation helpful? Give feedback.
Hi Shichao,
The get_collection_info(collection_name) function can get the information about the collection, including the index.
For more information about index, you can use sqlite or mysql to get the meta data, and view metadata table fields.
And if you want to track the process, you can check the
engine_type
orfile_type
fields.Sincerely.