-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
Firstly, thanks a lot for the vector DB really fast and provide what I really need, and still missing in other DB is a filter.
I currently push a lot vector (~100k+) in one collection with a shape array of about 592. When performing a search query, I get the error panic 500.
But I still can get payload and vector in an individual point in this collection and search in another collection.
Current Behavior
Perform search return 500 error and panic error
Expected Behavior
Perform search without return 500 error
Context (Environment)
Docker image latest
Default config
Detailed Description
The logs docker when I performed searching:
thread 'tokio-runtime-worker' panicked at 'Corrupter id_mapper, no external value for 302', lib/segment/src/segment.rs:130:25
Possible Implementation
When pushing a lot vector, I iterate push per batch (1500 vector) and after a certain batch, the API in a specific collection is timeout.
Then I wait about 30 minutes and test push again and succeed, I think the worker is indexing that causes the timeout but after done pushed. I can't perform searching as above