Skip to content

1995parham-learning/qdrant101

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Learn to deploy and use Qdrant as vector database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages