Manticore Search 27.1.5: Auth, sharding, conversational and faster vector search

snikolaev1 pts0 comments

Manticore Search 27.1.5: Authentication, sharded tables, conversational search and faster vector search

Manticore Search 27.1.5: Authentication, sharded tables, conversational search and faster vector search

Author: Sergey Nikolaev<br>Published: Jun 19, 2026 - 5 Min read

Manticore Search 27.1.5<br>has been released. This release brings built-in authentication and authorization, sharded tables, conversational search, faster HNSW builds, better faceting and aggregations, and a long list of fixes across KNN, replication, protocol compatibility and other areas.<br>This post is a catch-up for everything shipped from 25.0.1 through 27.1.5 .<br>Upgrade Notes<br>Please review these before upgrading:<br>27.0.0 adds built-in auth/authz, and enabling it changes access assumptions. Auth is not enabled by default, but once you enable it, anonymous access no longer works. Roll it out in stages: upgrade remote agents and replication peers first, then upgrade the masters that query or manage them, and enable auth only after the whole topology is on the new version. Distributed remote-agent and replication-related operations also need matching stored auth data across the participating daemons. A successful JOIN CLUSTER replaces the joining node's local auth data with the donor cluster's auth data. (Issue #2833<br>, PR #3648<br>26.0.0 changed replication storage layout. Incoming replicated tables now live under the normal data_dir/<br>layout instead of the cluster path. If you run replication clusters with a custom path, you may need to move or re-synchronize replicated tables after upgrade. Downgrade is only safe before the new layout is adopted. (Issue #4431<br>, PR #4598<br>If you manage MCL separately from the daemon, upgrade it together with Manticore. This release line moves through several MCL<br>updates, from vector-performance work to multithreaded HNSW builds and later stability fixes. Mixing an older library with a newer daemon is not recommended. (25.2.0<br>, 25.15.0<br>, 26.0.3<br>, 26.3.2<br>, 27.1.0<br>Highlights<br>Built-in authentication and authorization<br>Manticore now supports users, passwords, bearer tokens, and fine-grained permissions<br>across MySQL, HTTP/HTTPS, distributed remote agents, and replication-related operations. This makes access control a first-class part of the product instead of something that always has to be handled outside the database.<br>Sharded tables<br>Manticore can now create and manage sharded tables<br>, distribute inserts across shards, and handle more of the surrounding lifecycle in one place. That makes larger write-heavy deployments easier to operate and reduces the amount of sharding-specific logic that has to live outside the engine.<br>Conversational search<br>This release adds conversational search<br>to Manticore Search. It is exposed through CREATE CHAT MODEL<br>and CALL CHAT<br>, so you can ask questions over an existing vectorized table instead of building a separate retrieval layer around the same data.<br>Under the hood, Manticore Search runs KNN on a FLOAT_VECTOR field, builds LLM context from that field's from='...' source columns, keeps conversation history by conversation_uuid, and returns both the answer and the supporting sources. If you already keep embeddings in Manticore, this makes document Q&A and support-style assistants much easier to wire up.<br>Faster vector builds and KNN improvements<br>Vector search kept improving throughout this cycle.<br>Manticore improved KNN performance, added local ONNX embeddings support, sped up ONNX inference, and then made HNSW build and rebuild work much faster with multithreaded index construction.<br>A few important steps in that work:<br>25.1.0<br>improved KNN distance calculation and AVX-512 loading.<br>25.2.0<br>added local ONNX embeddings support in MCL and improved vector-search performance further.<br>25.14.0<br>and 25.15.0<br>added multithreaded HNSW builds together with the required library support.<br>The biggest practical improvement here is a much faster auto-embedding and shorter build and rebuild time for large vector tables. Initial KNN builds, chunk merges, and ALTER TABLE ... REBUILD KNN are all affected.<br>Better faceting and aggregations<br>Faceting and aggregations also became more useful.<br>facet_filter_mode<br>makes it easier to build e-commerce-style filters that preserve selected, available, and unavailable buckets under active filtering.<br>On the analytics side:<br>date_histogram()<br>gained time_zone and offset<br>Opensearch dashboards support<br>Manticore added statistical aggregations such as percentiles, percentile_ranks, and mad<br>Other Notable Improvements<br>This release line also includes several smaller but useful additions:<br>searchd --check<br>validates configuration before startup without side effects.<br>EXIT CLUSTER<br>lets a node leave a replication cluster online without restarting.<br>dict=keywords_32k<br>makes it possible to index very long machine-generated tokens such as hashes and message IDs without silent truncation.<br>The built-in Ukrainian lemmatizer<br>expands native morphology support for Ukrainian text search.<br>Systemd...

search manticore vector tables auth faster

Related Articles