qdrant

Qdrant - High-performance, massive-scale Vector Database for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/

APACHE-2.0 License

Downloads
173
Stars
18.2K

Bot releases are hidden (Show)

qdrant - v0.5.0

Published by generall over 2 years ago

Change log

Features

Bug fixes

Deprecation

Breaking changes

  • Due to changes related to UUID and configuration format, indexes created with the previous version of the engine are not compatible with the new version. The most straightforward migration approach would be to re-create collections with the latest version from scratch. Breaking changes are required to make our v1.0 release as legacy-free as possible. Hope for your understanding.
qdrant - v0.4.2

Published by generall almost 3 years ago

Bugfix for multiple architectures support

qdrant - v0.4.1

Published by generall almost 3 years ago

Change log

Bug Fixes

Features

qdrant - v0.3.6

Published by generall about 3 years ago

Change log

Bug Fixes

qdrant - v0.3.5

Published by generall over 3 years ago

Change log

Improvements

  • Actix upgraded to version 4.0beta, which allows to completely upgrade Tokio to 1.0+

Bug fix

  • WAL now uses CBOR format, which properly handles some corner cases of payload interface format. The implementation is backward compatible
qdrant - v0.3.4

Published by generall over 3 years ago

Change log

Improvements

Bug fix

qdrant - v0.3.2

Published by generall over 3 years ago

Change log

  • Payload schema included into collection info API
  • Fixed redundant links building for range payload index in HNSW graph
qdrant - v0.3.1

Published by generall over 3 years ago

Bugfix

  • HNSW index and search is much faster
  • Segment removal is now atomic
  • Optimizer no longer loops on optimizing mmap segments
qdrant - v0.3.0

Published by generall over 3 years ago

Change log

  • Filtrable HNSW Index - optimizer will automatically build HNSW index for vectors after specified threshold. HNSW index takes into account indexed payload
  • Dynamic collection configuration - each collection now has individual configuration settings. Configuration could be updated with an API request at any moment https://github.com/qdrant/qdrant/issues/16
  • Query planner decides whether to use HNSW index or not based on estimated filtering cardinality
  • Collection status indicator https://github.com/qdrant/qdrant/issues/17
qdrant -

Published by generall over 3 years ago

Fix filtering issue with indexed fields

qdrant - Payload Index

Published by generall over 3 years ago

Change log

  • Added Functionality to mark a payload field as "indexed".
  • Payload indexation for number and keyword fields. Geo fields index is WIP.
  • Segments are now automatically rebuilt into MMap and indexed segments if there are enough vectors stored.
  • Search API filtering schema changed
    Old version
"filter": {
  "should": [
    {
      "match": {
        "key": "city",
        "keyword": "London"
      }
    }
  ]
}

New version

"filter": {
  "should": [
    {
      "key": "city",
      "match": {
        "keyword": "London"
      }
    }
  ]
}
Package Rankings
Top 8.47% on Proxy.golang.org
Top 19.44% on Pypi.org