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

146 results 9 ms in manticoresoftware/manticoresearch-buddy

104: Connection reset by peer

Bug Description: Sometimes when running multiple queries, we notice that internal communication from the Buddy to the daemon gets a "104: connection reset by peer" error. We need to figure out why this happens, create a minimal reproducible example (MRE) …

donhardmandonhardman · 2024-07-22 · 1 · #322

bug

Buddy loose records in log (debugv mode)

Bug Description: #!/usr/bin/env bash set -x docker stop kafka && docker rm kafka docker stop manticore && docker rm manticore wget -O /tmp/import.sh https://raw.githubusercontent.com/manticoresoftware/manticoresearch-buddy/main/test/Kafka/import.sh wget - …

djklim87djklim87 · 2024-09-10 · 1 · #342

bugest::size_S

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 …

donhardmandonhardman · 2025-02-06 · 20 · #392

1👀1

est::size_M

Incorrect behaviour with reserved words in CREATE ... LIKE ...

Bug Description: When we use a word that's a common reserved word, it seems our parser doesn't recognize it and can't parse it properly. The fix here is that if we can't understand and need to escape this type of table name, we should send a clearer error …

donhardmandonhardman · 2024-09-10 · 0 · #324

bugest::size_S

Add protocol version check

Proposal: We should add a check on the Buddy side for supported versions in case Manticore sends an incorrect version. We should print the unsupported version to the Buddy log and not handle unsupported requests. Checklist: To be completed by the assignee …

donhardmandonhardman · 2024-10-31 · 2 · #378

est::size_S

Add support of bulk and SQL to distributed inserts

Proposal: We should add logic that will support our own endpoint bulk and will parse it the same way we do for _bulk to make insertion into distributed tables possible. Also, as discussed before, we should explore the possibility of using our old SQL …

donhardmandonhardman · 2025-02-06 · 5 · #408

Improve table formatter approach

Bug Description: The table version of view for SHOW VERSION query gives us JSON curl http://localhost:9308/cli?show%20version [ { "total": 5, "error": "", "warning": "", "columns": [ { "Component": { "type": "string" } }, { "Version": { "type": "string" } …

donhardmandonhardman · 2025-02-06 · 6 · #369

bug

Applying specific table settings when creating a table by autoschema

Proposal: Sometimes, a table auto-created by a request from an Elastic tool (e.g., Kibana) requires specific settings to be applied ( e.g., enabling min_infix_len , etc.). We need to be able to recognize such requests by their endpoints and apply required …

Nick-S-2018Nick-S-2018 · 2024-09-10 · 0 · #343

est::size_S

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 …

djklim87djklim87 · 2024-10-22 · 3 · #360

bug

memleak and no restart

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

sanikolaevsanikolaev · 2023-10-30 · 3 · #165

bug

"test" fails

…➜ ~ 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).

sanikolaevsanikolaev · 2023-12-04 · 1 · #181

--debug is not working properly

request data is missing.

sanikolaevsanikolaev · 2023-12-04 · 1 · #182

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-2018Nick-S-2018 · 2025-01-31 · 1 · #449

rel::7.0.0

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-2018Nick-S-2018 · 2025-01-31 · 1 · #416

bugrel::7.0.0

Update pull request flow with CLT tests

Proposal: We should update our Buddy flow that runs external CLT (Command Line Tool) tests workflow from the ManticoreSearch repository, as it may occasionally fail. To ensure proper merging and test verification, we suggest implementing the following …

donhardmandonhardman · 2025-01-23 · 1 · #465

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

sanikolaevsanikolaev · 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-2018Nick-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 …

PavelShilin89PavelShilin89 · 2025-01-23 · 17 · #377

bug

PHPSqlParser is not compatible with PHP 8.4

Bug Description: There is an issue with our phpsqlparser that we should fix and adapt code to work with PHP 8.4 as it blocking performance upgrade I found this one but probably have more [BUDDY] string(170) "PHPSQLParser\processors\AbstractProcessor::__ …

donhardmandonhardman · 2025-01-17 · 2 · #454

bug

Add support of named hostnames

Bug Description: Currently, we have an issue with sharding on node detection where we are only able to detect IPs, but users may use hostnames instead. We should investigate and fix this issue. Manticore Search Version: Latest dev version Operating System …

donhardmandonhardman · 2025-01-17 · 2 · #450

bug