Replies: 2 comments
-
Any updates on this? We could make an issue as "feature request" to talk about this. It would be a great addition! |
Beta Was this translation helpful? Give feedback.
0 replies
-
In Qdrant, Multitenancy is done in a single collection through payloads. This, and reasoning behind it, is described here: https://qdrant.tech/documentation/guides/multiple-partitions/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Elasticsearch has a feature where we can search multiple indices (like collections in Qdrant) with a single query. Example:
If we have the following collections:
And we do a search on pattern like this:
it will only search in one collection:
Since the pattern states to include everything that matches
202301*
, and exclude (notice the-
) everything that matches*_dogs
Another example:
Would only search in the following collections:
I wrote something similar for Kibana a while back that might give you a good idea about the logic: https://github.com/igoristic/kibana/blob/1e5e9876666ee14cd869e4f80706e348218066d8/x-pack/plugins/monitoring/common/es_glob_patterns.ts
Thank you Qdrant team, for such an awesome product and constant releases 🙇 ❤️ ❤️
Beta Was this translation helpful? Give feedback.
All reactions