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.
Answered by
yhmo
Sep 11, 2024
Replies: 1 comment 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.
3 replies
Answer selected by
matsuo1234567
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.