index not found[collection=docs_embeddings] #36176
-
I have created a program based on this page. zilliz.py
When I run it, I get the following error.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You call collection.load() twice, one is before collection.create_index(), the other is after collection.create_index(). The error is returned by the first call of collection.load(). Remove the first call and try again. |
Beta Was this translation helpful? Give feedback.
-
With The main cause of that problem is that the fields list and the entities list are not of the same size. You have created both the |
Beta Was this translation helpful? Give feedback.
You call collection.load() twice, one is before collection.create_index(), the other is after collection.create_index(). The error is returned by the first call of collection.load(). Remove the first call and try again.