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

176 results 7 ms in manticoresoftware/manticoresearch-buddy

Auto-sharding improvements and critical fixes

Proposal: As discussed before, there is a limitation in how we handle auto-rebalancing with rf=1 and new nodes added to the cluster. Due to this limitation, we need to create an intermediate cluster, ensure the data is synced, and then remove the …

donhardmandonhardman · 2025-07-12 · 5 · #559

Auto-sharding rollback on fail

Proposal: Currently, as per MVP, we do not have a rollback mechanism. We should think about and introduce a recovery system so that in case something goes wrong in creating a table or the rebalancing mechanism, we can rollback all intermediate tables/ …

donhardmandonhardman · 2025-06-11 · 0 · #564

Auto-sharding polling mechanism

Proposal: As discussed before, currently we rely on the queue system ONLY, but due to the blocking nature of queries like alter cluster add table ... , it's not guaranteed that even if it fails and returns an error, the cluster is not synced. Instead of …

donhardmandonhardman · 2025-06-11 · 0 · #563

Auto sharding issues

Bug Description: There are 2 reported cases with auto sharding logic that we should investigate and fix. Case 1 CREATE TABLE test ( id bigint, domain_name text, domain string attribute, tld string attribute, fingerprints json, category json, archive json, …

donhardmandonhardman · 2025-06-11 · 3 · #543

bug

manticore buddy start error

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

uraurorauraurora · 2025-02-26 · 10 · #494

waiting

CI: issue with app version on OSX

Bug Description: We are missing the addition of APP_VERSION when building the resulting package for OSX. As a result, it resorts to using the git version logic check, and due to Homebrew placing code without git but under its own git, it shows the wrong …

donhardmandonhardman · 2025-07-11 · 1 · #571

bug

CI: nothing in which includes

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 …

donhardmandonhardman · 2025-03-27 · 3 · #509

bug

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

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

layouts='ru' may be not working

Bug Description: A user mentioned in TG that using layouts='ru' doesn't work properly. Maybe it's not supposed to work with just one layout at all? Perhaps we need at least two in the list. If that's the case, we should show an error and update the …

sanikolaevsanikolaev · 2025-07-08 · 6 · #547

bugrel::13.2.3

Error response for multi query request including fuzzy search

Bug Description: curl localhost:9308/cli -d "CREATE TABLE test(f text) min_infix_len='2' '' curl localhost:9308/cli -d "SELECT f FROM test WHERE MATCH('a') OPTION fuzzy=1;show meta;" ERROR: P01: syntax error, unexpected ';' near ';show meta;SHOW META' It …

Nick-S-2018Nick-S-2018 · 2025-07-08 · 4 · #507

bugrel::13.2.3

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 …

PavelShilin89PavelShilin89 · 2025-02-25 · 6 · #405

bug

drop sharded table if exists test

donhardmandonhardman · 2025-02-25 · 13 · #447

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-06-28 · 7 · #408

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 …

skyscoobyskyscooby · 2024-12-06 · 2 · #407

Kafka integration fixes

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 …

donhardmandonhardman · 2024-11-14 · 6 · #381

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

donhardmandonhardman · 2024-11-14 · 8 · #325

bugest::size_S

Built-in Prometheus exporter

Proposal: We currently have this exporter, which exports Manticore metrics in Prometheus format at /metrics on a specified port. We also have the Manticore Helm Chart, which uses this exporter. We want to move the exporter to Buddy, making it a built-in …

djklim87djklim87 · 2025-06-10 · 8 · #537

est::size_Mrel::10.1.0