👀 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
Fuzzy plugin doesn't support quote table names
Bug Description: select ... `<table name>` ... fuzzy=1 fails with no such table '' : MRE: mysql> drop table if exists t; create table t; SELECT * FROM `t` WHERE MATCH('abc') OPTION fuzzy = 1; -------------- drop table if exists t -------------- Query OK, …
sanikolaev · 2025-03-24 · 2 · #496
bug
Distributed inserts (_bulk, replace, update)
Proposal: We should implement the logic and stick to JSON protocol ONLY for the initial version when we are able to insert into sharded tables on the Buddy side. Key considerations: Implement id generation on the Buddy side that is easy to maintain and …
donhardman · 2025-03-21 · 28 · #392
est::size_M
Bug Description: Currently when we run update deps in Buddy repo we have no commits presented in the "which includes" section in the comment of pull request in manticoresearch repo Manticore Search Version: Latest Operating System Version: Ubuntu Have you …
donhardman · 2025-03-24 · 1 · #509
bug
Unstable fuzzy results with default layouts after disk chunk flush
Bug Description: The same select returns an empty result after flush ramchunk . Example: mysql -P9306 -h0 -v -e "drop table if exists t; create table t(name text) min_infix_len='2' diskchunk_flush_write_timeout = '9999'; insert into t values(1, 'LIMITED …
sanikolaev · 2025-03-24 · 8 · #489
bug
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, …
uraurora · 2025-02-26 · 10 · #494
waiting
Process can't stop after recreation
Bug Description: When we run the process and after trying to stop it, the first time it performs successfully. After the recreation, it runs successfully and performs its job. But after we call stopProcessById , this command seems to not execute. I see …
djklim87 · 2024-10-22 · 3 · #360
bug
Fuzzy search doesn't find "defghi" by "def ghi" when there's another document
Bug Description: This works fine: defghi is found by def ghi : mysql> select * from t where match('aa def ghi xxx') option fuzzy=1, layouts=''; Empty set (0.00 sec) mysql> drop table if exists t; Query OK, 0 rows affected (0.02 sec) mysql> create table t( …
sanikolaev · 2025-03-23 · 6 · #490
bug
If you do this: root@079589cd1073:/# for n in `seq 1 500000`; do mysql -P9306 -h0 -e "SELECT id, aaaa, bbbb, ccccc, ddddd_ddddd, dddddddddddddddddddd, ddddddddddddddddddd, dddddddddddddddddddd, dddddddddddddddddddd, dddddddddddddddddddd, …
sanikolaev · 2023-10-30 · 3 · #165
bug
…➜ ~ mysql -P9306 -h0 -e "test" ERROR 1064 (42000) at line 1: Swoole\Coroutine::sleep(): Timer must be greater than or equal to 0.001 Fails on Mac. Doesn't fail in Linux (dev2).
sanikolaev · 2023-12-04 · 1 · #181
Processing JSON fields with _field_caps
Proposal: We need to provide expanded information on JSON fields including data types of their nested objects just as Elastic does. For example, a request to _field_caps for the following JSON field in the test table: …
Nick-S-2018 · 2025-01-31 · 1 · #449
rel::7.0.0
--debug is not working properly
request data is missing.
sanikolaev · 2023-12-04 · 1 · #182
Elastic-Manticore mapping change
Bug Description: We need to map elastic text fields with 'keywords' as string indexed attribute instead of 'text' to avoid losing a part of their functionality. Manticore Search Version: Manticore 6.3.9 c96df395d@24112911 dev Operating System Version: …
Nick-S-2018 · 2025-01-31 · 1 · #416
bugrel::7.0.0
Buddy can't be used under non-root and non-manticore
Buddy can be run only under root and manticore , e.g.: root: root@78c483766894:~# /usr/share/manticore/modules/manticore-buddy/bin/manticore-buddy Buddy v1.1.1 started 127.0.0.1:44159 Loaded plugins: core: empty-string, backup, emulate-elastic, insert, …
sanikolaev · 2023-11-09 · 4 · #166
bugest::size_S
Escaping table names in auto schema requests
Bug Description: We need to escape table names passed in requests to the Insert plugin to avoid errors when those names coincide with Manticore's reserved words. For example: mysql> create table knn(f text); ERROR 1064 (42000): table 'knn': CREATE TABLE …
Nick-S-2018 · 2025-01-31 · 1 · #424
bugest::size_Srel::7.0.0
No float_vector support in Auto schema
Bug Description: Data with vectors is successfully inserted into Manticore. However, when querying the data, the vectors are returned as 0,0,0,0 instead of the expected values. The issue seems to be related to the fact that the data type for vectors in …
PavelShilin89 · 2025-01-23 · 17 · #377
bug
Improve error message for missing `rf=n` in sharded table creation
Bug Description: When the CREATE TABLE command does not include the rf=n (replication factor) parameter, instead of the ERROR 1064 (42000): P03: syntax error, unexpected integer, expecting string near '3' a more informative error message should be …
PavelShilin89 · 2025-02-25 · 6 · #405
bug
drop sharded table if exists test
donhardman · 2025-02-25 · 13 · #447
Look into memleak issue while we sending many selects that are routed to buddy
When we dispatch numerous selects, it appears as though there's a memory leak in the Buddy code. This issue could potentially arise when we select from a table that doesn't exist. We need to investigate this, identify the cause, and attempt to rectify it. …
donhardman · 2023-10-06 · 1 · #167
Please consider re-writing the buddy in a respectable programming language..
Proposal: Go-lang, Rust, C#. Cripes dare I say Python?? Even Ruby would be better than PHP.. Why PHP... the only language with a configuration file. It's almost 2025... Checklist: To be completed by the assignee. Check off tasks that have been completed …
skyscooby · 2024-12-06 · 2 · #407
Proposal: We should implement the following fixes in our Kafka integration: Multiple queries for starting or stopping a worker (like 2-3 starts in a row) silently do nothing. We should return an error to the user when they perform 2 or more suspend=1 …
donhardman · 2024-11-14 · 6 · #381