👀 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
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 …
donhardman · 2024-08-02 · 0 · #2474
enhancement
PavelShilin89 · 2025-01-23 · 1 · #2972
done
PavelShilin89 · 2025-01-22
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[' …
glookka · 2024-07-08 · 1 · #2381
bugrel::7.0.0
Secondary indexes for json attributes don't work with in() expressions
glookka · 2024-07-08 · 1 · #2381
bugrel::7.0.0
glookka · 2024-07-05
Manticore query cache fails to cache PACKEDFACTORS()
Bug Description: Recently tried to enable Manticore’s native query cache, however we ran into a situation regarding caching PACKEDFACTORS() output, regardless if it’s json or not. On a cache miss we receive values, on a cache hit we receive empty column, …
vytautasvers · 2024-11-20 · 2 · #2742
bugrel::7.0.0est::size_M
call keywords expansion results from ram vs disk chunks
tomatolog · 2025-02-21 · 2 · #3113
github-actions[bot] · 2025-02-21
Always 0 for unexisting @@variables
Bug Description: There is an issue that blocks a task to be done: https://github.com/manticoresoftware/manticoresearch-buddy/issues/388 When we do a select of any variable that does not exist at all, we return 0, which looks incorrect. Let's return an …
donhardman · 2025-02-21 · 4 · #3109
bug
chongshengdz · 2025-01-21 · 33 · #2869
waiting
sanikolaev · 2024-12-19
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_ …
d47081 · 2024-01-09 · 5 · #1652
waiting
Created test-inconsistent-comunication-with-buddy.rec
PavelShilin89 · 2025-02-19 · 9 · #2991
done
github-actions[bot] · 2025-01-23
Build fails with Boost 1.87.0 due to use of removed `io_service`
Bug Description: Trying to build Manticoresearch (both 7.0.0 and master) with Boost 1.87.0 fails with: src/searchdbuddy.cpp:17:10: fatal error: 'boost/asio/io_service.hpp' file not found 17 | #include <boost/asio/io_service.hpp> | …
cho-m · 2025-02-20 · 3 · #3099
bug
klirichek · 2025-01-20 · 1 · #2924
pack
sanikolaev · 2025-01-14
Update buddy version to: 2.3.13 24070805 2931a1f which includes: 2931a1f Introduce lazy loading for core labels like versions that before we initialized once on startup of metric thread
githubmanticore · 2024-07-08 · 0 · #2388
Do you support go database/sql? Thank you
fucktx · 2024-12-12 · 1 · #2831
waiting
sanikolaev · 2024-12-12
Update test-create-table-like-existing-table-with-data.rec
Type of Change (select one): Bug fix - Fixed lack of support for IF NOT EXISTS syntax for create with data syntax. Description of the Change: Added support IF NOT EXISTS syntax for create with data syntax. Related Issue (provide the link): https://github. …
PavelShilin89 · 2024-11-14 · 0 · #2759
done
Using expression returns a wrong value for a joined table
anStalf · 2025-01-31 · 3 · #2414
bugest::size_Sfeature::join
anStalf · 2024-07-14
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 …
sanikolaev · 2023-12-05 · 8 · #1493
hacktoberfest
syrian2012 · 2024-06-18 · 1 · #2276
waiting
sanikolaev · 2024-06-18
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 | …
starinacool · 2024-01-10 · 0 · #1653
est::NO_ESTIMATE
Testing bug fixes in fuzzy search and autocomplete
PavelShilin89 · 2024-10-01 · 9 · #2566
done
PavelShilin89 · 2024-09-17
sanikolaev · 2024-08-09 · 0 · #2503
error: cannot use 'typeid' with '-fno-rtti' when building on Debian 11
pboguslawski · 2023-01-05 · 2 · #977
sanikolaev · 2023-01-04
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 | …
sanikolaev · 2024-05-23 · 6 · #1494
hacktoberfestrel::6.3.0
Auto UUID creation seems improper? Existing docs getting overwritten even with insert operation
regstuff · 2024-07-08 · 2 · #2367
bugwaiting
sanikolaev · 2024-07-03
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 …
quadlol · 2023-02-14 · 3 · #1038
move lemmatize_uk.so to /usr/share/manticore/modules/
githubmanticore · 2023-01-06 · 9 · #908
githubmanticore · 2023-01-04
Setting doc id inside 'doc' fails /bulk insert
Bug Description: If I try to set a doc id inside the 'doc' object, insert does not happen. curl localhost:9308/cli -d 'create table test(f text)'; Query OK, 0 rows affected (0.002 sec) curl localhost:9308/bulk -H "Content-Type: application/x-ndjson" -d ' …
Nick-S-2018 · 2024-11-14 · 4 · #2299
bugest::size_S
chongshengdz · 2025-01-21 · 33 · #2869
waiting
chongshengdz · 2024-12-19
Test/kibana manticore handling
Type of Change (select one): Bug fix Description of the Change: Added a CLT test that verifies that an issue where the _id field in the response to a _search endpoint query was returned as a number (1) instead of a string (“1”) has been fixed. This was …
PavelShilin89 · 2025-02-19 · 0 · #3104
done
Created test-inconsistent-comunication-with-buddy.rec
PavelShilin89 · 2025-02-19 · 9 · #2991
done
github-actions[bot] · 2025-02-09
Update warning rel. with index_exact_words
Bug Description: The warning below is wrong, because if I do create table t(f text) index_exact_words='1' min_infix_len='2' expand_keywords='1' it disappears, but I don't add any morphology: mysql> drop table if exists t; create table t(f text) index_ …
sanikolaev · 2024-06-05 · 2 · #2263
bugest::size_S
Testing bug fixes in fuzzy search and autocomplete
PavelShilin89 · 2024-10-01 · 9 · #2566
done
sanikolaev · 2024-09-18
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 …
regstuff · 2024-07-08 · 2 · #2367
bugwaiting
Using expression returns a wrong value for a joined table
anStalf · 2025-01-31 · 3 · #2414
bugest::size_Sfeature::join
sanikolaev · 2024-07-16
Cannot start Manticore service in WSL2
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, …
juneszh · 2025-01-20 · 1 · #2955
Nullable value for numeric related fields
scruel · 2024-06-19 · 1 · #2236
est::size_XXL
sanikolaev · 2024-06-19
QEMU segfault when building Docker image
sanikolaev · 2025-02-21 · 0 · #3116
call keywords expansion results from ram vs disk chunks
tomatolog · 2025-02-21 · 2 · #3113
github-actions[bot] · 2025-02-21
added failure if the buddy running and any unknown sysvar
to make sure what CI actions failed with this change
tomatolog · 2025-02-21 · 0 · #3117
Issue regarding Manticore KNN Search version - 6.3.2 c296dc7c8@24062606
Chaitanyspace · 2024-12-12 · 6 · #2806
bugwaiting
Chaitanyspace · 2024-12-02