When I want to add a new point to the collection, should I create it from scratch? #3607
-
Hi everyone, I started using qdrant today, I am very new to this subject. I am working on similarity search in images and I added my images to qdrant, but later when I want to add other images to my database, it deletes the existing one and creates a new database, so I lose my old images. Can I add as many images as I want to my existing collection at any time, can you help me with this? I share my code with you. `
` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There are two things to consider:
Currently you're using For reference, I answered the same question here: https://stackoverflow.com/a/77988925/1000145 |
Beta Was this translation helpful? Give feedback.
There are two things to consider:
Currently you're using
enumerate
which will result in the same IDs in each call. If you don't care about the IDs the easiest option may be to assign a random UUID as point ID for each point.For reference, I answered the same question here: https://stackoverflow.com/a/77988925/1000145