Supported Vector Databases
Opensearch
OpenSearch is an open-source, enterprise-grade search and observability suite that brings order to unstructured data at scale. OpenSearch supports k-NN (k-Nearest Neighbors) and allows you to store and retrieve high-dimensional vector embeddings efficiently.
Installation
OpenSearch support requires additional dependencies. Install them with:
Usage
Config
Let’s see the available parameters for the opensearch
config:
Parameter | Description | Default Value |
---|---|---|
collection_name | The name of the index to store the vectors | mem0 |
embedding_model_dims | Dimensions of the embedding model | 1536 |
host | The host where the OpenSearch server is running | localhost |
port | The port where the OpenSearch server is running | 9200 |
api_key | API key for authentication | None |
user | Username for basic authentication | None |
password | Password for basic authentication | None |
verify_certs | Whether to verify SSL certificates | False |
auto_create_index | Whether to automatically create the index | True |
use_ssl | Whether to use SSL for connection | False |
Features
- Fast and Efficient Vector Search
- Can be deployed on-premises, in containers, or on cloud platforms like AWS OpenSearch Service.
- Multiple Authentication and Security Methods (Basic Authentication, API Keys, LDAP, SAML, and OpenID Connect)
- Automatic index creation with optimized mappings for vector search
- Memory Optimization through Disk-Based Vector Search and Quantization
- Real-Time Analytics and Observability