One email each morning — yesterday's AI, sortedGet it in your inbox

METAL LAB

DynamoDB Adds Native Vector Search Support, Scales to Trillions of Vectors

AWS unveiled a native search feature that manages operational data and embeddings together without requiring a separate vector database

이미지: METAL LAB 생성

Summary

  • AWS has officially launched native vector search for Amazon DynamoDB
  • The company says it can handle trillions of vectors with single-digit millisecond latency and over 99% recall
  • Similarity search is performed via the SearchVectors API, eliminating the need to build a separate vector database or maintain a sync pipeline
기능
아마존 다이나모DB 벡터 검색 정식 출시(GA)
지연 시간·재현율
단일 밀리초 지연, 99% 이상 recall
처리 규모
트릴리언 단위 벡터까지 지원
최대 차원 수
4096차원
지원 거리 함수
Euclidean, Cosine, Dot product
검색 API
SearchVectors, 최대 100개 결과 반환
호환 임베딩 모델
Amazon Bedrock Titan Text Embeddings, Cohere Embed, OpenAI 텍스트 임베딩 모델
발행일
2026-08-05

Service Overview

Amazon Web Services (AWS) announced the general availability of vector search for Amazon DynamoDB. With this update, developers can manage operational data and vector embeddings together within DynamoDB and run similarity searches without building a separate vector database.

DynamoDB vector search concept diagram
DynamoDB vector search architecture · AWS News

Performance and Scalability

According to AWS, DynamoDB's native vector search delivers single-digit millisecond latency with recall above 99%. It's designed to handle trillions of vectors, and the company says it requires no server provisioning, patching, or maintenance work. Vector indexes have no storage capacity limits and scale horizontally as data grows.

ItemValue
LatencySingle-digit milliseconds
RecallAbove 99%
Max dimensions4096
Distance functionsEuclidean, Cosine, Dot product
ScaleTrillions of vectors
Results returnedUp to 100

Difference from the Previous Approach

Previously, adding vector search to applications built on DynamoDB required replicating data to a separate, dedicated vector database and maintaining a sync pipeline between the two services. AWS said this process created operational burden, data transfer costs, licensing costs, and difficulty maintaining predictable low latency at scale. With vector search now built into DynamoDB, vector data and operational data share the same serverless infrastructure and pay-per-request pricing model.

How It Works

The new index type is created on top of an attribute that stores vector embeddings. Developers generate embeddings using their model of choice — such as Amazon Bedrock Titan Text Embeddings, Cohere Embed, or OpenAI text embedding models — and store them in the table as a list of floating-point numbers via a standard PutItem call. They then create a vector index on that attribute, specifying the number of dimensions, a distance function, and any non-vector attributes to use as filters for narrowing search results.

Searches are performed through the SearchVectors API. By specifying a query vector, the number of results to return (up to 100), and optional filter conditions, results are returned sorted by similarity. Vector search supports up to 4096 dimensions and offers three distance functions — Euclidean, Cosine, and Dot product — along with inline filtering.

Use Cases and Getting Started

AWS said the feature can be used to build applications requiring semantic search, such as agentic memory, retrieval-augmented generation (RAG), recommendation engines, personalization experiences, and anomaly detection. In a demo the company published, it used a product catalog table for an online sporting goods store as an example. Starting from an existing item with attributes such as productId, category, description, marketplace, name, and price, the demo showed how adding a new attribute called descriptionEmbedding via an UpdateItem call enables natural-language-based semantic search.

The trend of integrating retrieval-augmented generation capabilities into cloud databases is spreading to other providers as well, and related infrastructure competition trends can also be found in METAL LAB's cloud infrastructure coverage.

What to Watch

AWS did not disclose detailed pricing or a region-by-region rollout schedule in this announcement. While the core message is that vector and operational data can now be handled together without separate infrastructure management, real-world latency and cost efficiency under large-scale traffic remain to be validated by the market.