Shortcuts

Source code for qdrant_client.qdrant_client

import warnings
from copy import deepcopy
from typing import (
    Any,
    Awaitable,
    Callable,
    Dict,
    Iterable,
    List,
    Mapping,
    Optional,
    Sequence,
    Tuple,
    Union,
)

from qdrant_client import grpc as grpc
from qdrant_client.client_base import QdrantBase
from qdrant_client.conversions import common_types as types
from qdrant_client.http import ApiClient, SyncApis
from qdrant_client.local.qdrant_local import QdrantLocal
from qdrant_client.migrate import migrate
from qdrant_client.qdrant_fastembed import QdrantFastembedMixin
from qdrant_client.qdrant_remote import QdrantRemote


[docs]class QdrantClient(QdrantFastembedMixin): """Entry point to communicate with Qdrant service via REST or gRPC API. It combines interface classes and endpoint implementation. Additionally, it provides custom implementations for frequently used methods like initial collection upload. All methods in QdrantClient accept both gRPC and REST structures as an input. Conversion will be performed automatically. .. note:: This module methods are wrappers around generated client code for gRPC and REST methods. If you need lower-level access to generated clients, use following properties: - :py:attr:`QdrantClient.grpc_points` - :py:attr:`QdrantClient.grpc_collections` - :py:attr:`QdrantClient.rest` .. note:: If you need async, please consider using Async Implementations of QdrantClient. - :class:`qdrant_client.async_qdrant_client` Args: location: If `":memory:"` - use in-memory Qdrant instance. If `str` - use it as a `url` parameter. If `None` - use default values for `host` and `port`. url: either host or str of "Optional[scheme], host, Optional[port], Optional[prefix]". Default: `None` port: Port of the REST API interface. Default: 6333 grpc_port: Port of the gRPC interface. Default: 6334 prefer_grpc: If `true` - use gPRC interface whenever possible in custom methods. https: If `true` - use HTTPS(SSL) protocol. Default: `None` api_key: API key for authentication in Qdrant Cloud. Default: `None` prefix: If not `None` - add `prefix` to the REST URL path. Example: `service/v1` will result in `http://localhost:6333/service/v1/{qdrant-endpoint}` for REST API. Default: `None` timeout: Timeout for REST and gRPC API requests. Default: 5 seconds for REST and unlimited for gRPC host: Host name of Qdrant service. If url and host are None, set to 'localhost'. Default: `None` path: Persistence path for QdrantLocal. Default: `None` force_disable_check_same_thread: For QdrantLocal, force disable check_same_thread. Default: `False` Only use this if you can guarantee that you can resolve the thread safety outside QdrantClient. auth_token_provider: Callback function to get Bearer access token. If given, the function will be called before each request to get the token. **kwargs: Additional arguments passed directly into REST client initialization """ def __init__( self, location: Optional[str] = None, url: Optional[str] = None, port: Optional[int] = 6333, grpc_port: int = 6334, prefer_grpc: bool = False, https: Optional[bool] = None, api_key: Optional[str] = None, prefix: Optional[str] = None, timeout: Optional[int] = None, host: Optional[str] = None, path: Optional[str] = None, force_disable_check_same_thread: bool = False, grpc_options: Optional[Dict[str, Any]] = None, auth_token_provider: Optional[ Union[Callable[[], str], Callable[[], Awaitable[str]]] ] = None, **kwargs: Any, ): super().__init__( **kwargs ) # If we want to pass any kwargs to the parent class or ignore unexpected kwargs, # we will need to pop them from **kwargs. Otherwise, they might be passed to QdrantRemote as httpx kwargs. # Httpx has specific set of params, which it accepts and will raise an error if it receives any other params. # Saving the init options to facilitate building AsyncQdrantClient from QdrantClient and vice versa. # Eg. AsyncQdrantClient(**sync_client.init_options) or QdrantClient(**async_client.init_options) self._init_options = { key: value for key, value in locals().items() if key not in ("self", "__class__", "kwargs") } self._init_options.update(deepcopy(kwargs)) self._client: QdrantBase if sum([param is not None for param in (location, url, host, path)]) > 1: raise ValueError( "Only one of <location>, <url>, <host> or <path> should be specified." ) if location == ":memory:": self._client = QdrantLocal( location=location, force_disable_check_same_thread=force_disable_check_same_thread, ) elif path is not None: self._client = QdrantLocal( location=path, force_disable_check_same_thread=force_disable_check_same_thread, ) else: if location is not None and url is None: url = location self._client = QdrantRemote( url=url, port=port, grpc_port=grpc_port, prefer_grpc=prefer_grpc, https=https, api_key=api_key, prefix=prefix, timeout=timeout, host=host, grpc_options=grpc_options, auth_token_provider=auth_token_provider, **kwargs, ) def __del__(self) -> None: self.close()
[docs] def close(self, grpc_grace: Optional[float] = None, **kwargs: Any) -> None: """Closes the connection to Qdrant Args: grpc_grace: Grace period for gRPC connection close. Default: None """ if hasattr(self, "_client"): self._client.close(grpc_grace=grpc_grace, **kwargs)
@property def grpc_collections(self) -> grpc.CollectionsStub: """gRPC client for collections methods Returns: An instance of raw gRPC client, generated from Protobuf """ if isinstance(self._client, QdrantRemote): return self._client.grpc_collections raise NotImplementedError(f"gRPC client is not supported for {type(self._client)}") @property def grpc_points(self) -> grpc.PointsStub: """gRPC client for points methods Returns: An instance of raw gRPC client, generated from Protobuf """ if isinstance(self._client, QdrantRemote): return self._client.grpc_points raise NotImplementedError(f"gRPC client is not supported for {type(self._client)}") @property def async_grpc_points(self) -> grpc.PointsStub: """gRPC client for points methods Returns: An instance of raw gRPC client, generated from Protobuf """ warnings.warn( "async_grpc_points is deprecated and will be removed in a future release. Use `AsyncQdrantRemote.grpc_points` instead.", DeprecationWarning, stacklevel=2, ) if isinstance(self._client, QdrantRemote): return self._client.async_grpc_points raise NotImplementedError(f"gRPC client is not supported for {type(self._client)}") @property def async_grpc_collections(self) -> grpc.CollectionsStub: """gRPC client for collections methods Returns: An instance of raw gRPC client, generated from Protobuf """ warnings.warn( "async_grpc_collections is deprecated and will be removed in a future release. Use `AsyncQdrantRemote.grpc_collections` instead.", DeprecationWarning, stacklevel=2, ) if isinstance(self._client, QdrantRemote): return self._client.async_grpc_collections raise NotImplementedError(f"gRPC client is not supported for {type(self._client)}") @property def rest(self) -> SyncApis[ApiClient]: """REST Client Returns: An instance of raw REST API client, generated from OpenAPI schema """ warnings.warn( "The 'rest' property is deprecated and will be removed in a future version. Use `http` instead.", DeprecationWarning, stacklevel=2, ) if isinstance(self._client, QdrantRemote): return self._client.rest raise NotImplementedError(f"REST client is not supported for {type(self._client)}") @property def http(self) -> SyncApis[ApiClient]: """REST Client Returns: An instance of raw REST API client, generated from OpenAPI schema """ if isinstance(self._client, QdrantRemote): return self._client.http raise NotImplementedError(f"REST client is not supported for {type(self._client)}") @property def init_options(self) -> Dict[str, Any]: """`__init__` Options Returns: A dictionary of options the client class was instantiated with """ return self._init_options
[docs] def search_batch( self, collection_name: str, requests: Sequence[types.SearchRequest], timeout: Optional[int] = None, consistency: Optional[types.ReadConsistency] = None, **kwargs: Any, ) -> List[List[types.ScoredPoint]]: """Perform multiple searches in a collection mitigating network overhead Args: collection_name: Name of the collection requests: List of search requests consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of search responses """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.search_batch( collection_name=collection_name, requests=requests, consistency=consistency, timeout=timeout, **kwargs, )
[docs] def search( self, collection_name: str, query_vector: Union[ Sequence[float], Tuple[str, List[float]], types.NamedVector, types.NamedSparseVector, types.NumpyArray, ], query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, offset: Optional[int] = None, with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, score_threshold: Optional[float] = None, append_payload: bool = True, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[types.ScoredPoint]: """Search for closest vectors in collection taking into account filtering conditions Args: collection_name: Collection to search in query_vector: Search for vectors closest to this. Can be either a vector itself, or a named vector, or a named sparse vector, or a tuple of vector name and vector itself query_filter: - Exclude vectors which doesn't fit given conditions. - If `None` - search among all vectors search_params: Additional search params limit: How many results return offset: Offset of the first result to return. May be used to paginate results. Note: large offset values may cause performance issues. with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - include only specified fields - Default: `False` score_threshold: Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned. append_payload: Same as `with_payload`. Deprecated. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this search. Unit is seconds. Examples: `Search with filter`:: qdrant.search( collection_name="test_collection", query_vector=[1.0, 0.1, 0.2, 0.7], query_filter=Filter( must=[ FieldCondition( key='color', range=Match( value="red" ) ) ] ) ) Returns: List of found close points with similarity scores. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.search( collection_name=collection_name, query_vector=query_vector, query_filter=query_filter, search_params=search_params, limit=limit, offset=offset, with_payload=with_payload, with_vectors=with_vectors, score_threshold=score_threshold, append_payload=append_payload, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def query_batch_points( self, collection_name: str, requests: Sequence[types.QueryRequest], consistency: Optional[types.ReadConsistency] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[types.QueryResponse]: """Perform any search, recommend, discovery, context search operations in batch, and mitigate network overhead Args: collection_name: Name of the collection requests: List of query requests consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of query responses """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.query_batch_points( collection_name=collection_name, requests=requests, consistency=consistency, timeout=timeout, **kwargs, )
[docs] def query_points( self, collection_name: str, query: Union[ types.PointId, List[float], List[List[float]], types.SparseVector, types.Query, types.NumpyArray, types.Document, None, ] = None, using: Optional[str] = None, prefetch: Union[types.Prefetch, List[types.Prefetch], None] = None, query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, offset: Optional[int] = None, with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, score_threshold: Optional[float] = None, lookup_from: Optional[types.LookupLocation] = None, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> types.QueryResponse: """Universal endpoint to run any available operation, such as search, recommendation, discovery, context search. Args: collection_name: Collection to search in query: Query for the chosen search type operation. - If `str` - use string as UUID of the existing point as a search query. - If `int` - use integer as ID of the existing point as a search query. - If `List[float]` - use as a dense vector for nearest search. - If `List[List[float]]` - use as a multi-vector for nearest search. - If `SparseVector` - use as a sparse vector for nearest search. - If `Query` - use as a query for specific search type. - If `NumpyArray` - use as a dense vector for nearest search. - If `Document` - infer vector from the document text and use it for nearest search (requires `fastembed` package installed). - If `None` - return first `limit` points from the collection. prefetch: prefetch queries to make a selection of the data to be used with the main query query_filter: - Exclude vectors which doesn't fit given conditions. - If `None` - search among all vectors search_params: Additional search params limit: How many results return offset: Offset of the first result to return. May be used to paginate results. Note: large offset values may cause performance issues. with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - include only specified fields - Default: `False` score_threshold: Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned. using: Name of the vectors to use for query. If `None` - use default vectors or provided in named vector structures. lookup_from: Defines a location (collection and vector field name), used to lookup vectors for recommendations, discovery and context queries. If `None` - current collection will be used. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this search. Unit is seconds. Examples: `Search for closest points with a filter`:: qdrant.query( collection_name="test_collection", query=[1.0, 0.1, 0.2, 0.7], query_filter=Filter( must=[ FieldCondition( key='color', range=Match( value="red" ) ) ] ) ) Returns: QueryResponse structure containing list of found close points with similarity scores. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" # If the query contains unprocessed documents, we need to embed them and # replace the original query with the embedded vectors. query, prefetch = self._resolve_query_to_embedding_embeddings_and_prefetch(query, prefetch) return self._client.query_points( collection_name=collection_name, query=query, prefetch=prefetch, query_filter=query_filter, search_params=search_params, limit=limit, offset=offset, with_payload=with_payload, with_vectors=with_vectors, score_threshold=score_threshold, using=using, lookup_from=lookup_from, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def query_points_groups( self, collection_name: str, group_by: str, query: Union[ types.PointId, List[float], List[List[float]], types.SparseVector, types.Query, types.NumpyArray, types.Document, None, ] = None, using: Optional[str] = None, prefetch: Union[types.Prefetch, List[types.Prefetch], None] = None, query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, group_size: int = 3, with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, score_threshold: Optional[float] = None, with_lookup: Optional[types.WithLookupInterface] = None, lookup_from: Optional[types.LookupLocation] = None, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> types.GroupsResult: """Universal endpoint to group on any available operation, such as search, recommendation, discovery, context search. Args: collection_name: Collection to search in query: Query for the chosen search type operation. - If `str` - use string as UUID of the existing point as a search query. - If `int` - use integer as ID of the existing point as a search query. - If `List[float]` - use as a dense vector for nearest search. - If `List[List[float]]` - use as a multi-vector for nearest search. - If `SparseVector` - use as a sparse vector for nearest search. - If `Query` - use as a query for specific search type. - If `NumpyArray` - use as a dense vector for nearest search. - If `Document` - infer vector from the document text and use it for nearest search (requires `fastembed` package installed). - If `None` - return first `limit` points from the collection. prefetch: prefetch queries to make a selection of the data to be used with the main query query_filter: - Exclude vectors which doesn't fit given conditions. - If `None` - search among all vectors search_params: Additional search params limit: How many results return group_size: How many results return for each group group_by: Name of the payload field to group by. Field must be of type "keyword" or "integer". Nested fields are specified using dot notation, e.g. "nested_field.subfield". with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - include only specified fields - Default: `False` score_threshold: Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned. using: Name of the vectors to use for query. If `None` - use default vectors or provided in named vector structures. with_lookup: Look for points in another collection using the group ids. If specified, each group will contain a record from the specified collection with the same id as the group id. In addition, the parameter allows to specify which parts of the record should be returned, like in `with_payload` and `with_vectors` parameters. lookup_from: Defines a location (collection and vector field name), used to lookup vectors being referenced in the query as IDs. If `None` - current collection will be used. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this search. Unit is seconds. Examples: `Search for closest points and group results`:: qdrant.query_points_groups( collection_name="test_collection", query=[1.0, 0.1, 0.2, 0.7], group_by="color", group_size=3, ) Returns: List of groups with not more than `group_size` hits in each group. Each group also contains an id of the group, which is the value of the payload field. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" # If the query contains unprocessed documents, we need to embed them and # replace the original query with the embedded vectors. query, prefetch = self._resolve_query_to_embedding_embeddings_and_prefetch( query, prefetch, ) return self._client.query_points_groups( collection_name=collection_name, query=query, prefetch=prefetch, query_filter=query_filter, search_params=search_params, group_by=group_by, limit=limit, group_size=group_size, with_payload=with_payload, with_vectors=with_vectors, score_threshold=score_threshold, using=using, with_lookup=with_lookup, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def search_groups( self, collection_name: str, query_vector: Union[ Sequence[float], Tuple[str, List[float]], types.NamedVector, types.NamedSparseVector, types.NumpyArray, ], group_by: str, query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, group_size: int = 1, with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, score_threshold: Optional[float] = None, with_lookup: Optional[types.WithLookupInterface] = None, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> types.GroupsResult: """Search for closest vectors grouped by payload field. Searches best matches for query vector grouped by the value of payload field. Useful to obtain most relevant results for each category, deduplicate results, finding the best representation vector for the same entity. Args: collection_name: Collection to search in query_vector: Search for vectors closest to this. Can be either a vector itself, or a named vector, or a named sparse vector, or a tuple of vector name and vector itself group_by: Name of the payload field to group by. Field must be of type "keyword" or "integer". Nested fields are specified using dot notation, e.g. "nested_field.subfield". query_filter: - Exclude vectors which doesn't fit given conditions. - If `None` - search among all vectors search_params: Additional search params limit: How many groups return group_size: How many results return for each group with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - include only specified fields - Default: `False` score_threshold: Minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned. with_lookup: Look for points in another collection using the group ids. If specified, each group will contain a record from the specified collection with the same id as the group id. In addition, the parameter allows to specify which parts of the record should be returned, like in `with_payload` and `with_vectors` parameters. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of groups with not more than `group_size` hits in each group. Each group also contains an id of the group, which is the value of the payload field. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.search_groups( collection_name=collection_name, query_vector=query_vector, group_by=group_by, query_filter=query_filter, search_params=search_params, limit=limit, group_size=group_size, with_payload=with_payload, with_vectors=with_vectors, score_threshold=score_threshold, with_lookup=with_lookup, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def recommend_batch( self, collection_name: str, requests: Sequence[types.RecommendRequest], consistency: Optional[types.ReadConsistency] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[List[types.ScoredPoint]]: """Perform multiple recommend requests in batch mode Args: collection_name: Name of the collection requests: List of recommend requests consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of recommend responses """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.recommend_batch( collection_name=collection_name, requests=requests, consistency=consistency, timeout=timeout, **kwargs, )
[docs] def recommend( self, collection_name: str, positive: Optional[Sequence[types.RecommendExample]] = None, negative: Optional[Sequence[types.RecommendExample]] = None, query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, offset: int = 0, with_payload: Union[bool, List[str], types.PayloadSelector] = True, with_vectors: Union[bool, List[str]] = False, score_threshold: Optional[float] = None, using: Optional[str] = None, lookup_from: Optional[types.LookupLocation] = None, strategy: Optional[types.RecommendStrategy] = None, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[types.ScoredPoint]: """Recommend points: search for similar points based on already stored in Qdrant examples. Provide IDs of the stored points, and Qdrant will perform search based on already existing vectors. This functionality is especially useful for recommendation over existing collection of points. Args: collection_name: Collection to search in positive: List of stored point IDs or vectors, which should be used as reference for similarity search. If there is only one example - this request is equivalent to the regular search with vector of that point. If there are more than one example, Qdrant will attempt to search for similar to all of them. Recommendation for multiple vectors is experimental. Its behaviour may change depending on selected strategy. negative: List of stored point IDs or vectors, which should be dissimilar to the search result. Negative examples is an experimental functionality. Its behaviour may change depending on selected strategy. query_filter: - Exclude vectors which doesn't fit given conditions. - If `None` - search among all vectors search_params: Additional search params limit: How many results return offset: Offset of the first result to return. May be used to paginate results. Note: large offset values may cause performance issues. with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - include only specified fields - Default: `False` score_threshold: Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned. using: Name of the vectors to use for recommendations. If `None` - use default vectors. lookup_from: Defines a location (collection and vector field name), used to lookup vectors for recommendations. If `None` - current collection will be used. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. strategy: Strategy to use for recommendation. Strategy defines how to combine multiple examples into a recommendation query. Possible values: - 'average_vector' - calculates average vector of all examples and uses it for search - 'best_score' - finds the result which is closer to positive examples and further from negative timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of recommended points with similarity scores. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.recommend( collection_name=collection_name, positive=positive, negative=negative, query_filter=query_filter, search_params=search_params, limit=limit, offset=offset, with_payload=with_payload, with_vectors=with_vectors, score_threshold=score_threshold, using=using, lookup_from=lookup_from, consistency=consistency, shard_key_selector=shard_key_selector, strategy=strategy, timeout=timeout, **kwargs, )
[docs] def recommend_groups( self, collection_name: str, group_by: str, positive: Optional[Sequence[types.RecommendExample]] = None, negative: Optional[Sequence[types.RecommendExample]] = None, query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, group_size: int = 1, score_threshold: Optional[float] = None, with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, using: Optional[str] = None, lookup_from: Optional[types.LookupLocation] = None, with_lookup: Optional[types.WithLookupInterface] = None, strategy: Optional[types.RecommendStrategy] = None, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> types.GroupsResult: """Recommend point groups: search for similar points based on already stored in Qdrant examples and groups by payload field. Recommend best matches for given stored examples grouped by the value of payload field. Useful to obtain most relevant results for each category, deduplicate results, finding the best representation vector for the same entity. Args: collection_name: Collection to search in positive: List of stored point IDs or vectors, which should be used as reference for similarity search. If there is only one example - this request is equivalent to the regular search with vector of that point. If there are more than one example, Qdrant will attempt to search for similar to all of them. Recommendation for multiple vectors is experimental. Its behaviour may change depending on selected strategy. negative: List of stored point IDs or vectors, which should be dissimilar to the search result. Negative examples is an experimental functionality. Its behaviour may change depending on selected strategy. group_by: Name of the payload field to group by. Field must be of type "keyword" or "integer". Nested fields are specified using dot notation, e.g. "nested_field.subfield". query_filter: - Exclude vectors which doesn't fit given conditions. - If `None` - search among all vectors search_params: Additional search params limit: How many groups return group_size: How many results return for each group with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - include only specified fields - Default: `False` score_threshold: Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned. using: Name of the vectors to use for recommendations. If `None` - use default vectors. lookup_from: Defines a location (collection and vector field name), used to lookup vectors for recommendations. If `None` - current collection will be used. with_lookup: Look for points in another collection using the group ids. If specified, each group will contain a record from the specified collection with the same id as the group id. In addition, the parameter allows to specify which parts of the record should be returned, like in `with_payload` and `with_vectors` parameters. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. strategy: Strategy to use for recommendation. Strategy defines how to combine multiple examples into a recommendation query. Possible values: - 'average_vector' - calculates average vector of all examples and uses it for search - 'best_score' - finds the result which is closer to positive examples and further from negative timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of groups with not more than `group_size` hits in each group. Each group also contains an id of the group, which is the value of the payload field. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.recommend_groups( collection_name=collection_name, group_by=group_by, positive=positive, negative=negative, query_filter=query_filter, search_params=search_params, limit=limit, group_size=group_size, score_threshold=score_threshold, with_payload=with_payload, with_vectors=with_vectors, using=using, lookup_from=lookup_from, with_lookup=with_lookup, strategy=strategy, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def discover( self, collection_name: str, target: Optional[types.TargetVector] = None, context: Optional[Sequence[types.ContextExamplePair]] = None, query_filter: Optional[types.Filter] = None, search_params: Optional[types.SearchParams] = None, limit: int = 10, offset: int = 0, with_payload: Union[bool, List[str], types.PayloadSelector] = True, with_vectors: Union[bool, List[str]] = False, using: Optional[str] = None, lookup_from: Optional[types.LookupLocation] = None, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[types.ScoredPoint]: """ Use context and a target to find the most similar points, constrained by the context. Args: collection_name: Collection to discover in target: Look for vectors closest to this. When using the target (with or without context), the integer part of the score represents the rank with respect to the context, while the decimal part of the score relates to the distance to the target. context: Pairs of { positive, negative } examples to constrain the search. When using only the context (without a target), a special search - called context search - is performed where pairs of points are used to generate a loss that guides the search towards the zone where most positive examples overlap. This means that the score minimizes the scenario of finding a point closer to a negative than to a positive part of a pair. Since the score of a context relates to loss, the maximum score a point can get is 0.0, and it becomes normal that many points can have a score of 0.0. For discovery search (when including a target), the context part of the score for each pair is calculated +1 if the point is closer to a positive than to a negative part of a pair, and -1 otherwise. query_filter: Look only for points which satisfies this conditions search_params: Additional search params limit: Max number of result to return offset: Offset of the first result to return. May be used to paginate results. Note: large offset values may cause performance issues. with_payload: Select which payload to return with the response. Default: None with_vectors: Whether to return the point vector with the result? using: Define which vector to use for recommendation, if not specified - try to use default vector. lookup_from: The location used to lookup vectors. If not specified - use current collection. Note: the other collection should have the same vector size as the current collection. consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this search. Unit is seconds. Returns: List of discovered points with discovery or context scores, accordingly. """ return self._client.discover( collection_name=collection_name, target=target, context=context, query_filter=query_filter, search_params=search_params, limit=limit, offset=offset, with_payload=with_payload, with_vectors=with_vectors, using=using, lookup_from=lookup_from, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def discover_batch( self, collection_name: str, requests: Sequence[types.DiscoverRequest], consistency: Optional[types.ReadConsistency] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[List[types.ScoredPoint]]: return self._client.discover_batch( collection_name=collection_name, requests=requests, consistency=consistency, timeout=timeout, **kwargs, )
[docs] def scroll( self, collection_name: str, scroll_filter: Optional[types.Filter] = None, limit: int = 10, order_by: Optional[types.OrderBy] = None, offset: Optional[types.PointId] = None, with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> Tuple[List[types.Record], Optional[types.PointId]]: """Scroll over all (matching) points in the collection. This method provides a way to iterate over all stored points with some optional filtering condition. Scroll does not apply any similarity estimations, it will return points sorted by id in ascending order. Args: collection_name: Name of the collection scroll_filter: If provided - only returns points matching filtering conditions limit: How many points to return order_by: Order the records by a payload key. If `None` - order by id offset: If provided - skip points with ids less than given `offset` with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` (default) - Do not attach vector. - If List of string - include only specified fields consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this operation. Unit is seconds. Returns: A pair of (List of points) and (optional offset for the next scroll request). If next page offset is `None` - there is no more points in the collection to scroll. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.scroll( collection_name=collection_name, scroll_filter=scroll_filter, limit=limit, order_by=order_by, offset=offset, with_payload=with_payload, with_vectors=with_vectors, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def count( self, collection_name: str, count_filter: Optional[types.Filter] = None, exact: bool = True, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> types.CountResult: """Count points in the collection. Count points in the collection matching the given filter. Args: collection_name: name of the collection to count points in count_filter: filtering conditions exact: If `True` - provide the exact count of points matching the filter. If `False` - provide the approximate count of points matching the filter. Works faster. shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this operation. Unit is seconds. Returns: Amount of points in the collection matching the filter. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.count( collection_name=collection_name, count_filter=count_filter, exact=exact, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def upsert( self, collection_name: str, points: types.Points, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """ Update or insert a new point into the collection. If point with given ID already exists - it will be overwritten. Args: collection_name (str): To which collection to insert points (Point): Batch or list of points to insert wait (bool): Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation Result(UpdateResult) """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.upsert( collection_name=collection_name, points=points, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, **kwargs, )
[docs] def update_vectors( self, collection_name: str, points: Sequence[types.PointVectors], wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Update specified vectors in the collection. Keeps payload and unspecified vectors unchanged. Args: collection_name (str): Name of the collection to update vectors in points (Point): List of (id, vector) pairs to update. Vector might be a list of numbers or a dict of named vectors. Examples: - `PointVectors(id=1, vector=[1, 2, 3])` - `PointVectors(id=2, vector={'vector_1': [1, 2, 3], 'vector_2': [4, 5, 6]})` wait (bool): Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation Result(UpdateResult) """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.update_vectors( collection_name=collection_name, points=points, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, )
[docs] def delete_vectors( self, collection_name: str, vectors: Sequence[str], points: types.PointsSelector, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Delete specified vector from the collection. Does not affect payload. Args: collection_name (str): Name of the collection to delete vector from vectors: List of names of the vectors to delete. Use `""` to delete the default vector. At least one vector should be specified. points (Point): Selects points based on list of IDs or filter Examples - `points=[1, 2, 3, "cd3b53f0-11a7-449f-bc50-d06310e7ed90"]` - `points=Filter(must=[FieldCondition(key='rand_number', range=Range(gte=0.7))])` wait (bool): Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_vectors( collection_name=collection_name, vectors=vectors, points=points, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, )
[docs] def retrieve( self, collection_name: str, ids: Sequence[types.PointId], with_payload: Union[bool, Sequence[str], types.PayloadSelector] = True, with_vectors: Union[bool, Sequence[str]] = False, consistency: Optional[types.ReadConsistency] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> List[types.Record]: """Retrieve stored points by IDs Args: collection_name: Name of the collection to lookup in ids: list of IDs to lookup with_payload: - Specify which stored payload should be attached to the result. - If `True` - attach all payload - If `False` - do not attach any payload - If List of string - include only specified fields - If `PayloadSelector` - use explicit rules with_vectors: - If `True` - Attach stored vector to the search result. - If `False` - Do not attach vector. - If List of string - Attach only specified vectors. - Default: `False` consistency: Read consistency of the search. Defines how many replicas should be queried before returning the result. Values: - int - number of replicas to query, values should present in all queried replicas - 'majority' - query all replicas, but return values present in the majority of replicas - 'quorum' - query the majority of replicas, return values present in all of them - 'all' - query all replicas, and return values present in all replicas shard_key_selector: This parameter allows to specify which shards should be queried. If `None` - query all shards. Only works for collections with `custom` sharding method. timeout: Overrides global timeout for this operation. Unit is seconds. Returns: List of points """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.retrieve( collection_name=collection_name, ids=ids, with_payload=with_payload, with_vectors=with_vectors, consistency=consistency, shard_key_selector=shard_key_selector, timeout=timeout, **kwargs, )
[docs] def delete( self, collection_name: str, points_selector: types.PointsSelector, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Deletes selected points from collection Args: collection_name: Name of the collection wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. points_selector: Selects points based on list of IDs or filter. Examples - `points=[1, 2, 3, "cd3b53f0-11a7-449f-bc50-d06310e7ed90"]` - `points=Filter(must=[FieldCondition(key='rand_number', range=Range(gte=0.7))])` ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete( collection_name=collection_name, points_selector=points_selector, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, **kwargs, )
[docs] def set_payload( self, collection_name: str, payload: types.Payload, points: types.PointsSelector, key: Optional[str] = None, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Modifies payload of the specified points Examples: `Set payload`:: # Assign payload value with key `"key"` to points 1, 2, 3. # If payload value with specified key already exists - it will be overwritten qdrant_client.set_payload( collection_name="test_collection", wait=True, payload={ "key": "value" }, points=[1,2,3] ) Args: collection_name: Name of the collection wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. payload: Key-value pairs of payload to assign points: List of affected points, filter or points selector Example - `points=[1, 2, 3, "cd3b53f0-11a7-449f-bc50-d06310e7ed90"]` - `points=Filter(must=[FieldCondition(key='rand_number', range=Range(gte=0.7))])` ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. key: Path to the nested field in the payload to modify. If not specified - modify the root of the payload. E.g.: PointStruct( id=42, vector=[...], payload={ "recipe": { "fruits": {"apple": "100g"} } } ) qdrant_client.set_payload( ..., payload = {"cinnamon": "2g"}, key = "recipe.fruits", points=[42] ) PointStruct( id=42, vector=[...], payload={ "recipe": { "fruits": { "apple": "100g", "cinnamon": "2g" } } } ) Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.set_payload( collection_name=collection_name, payload=payload, points=points, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, key=key, **kwargs, )
[docs] def overwrite_payload( self, collection_name: str, payload: types.Payload, points: types.PointsSelector, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Overwrites payload of the specified points After this operation is applied, only the specified payload will be present in the point. The existing payload, even if the key is not specified in the payload, will be deleted. Examples: `Set payload`:: # Overwrite payload value with key `"key"` to points 1, 2, 3. # If any other valid payload value exists - it will be deleted qdrant_client.overwrite_payload( collection_name="test_collection", wait=True, payload={ "key": "value" }, points=[1,2,3] ) Args: collection_name: Name of the collection wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. payload: Key-value pairs of payload to assign points: List of affected points, filter or points selector. Example - `points=[1, 2, 3, "cd3b53f0-11a7-449f-bc50-d06310e7ed90"]` - `points=Filter(must=[FieldCondition(key='rand_number', range=Range(gte=0.7))])` ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.overwrite_payload( collection_name=collection_name, payload=payload, points=points, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, **kwargs, )
[docs] def delete_payload( self, collection_name: str, keys: Sequence[str], points: types.PointsSelector, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Remove values from point's payload Args: collection_name: Name of the collection wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. keys: List of payload keys to remove points: List of affected points, filter or points selector. Example - `points=[1, 2, 3, "cd3b53f0-11a7-449f-bc50-d06310e7ed90"]` - `points=Filter(must=[FieldCondition(key='rand_number', range=Range(gte=0.7))])` ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is downn shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_payload( collection_name=collection_name, keys=keys, points=points, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, **kwargs, )
[docs] def clear_payload( self, collection_name: str, points_selector: types.PointsSelector, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> types.UpdateResult: """Delete all payload for selected points Args: collection_name: Name of the collection wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. points_selector: List of affected points, filter or points selector. Example - `points=[1, 2, 3, "cd3b53f0-11a7-449f-bc50-d06310e7ed90"]` - `points=Filter(must=[FieldCondition(key='rand_number', range=Range(gte=0.7))])` ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.clear_payload( collection_name=collection_name, points_selector=points_selector, wait=wait, ordering=ordering, shard_key_selector=shard_key_selector, **kwargs, )
[docs] def batch_update_points( self, collection_name: str, update_operations: Sequence[types.UpdateOperation], wait: bool = True, ordering: Optional[types.WriteOrdering] = None, **kwargs: Any, ) -> List[types.UpdateResult]: """Batch update points in the collection. Args: collection_name: Name of the collection update_operations: List of update operations wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down Returns: Operation results """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.batch_update_points( collection_name=collection_name, update_operations=update_operations, wait=wait, ordering=ordering, **kwargs, )
[docs] def update_collection_aliases( self, change_aliases_operations: Sequence[types.AliasOperations], timeout: Optional[int] = None, **kwargs: Any, ) -> bool: """Operation for performing changes of collection aliases. Alias changes are atomic, meaning that no collection modifications can happen between alias operations. Args: change_aliases_operations: List of operations to perform timeout: Wait for operation commit timeout in seconds. If timeout is reached - request will return with service error. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.update_collection_aliases( change_aliases_operations=change_aliases_operations, timeout=timeout, **kwargs, )
[docs] def get_collection_aliases( self, collection_name: str, **kwargs: Any ) -> types.CollectionsAliasesResponse: """Get collection aliases Args: collection_name: Name of the collection Returns: Collection aliases """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.get_collection_aliases(collection_name=collection_name, **kwargs)
[docs] def get_aliases(self, **kwargs: Any) -> types.CollectionsAliasesResponse: """Get all aliases Returns: All aliases of all collections """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.get_aliases(**kwargs)
[docs] def get_collections(self, **kwargs: Any) -> types.CollectionsResponse: """Get list name of all existing collections Returns: List of the collections """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.get_collections(**kwargs)
[docs] def get_collection(self, collection_name: str, **kwargs: Any) -> types.CollectionInfo: """Get detailed information about specified existing collection Args: collection_name: Name of the collection Returns: Detailed information about the collection """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.get_collection(collection_name=collection_name, **kwargs)
[docs] def collection_exists(self, collection_name: str, **kwargs: Any) -> bool: """Check whether collection already exists Args: collection_name: Name of the collection Returns: True if collection exists, False if not """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.collection_exists(collection_name=collection_name, **kwargs)
[docs] def update_collection( self, collection_name: str, optimizers_config: Optional[types.OptimizersConfigDiff] = None, collection_params: Optional[types.CollectionParamsDiff] = None, vectors_config: Optional[types.VectorsConfigDiff] = None, hnsw_config: Optional[types.HnswConfigDiff] = None, quantization_config: Optional[types.QuantizationConfigDiff] = None, timeout: Optional[int] = None, sparse_vectors_config: Optional[Mapping[str, types.SparseVectorParams]] = None, **kwargs: Any, ) -> bool: """Update parameters of the collection Args: collection_name: Name of the collection optimizers_config: Override for optimizer configuration collection_params: Override for collection parameters vectors_config: Override for vector-specific configuration hnsw_config: Override for HNSW index params quantization_config: Override for quantization params timeout: Wait for operation commit timeout in seconds. If timeout is reached - request will return with service error. sparse_vectors_config: Override for sparse vector-specific configuration Returns: Operation result """ if "optimizer_config" in kwargs and optimizers_config is not None: raise ValueError( "Only one of optimizer_config and optimizers_config should be specified" ) if "optimizer_config" in kwargs: optimizers_config = kwargs.pop("optimizer_config") assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.update_collection( collection_name=collection_name, optimizers_config=optimizers_config, collection_params=collection_params, vectors_config=vectors_config, hnsw_config=hnsw_config, quantization_config=quantization_config, timeout=timeout, sparse_vectors_config=sparse_vectors_config, **kwargs, )
[docs] def delete_collection( self, collection_name: str, timeout: Optional[int] = None, **kwargs: Any ) -> bool: """Removes collection and all it's data Args: collection_name: Name of the collection to delete timeout: Wait for operation commit timeout in seconds. If timeout is reached - request will return with service error. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_collection( collection_name=collection_name, timeout=timeout, **kwargs )
[docs] def create_collection( self, collection_name: str, vectors_config: Union[types.VectorParams, Mapping[str, types.VectorParams]], sparse_vectors_config: Optional[Mapping[str, types.SparseVectorParams]] = None, shard_number: Optional[int] = None, sharding_method: Optional[types.ShardingMethod] = None, replication_factor: Optional[int] = None, write_consistency_factor: Optional[int] = None, on_disk_payload: Optional[bool] = None, hnsw_config: Optional[types.HnswConfigDiff] = None, optimizers_config: Optional[types.OptimizersConfigDiff] = None, wal_config: Optional[types.WalConfigDiff] = None, quantization_config: Optional[types.QuantizationConfig] = None, init_from: Optional[types.InitFrom] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> bool: """Create empty collection with given parameters Args: collection_name: Name of the collection to recreate vectors_config: Configuration of the vector storage. Vector params contains size and distance for the vector storage. If dict is passed, service will create a vector storage for each key in the dict. If single VectorParams is passed, service will create a single anonymous vector storage. sparse_vectors_config: Configuration of the sparse vector storage. The service will create a sparse vector storage for each key in the dict. shard_number: Number of shards in collection. Default is 1, minimum is 1. sharding_method: Defines strategy for shard creation. Option `auto` (default) creates defined number of shards automatically. Data will be distributed between shards automatically. After creation, shards could be additionally replicated, but new shards could not be created. Option `custom` allows to create shards manually, each shard should be created with assigned unique `shard_key`. Data will be distributed between based on `shard_key` value. replication_factor: Replication factor for collection. Default is 1, minimum is 1. Defines how many copies of each shard will be created. Have effect only in distributed mode. write_consistency_factor: Write consistency factor for collection. Default is 1, minimum is 1. Defines how many replicas should apply the operation for us to consider it successful. Increasing this number will make the collection more resilient to inconsistencies, but will also make it fail if not enough replicas are available. Does not have any performance impact. Have effect only in distributed mode. on_disk_payload: If true - point`s payload will not be stored in memory. It will be read from the disk every time it is requested. This setting saves RAM by (slightly) increasing the response time. Note: those payload values that are involved in filtering and are indexed - remain in RAM. hnsw_config: Params for HNSW index optimizers_config: Params for optimizer wal_config: Params for Write-Ahead-Log quantization_config: Params for quantization, if None - quantization will be disabled init_from: Use data stored in another collection to initialize this collection timeout: Wait for operation commit timeout in seconds. If timeout is reached - request will return with service error. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.create_collection( collection_name=collection_name, vectors_config=vectors_config, shard_number=shard_number, sharding_method=sharding_method, replication_factor=replication_factor, write_consistency_factor=write_consistency_factor, on_disk_payload=on_disk_payload, hnsw_config=hnsw_config, optimizers_config=optimizers_config, wal_config=wal_config, quantization_config=quantization_config, init_from=init_from, timeout=timeout, sparse_vectors_config=sparse_vectors_config, **kwargs, )
# WARN: This method is deprecated and will be removed in the future # Use separate check for collection existence and `create_collection` instead
[docs] def recreate_collection( self, collection_name: str, vectors_config: Union[types.VectorParams, Mapping[str, types.VectorParams]], sparse_vectors_config: Optional[Mapping[str, types.SparseVectorParams]] = None, shard_number: Optional[int] = None, sharding_method: Optional[types.ShardingMethod] = None, replication_factor: Optional[int] = None, write_consistency_factor: Optional[int] = None, on_disk_payload: Optional[bool] = None, hnsw_config: Optional[types.HnswConfigDiff] = None, optimizers_config: Optional[types.OptimizersConfigDiff] = None, wal_config: Optional[types.WalConfigDiff] = None, quantization_config: Optional[types.QuantizationConfig] = None, init_from: Optional[types.InitFrom] = None, timeout: Optional[int] = None, **kwargs: Any, ) -> bool: """Delete and create empty collection with given parameters Args: collection_name: Name of the collection to recreate vectors_config: Configuration of the vector storage. Vector params contains size and distance for the vector storage. If dict is passed, service will create a vector storage for each key in the dict. If single VectorParams is passed, service will create a single anonymous vector storage. sparse_vectors_config: Configuration of the sparse vector storage. The service will create a sparse vector storage for each key in the dict. shard_number: Number of shards in collection. Default is 1, minimum is 1. sharding_method: Defines strategy for shard creation. Option `auto` (default) creates defined number of shards automatically. Data will be distributed between shards automatically. After creation, shards could be additionally replicated, but new shards could not be created. Option `custom` allows to create shards manually, each shard should be created with assigned unique `shard_key`. Data will be distributed between based on `shard_key` value. replication_factor: Replication factor for collection. Default is 1, minimum is 1. Defines how many copies of each shard will be created. Have effect only in distributed mode. write_consistency_factor: Write consistency factor for collection. Default is 1, minimum is 1. Defines how many replicas should apply the operation for us to consider it successful. Increasing this number will make the collection more resilient to inconsistencies, but will also make it fail if not enough replicas are available. Does not have any performance impact. Have effect only in distributed mode. on_disk_payload: If true - point`s payload will not be stored in memory. It will be read from the disk every time it is requested. This setting saves RAM by (slightly) increasing the response time. Note: those payload values that are involved in filtering and are indexed - remain in RAM. hnsw_config: Params for HNSW index optimizers_config: Params for optimizer wal_config: Params for Write-Ahead-Log quantization_config: Params for quantization, if None - quantization will be disabled init_from: Use data stored in another collection to initialize this collection timeout: Wait for operation commit timeout in seconds. If timeout is reached - request will return with service error. Returns: Operation result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" warnings.warn( "`recreate_collection` method is deprecated and will be removed in the future." " Use `collection_exists` to check collection existence and `create_collection` instead.", DeprecationWarning, stacklevel=2, ) return self._client.recreate_collection( collection_name=collection_name, vectors_config=vectors_config, shard_number=shard_number, sharding_method=sharding_method, replication_factor=replication_factor, write_consistency_factor=write_consistency_factor, on_disk_payload=on_disk_payload, hnsw_config=hnsw_config, optimizers_config=optimizers_config, wal_config=wal_config, quantization_config=quantization_config, init_from=init_from, timeout=timeout, sparse_vectors_config=sparse_vectors_config, **kwargs, )
[docs] def upload_records( self, collection_name: str, records: Iterable[types.Record], batch_size: int = 64, parallel: int = 1, method: Optional[str] = None, max_retries: int = 3, wait: bool = False, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> None: """Upload records to the collection Similar to `upload_collection` method, but operates with records, rather than vector and payload individually. Args: collection_name: Name of the collection to upload to records: Iterator over records to upload batch_size: How many vectors upload per-request, Default: 64 parallel: Number of parallel processes of upload method: Start method for parallel processes, Default: forkserver max_retries: maximum number of retries in case of a failure during the upload of a batch wait: Await for the results to be applied on the server side. If `true`, each update request will explicitly wait for the confirmation of completion. Might be slower. If `false`, each update request will return immediately after the confirmation of receiving. Default: `false` shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. This parameter overwrites shard keys written in the records. """ warnings.warn( "`upload_records` is deprecated, use `upload_points` instead", DeprecationWarning, stacklevel=2, ) assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.upload_records( collection_name=collection_name, records=records, batch_size=batch_size, parallel=parallel, method=method, max_retries=max_retries, wait=wait, shard_key_selector=shard_key_selector, )
[docs] def upload_points( self, collection_name: str, points: Iterable[types.PointStruct], batch_size: int = 64, parallel: int = 1, method: Optional[str] = None, max_retries: int = 3, wait: bool = False, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> None: """Upload points to the collection Similar to `upload_collection` method, but operates with points, rather than vector and payload individually. Args: collection_name: Name of the collection to upload to points: Iterator over points to upload batch_size: How many vectors upload per-request, Default: 64 parallel: Number of parallel processes of upload method: Start method for parallel processes, Default: forkserver max_retries: maximum number of retries in case of a failure during the upload of a batch wait: Await for the results to be applied on the server side. If `true`, each update request will explicitly wait for the confirmation of completion. Might be slower. If `false`, each update request will return immediately after the confirmation of receiving. Default: `false` shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. This parameter overwrites shard keys written in the records. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.upload_points( collection_name=collection_name, points=points, batch_size=batch_size, parallel=parallel, method=method, max_retries=max_retries, wait=wait, shard_key_selector=shard_key_selector, )
[docs] def upload_collection( self, collection_name: str, vectors: Union[ Iterable[types.VectorStruct], Dict[str, types.NumpyArray], types.NumpyArray, ], payload: Optional[Iterable[Dict[Any, Any]]] = None, ids: Optional[Iterable[types.PointId]] = None, batch_size: int = 64, parallel: int = 1, method: Optional[str] = None, max_retries: int = 3, wait: bool = False, shard_key_selector: Optional[types.ShardKeySelector] = None, **kwargs: Any, ) -> None: """Upload vectors and payload to the collection. This method will perform automatic batching of the data. If you need to perform a single update, use `upsert` method. Note: use `upload_records` method if you want to upload multiple vectors with single payload. Args: collection_name: Name of the collection to upload to vectors: np.ndarray or an iterable over vectors to upload. Might be mmaped payload: Iterable of vectors payload, Optional, Default: None ids: Iterable of custom vectors ids, Optional, Default: None batch_size: How many vectors upload per-request, Default: 64 parallel: Number of parallel processes of upload method: Start method for parallel processes, Default: forkserver max_retries: maximum number of retries in case of a failure during the upload of a batch wait: Await for the results to be applied on the server side. If `true`, each update request will explicitly wait for the confirmation of completion. Might be slower. If `false`, each update request will return immediately after the confirmation of receiving. Default: `false` shard_key_selector: Defines the shard groups that should be used to write updates into. If multiple shard_keys are provided, the update will be written to each of them. Only works for collections with `custom` sharding method. """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.upload_collection( collection_name=collection_name, vectors=vectors, payload=payload, ids=ids, batch_size=batch_size, parallel=parallel, method=method, max_retries=max_retries, wait=wait, shard_key_selector=shard_key_selector, )
[docs] def create_payload_index( self, collection_name: str, field_name: str, field_schema: Optional[types.PayloadSchemaType] = None, field_type: Optional[types.PayloadSchemaType] = None, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, **kwargs: Any, ) -> types.UpdateResult: """Creates index for a given payload field. Indexed fields allow to perform filtered search operations faster. Args: collection_name: Name of the collection field_name: Name of the payload field field_schema: Type of data to index field_type: Same as field_schema, but deprecated wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down Returns: Operation Result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.create_payload_index( collection_name=collection_name, field_name=field_name, field_schema=field_schema, field_type=field_type, wait=wait, ordering=ordering, **kwargs, )
[docs] def delete_payload_index( self, collection_name: str, field_name: str, wait: bool = True, ordering: Optional[types.WriteOrdering] = None, **kwargs: Any, ) -> types.UpdateResult: """Removes index for a given payload field. Args: collection_name: Name of the collection field_name: Name of the payload field wait: Await for the results to be processed. - If `true`, result will be returned only when all changes are applied - If `false`, result will be returned immediately after the confirmation of receiving. ordering (Optional[WriteOrdering]): Define strategy for ordering of the points. Possible values: - `weak` (default) - write operations may be reordered, works faster - `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change - `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down Returns: Operation Result """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_payload_index( collection_name=collection_name, field_name=field_name, wait=wait, ordering=ordering, **kwargs, )
[docs] def list_snapshots( self, collection_name: str, **kwargs: Any ) -> List[types.SnapshotDescription]: """List all snapshots for a given collection. Args: collection_name: Name of the collection Returns: List of snapshots """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.list_snapshots(collection_name=collection_name, **kwargs)
[docs] def create_snapshot( self, collection_name: str, wait: bool = True, **kwargs: Any ) -> Optional[types.SnapshotDescription]: """Create snapshot for a given collection. Args: collection_name: Name of the collection wait: Await for the snapshot to be created. - If `true`, result will be returned only when a snapshot is created - If `false`, result will be returned immediately after the confirmation of receiving. Returns: Snapshot description """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.create_snapshot(collection_name=collection_name, wait=wait, **kwargs)
[docs] def delete_snapshot( self, collection_name: str, snapshot_name: str, wait: bool = True, **kwargs: Any ) -> Optional[bool]: """Delete snapshot for a given collection. Args: collection_name: Name of the collection snapshot_name: Snapshot id wait: Await for the snapshot to be deleted. - If `true`, result will be returned only when the snapshot is deleted - If `false`, result will be returned immediately after the confirmation of receiving. Returns: True if snapshot was deleted """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_snapshot( collection_name=collection_name, snapshot_name=snapshot_name, wait=wait, **kwargs, )
[docs] def list_full_snapshots(self, **kwargs: Any) -> List[types.SnapshotDescription]: """List all snapshots for a whole storage Returns: List of snapshots """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.list_full_snapshots(**kwargs)
[docs] def create_full_snapshot( self, wait: bool = True, **kwargs: Any ) -> Optional[types.SnapshotDescription]: """Create snapshot for a whole storage. Args: wait: Await for the snapshot to be created. - If `true`, result will be returned only when the snapshot is created - If `false`, result will be returned immediately after the confirmation of receiving. Returns: Snapshot description """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.create_full_snapshot(wait=wait, **kwargs)
[docs] def delete_full_snapshot( self, snapshot_name: str, wait: bool = True, **kwargs: Any ) -> Optional[bool]: """Delete snapshot for a whole storage. Args: snapshot_name: Snapshot name wait: Await for the snapshot to be deleted. - If `true`, result will be returned only when the snapshot is deleted - If `false`, result will be returned immediately after the confirmation of receiving. Returns: True if snapshot was deleted """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_full_snapshot(snapshot_name=snapshot_name, wait=wait, **kwargs)
[docs] def recover_snapshot( self, collection_name: str, location: str, api_key: Optional[str] = None, checksum: Optional[str] = None, priority: Optional[types.SnapshotPriority] = None, wait: bool = True, **kwargs: Any, ) -> Optional[bool]: """Recover collection from snapshot. Args: collection_name: Name of the collection location: URL of the snapshot Example: - URL `http://localhost:8080/collections/my_collection/snapshots/my_snapshot` - Local path `file:///qdrant/snapshots/test_collection/test_collection-6194298859870377-2023-11-09-15-17-51.snapshot` api_key: API key to use for accessing the snapshot on another server. checksum: Checksum of the snapshot to verify the integrity of the snapshot. priority: Defines source of truth for snapshot recovery - `replica` (default) means - prefer existing data over the snapshot - `no_sync` means - do not sync shard with other shards - `snapshot` means - prefer snapshot data over the current state wait: Await for the recovery to be done. - If `true`, result will be returned only when the recovery is done - If `false`, result will be returned immediately after the confirmation of receiving. Returns: True if snapshot was recovered """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.recover_snapshot( collection_name=collection_name, location=location, api_key=api_key, checksum=checksum, priority=priority, wait=wait, **kwargs, )
[docs] def list_shard_snapshots( self, collection_name: str, shard_id: int, **kwargs: Any ) -> List[types.SnapshotDescription]: """List all snapshots of a given shard Args: collection_name: Name of the collection shard_id: Index of the shard Returns: List of snapshots """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.list_shard_snapshots( collection_name=collection_name, shard_id=shard_id, **kwargs, )
[docs] def create_shard_snapshot( self, collection_name: str, shard_id: int, wait: bool = True, **kwargs: Any ) -> Optional[types.SnapshotDescription]: """Create snapshot for a given shard. Args: collection_name: Name of the collection shard_id: Index of the shard wait: Await for the snapshot to be created. - If `true`, result will be returned only when the snapshot is created. - If `false`, result will be returned immediately after the confirmation of receiving. Returns: Snapshot description """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.create_shard_snapshot( collection_name=collection_name, shard_id=shard_id, wait=wait, **kwargs, )
[docs] def delete_shard_snapshot( self, collection_name: str, shard_id: int, snapshot_name: str, wait: bool = True, **kwargs: Any, ) -> Optional[bool]: """Delete snapshot for a given shard. Args: collection_name: Name of the collection shard_id: Index of the shard snapshot_name: Snapshot id wait: Await for the snapshot to be deleted. - If `true`, result will be returned only when the snapshot is deleted - If `false`, result will be returned immediately after the confirmation of receiving. Returns: True if snapshot was deleted """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.delete_shard_snapshot( collection_name=collection_name, shard_id=shard_id, snapshot_name=snapshot_name, wait=wait, **kwargs, )
[docs] def recover_shard_snapshot( self, collection_name: str, shard_id: int, location: str, api_key: Optional[str] = None, checksum: Optional[str] = None, priority: Optional[types.SnapshotPriority] = None, wait: bool = True, **kwargs: Any, ) -> Optional[bool]: """Recover shard from snapshot. Args: collection_name: Name of the collection shard_id: Index of the shard location: URL of the snapshot Example: - URL `http://localhost:8080/collections/my_collection/snapshots/my_snapshot` api_key: API key to use for accessing the snapshot on another server. checksum: Checksum of the snapshot to verify the integrity of the snapshot. priority: Defines source of truth for snapshot recovery - `replica` (default) means - prefer existing data over the snapshot - `no_sync` means - do not sync shard with other shards - `snapshot` means - prefer snapshot data over the current state wait: Await for the recovery to be done. - If `true`, result will be returned only when the recovery is done - If `false`, result will be returned immediately after the confirmation of receiving. Returns: True if snapshot was recovered """ assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.recover_shard_snapshot( collection_name=collection_name, shard_id=shard_id, location=location, api_key=api_key, checksum=checksum, priority=priority, wait=wait, **kwargs, )
[docs] def lock_storage(self, reason: str, **kwargs: Any) -> types.LocksOption: """Lock storage for writing.""" assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.lock_storage(reason=reason, **kwargs)
[docs] def unlock_storage(self, **kwargs: Any) -> types.LocksOption: """Unlock storage for writing.""" assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.unlock_storage(**kwargs)
[docs] def get_locks(self, **kwargs: Any) -> types.LocksOption: """Get current locks state.""" assert len(kwargs) == 0, f"Unknown arguments: {list(kwargs.keys())}" return self._client.get_locks(**kwargs)
[docs] def migrate( self, dest_client: QdrantBase, collection_names: Optional[List[str]] = None, batch_size: int = 100, recreate_on_collision: bool = False, ) -> None: """Migrate data from one Qdrant instance to another. Args: dest_client: Destination Qdrant instance either in local or remote mode collection_names: List of collection names to migrate. If None - migrate all collections batch_size: Batch size to be in scroll and upsert operations during migration recreate_on_collision: If True - recreate collection on destination if it already exists, otherwise raise ValueError exception """ migrate( self, dest_client, collection_names=collection_names, batch_size=batch_size, recreate_on_collision=recreate_on_collision, )
[docs] def create_shard_key( self, collection_name: str, shard_key: types.ShardKey, shards_number: Optional[int] = None, replication_factor: Optional[int] = None, placement: Optional[List[int]] = None, **kwargs: Any, ) -> bool: """Create shard key for collection. Only works for collections with `custom` sharding method. Args: collection_name: Name of the collection shard_key: Shard key to create shards_number: How many shards to create for this key replication_factor: Replication factor for this key placement: List of peers to place shards on. If None - place on all peers. Returns: Operation result """ return self._client.create_shard_key( collection_name=collection_name, shard_key=shard_key, shards_number=shards_number, replication_factor=replication_factor, placement=placement, **kwargs, )
[docs] def delete_shard_key( self, collection_name: str, shard_key: types.ShardKey, **kwargs: Any, ) -> bool: """Delete shard key for collection. Only works for collections with `custom` sharding method. Args: collection_name: Name of the collection shard_key: Shard key to delete Returns: Operation result """ return self._client.delete_shard_key( collection_name=collection_name, shard_key=shard_key, **kwargs, )
[docs] def info(self) -> types.VersionInfo: """Returns information about the running Qdrant instance like version and commit id Returns: Title, version and optionally commit info """ return self._client.info()

Qdrant

Learn more about Qdrant vector search project and ecosystem

Discover Qdrant

Similarity Learning

Explore practical problem solving with Similarity Learning

Learn Similarity Learning

Community

Find people dealing with similar problems and get answers to your questions

Join Community