-
-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature]: Add Qdrant test container #992
Comments
Thank you for bringing up this issue. Since you've already made progress on an implementation, I'm happy to review the pull request as soon as you're ready. I believe we briefly discussed the client implementation, right? There is no official .NET client, right? If not, how can we test the module? Can we utilize e.g. a generic HTTP request? |
This commit adds a qdrant container to the list of supported Testcontainers. The qdrant container allows configuration of: - an API key to authenticate to Qdrant - an x509 certificate used to secure communication to Qdrant with Transport Layer Security - a custom configuration file. See https://qdrant.tech/documentation/guides/configuration/ Closes testcontainers#992
Opened #994. There is currently no official client; qdrant exposes both HTTP and gRPC APIs, so the HTTP API can be tested with HttpClient. The gRPC API can be tested with https://www.nuget.org/packages/Qdrant.Grpc for the time being, if need be. |
This commit adds a qdrant container to the list of supported Testcontainers. The qdrant container allows configuration of: - an API key to authenticate to Qdrant - an x509 certificate used to secure communication to Qdrant with Transport Layer Security - a custom configuration file. See https://qdrant.tech/documentation/guides/configuration/ Closes testcontainers#992
Problem
Qdrant is a vector search engine/database that is becoming popular for search and recommendations use cases. Qdrant provides docker images but there isn't currently an official .NET test container. This issue proposes adding one.
Solution
Open a PR with Qdrant test container from https://github.com/russcam/qdrant-dotnet-client/tree/main/tests/Qdrant.Grpc.Tests/Container
Benefit
Provides a qdrant test container for folks that need it
Alternatives
Folks who need a qdrant test container each define it themselves
Would you like to help contributing this enhancement?
Yes
The text was updated successfully, but these errors were encountered: