Free 3 min read

Is Qdrant Down?

Check live Qdrant status — cloud vector database, similarity search, and hybrid dense+sparse retrieval. See recent incidents and set up free email alerts.

Qdrant live status

Qdrant — live status

Updated every 5 minutes. Full incident history at prismix.dev/service/qdrant.

Full status →

Quick check: is Qdrant down right now?

  1. Prismix: prismix.dev/service/qdrant — live status + 30-day uptime + incidents.
  2. Qdrant official status: status.qdrant.io — Qdrant's own status page covering cloud clusters.
  3. API call: curl https://prismix.dev/api/v1/statuses | jq '.services[] | select(.id=="qdrant")'

Set up free email alerts for Qdrant

  1. 1

    Sign in

    Go to prismix.dev/sign-in — email OTP or GitHub sign-in.

  2. 2

    Star Qdrant

    On prismix.dev/service/qdrant, click the ☆ star icon.

  3. 3

    Alerts are live

    You'll get an email within minutes of any status change.

Common causes of "Qdrant not working"

If Prismix shows Qdrant as "Operational" but your collection operations are failing:

  • Collection not found right after creation (replication lag) — in Qdrant Cloud's replicated clusters, a new collection may take a few seconds to propagate across all nodes. If you immediately query after creation, you may hit a replica that hasn't caught up yet. Add a short retry loop (3 attempts with 1s delay) after create_collection before inserting vectors.
  • Upsert returning 413 Payload Too Large — Qdrant's REST API has a default request body limit of 32MB. Large batch upserts with many high-dimensional vectors (e.g., 10,000 × 1536-dim) easily exceed this. Split upserts into batches of 100–500 points per request, or use the gRPC API which has a higher streaming limit for batch imports.
  • Cosine search returning wrong top-k (vector size mismatch) — Qdrant enforces that all vectors in a collection match the declared dimension. A common bug occurs when switching embedding models (e.g., from 768-dim to 1536-dim): old vectors in the collection have wrong dimensions, causing search to silently exclude them. Create a new collection and re-index when changing embedding models.
  • Cloud cluster going to "degraded" state during rolling update — Qdrant Cloud applies rolling updates to cluster nodes. During the update, one node at a time goes offline, briefly reducing replication factor. If your cluster has replication factor 1, this causes a brief unavailability. Upgrade to replication factor 2 or more for production workloads to maintain availability during updates.
  • API key permissions not propagating immediately — Qdrant Cloud API keys with restricted collection permissions may take up to 30 seconds to become active after creation. If a newly generated restricted key returns 403 immediately, wait 30 seconds and retry. This is a known eventual-consistency behavior in the Qdrant Cloud control plane.
  • On-disk indexing blocking queries during HNSW index build — when you trigger optimizer_config to rebuild the HNSW index on a large collection, search queries continue to work but may run in brute-force mode (full scan) during the build, causing high latency. Schedule index rebuilds during low-traffic periods and monitor the optimizer status via GET /collections/{name}.
🔔

Stop manually checking — get alerts instead

Star Qdrant on Prismix and get emailed the moment status changes. Free, no credit card.

Monitor related vector database and AI infrastructure tools?

Full status dashboard: prismix.dev/status