November 2025 Summaries
10 posts from MongoDB
Filter
Month:
Year:
Post Summaries
Back to Blog
MongoDB Research introduces the Lightweight Embedding Alignment Framework (LEAF), a novel knowledge distillation framework aimed at producing smaller, faster, and more flexible text embedding models that are interoperable with larger teacher models. LEAF facilitates the creation of compact models that maintain compatibility with the teacher models' embedding spaces, thus enabling efficient deployment on CPU-only and mobile devices without requiring internet connectivity. Two models, mdbr-leaf-ir and mdbr-leaf-mt, have been released under the Apache 2.0 license, optimized for information retrieval tasks and general NLP applications respectively, and have shown state-of-the-art performance on public leaderboards for their size category. These models, which run efficiently on modest hardware, are well-suited for scenarios where GPUs are unavailable, and they offer significant advantages in terms of speed and resource requirements. By allowing flexible asymmetric architectures and requiring less training data, LEAF models demonstrate robust performance while supporting fine-tuning for domain-specific tasks, making them valuable tools for modern AI-enabled applications.
Nov 25, 2025
1,275 words in the original blog post.
Large documents pose a challenge for language model (LLM) applications due to inefficient context windows, but chunking addresses this by dividing documents into smaller segments for more precise information retrieval. This process, however, often leads to context loss, which can hinder the accuracy of responses if the broader document information is missed. Voyage AI introduces voyage-context-3, a contextualized chunk embedding model that encodes both the chunk content and the global document-level context in a single vector, improving retrieval accuracy without manual data augmentation. Contextualized chunk embeddings are particularly useful for complex, unstructured documents like legal contracts, where queries demand comprehensive document-level context often lost in traditional chunking methods. The model delivers superior retrieval performance over standard embeddings, as demonstrated by higher recall and mean reciprocal rank in evaluations using legal contract datasets. This approach allows for more effective information retrieval, maintaining document context and enhancing the utility of LLMs in processing and understanding extensive, detail-rich documents.
Nov 24, 2025
2,410 words in the original blog post.
Security teams are increasingly challenged to maintain visibility and control across complex, hybrid environments as organizations adopt cloud and AI technologies. To address this, MongoDB Atlas has introduced a direct integration with Microsoft Sentinel, a cloud-native and AI-ready security platform, to streamline threat detection and governance. This integration allows MongoDB Atlas logs to be automatically ingested into Microsoft Sentinel, providing a unified security operations view. The integration simplifies incident detection and response, strengthens governance through centralized monitoring, and accelerates deployment via the Microsoft Marketplace, while ensuring security and compliance. The MongoDB Atlas Data Connector employs an Azure Function to capture logs from Atlas clusters, which are then streamed into Sentinel for analysis, enabling security teams to effectively manage, monitor, and respond to security events across their cloud environments. This collaboration enhances the security capabilities of organizations by leveraging AI-driven analytics, graph correlation, and automated response workflows, empowering them to operate more securely and confidently.
Nov 11, 2025
761 words in the original blog post.
MongoDB has introduced a Customer Trust Portal to enhance customer access to essential security and compliance documentation for MongoDB Atlas. This self-service platform allows users to instantly view and download certifications, audit reports, and other critical trust artifacts, eliminating the delays associated with traditional request processes. By centralizing these resources, the portal aids customers in meeting compliance and due diligence requirements more efficiently, while maintaining the company's commitment to data protection and transparency. Accessible only to direct MongoDB customers, the portal excludes subsidiaries and audit firms, who must secure access through direct customers or agreements with MongoDB. This initiative, part of MongoDB's broader security strategy, aims to provide seamless access to necessary documents, thus empowering customers to build and scale confidently on Atlas.
Nov 10, 2025
591 words in the original blog post.
MongoDB has introduced a Preview stability level for its Atlas Admin public APIs, allowing developers early access to test and provide feedback on upcoming features before they reach general availability. This initiative aims to address the limitations of previous stable releases, which restricted changes to existing APIs and led to convoluted designs. The preview program supports both public and private previews, with the latter being exclusive to selected customers for testing specific features. Additionally, the Atlas CLI now supports preview APIs, offering developers a streamlined way to experiment and integrate via command-line tools, SDKs, or direct HTTP requests. This approach not only facilitates earlier release and feedback cycles but also enhances the collaborative development process, ensuring that the APIs align more closely with user needs and business requirements.
Nov 06, 2025
819 words in the original blog post.
Rierino, launched in 2020, is an AI-native low-code development platform designed to bridge the gap in enterprise technology by enabling rapid application development without sacrificing governance, security, or performance. Built on MongoDB's unified database platform, Rierino facilitates the design, deployment, and adaptation of applications, addressing the complexities of digital and AI transformation in large organizations. The platform supports ambitious transformation programs by uniting low-code development with product and content management, composable commerce, and AI agent execution. It is particularly suited for enterprises needing flexibility, compliance, and performance under heavy workloads, while also allowing deployment across major cloud providers or secure government data centers. Rierino relies on MongoDB for its flexible, resilient database capabilities, enabling seamless integration with microservices and event-driven architectures, and supporting AI agents and developer innovation. This robust foundation accelerates developer productivity and ensures reliable, compliant operations across various environments, ultimately fostering agent-driven innovation and automation at scale.
Nov 05, 2025
979 words in the original blog post.
Delivering highly relevant search results in data-rich applications can be achieved through a hybrid search system implemented in MongoDB Atlas. This method addresses the limitations of relying solely on full-text search or vector search by combining their strengths to handle complex user queries more effectively. The use case discussed involves categorizing queries to feed a large language model (LLM) with relevant context, exemplified by a smart agent helping customers find products in an online home improvement store. Hybrid search merges results from full-text search, which excels at fuzzy matching and typo tolerance, and vector search, which excels at understanding semantic similarities, through advanced aggregation techniques like Reciprocal Rank Fusion (RRF). This approach allows for a nuanced understanding of user intent, providing accurate and comprehensive search results. The implementation involves creating search indexes for both types of searches and using MongoDB Atlas’s native $rankFusion to intelligently combine results, thus enhancing search relevance and user satisfaction while maintaining performance.
Nov 05, 2025
1,922 words in the original blog post.
For nearly two decades, the ongoing development of storage engines and the quest for optimized performance has led to significant advances in data management, particularly through the adoption of lock-free algorithms. This evolution is exemplified by MongoDB's default storage engine, WiredTiger, which utilizes a B+tree data structure to balance performance across various access patterns. By employing lock-free mechanisms such as hazard pointers and skip lists, WiredTiger efficiently manages concurrent read and write operations, leading to substantial improvements in throughput—up to 50% for reads and nearly fourfold for updates. These enhancements allow users to fully leverage multi-core and multi-CPU hardware architectures, translating into cost savings and enhanced application responsiveness. The progression from BerkeleyDB to WiredTiger underscores the importance of minimizing coordination overhead to maximize parallel execution, ensuring MongoDB remains a high-performance solution in distributed environments.
Nov 04, 2025
2,612 words in the original blog post.
MongoDB has introduced a new data modeling experience in MongoDB Compass, designed to streamline the process of visualizing, refactoring, and collaborating on data models for applications. This feature addresses the challenges developers face with rigid relational databases by offering a flexible data model that allows for easy integration of various data types without causing application downtime. The new experience provides a unified workspace where developers can visualize data models using entity-relationship diagrams, identify potential schema changes, and collaborate with teams to refine designs. It aims to mitigate the confusion and inefficiencies caused by disparate mental models and outdated diagrams, offering a single source of truth within MongoDB Compass. This enhancement allows developers to confidently adapt and evolve their data models in line with application needs, facilitating a more efficient development process. The update is available in the latest version of MongoDB Compass and aims to empower developers by providing clarity and control over their data models.
Nov 04, 2025
800 words in the original blog post.
The MongoDB Extension for Hibernate, now in public preview, enables Java developers to leverage MongoDB's document model alongside the familiar features of Hibernate, such as Java Persistence API (JPA) annotations and Hibernate Query Language (HQL) support. This integration allows developers to use Hibernate paradigms for entity operations while benefiting from MongoDB's flexible schema evolution capabilities, overcoming limitations of traditional relational databases. The extension supports native embedded documents for improved read performance and allows the use of MongoDB's Query API for advanced operations. It seamlessly translates Hibernate commands into MongoDB queries, providing a smooth transition for developers accustomed to Hibernate's API. This combination offers a powerful option for building modern Java applications, as developers can manage diverse data types and structures without the rigid constraints of a relational database. The extension facilitates modern application needs, like vector search and real-time processing, while encouraging community feedback for further improvement.
Nov 04, 2025
828 words in the original blog post.