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

1785 results 11 ms in manticoresoftware/manticoresearch

where joined_table.id = 1 or joined_table.id = 2

select * from t inner join t2 on t.id = t2.t_id where t2.id = 1 or t2.id = 2 returns an empty result which is wrong: mysql> drop table if exists t; create table t(f text); insert into t values(1, 'abc'); drop table if exists t2; create table t2(t_id int, …

sanikolaevsanikolaev · 2024-03-21 · 2 · #1978

bugest::size_Sfeature::join

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

show plan wrong for RT index

show plan output is valid for plain index or RT index without RAM segments but with the single disk chunk. But for RT index with multiple disk chunks every disk chunks reset previously collected execution plan and dump its own. It could be better to …

tomatologtomatolog · 2024-03-12 · 1 · #1923

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::upcoming

/dev/ -> / in the docs

Some links in the docs point to https://manual.manticoresearch.com/dev/ , e.g. https://github.com/manticoresoftware/manticoresearch-php/blob/115d864a0bcc9d29a1af868a5a13a72fa0ab2df1/docs/searchclass.md#knn Let's update them after the next release of …

sanikolaevsanikolaev · 2024-05-29 · 2 · #1867

est::size_S

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

Mysqldump + mysql restore bug

Describe the bug Есть RT-индекс, заполняется скриптом (SQL-запросами), заполняется успешно, без ошибок. Индекс создан через файл конфига: index rt_47newsru_articles { type = rt path = /var/lib/manticore/rt_47newsru_articles # stored fields # stored_fields …

KarelWinterskyKarelWintersky · 2024-05-23 · 14 · #1924

bugrel::6.3.0

response time is much higher than max_query_time

mysql> select * from name where match('ов') option max_query_time=1000; show meta; ERROR 1064 (42000): table name: +----------------+--------------+ | Variable_name | Value | +----------------+--------------+ | error | table name: | | warning | query …

klirichekklirichek · 2024-05-23 · 0 · #1980

bugrel::6.3.0

after daemon stopped executer left

on linux after daemon got stopped the manticore-executor left in the background. The daemon should seng SIGTERM signal to buddy process instead of the SIGKILL

tomatologtomatolog · 2024-05-23 · 2 · #2021

bugrel::6.3.0

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

SHOW CREATE TABLE for plain tables

Let's consider adding support for SHOW CREATE TABLE for plain tables as it seems then it will be easier to convert a plain table to a real-time table via mysqldump . As of now it's also possible via ATTACH + IMPORT . Instruction below. How to migrate a …

sanikolaevsanikolaev · 2024-03-19 · 0 · #1925

est::size_M

count(distinct ...) against multiple tables with different field order returns wrong value

…MRE: drop table if exists a; drop table if exists b; CREATE TABLE a(g int, g2 int); CREATE TABLE b(g int, g2 int); INSERT INTO a(g,g2) VALUES (1,1),(2,1); INSERT INTO b(g,g2) VALUES (1,1),(2,1); select count(distinct g) from a,b; # Returns: # …

sanikolaevsanikolaev · 2024-04-23 · 1 · #2076

est::size_L

Empty error message in case of absent resultset

In #1980 there is kind of ghost error message: mysql> select * from name where match('ов') option max_query_time=1000; show meta; ERROR 1064 (42000): table name: ... That is - ERROR 1064 (42000): table name: . There is no real error there, reason of such …

klirichekklirichek · 2024-05-23 · 0 · #1981

bugrel::6.3.0

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

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

Wrong lccs

Добрый день! Подскажите, пожалуйста, как считается lccs, самостоятельно вычислить не получается (возможно баг, возможно неизвестные мне тонкости работы). Проблема появляется, когда одно и то же слово встречается в разных формах (в примере ниже "няня" и " …

evgen84evgen84 · 2024-01-12 · 0 · #1723

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

Conversational Search (RAG)

Proposal: To have the ability to respond to free-form questions with conversational responses and maintain context for follow-up questions and answers. Competitor reference: Typesense Conversational Search. Checklist: To be completed by the assignee. …

pavelnemirovskypavelnemirovsky · 2024-09-10 · 2 · #2286

est::size_S

MVA column query via HTTP/JSON search request

Could you please explain how to get rid of warning 'suggest an explicit ANY()/ALL() around a filter on MVA column' when I'm trying to make following query via JSON API: ... "query": { "bool": { "must": [ { "match": { "title,plain": { "query": "test one", …

twirpxtwirpx · 2024-08-21 · 5 · #519

waiting