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

2066 results 20 ms in manticoresoftware/manticoresearch

Can't start manticore after update from 5.0.2 to 6.3.8, OOM error

Bug Description: I use docker images, I used 5.0.2 and decided to upgrade. After upgrading the image to 6.3.8 Manticore crashes with OOM error: FATAL: out of memory (unable to allocate 14401991088 bytes) I have 8GB of RAM, Manticore tries to allocate ~ …

dzek69dzek69 · 2025-03-22 · 1 · #2807

bugest::size_S

mysqldump export error

Trying to make logical dump with mysqldump : mysqldump -h0 -P9306 manticore > index.sql Dump creating but with following errors: mysqldump: Error: 'P01: syntax error, unexpected SELECT, expecting integer or string or '-' near 'SELECT DISTINCT LOGFILE_ …

d47081d47081 · 2024-01-09 · 5 · #1652

waiting

Manual fixes and optimizations

Bug Description: Identify and correct pages with multiple H1 tags, like this example. Ensure a sitemap exists at this URL. Instead of removing old docs with old versions from the index, adjust the sitemap to reduce their weight and improve search engine …

donhardmandonhardman · 2024-08-02 · 0 · #2474

enhancement

Secondary indexes for json attributes don't work with in() expressions

Bug Description: Secondary indexes are not used when running the following queries with json attributes: select id, any(x='val0' for x in j.arr) a from t where a>0; show meta; select id, in(j.arr, 'val0') a from t where a>0; show meta; select id, in(j[' …

glookkaglookka · 2024-07-08 · 1 · #2381

bugrel::7.0.0

Manticore query cache fails to cache PACKEDFACTORS()

Bug Description: Recently tried to enable Manticore’s native query cache, however we ran into a situation regarding caching PACKEDFACTORS() output, regardless if it’s json or not. On a cache miss we receive values, on a cache hit we receive empty column, …

vytautasversvytautasvers · 2024-11-20 · 2 · #2742

bugrel::7.0.0est::size_M

Crash json secondary_index='1'

Bug Description: Hello I encountered an index crash if json secondary_index='1' was enabled. Manticore Search Version: Manticore 7.0.1 5d8f4dfe5@25022111 dev (columnar 4.0.1 1e31f8f@25021918) (secondary 4.0.1 1e31f8f@25021918) (knn 4.0.1 1e31f8f@25021918) …

webigorkievwebigorkiev · 2025-03-14 · 3 · #3123

bugrel::upcoming

CRASH due to incorrect scroll option format

Bug Description: drop table if exists t; create table t; select * from t option scroll = '!'; terminate called after throwing an instance of 'boost::archive::iterators::dataflow_exception' what(): attempt to decode a value not in base64 char set Crash!!! …

jmpleojmpleo · 2025-03-14 · 1 · #3119

bugrel::upcoming

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

VERSION

Let's add a new SQL command VERSION as a shortcut to select * from status like 'version' . It should return all components' versions, e.g.: mysql> version; +---------------+------------------------+ | Component | Version | …

sanikolaevsanikolaev · 2024-05-23 · 6 · #1494

hacktoberfestrel::6.3.0

Setting doc id inside 'doc' fails /bulk insert

Bug Description: If I try to set a doc id inside the 'doc' object, insert does not happen. curl localhost:9308/cli -d 'create table test(f text)'; Query OK, 0 rows affected (0.002 sec) curl localhost:9308/bulk -H "Content-Type: application/x-ndjson" -d ' …

Nick-S-2018Nick-S-2018 · 2024-11-14 · 4 · #2299

1👀1

bugest::size_S

Using Plain table and Postgresql on MacOS (M1)

Hello, I don't really understand the workflow on mac M1. I have followed this tutorial https://play.manticoresearch.com/mysql/ - however, I am using PostgreSQL in my case. I am implementing search on my Postgresql tables. I did install everything …

quadlolquadlol · 2023-02-14 · 3 · #1038

Auto UUID creation seems improper? Existing docs getting overwritten even with insert operation

Bug Description: When adding new documents into a table and using the auto UUID feature, manticore seems to be generating UUIDs that already exist in the table and is therefore rewriting documents. I am unable to give an exact situation and MRE but I am …

regstuffregstuff · 2024-07-08 · 2 · #2367

bugwaiting

Cannot start Manticore service in WSL2

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, …

juneszhjuneszh · 2025-01-20 · 1 · #2955

Update warning rel. with index_exact_words

Bug Description: The warning below is wrong, because if I do create table t(f text) index_exact_words='1' min_infix_len='2' expand_keywords='1' it disappears, but I don't add any morphology: mysql> drop table if exists t; create table t(f text) index_ …

sanikolaevsanikolaev · 2024-06-05 · 2 · #2263

bugest::size_S

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

memory leaks

Describe the bug Hello I just got acquainted with your database. This is a very fast database. Unfortunately, I couldn't find any good information about authentication in the documentation. But the main problem is about memory: 1- I entered the number of …

majid1605majid1605 · 2023-03-17 · 9 · #1039

bug

alter cluster C add tbl1, tbl2, tbl3

Proposal: Let's support alter cluster C add tbl1, tbl2, tbl3 . It can be helpful in some cases and should ease replication management in general, since in many cases you want multiple tables replicated. Checklist: To be completed by the assignee. Check …

sanikolaevsanikolaev · 2024-07-08 · 3 · #2308

rel::7.0.0est::size_Lfeature::replication

abnormal count(*) value in large rt table

Bug Description: Трудно найти mre, однако после вставки около 2.5 млрд документов, значение count(*) становиться отрицательным: import manticoresearch import random import json from datetime import datetime from manticoresearch.rest import ApiException …

jmpleojmpleo · 2025-03-24 · 0 · #3238

bug

auto-sharding: distributed writes

At present, a distributed table can only manage select and update operations. The goal is to enable it to process insert, replace, and delete operations as well. Here is a high-level specification of the desired functionality: When writing to a …

githubmanticoregithubmanticore · 2025-03-21 · 4 · #1087

2👍1👀1