@DailyDoseOfDS_: Finally, a database can generate its own embeddings now. When you add semantic search to an app, the standard step is t…

X AI KOLs Timeline Products

Summary

MongoDB Atlas introduces auto-embedding, enabling databases to generate and manage embeddings internally for semantic search, eliminating the need for external services and improving data synchronization.

Finally, a database can generate its own embeddings now. When you add semantic search to an app, the standard step is to wire up an external embedding service, sync the vectors to a separate store, and write glue to keep everything updated as data changes. While this is a standard setup, problems show up later when your data changes, but your pipeline has already run, and search quality starts degrading in ways that are hard to pin down because nothing is explicitly broken. MongoDB Atlas handles this with auto-embedding. You point an index at a text field, specify a Voyage AI model, and Atlas generates the vectors inside the database. When a document changes, it re-embeds itself automatically, so that the search always stays grounded to the current context. We tested this against MongoDB's sample movies collection, 21,000 plots indexed with one config. A plain English query about dystopian machine-controlled futures returned semantically relevant results, despite having no keyword overlap. You can try it yourself here: https://fandf.co/4bswaPj. One index config replaced the embedding service, the vector store, and the sync layer you used to maintain separately. The video below depicts this in action. We have also put together a full LLM engineering roadmap covering what it actually takes to build and ship production AI systems in 2026. Read it below.
Original Article
View Cached Full Text

Cached at: 09/19/26, 03:07 PM

Finally, a database can generate its own embeddings now.

When you add semantic search to an app, the standard step is to wire up an external embedding service, sync the vectors to a separate store, and write glue to keep everything updated as data changes.

While this is a standard setup, problems show up later when your data changes, but your pipeline has already run, and search quality starts degrading in ways that are hard to pin down because nothing is explicitly broken.

MongoDB Atlas handles this with auto-embedding.

You point an index at a text field, specify a Voyage AI model, and Atlas generates the vectors inside the database.

When a document changes, it re-embeds itself automatically, so that the search always stays grounded to the current context.

We tested this against MongoDB’s sample movies collection, 21,000 plots indexed with one config.

A plain English query about dystopian machine-controlled futures returned semantically relevant results, despite having no keyword overlap.

You can try it yourself here: https://fandf.co/4bswaPj.

One index config replaced the embedding service, the vector store, and the sync layer you used to maintain separately.

The video below depicts this in action.

We have also put together a full LLM engineering roadmap covering what it actually takes to build and ship production AI systems in 2026.

Read it below.


MongoDB Atlas | The Modern, Multi-Cloud Database

Source: https://www.mongodb.com/products/platform?utm_source=fnf&utm_medium=X&utm_campaign=mongodb-august&utm_term=avi-chawla&utm_content=atlas Atlas combines the flexible document model with a suite of data services to give you a versatile cloud database that simplifies everything you build.

An illustration of Database

Accelerate your MongoDB Atlas journey

Master MongoDB Atlas quickly with guided webinars, interactive courses, skill badges, and comprehensive documentation—all designed to simplify your onboarding and accelerate success. Start building with confidence, faster.Start Learning

TRUSTED BY THOUSANDS OF ORGANIZATIONS, INCLUDING

Develop faster with the document model

Our JSON-like document data model maps to the objects in your application code. Its flexibility allows you to model for a wide variety of use cases while also enabling you to easily evolve your data structures.

Work with data as code for any use case

Our unified query API is the most natural way to work with data in any form. Atlas extends MongoDB’s flexibility and ease of use to building full-text search, real-time analytics, and event-driven experiences. Build a wide range of application services while keeping your data architecture simple.

Scale your workloads securely and confidently

A trusted foundation is at the core of everything we offer. Start with built-in data security and recovery defaults, then add the controls you need. Run applications anywhere in the world with the global and multi-cloud reach of Atlas.

Built for the way builders work with data

Our platform is built by builders, for builders. That means giving you the flexibility to work with the languages and tools you prefer to use.

View Documentation

Create a cloud database in seconds using the Atlas UI, CLI, Kubernetes Operator, or an Infrastructure-as-Code (IaC) resource provider. Play around with a free cluster, launch a flex tier instance, or customize a dedicated cluster configuration.

Get started with Atlas

Create a cloud database in seconds using the Atlas UI, CLI, Kubernetes Operator, or an Infrastructure-as-Code (IaC) resource provider. Play around with a free cluster, launch a flex tier instance, or customize a dedicated cluster configuration.

Get started with Atlas

Atlas CLI

Terraform

AWS CloudFormation

Kubernetes Operator

Atlas CLI

Terraform

AWS CloudFormation

Kubernetes Operator

Boost your MongoDB Atlas skills

Explore MongoDB Atlas fundamentals, from the document model to indexing strategies, to ensure your application’s success.Start Learning

Build faster with a suite of integrated data services

atlas_database

Database

A multi-cloud database service built for resilience, scale, data privacy, and security.

Learn more atlas_search

Search

Build relevance-based search 4x faster and for 77% lower cost than alternative search solutions.

Learn more mdb_vector_search

Vector Search

Build intelligent applications powered by semantic search and generative AI over any type of data.

Learn more atlas_charts

Charts

Bring your data to life and get real-time insights with embeddable dashboards and visualizations.

Learn more atlas_cli

Atlas CLI

Create and manage your MongoDB Atlas database from the command line.

Learn more atlas_data_federation

Data Federation

Seamlessly query, transform, and aggregate data from one or more Atlas databases and AWS S3 buckets.

Learn more atlas_online_archive

Online Archive

Archive data from Atlas clusters to fully managed object storage and query it through a single endpoint.

Learn more

Similar Articles

Introducing text and code embeddings

OpenAI Blog

OpenAI introduces a new embeddings API endpoint that converts text and code into numerical vector representations for semantic search, clustering, and classification tasks. The models achieve state-of-the-art results on standard benchmarks including a 20% relative improvement in code search performance.