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

13707 results 43 ms in manticoresoftware/manticoresearch

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

Test/kafka with boolean fields

PavelShilin89PavelShilin89 · 2025-01-21 · 1 · #2974

done

clt-amd64 👎 CLT tests in test/clt-tests/integrations/kafka/test-integration- ✅ OK: 0 ❌ Failed: 1 ⏳ Duration: 215s 👉 Check Action Results for commit 8ee05f1 Failed tests: ––– input ––– (dockerd > /var/log/dockerd.log 2>&1 &) > /dev/null ––– output ––– ––– …

github-actions[bot]github-actions[bot] · 2025-01-21

Test/kafka with boolean fields

Type of Change (select one): Bug fix Description of the Change: This PR updates the existing Kafka integration test to include validation for boolean fields ( bool ). The test now ensures that boolean fields in the Kafka data are correctly processed, …

PavelShilin89PavelShilin89 · 2025-01-21 · 1 · #2974

done

Authentication and authorization

sanikolaevsanikolaev · 2025-01-17 · 7 · #2833

enhancement

Auth SphinxQL interface. Daemon uses check of the password from the mysql client compatible with the plugin mysql_native_password , ie mysql -h 127.0.0.1 -P 9306 -u teston -p Enter password: **** should work the same was as with regular mysql server. …

tomatologtomatolog · 2024-12-12

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

LCS doesn't respect OR

sanikolaevsanikolaev · 2025-01-21 · 3 · #1066

bugest::size_XL

One more MRE from this discussion: mysql> drop table if exists tbl; create table tbl(title text) index_exact_words='1' morphology='stem_en'; insert into tbl (title ) values ('black big dog'), ('black big cat'), ('black big cats'); SELECT title, weight() …

sanikolaevsanikolaev · 2024-11-21

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

vytautasversvytautasvers · 2024-11-20 · 2 · #2742

bugrel::upcomingest::size_M

Link OpenSSL 3 statically into searchd

sanikolaevsanikolaev · 2025-01-21 · 7 · #2789

rel::upcoming

I've adapted the changes to Github workflows. What's left to do: Decide if it makes sense to enable building the external toolchain image for the aarch64 architecture - https://github.com/manticoresoftware/manticoresearch/pull/2924#issuecomment-2590711433 …

sanikolaevsanikolaev · 2025-01-15

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

Convert Sphinx 3.3.1 Config to Latest Manticore Package with Plaintext Feature and Performance Optimization

syrian2012syrian2012 · 2024-06-18 · 1 · #2276

waiting

Hello. Can you provide more details on the plaintext feature you mentioned?

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

starinacoolstarinacool · 2024-01-10 · 0 · #1653

est::NO_ESTIMATE

Adding an endpoint for Buddy to handle Kibana's wildcard search requests

Nick-S-2018Nick-S-2018 · 2025-01-06 · 2 · #2362

est::size_M

@Nick-S-2018 does this issue block anything?

sanikolaevsanikolaev · 2024-07-02

Adding avg() to select ... join leads to wrong results

Bug Description: This command creates 2 tables: products - 10K docs and reviews - 10M docs manticore-load --drop --batch-size=1000 --threads=5 --total=10000 --init="CREATE TABLE products(name text, category multi)" --load="INSERT INTO products(id, name, …

sanikolaevsanikolaev · 2025-01-13 · 4 · #2915

bug

Static openssl

klirichekklirichek · 2025-01-20 · 1 · #2924

pack

The following command: docker buildx build --platform linux/amd64,linux/arm64 --push -t manticoresearch/external_toolchain:vcpkg331_20250114 . fails on dev2 while building the aarch64 image with the error: eval: cmake: not found . @klirichek, did it work …

sanikolaevsanikolaev · 2025-01-14

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

PavelShilin89PavelShilin89 · 2024-11-14 · 0 · #2759

done

when search keywords contain special characters, the search will become very slow and CPU will go high.

chongshengdzchongshengdz · 2025-01-21 · 33 · #2869

waiting

Hi @chongshengdz Can you please provide a reproducible example? I can't reproduce it with this script: snikolaev@dev2:~$ mysql -P9306 -h0 -e "drop table if exists t; create table t(f text); insert into t(f) values('smth manticore-php smth')" snikolaev@ …

sanikolaevsanikolaev · 2024-12-19

Implement batching inside a join query

Proposal: Currently join works by generating a query to the right table for every match in the left table and storing the result in a cache. If there are a lot of unique join conditions, this is very slow. We could accumulate join conditions for several …

glookkaglookka · 2025-01-21 · 7 · #2909

rel::upcoming

Implement batching inside a join query

glookkaglookka · 2025-01-21 · 7 · #2909

rel::upcoming

Done in https://github.com/manticoresoftware/manticoresearch/commit/d9eca54b696cdeaffeb23557dfd5a48515502631

glookkaglookka · 2025-01-08

🆕 Update buddy version

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

githubmanticoregithubmanticore · 2024-07-08 · 0 · #2388

Testing bug fixes in fuzzy search and autocomplete

PavelShilin89PavelShilin89 · 2024-10-01 · 9 · #2566

done

@sanikolaev I need approval to merge

PavelShilin89PavelShilin89 · 2024-09-17

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

#2836 Kafka source mapping support

djklim87djklim87 · 2025-01-15 · 45 · #2927

clt-amd64 👎 CLT tests in test/clt-tests/integrations/kafka/test-integration- ✅ OK: 0 ❌ Failed: 1 ⏳ Duration: 217s 👉 Check Action Results for commit 602525a Failed tests: ––– input ––– (dockerd > /var/log/dockerd.log 2>&1 &) > /dev/null ––– output ––– ––– …

github-actions[bot]github-actions[bot] · 2025-01-14

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

Secondary indexes for json attributes don't work with in() expressions

glookkaglookka · 2024-07-08 · 1 · #2381

bugrel::upcoming

Fixed in https://github.com/manticoresoftware/manticoresearch/commit/9a74ed7903b042f740b37f25e2aef5fcac440703

glookkaglookka · 2024-07-05

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

🆕 Update buddy version (fix/fuzzy-no-match)

githubmanticoregithubmanticore · 2024-11-24 · 1 · #2756

…clt 👎 CLT tests in test/clt-tests/buddy/ ✅ OK: 3 ❌ Failed: 1 ⏳ Duration: 74s 👉 Check Action Results for commit 7cda5de Failed tests: ––– input ––– rm -f /var/log/manticore/searchd.log; searchd --stopwait > /dev/null; searchd; if timeout 10 grep -qm1 '\[ …

github-actions[bot]github-actions[bot] · 2024-11-21

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

Disable query cache invalidation

zhangsanhuozhangsanhuo · 2025-01-21 · 2 · #2965

bugwaiting

This is not because of the query cache. If it were, qcache_hits would increase, and you wouldn't see get_hits in the profile (along with some other lines). Manticore is simply this fast when the query isn't cold (i.e. when it doesn't have to wait for the …

sanikolaevsanikolaev · 2025-01-21

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

error: cannot use 'typeid' with '-fno-rtti' when building on Debian 11

pboguslawskipboguslawski · 2023-01-05 · 2 · #977

Please use our building CI Docker as described here https://manual.manticoresearch.com/dev/Installation/Compiling_from_sources#Building-using-CI-docker as it includes everything needed for building. I've just tested and it builds Debian 11 packages fine: …

sanikolaevsanikolaev · 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-2018Nick-S-2018 · 2024-11-14 · 4 · #2299

1👀1

bugest::size_S

Auto UUID creation seems improper? Existing docs getting overwritten even with insert operation

regstuffregstuff · 2024-07-08 · 2 · #2367

bugwaiting

The related forum topic is https://forum.manticoresearch.com/t/auto-uuid-creation-seems-improper-existing-docs-getting-overwritten-even-with-insert-operation/2005/4 I can't reproduce it in Linux / Mac, but the ids there are much longer. @tomatolog pls try …

sanikolaevsanikolaev · 2024-07-03

Update issue template

sanikolaevsanikolaev · 2024-08-09 · 0 · #2503

move lemmatize_uk.so to /usr/share/manticore/modules/

githubmanticoregithubmanticore · 2023-01-06 · 9 · #908

➤ Stan commented: should be fixed at https://gitlab.com/manticoresearch/lemmatizer-uk/-/commit/6e7563d658744cdc59430f684d9796f44fc3afae as discussed the package destination now is the plugin_dir and by default it is the /usr/local/lib/manticore/ The idea …

githubmanticoregithubmanticore · 2023-01-04

🆕 Update buddy version

Update buddy version to: 2.3.9 24052014 607e084 which includes: 607e084 Fix alter rt rename (#296) 1354c47 Fix alter distributed (#295) a0a50fc Skip plugin arg and move sharding create table logic to related plugin (#293)

githubmanticoregithubmanticore · 2024-05-20 · 3 · #2203

Disable query cache invalidation

zhangsanhuozhangsanhuo · 2025-01-21 · 2 · #2965

bugwaiting

Thanks a lot for your help.

zhangsanhuozhangsanhuo · 2025-01-21

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

sanikolaevsanikolaev · 2024-06-05 · 2 · #2263

bugest::size_S

Implement batching inside a join query

glookkaglookka · 2025-01-21 · 7 · #2909

rel::upcoming

There's a problem with this test on gitlab - https://gitlab.com/manticoresearch/dev/-/pipelines/1616897731/test_report?job_name=release_tests

sanikolaevsanikolaev · 2025-01-09

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

juneszhjuneszh · 2025-01-20 · 1 · #2955

Link OpenSSL 3 statically into searchd

sanikolaevsanikolaev · 2025-01-21 · 7 · #2789

rel::upcoming

Decide if it makes sense to enable building the external toolchain image for the aarch64 architecture - https://github.com/manticoresoftware/manticoresearch/pull/2924#issuecomment-2590711433 (this might not be directly related to the changes in this issue …

sanikolaevsanikolaev · 2025-01-17