Manticore Search 27.1.5 Lands Authentication, Sharding, Conversational Search, and 65 Bug Fixes

Manticore Search 27.1.5, released on 22 June 2026, delivers built-in authentication and authorization, sharded tables, conversational search, faster HNSW-based vector search, and improved faceting and aggregation — alongside 65 bug fixes accumulated since version 25.0.0. That is a wide surface area for a single release, and each thread addresses a gap that has long pushed production deployments toward bolt-on workarounds.
The authentication work is the change with the most immediate operational weight. Prior to 27.1.5, teams running Manticore in multi-tenant or externally exposed configurations had to handle access control at the network or proxy layer. The new built-in system covers users, passwords, bearer tokens, and fine-grained permissions across both the MySQL-protocol and HTTP interfaces, according to the official release announcement. That dual-interface coverage matters: plenty of Manticore deployments mix SQL-speaking application code with HTTP-based tooling or dashboards, and a half-measures auth layer that only covers one path creates an obvious exposure.
Fine-grained permissions — rather than a simple on/off access toggle — suggest the model is designed for scenarios where read-only analytics users, indexing pipelines, and administrative operators all need distinct privilege sets on the same cluster. Whether the permission model maps cleanly onto RBAC conventions familiar from Elasticsearch or PostgreSQL will be worth examining as users stress-test it in practice.
Sharding, Vectors, and Conversational Search
Sharded tables extend Manticore's horizontal scalability story. Distributing index data across shards is table-stakes for high-volume search workloads, and formalizing it as a native construct — rather than routing traffic manually across separate indexes — simplifies both schema design and query planning. The details of shard allocation, rebalancing, and cross-shard query fan-out will determine how far this takes teams who currently split workloads across multiple standalone nodes.
On the vector side, 27.1.5 ships faster HNSW (Hierarchical Navigable Small World) index builds. HNSW is the dominant approximate nearest-neighbor graph structure for dense vector search, and build time has been a known friction point when re-indexing or updating large embedding corpora. Faster builds compress the iteration loop for teams doing hybrid keyword-plus-vector retrieval — a pattern that has become standard in retrieval-augmented generation pipelines. Search latency improvements to vector queries are also noted in the release.
Conversational search is the feature most squarely aimed at LLM-adjacent workloads. The release does not position this as a chat interface bolted onto a search box; the framing is closer to maintaining query context across a session, allowing follow-up queries to refine or extend prior results without re-issuing a full query from scratch. For anyone building an agent or assistant that uses Manticore as its retrieval layer, stateful query sessions reduce the scaffolding required in the application tier.
The faceting and aggregation improvements round out what amounts to a release tuned for analytical query patterns — the kind that show up in e-commerce search, log analytics, and observational dashboards. Faster aggregations over large result sets have compounding value: they make exploratory queries cheaper, which changes how analysts actually use the tool.
Sixty-five bug fixes since 25.0.0 is a substantial correction surface. Without a public breakdown by severity or component, it is difficult to know how many of those fixes touch edge cases versus high-frequency code paths. Teams upgrading from anywhere in the 25.x or 26.x range should treat the changelog as required reading before cutting over production traffic.
The combination of native auth, sharding, and tighter LLM integration suggests Manticore is tracking the same deployment realities as the broader search market: more exposure to varied clients, more data volume requiring horizontal distribution, and growing use as a retrieval backend in AI-driven applications rather than a standalone keyword search engine. Those three pressures have reshaped how Elasticsearch, OpenSearch, and Typesense have each evolved their roadmaps over the past two years, and Manticore is clearly responding to the same gravity.
For teams already running Manticore who have been managing auth externally or deferring a vector search upgrade, 27.1.5 gives them concrete reasons to schedule a migration assessment.


