Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 678 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 678 Bytes

Qdrant 101

Introduction

I am going to deploy Qdrant and then working on its scaling. I want to use it in LLM as a service architecture.

Deploy

Deploy a single-node setup using docker:

docker pull qdrant/qdrant
docker run -p 6333:6333 -p 6334:6334 \
    -v $(pwd)/qdrant_storage:/qdrant/storage:z \
    qdrant/qdrant

Under the default configuration all data will be stored in the ./qdrant_storage directory. This will also be the only directory that both the Container and the host machine can both see.

Qdrant is now accessible:

REST API: localhost:6333
Web UI: localhost:6333/dashboard
GRPC API: localhost:6334