Collection duplication error after container restart #40938
-
I took clean docker compose from official documentation https://milvus.io/docs/install_standalone-docker-compose.md up the containers and trying to perfoem request it via curl I'm sending this request:
and got success: {"code":0,"data":{}} when I'm sending the same request again, it understand that this collection with same params already exist and just return success again: {"code":0,"data":{}} this is fine then what i did: i restarted milvus container docker compose down standalone and trying to send exactly the same request:
but nowI'm getting this error: {"code":65535,"message":"create duplicate collection with different parameters, collection: phant"} I cant get why this happening, the parameter are the same I just restarted the container. Sorry if this is stupid question, and I'm not getting some basic concepts, but I spent a lot of time trying to figure out this behavior with no success |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Might be somehow related to #40147 |
Beta Was this translation helpful? Give feedback.
-
Which version of your milvus, I could not reproduce it in versions v2.4.20/v2.5.1/v2.5.5
|
Beta Was this translation helpful? Give feedback.
-
@yhmo All the versions are form this file https://github.com/milvus-io/milvus/releases/download/v2.5.6/milvus-standalone-docker-compose.yml, I basically took this docker compose, added .env and run it. The version is Also to reproduce it, after you did a bunch of requests that are retuning
|
Beta Was this translation helpful? Give feedback.
You are right, the error is returned after the milvus is restarted. I have created an issue: #40955 to trace.