{"slug": "manticore-search-27-1-5-authentication-sharded-tables-conversational-search-and", "title": "Manticore Search 27.1.5: Authentication, sharded tables, conversational search and faster vector search", "summary": "Manticore Search released version 27.1.5 with built-in authentication and authorization, sharded tables, conversational search, and faster vector search. The update also includes improvements to HNSW builds, faceting, and aggregations, along with fixes for KNN, replication, and protocol compatibility.", "body_md": "[Manticore Search 27.1.5](/install/)\nhas 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.\n\nThis post is a catch-up for everything shipped from **25.0.1 through 27.1.5**.\n\n## Upgrade Notes\n\nPlease review these before upgrading:\n\n**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`\n\nreplaces the joining node's local auth data with the donor cluster's auth data. ([Issue #2833](https://github.com/manticoresoftware/manticoresearch/issues/2833),[PR #3648](https://github.com/manticoresoftware/manticoresearch/pull/3648))**26.0.0 changed replication storage layout.** Incoming replicated tables now live under the normallayout instead of the cluster`data_dir/<table>`\n\n`path`\n\n. If you run replication clusters with a custom`path`\n\n, you may need to move or re-synchronize replicated tables after upgrade. Downgrade is only safe before the new layout is adopted. ([Issue #4431](https://github.com/manticoresoftware/manticoresearch/issues/4431),[PR #4598](https://github.com/manticoresoftware/manticoresearch/pull/4598))**If you manage MCL separately from the daemon, upgrade it together with Manticore.** This release line moves through several[MCL](https://github.com/manticoresoftware/columnar)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](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.2.0),[25.15.0](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.15.0),[26.0.3](https://github.com/manticoresoftware/manticoresearch/releases/tag/26.0.3),[26.3.2](https://github.com/manticoresoftware/manticoresearch/releases/tag/26.3.2),[27.1.0](https://github.com/manticoresoftware/manticoresearch/releases/tag/27.1.0))\n\n## Highlights\n\n### Built-in authentication and authorization\n\nManticore now supports [users, passwords, bearer tokens, and fine-grained permissions](https://manual.manticoresearch.com/Security/Authentication_and_authorization)\nacross 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.\n\n### Sharded tables\n\nManticore can now create and manage [sharded tables](https://manual.manticoresearch.com/Creating_a_table/Creating_a_sharded_table/Creating_a_sharded_table)\n, 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.\n\n### Conversational search\n\nThis release adds [conversational search](https://manual.manticoresearch.com/Searching/Conversational_search)\nto Manticore Search. It is exposed through [ CREATE CHAT MODEL](https://manual.manticoresearch.com/Searching/Conversational_search)\nand\n\n[, so you can ask questions over an existing vectorized table instead of building a separate retrieval layer around the same data.](https://manual.manticoresearch.com/Searching/Conversational_search)\n\n`CALL CHAT`\n\nUnder the hood, Manticore Search runs KNN on a `FLOAT_VECTOR`\n\nfield, builds LLM context from that field's `from='...'`\n\nsource columns, keeps conversation history by `conversation_uuid`\n\n, and returns both the answer and the supporting `sources`\n\n. If you already keep embeddings in Manticore, this makes document Q&A and support-style assistants much easier to wire up.\n\n### Faster vector builds and KNN improvements\n\nVector search kept improving throughout this cycle.\n\nManticore 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.\n\nA few important steps in that work:\n\n[25.1.0](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.1.0)improved KNN distance calculation and AVX-512 loading.[25.2.0](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.2.0)added local ONNX embeddings support in MCL and improved vector-search performance further.[25.14.0](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.14.0)and[25.15.0](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.15.0)added multithreaded HNSW builds together with the required library support.\n\nThe 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`\n\nare all affected.\n\n### Better faceting and aggregations\n\nFaceting and aggregations also became more useful.\n\n[ facet_filter_mode](https://manual.manticoresearch.com/Searching/Faceted_search)\nmakes it easier to build e-commerce-style filters that preserve selected, available, and unavailable buckets under active filtering.\n\nOn the analytics side:\n\ngained`date_histogram()`\n\n`time_zone`\n\nand`offset`\n\n- Opensearch dashboards support\n- Manticore added statistical aggregations such as\n`percentiles`\n\n,`percentile_ranks`\n\n, and`mad`\n\n## Other Notable Improvements\n\nThis release line also includes several smaller but useful additions:\n\nvalidates configuration before startup without side effects.`searchd --check`\n\nlets a node leave a replication cluster online without restarting.`EXIT CLUSTER`\n\nmakes it possible to index very long machine-generated tokens such as hashes and message IDs without silent truncation.`dict=keywords_32k`\n\n- The\n[built-in Ukrainian lemmatizer](https://manual.manticoresearch.com/Creating_a_table/NLP_and_tokenization/Morphology#morphology)expands native morphology support for Ukrainian text search. [Systemd](https://github.com/manticoresoftware/manticoresearch/releases/tag/25.4.0)improves startup and shutdown supervision.`Type=notify`\n\n`searchd`\n\nprocess under systemd management now logs to`systemd`\n\njournal`JOIN`\n\nqueries now support explicit left-table column prefixes.- OpenSearch Dashboards support.\n`manticore-load`\n\ngained multi-query support.\n\n## Bug Fixes\n\nThis release line also includes **65 changelog-listed fixes**. The latest follow-up releases added a few more worth calling out:\n\n- 27.1.5 fixed a crash when fetching columnar\n`float_vector`\n\nattributes. - 27.1.4 fixed\n`ALTER TABLE ... RECONFIGURE`\n\nand`SHOW CREATE TABLE`\n\nfor one-way upgrades from`dict='keywords'`\n\nto`dict=keywords_32k`\n\n. - 27.1.3 updated Buddy to 4.0.1 and tightened Queue-plugin mutation permission handling under auth.\n- KNN-by-\n`doc_id`\n\nqueries now preserve`offset`\n\nand`max_matches`\n\ncorrectly. - KNN rescoring order was fixed, so explicit\n`ORDER BY`\n\ntie-breakers work again. - Hybrid fused queries with\n`GROUP BY`\n\non columnar tables stopped crashing. - Replication and node-rejoin crash paths were cleaned up further.\n- Binary MySQL protocol behavior was fixed in 25.12.1, which matters for integrations that expect real client compatibility.\n- Fluent Bit bulk-ingest interoperability was fixed, preventing successful responses from being replayed as duplicate inserts.\n- 27.1.2 fixed\n`sql_attr_multi`\n\nhandling for plain indexes built from multiple`source`\n\nblocks.\n\nFor the complete list, see the [changelog](https://manual.manticoresearch.com/Changelog)\n.\n\n## Need help or want to connect?\n\n- Join our\n[Slack](https://slack.manticoresearch.com) - Visit the\n[Forum](https://forum.manticoresearch.com) - Report issues or suggest features on\n[GitHub](https://github.com/manticoresoftware/manticoresearch/issues) - Email us at\n[[email protected]](/cdn-cgi/l/email-protection)", "url": "https://wpnews.pro/news/manticore-search-27-1-5-authentication-sharded-tables-conversational-search-and", "canonical_source": "https://manticoresearch.com/blog/manticore-search-27-1-5/", "published_at": "2026-06-19 00:00:00+00:00", "updated_at": "2026-06-19 15:13:29.872217+00:00", "lang": "en", "topics": ["ai-tools", "ai-infrastructure", "machine-learning", "large-language-models"], "entities": ["Manticore Search", "Manticore Software", "MCL", "HNSW", "KNN", "LLM", "MySQL", "HTTP"], "alternates": {"html": "https://wpnews.pro/news/manticore-search-27-1-5-authentication-sharded-tables-conversational-search-and", "markdown": "https://wpnews.pro/news/manticore-search-27-1-5-authentication-sharded-tables-conversational-search-and.md", "text": "https://wpnews.pro/news/manticore-search-27-1-5-authentication-sharded-tables-conversational-search-and.txt", "jsonld": "https://wpnews.pro/news/manticore-search-27-1-5-authentication-sharded-tables-conversational-search-and.jsonld"}}