-
Beta Was this translation helpful? Give feedback.
Answered by
timvisee
Jul 4, 2023
Replies: 1 comment 1 reply
-
Qdrant has a REST (HTTP) and gRPC server. The web console uses REST on 6333, the Python client uses gRPC on 6334 because If running the Qdrant Docker image, are you sure port 6334 is exposed as well? docker run -p 6333:6333 -p 6334:6334 \
-v $(pwd)/qdrant_storage:/qdrant/storage \
qdrant/qdrant You could set |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
timvisee
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Qdrant has a REST (HTTP) and gRPC server. The web console uses REST on 6333, the Python client uses gRPC on 6334 because
prefer_grpc=True
.If running the Qdrant Docker image, are you sure port 6334 is exposed as well?
docker run -p 6333:6333 -p 6334:6334 \ -v $(pwd)/qdrant_storage:/qdrant/storage \ qdrant/qdrant
You could set
prefer_grpc=False
to only use the REST API but that is not recommended.