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

2447 results 118 ms in manticoresoftware/manticoresearch

Fixed several join-related issues: join vs json facets, join vs json count distinct, joined OR filters; added better error reporting for join queries

Fixed several join-related issues: join vs json facets, join vs json count distinct, joined OR filters; added better error reporting for join queries

glookkaglookka · 2024-03-25 · 3 · #1997

JOIN via JSON request

donhardmandonhardman · 2024-09-13 · 13 · #2208

est::size_Sfeature::join

…use: { "join": [ { "type": "inner", "table": "another", "on": [ { "left": { "table": "one", "field": "id…join syntax: The join property is an array that contains one or more join…objects. Each join object represents a…

donhardmandonhardman · 2024-06-13

CALL SNIPPETS marks only one keyword for ZONESPAN query, but all for ZONE

…* zonespan, with ZONESPAN query only one keyword match is marked while…

malairemalaire · 2018-11-05 · 0 · #113

need to test if searchd.max_packet_size affects memory consumption

tomatologtomatolog · 2024-07-24 · 4 · #2402

bug

…i in {1..1000}; do mysql -h0 -P 27406…"show status like 'uptime'"; done for i in {1..1000…}; do mysql -h0 -P 27406…e "select * from test"; done and for HTTP value 128M…in {1..1000}; do curl 127.0.0.…-d 'SHOW TABLES'; done however if I set 2048M…

tomatologtomatolog · 2024-07-12

JOIN: stored fields from the joined table

…'); select * from people left join surname on people.surname_id…-------------- select * from people left join surname on people.surname_id….surname from people left join surname on people.surname….surname from people left join surname on people.surname…

sanikolaevsanikolaev · 2024-05-23 · 1 · #1915

feature::joinrel::6.3.0

Add support for Ubuntu Noble 24.04

sanikolaevsanikolaev · 2024-10-01 · 13 · #2091

est::size_Srel::6.3.0

If all is ok - announce Ubuntu Noble support in the changelog Done. Closing the issue as done.…

sanikolaevsanikolaev · 2024-05-16

ZONESPAN speed implications

Does using zones and the ZONESPAN operator have known speed implications? If I search for a phrase on an index with 2-3 million rows, for "luke skywalker" the results come in instantenously, but if I use zones (so I don't get false positives for movies …

andrisiandrisi · 2022-03-29 · 3 · #737

Daemon stops processing Kibana requests after restart

Nick-S-2018Nick-S-2018 · 2024-09-09 · 8 · #2246

bug

But that should be done after refactor https://github.com/manticoresoftware/manticoresearch/issues/879 finished That's done…

sanikolaevsanikolaev · 2024-07-16

ZONESPAN + @field specifier

Is it possible to specify a field when using the ZONESPAN operator? Doesn't seem so. Perhaps we're supposed to create zones mapped to fields, so if I want to have an index of movies with titles, cast, languages, etc. then I'd simply create separate zone …

andrisiandrisi · 2022-03-30 · 1 · #736

Defects in testing CI (technical debt) which are good to fix

klirichekklirichek · 2024-09-30 · 4 · #1800

est::NO_ESTIMATE

…shared DB. But we could do the same thing in different…performing test, so that running one test knows nothing about parallel…'bar', whatever. That is - different one, to avoid collisions. On the…several instances of ctest on one an same machine in parallel…

klirichekklirichek · 2024-02-06

Join cache and batching

…, count(*) c, test_join.name FROM taxi1 JOIN test_join ON taxi1.trip…_type=test_join.gid GROUP…) N times we can run one query ( select id, name from…) is faster than pushing matches one by one. This approach has the…

glookkaglookka · 2024-03-06 · 0 · #1897

est::NO_ESTIMATEfeature::join

Feature request: Connection from common GUI (eg MySql Workbench, Devart dbForge,...)

gootchickgootchick · 2024-09-25 · 14 · #1019

@Nick-S-2018 what has been done within this one? Does Manticore work well with Devart dbForge now?

sanikolaevsanikolaev · 2023-08-16

Fixed join vs distinct facets; fixed join vs implicit groupby

Fixed join vs distinct facets; fixed join vs implicit groupby

glookkaglookka · 2024-05-28 · 0 · #2243

INNER/LEFT JOIN

sanikolaevsanikolaev · 2024-07-17 · 15 · #1673

3đź‘Ť3

est::size_XLrel::6.3.0

…is to implement INNER/LEFT JOIN functionality with the following…cannot do select *, (nums2.n + 3) * n from nums left join…supported. Same with select * ... join ... , i.e. you won'…&cid=C7NSLK1NE) Grouping by joined JSON attributes that generate multiple…

sanikolaevsanikolaev · 2024-03-06

Implement multi-threaded faceted join queries

…multi-threaded execution of facet join queries. Multi-threaded execution…several sorters in the joined query, join multi sorter replaces the…valid pointers inside the multi join sorter. This can be…pointers or by leaving one multisorter and changing the…

glookkaglookka · 2024-03-27 · 0 · #1992

est::size_Mfeature::join

Native support for message queues

AbstractiveNordAbstractiveNord · 2024-09-25 · 39 · #1500

1đź‘Ť1

est::size_L

docs update https://github.com/manticoresoftware/manticoresearch/pull/2128 Done and waiting for the functionality to be released (it's not going to be included in the upcoming one).…

sanikolaevsanikolaev · 2024-05-21

JOIN multiple tables

The task is to add support for joining multiple tables, so it's possible to execute queries like: select * from people left join names on people.name_id = names.id left join surnames on people.surname_id = surnames.id

sanikolaevsanikolaev · 2024-03-06 · 1 · #1916

est::size_Lfeature::join

POC: integrate Rust ML library with Manticore Search C++ code

sanikolaevsanikolaev · 2024-10-01 · 13 · #2074

1đź‘€1

To resume, what @donhardman has done proves the rust library can…doesn't have anything to do with Manticore. As discussed on…with Manticore. What @AbstractiveNord has done here https://github.com/manticoresoftware…

sanikolaevsanikolaev · 2024-05-07

Implemented mixed filters in JOIN (from left and right tables with a filter tree); fixed misc join-related issues; added specialized join filters

Implemented mixed filters in JOIN (from left and right tables with a filter tree); fixed misc join-related issues; added specialized join filters

glookkaglookka · 2024-04-30 · 0 · #2113

Ability to support using index fields as ranking factor

scruelscruel · 2024-07-14 · 4 · #2095

waiting

currently, I have to do two queries to achieve this, one for less than, one for gather than Pls provide an example. I don't quite understand what you mean.

sanikolaevsanikolaev · 2024-04-30

Filter by joined expression

…on an operand from the joined table, you can't…n cond from nums inner join nums2 on nums2.id = nums…n cond from nums inner join nums2 on nums2.id = nums…n cond from nums inner join nums2 on nums2.id = nums…n cond from nums inner join nums2 on nums2.id =…

sanikolaevsanikolaev · 2024-03-19 · 1 · #1919

est::size_Mfeature::join

JOIN via JSON request

donhardmandonhardman · 2024-09-13 · 13 · #2208

est::size_Sfeature::join

Is this syntax "left": { "table": "one", "field": "id" }, "operator": "=", "right": { "table": "…than something like this? "condition": "one.id=another.id" If we…

glookkaglookka · 2024-06-14

sql_joined_field charset

…of two tables, each with one line of Cyrillic text. utf8mb4…to use data from sql_joined_field in stored_fields, we…of Cyrillic from all sql_joined_field: Manticore 6.0.4…

madgreen1madgreen1 · 2023-07-13 · 9 · #1153

bug

Lookup for vector in different index while searching for similar docs.

starinacoolstarinacool · 2024-09-10 · 11 · #2351

est::size_Sbuddy_candidatefeature::vector_search

If joining can lookup a vector from index A and find similar docs in table B then it will work. But I do not see how it could be done with joins.…

starinacoolstarinacool · 2024-07-02

Manticore crashes when search with ZONESPAN is done through api

Describe the bug When making a request through api with ZONESPAN operator manticore server crashes. To Reproduce Steps to reproduce the behavior: Create an index with 'index_zones' => 'p','html_strip' => '1' settings (using php-client), field with text …

acya-skulskayaacya-skulskaya · 2022-06-11 · 6 · #797

bug

Indexer crashes on merging main and delta indexes

GrabienGrabien · 2024-09-04 · 37 · #1578

bug

last control check - indexing done (take ~6 hours), checking done, no problems revealed…passed, 918.1 sec elapsed One extra thing - hashes of index…

klirichekklirichek · 2024-04-19

INNER/LEFT JOIN

…is to implement INNER/LEFT JOIN functionality with the following limitations…* from purchases AS p left join articles AS a ON a…

sanikolaevsanikolaev · 2024-07-17 · 15 · #1673

3đź‘Ť3

est::size_XLrel::6.3.0

Manticoresearch crashes with memory issues

RyDoReRyDoRe · 2024-09-24 · 13 · #2525

…identical. We use joins with the sql_joined_field in some of…, to see if there is one specific shard that fails.

RyDoReRyDoRe · 2024-08-28

index_zones vs html_index_attrs

It looks like index_zones disables html_index_attrs and it may be wrong: index_zones + html_index_attrs: mysql> create table t(f text) html_strip='1' html_index_attrs='a=href' index_zones='a'; insert into t values(0, '<a href="href1" title="title1">a1</a> …

githubmanticoregithubmanticore · 2022-01-20 · 0 · #520

Upgrading manticore on RHEL 8.8 using official repo results in many dnf errors

digiravedigirave · 2024-07-05 · 5 · #1178

…Do you recommend we delete everything…does seem to work. One thing we did notice that is different…when in the past only one ran. # ps -ef|grep manticore…

digiravedigirave · 2023-06-24

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

select * from t inner join t2 on t.id = t2.…', 1); select * from t inner join t2 on t.id = t2…sec) -------------- select * from t inner join t2 on t.id = t2…() works: select * from t inner join t2 on t.id = t2…

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

bugest::size_Sfeature::join

INNER/LEFT JOIN

sanikolaevsanikolaev · 2024-07-17 · 15 · #1673

3đź‘Ť3

est::size_XLrel::6.3.0

…it possible to do a join between distributed indexes…as well ? When I'm trying to do…a join between tables on…are inside the distributed ones), it returns result as…both left/inner join on a distributed level…

TomislavAnastasovskiTomislavAnastasovski · 2024-06-10

Default path on join cluster

…our next step, we'll join the cluster using the current…. The command is as follows: JOIN CLUSTER c2 at '127.0…) would function in this manner: JOIN CLUSTER c2 at '127.0…

donhardmandonhardman · 2023-09-06 · 1 · #1366

est::size_M

POC: integrate Rust ML library with Manticore Search C++ code

sanikolaevsanikolaev · 2024-10-01 · 13 · #2074

1đź‘€1

…code. This library should have one simple function - converting text to…basic implementation that exposes just one function. This function should accept…want some DLL, which expose one function. What's text argument…

AbstractiveNordAbstractiveNord · 2024-04-25

JOIN via JSON request

Proposal: We should implement a JOIN operation that can be executed…field with the specified values: { "join": [ { "table": "another table", "fields": ["source…

donhardmandonhardman · 2024-09-13 · 13 · #2208

est::size_Sfeature::join

Kibana fails to start

Nick-S-2018Nick-S-2018 · 2024-09-10 · 4 · #2467

bugest::size_M

@Nick-S-2018 as discussed this issue is likely done and can be closed. Please do.…

sanikolaevsanikolaev · 2024-09-10

Implemented table join

Implemented table join…

glookkaglookka · 2024-03-08 · 44 · #1855

mysqldump: keep cluster name

sanikolaevsanikolaev · 2024-09-27 · 6 · #2249

…specific to mysqldump flavour. Mine one doesn't produce couple of…selects, but one huge one instead (test 272). And…cluster or not. (looks as one-line change, as such requirement…

klirichekklirichek · 2024-09-25

Slow SELECT ... JOIN + FACET

select ... join + facet against 2 tables of…, actor_ids from movies inner join movies_liked on movies_liked…. Perhaps after fixing that, this one will become faster.

sanikolaevsanikolaev · 2024-03-19 · 2 · #1950

est::size_Mfeature::join

Document SI for JSON after initial testing

glookkaglookka · 2024-08-07 · 3 · #2348

rel::upcomingest::size_S

…/manticoresearch-php/issues/215 is done since this is not working…/manticoresearch-php/issues/215 is done the section about secondary_index…

sanikolaevsanikolaev · 2024-08-07