Query Suggestion Options
Last word completion
Keyboard Layouts
GitHub

👀 While it's loading, feel free to check out the other repositories:

🔔 To get a notification when it's ready, leave your email here:

By entering your email, you agree to receive notifications and marketing-related emails

Filter by reset

570 results 21 ms in manticoresoftware/manticoresearch

Manticore crashes when UPDATE field

Bug Description: Пытаюсь выполнить обновление поле data в индексе, поле в самом индексе существует. При этом поле attrs обновляется без проблем. В чем может быть дело? Ошибка: (1064, "table v000000771: attribute 'data' not found") Конфигурация индекса: …

iswhoamiiswhoami · 2025-05-12 · 0 · #3378

bug

Change the way auto-flush works

Right now autoflush is daemon-level service, which is applied to all the indexes once a second. Each pass includes: remember current index table Iterate over remembered table and invoke 'ForceDiskChunk', for each rt-index. On the lower layer, each rt- …

klirichekklirichek · 2025-05-02 · 1 · #3236

est::size_Mrel::9.3.2

INSERT DELAYED

Currently mass inserts into a Manticore real-time table require batching for better performance. The task is to implement the INSERT DELAYED SQL command which would work as follows: INSERT DELAYED ... gets routed to Buddy Buddy saves the documents …

sanikolaevsanikolaev · 2023-12-05 · 8 · #1493

hacktoberfest

Fulltext search efficiency improvement

Consider the request: SELECT ut FROM listing WHERE match('T14180 "2004 фауна китайский гороскоп 5 м"/0.5') LIMIT 0,100 OPTION max_predicted_time=100, max_matches=100; Meta: +---------------------+---------------------+ | Variable_name | Value | …

starinacoolstarinacool · 2024-01-10 · 0 · #1653

est::NO_ESTIMATE

Is this an issue or I need to change query [Requesting help over here]

Confirmation Checklist: You have searched for an answer in the manual. You have considered using the forum for general discussions, which can be more suitable for non-urgent or broad queries. You are aware of our community support channels on Slack, …

VamshiKrishnaM13VamshiKrishnaM13 · 2025-05-12 · 0 · #3379

Add docs about Buddy sharding logic

donhardmandonhardman · 2025-05-12 · 6 · #2066

Map log_level to Buddy

Proposal: Currently we have almost the same modes that daemon has in buddy --debug --debugv --debugvv The idea is to map our log_level from config and also those that change in Runtime to Buddy starting command and append proper debug level in case set, …

donhardmandonhardman · 2025-05-08 · 5 · #3252

enhancementest::size_M

crash related with remove_repeats()

Bug Description: mysql> drop table if exists t; create table t(f text, regnr int); insert into t values(1, 'abc from dataset 1', 1),(2, 'abc from dataset 1', 2),(1001, 'abc from dataset 2', 1); select REMOVE_REPEATS((select * from t where match('abc') …

sanikolaevsanikolaev · 2025-05-12 · 0 · #3377

bug

Vector quantization for KNN search

Currently, Manticore uses the HNSW index over floats for its KNN search implementation. That might lead to excessive memory consumption, as all HNSW indexes must be loaded into RAM. One way to improve this is to quantize float vectors into word/byte …

glookkaglookka · 2025-03-14 · 8 · #1809

3👍3

est::size_Mfeature::vector_searchrel::upcoming

Select abstract values work for numbers, not for strings

Describe the bug SELECT 1 as number, data FROM table_name; --works SELECT 'string' as string, data FROM table_name; --doesn't work To Reproduce Steps to reproduce the behavior: Run latest ManticoreSearch in Docker CREATE TABLE issue(data text); INSERT …

AbstractiveNordAbstractiveNord · 2023-12-05 · 8 · #1496

bug

improve Kibana documentation

Bug Description: Issue poped at the https://github.com/manticoresoftware/manticoresearch/discussions/3370 that user try to use Manticoresearch with Kibana but the daemon works in the non RT mode. That produces unclear reply from Buddy about wrong table. …

tomatologtomatolog · 2025-05-12 · 0 · #3371

bug

Default synonyms

Proposal: Let's look into whether we can find and include default synonyms for most supported languages — or at least some of them — in the Manticore distribution (as wordforms). Checklist: To be completed by the assignee. Check off tasks that have been …

sanikolaevsanikolaev · 2025-05-08 · 5 · #3330

1👍1

Consider using CDN to accelerate downloads for repo.manticoresearch.com

Is your feature request related to a problem? Please describe. It takes many minutes to install manticore search in asia. repo.manticoresearch.com seems randomly very slow. Describe the solution you'd like Consider using CDN to accelerate downloads for …

digiravedigirave · 2023-05-24 · 3 · #1044

systemctl warning for yum update systemd on RHEL 8: [/usr/lib/tmpfiles.d/searchd.conf:1] Line references path below legacy directory /var/run/, updating /var/run/manticore → /run/manticore; please update the tmpfiles.d/ drop-in file accordingly.

Describe the bug When systemd is updated on RHEL 8 with manticore search installed the following errors occur: [/usr/lib/tmpfiles.d/searchd.conf:1] Line references path below legacy directory /var/run/, updating /var/run/manticore → /run/manticore; please …

digiravedigirave · 2023-02-14 · 0 · #1045

1👍1

Escaping does not work with reserved keywords

Describe the bug Escaping does not work with reserved keywords in the query. To Reproduce Steps to reproduce the behavior: mysql> create table t(`year` int); mysql> create table t(`facet` int); mysql> create table t(`order` int); Expected behavior The …

Nick-S-2018Nick-S-2018 · 2024-12-16 · 4 · #1827

est::size_Srel::upcoming

Incorrect spaces handling in http query (ALTER TABLE)

Bug Description: Hello! If send a request to rename a table with pluses instead of %20, you get an error: $ curl http://localhost:9308/sql?query=ALTER+TABLE+articles+RENAME+articles2 {"error":"Source table + not exists"} $ curl http://localhost:9308/sql? …

vasilevrvvasilevrv · 2025-05-07 · 1 · #3199

bugest::size_S

joining by json_attr.string doesn't work

Bug Description: MRE: snikolaev@dev2:~$ mysql -P9306 -h0 -e "drop table if exists t; drop table if exists t2; create table t(f text, s string, j json); create table t2(f text, s string, j json); insert into t values(1, 'abc', 'string', '{\"i\": 1, \"b\": …

sanikolaevsanikolaev · 2024-12-16 · 0 · #2559

bugest::size_Srel::upcomingfeature::join

Support for statistic functions (median and percentile)

Proposal: Hello, I wanted to migrate from ElasticSearch to ManticoreSearch, but I found no way to do some statistics on my results set. ie: I log some events and they have a duration property and I need to know median and percentiles of that duration. …

dzek69dzek69 · 2025-05-07 · 3 · #3280

1👀1

est::size_L

timestamp support millisecond

Confirmation Checklist: You have searched for an answer in the manual. You have considered using the forum for general discussions, which can be more suitable for non-urgent or broad queries. You are aware of our community support channels on Slack, …

FriskKiddoFriskKiddo · 2025-05-07 · 6 · #3254

enhancementest::size_L

custom Chinese dictionary

Hello, I'd like to ask if you support the use of a custom Chinese dictionary for segmentation?

lgl5240lgl5240 · 2023-12-05 · 3 · #1479

waitinghacktoberfest