👀 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
Manticore Columnar - Signal 11 SEGFAULT after uploading 60 million rows into KNN-vector search table
Bug Description: I have created this manticore vector search / knn table CREATE TABLE text_vector_64_floats ( table_name string attribute, table_rowid bigint, text_str text, text_vector float_vector knn_type='hnsw' knn_dims='64' hnsw_similarity='l2' ) and …
gabriel-v · 2025-07-10 · 3 · #3550
bugwaiting
Test coverage for bidirectional log level synchronization between Manticore and Buddy
PavelShilin89 · 2025-06-10 · 23 · #3400
github-actions[bot] · 2025-05-22
Added support for local distributed tables in join queries
Added support for local distributed tables in join queries
glookka · 2025-07-15 · 1 · #3577
ci: Add support for Source RPM (SRPM) generation
sanikolaev · 2025-07-15 · 1 · #3575
pack
github-actions[bot] · 2025-07-14
Migration support using tools like sqlx migate or flyway
Proposal: I want to be able to manage a manticore db schema using migration files so that I have a repeatable flow for different environment. e.g a migrations directory with the SQL code to create / update tables like migrations/1_init_tables.sql , …
0xfourzerofour · 2025-06-12 · 3 · #3448
waiting
donhardman · 2025-06-25 · 4 · #3508
github-actions[bot] · 2025-06-25
Multimodality and semantic query weights
Proposal: Since some models such as CLIP based models use both text and image fields and they package multiple features of records the search chareteristic expectations can be rather complex. The full article useful for context is following. If Manticore …
ViljarVoidula · 2025-07-15 · 2 · #3570
Auto-Embeddings: possibility to run SELECT with text query
donhardman · 2025-07-15 · 1 · #3524
sanikolaev · 2025-07-15
Is there any way to make changes to the index via a mysql trigger?
Describe the bug Previously (version 5.0.2) this was possible using engine=connection. To Reproduce create table search_post ( command varchar(128) not null, warnings int(4) not null flag=3, number int(5) not null flag=1, message varchar(255) flag=2) …
rounce · 2025-06-30 · 7 · #1411
est::size_M
join search crashed when using string not int
shellphy · 2025-06-02 · 3 · #3233
bug
sanikolaev · 2025-03-26
Automatic embeddings generation
As discussed in https://forum.manticoresearch.com/t/search-for-similar-documents/1799/2 https://forum.manticoresearch.com/t/search-for-similar-documents/1799 , it's quite complicated to generate embeddings outside of Manticore Search. It would be great if …
sanikolaev · 2025-07-15 · 9 · #1778
est::size_L
donhardman · 2025-06-11 · 127 · #3391
donhardman · 2025-05-20
Auto-Embeddings: possibility to run SELECT with text query
Proposal: Now we have the possibility to create a vector field that will run auto-embeddings generation but are missing the ability to do a selection. The easiest approach is to adapt the current knn(..) method to accept a STRING instead of an exact …
donhardman · 2025-07-15 · 1 · #3524
error: cannot use 'typeid' with '-fno-rtti' when building on Debian 11
pboguslawski · 2023-01-05 · 2 · #977
sanikolaev · 2023-01-04
test(clt): add regression test for offset out of bounds error
donhardman · 2025-06-11 · 4 · #3456
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
sphParseExtendedQuery, and then sphTransformExtendedQuery executed over random generated input to find crashes and memory leaks. See https://github.com/google/fuzzing/blob/master/tutorial/libFuzzerTutorial.md for details Quickstart guide located at the …
klirichek · 2025-07-14 · 8 · #3571
move lemmatize_uk.so to /usr/share/manticore/modules/
githubmanticore · 2023-01-06 · 9 · #908
githubmanticore · 2023-01-04
Consider using CDN to accelerate downloads for repo.manticoresearch.com
Is your feature request related to a problem? Please describe. It takes many minutes to install manticore search in asia. repo.manticoresearch.com seems randomly very slow. Describe the solution you'd like Consider using CDN to accelerate downloads for …
digirave · 2023-05-24 · 3 · #1044
Auto UUID creation seems improper? Existing docs getting overwritten even with insert operation
regstuff · 2024-07-08 · 2 · #2367
bugwaiting
sanikolaev · 2024-07-03
quantization + order by knn_dist()
Bug Description: When using vector quantization a query like select ... knn_dist() dist ... order by dist ... doesn't work as expected: # manticore-load \ --drop \ --quiet \ --batch-size=1000 \ --threads=1 \ --total=1000 \ --init="create table vq1 (vec …
sanikolaev · 2025-07-11 · 0 · #3573
bug
donhardman · 2025-06-25 · 4 · #3508
github-actions[bot] · 2025-06-25
Describe the bug When systemd is updated on RHEL 8 with manticore search installed the following errors occur: [/usr/lib/tmpfiles.d/searchd.conf:1] Line references path below legacy directory /var/run/, updating /var/run/manticore → /run/manticore; please …
digirave · 2023-02-14 · 0 · #1045
donhardman · 2025-06-11 · 127 · #3391
PavelShilin89 · 2025-05-26
Facet search by float RANGE() not working
Bug Description: DROP TABLE IF EXISTS test_interval_and_range; CREATE TABLE test_interval_and_range(volume float); DESC test_interval_and_range; +--------+--------+------------+ | Field | Type | Properties | +--------+--------+------------+ | id | bigint …
tjslash · 2025-05-22 · 0 · #3401
bug
join search crashed when using string not int
shellphy · 2025-06-02 · 3 · #3233
bug
raccegatel00 · 2025-04-09
Escaping does not work with reserved keywords
Describe the bug Escaping does not work with reserved keywords in the query. To Reproduce Steps to reproduce the behavior: mysql> create table t(`year` int); mysql> create table t(`facet` int); mysql> create table t(`order` int); Expected behavior The …
Nick-S-2018 · 2024-12-16 · 4 · #1827
est::size_Srel::upcoming
Test coverage for bidirectional log level synchronization between Manticore and Buddy
PavelShilin89 · 2025-06-10 · 23 · #3400
github-actions[bot] · 2025-05-22
joining by json_attr.string doesn't work
Bug Description: MRE: snikolaev@dev2:~$ mysql -P9306 -h0 -e "drop table if exists t; drop table if exists t2; create table t(f text, s string, j json); create table t2(f text, s string, j json); insert into t values(1, 'abc', 'string', '{\"i\": 1, \"b\": …
sanikolaev · 2024-12-16 · 0 · #2559
bugest::size_Srel::upcomingfeature::join
Added support for local distributed tables in join queries
glookka · 2025-07-15 · 1 · #3577
github-actions[bot] · 2025-07-15
Difference between @knn_dist and knn_dist()
Bug Description: When using vector quantization @knn_dist and knn_dist() return a little different values which is confusing: # ~ # manticore-load \ --drop \ --quiet \ --batch-size=1000 \ --threads=1 \ --total=1000 \ --init="create table vq1 (vec float_ …
sanikolaev · 2025-07-11 · 0 · #3572
bug
Test coverage for bidirectional log level synchronization between Manticore and Buddy
PavelShilin89 · 2025-06-10 · 23 · #3400
github-actions[bot] · 2025-05-22
Add support for float_vector in plain tables
float_vector attributes are currently supported only in the rt tables ( rt_attr_float_vector ). We need to extend this support to all data sources in plain tables.
glookka · 2025-06-30 · 1 · #1615
est::size_M
donhardman · 2025-06-25 · 4 · #3508
github-actions[bot] · 2025-06-25
Support wordforms_index for loading wordforms from SQL table instead of file
Proposal: Allow using an SQL table as a source of wordforms, instead of only a file path. Proposed syntax: CREATE TABLE my_table ( title string ) wordforms_index='my_synonyms_index'; Motivation Currently, wordforms require a plain UTF-8 text file to be …
vdatalog · 2025-06-30 · 0 · #3528
Manticore 5.0.2 unexpected crash across all cluster nodes
pavelnemirovsky · 2023-06-18 · 2 · #978
waitingwontfix
tomatolog · 2023-01-04
Authentication and authorization
Proposal: Umbrella issue for https://roadmap.mnt.cr/ about authentication and authorization. Subtasks: https://github.com/manticoresoftware/manticoresearch/issues/2748 https://github.com/manticoresoftware/manticoresearch/issues/2808 https://github.com/ …
sanikolaev · 2025-07-11 · 15 · #2833
enhancement
Auto UUID creation seems improper? Existing docs getting overwritten even with insert operation
regstuff · 2024-07-08 · 2 · #2367
bugwaiting
tomatolog · 2024-07-08
OPTIMIZE TABLE never finishes with KNN data
Bug Description: If you have data with float_vector KNN fields, OPTIMIZE TABLE just spins at 100% CPU and never finishes. Steps to reproduce: wget "https://sembiance.com/wip/optimizeKNNBroke.tar.gz" tar -xvf optimizeKNNBroke.tar.gz && cd optimizeKNNBroke …
Sembiance · 2025-07-09 · 2 · #3560
bug
Multimodality and semantic query weights
ViljarVoidula · 2025-07-15 · 2 · #3570
sanikolaev · 2025-07-15