ElasticSearch Vector Store
The ElasticSearchVector class provides vector search using ElasticSearch with its dense_vector field type and k-NN search capabilities.
It's part of the @mastra/elasticsearch package.
InstallationDirect link to Installation
npm install @mastra/elasticsearch@beta
UsageDirect link to Usage
import { ElasticSearchVector } from "@mastra/elasticsearch";
const store = new ElasticSearchVector({
url: process.env.ELASTICSEARCH_URL,
});
// Create an index
await store.createIndex({
indexName: "my-collection",
dimension: 1536,
});
// Add vectors with metadata
const vectors = [[0.1, 0.2, ...], [0.3, 0.4, ...]];
const metadata = [
{ text: "first document", category: "A" },
{ text: "second document", category: "B" }
];
await store.upsert({
indexName: "my-collection",
vectors,
metadata,
});
// Query similar vectors
const results = await store.query({
indexName: "my-collection",
queryVector: [0.1, 0.2, ...],
topK: 10,
filter: { category: "A" },
});
Constructor OptionsDirect link to Constructor Options
url:
MethodsDirect link to Methods
createIndex()Direct link to createIndex()
Creates a new index with the specified configuration.
indexName:
dimension:
metric?:
upsert()Direct link to upsert()
Adds or updates vectors and their metadata in the index.
indexName:
vectors:
metadata?:
ids?:
query()Direct link to query()
Searches for similar vectors with optional metadata filtering.
indexName:
queryVector:
topK?:
filter?:
includeVector?:
describeIndex()Direct link to describeIndex()
Gets information about an index.
indexName:
Returns:
interface IndexStats {
dimension: number;
count: number;
metric: "cosine" | "euclidean" | "dotproduct";
}
deleteIndex()Direct link to deleteIndex()
Deletes an index and all its data.
indexName:
listIndexes()Direct link to listIndexes()
Lists all vector indexes.
Returns: Promise<string[]>
updateVector()Direct link to updateVector()
Update a single vector by ID or by metadata filter. Either id or filter must be provided, but not both.
indexName:
id?:
filter?:
update:
update.vector?:
update.metadata?:
deleteVector()Direct link to deleteVector()
Deletes a single vector by its ID.
indexName:
id:
deleteVectors()Direct link to deleteVectors()
Delete multiple vectors by IDs or by metadata filter. Either ids or filter must be provided, but not both.
indexName:
ids?:
filter?:
Response TypesDirect link to Response Types
Query results are returned in this format:
interface QueryResult {
id: string;
score: number;
metadata: Record<string, any>;
vector?: number[]; // Only included if includeVector is true
}