👀 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
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
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
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
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
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
Buddy Fuzzy & Suggestion fixes after testing
Bug Description: After testing, we discovered some additional issues in the Fuzzy and Query Suggestion logic: The "module" is introduced even when append is disabled. "espolicy" can't find "espolicytests" in query suggestions, despite it being a clear …
donhardman · 2024-07-29 · 1 · #326
bug
Change the way we get telemetry for data dir size
Proposal: To calculate the data directory size for telemetry purposes, we currently check the path of the data directory and total up the size in bytes. However, when we encounter a directory that we don't have permission to access, the process fails with …
donhardman · 2024-07-31 · 4 · #301
rel::6.3.4
Bug Description: I used following vector.toml config file based on Vector.dev document [sources.test_file] type = "file" include = [ "/root/vector2manticore/dpkg.log" ] [transforms.modify_test_file] type = "remap" inputs = [ "test_file" ] source = """ . …
saeed-mcu · 2024-07-31 · 2 · #302
bugest::size_Srel::6.3.4
create table if not exists ... with data failed on table exists
Bug Description: Here's an improved version of your text: When we try to copy a table using CREATE TABLE ... LIKE ... [WITH DATA] , we can't use the IF NOT EXISTS option. Expected behavior: nothing happens (no error) mysql> CREATE TABLE comment; mysql> …
donhardman · 2024-11-14 · 8 · #325
bugest::size_S