qdrant101

command module
v0.0.0-...-caa7065 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 14, 2024 License: GPL-3.0 Imports: 3 Imported by: 0

README

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

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL