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

8763 results 29 ms in manticoresoftware/manticoresearch

Create-table-like-existing-table-with-data

PavelShilin89PavelShilin89 · 2024-05-20 · 0 · #2142

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

@maximium Thanks for bringing this to our attention and for the PR. @Nick-S-2018 pls review the PR.

sanikolaevsanikolaev · 2024-04-30

CREATE TABLE new_table LIKE existing_table WITH DATA

Manticore already supports CREATE TABLE new_table LIKE existing_table . Let's improve it, so it can copy a table with data by: Calling FREEZE against the existing table Copying the files Calling IMPORT TABLE Calling UNFREEZE Test it well in terms of …

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Extended quote and double quote functionality

anStalfanStalf · 2024-05-20 · 1 · #2133

est::NO_ESTIMATE

Supporting double quotes for inserts is not a big deal (probably just a one-line change). Supporting it in other cases (e.g. where match and string comparison) requires more work and better thinking. We need to decide whether we want to support double …

sanikolaevsanikolaev · 2024-05-20

Extended quote and double quote functionality

Proposal: When you use SQL mode in Manticore, single quotes are used to write string data, which are used when writing phrases "Isn't, Let's", etc. in such cases, backslash escaping is used. In classic SQL, there is a lifehack that consists in using …

anStalfanStalf · 2024-05-20 · 1 · #2133

est::NO_ESTIMATE

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

@sanikolaev JFY Import command performs copy itself. So we can skip 2nd step

djklim87djklim87 · 2024-04-24

Improvement of errors when renaming a distributed table different from RT

When we try to rename a table in a mode other than RT, we get no understandable error. It would be nice if the error would indicate that we are using the wrong table type. MRE mysql -v -h0 -P9306 -e "CREATE TABLE index1(f text, s string); CREATE TABLE …

PavelShilin89PavelShilin89 · 2024-05-20 · 0 · #2191

bug

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

@maximium The reason why Thai chars are currently in 'cjk' is that our 'cjk' charset, in fact, comprises the languages which don't use spaces between words. We've done that to help users to deal with setting ngram_chars for such languages. @sanikolaev It …

Nick-S-2018Nick-S-2018 · 2024-05-03

Thai charset

Type of Change (select one): Bug fix New feature Documentation update Description of the Change: Related Issue (provide the link):

Nick-S-2018Nick-S-2018 · 2024-05-20 · 0 · #2151

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Wait for review https://github.com/manticoresoftware/manticoresearch-buddy/pull/257

djklim87djklim87 · 2024-04-24

Thai chars are in the wrong charsets

Bug Description: I believe that Thai characters should be in the non_cjk charset, but not in cjk , because they use some kind of letters, but not logograms like Chinese. Currently I can see these Thai characters in cjk , chinese , japanese , korean …

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

@sanikolaev It appears that the optimal solution is to move the Thai script to a separate charset that can be used along with cjk and non_cjk. Indeed. The problem with having thai in cjk is tokenizing every letter as a word, which is not correct and gives …

maximiummaximium · 2024-05-03

Can't import table with wordforms

Bug Description: Can't import table with wordforms echo "a > b" > /tmp/wf; mysql -h0 -P9306 -e "create table wftest(f text) wordforms='/tmp/wf'" mysql -h0 -P9306 -e "insert into wftest(id) values(1)" mysql -h0 -P9306 -e "import table t2 from '/var/lib/ …

djklim87djklim87 · 2024-05-20 · 8 · #2154

bugrel::upcomingdone

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Done https://github.com/manticoresoftware/manticoresearch-buddy/commit/07968235e4190756e4b623a606a0c7f85b909ec3

djklim87djklim87 · 2024-04-26

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-2018Nick-S-2018 · 2024-05-20 · 2 · #1827

est::size_S

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Reopening to updated the docs.

sanikolaevsanikolaev · 2024-04-29

Allow spaces after comma in fieldlist

This: @(title, body) gives a fatal error, because only this is allowed @(title,body) This is very unintuitive and it is also not consistent with SQL, where adding spaces after field names does work (eg in insert queries). Request to allow spaces after …

cappadaancappadaan · 2024-05-20 · 1 · #1930

est::size_S

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

We've added a new thai charset for the corresponding Thai script and renamed the cjk and non_cjk charset names to cont (continuous) and non_cont (non-continuous), respectively, to convey their meaning in a better way (see, https://en.wikipedia.org/wiki/ …

Nick-S-2018Nick-S-2018 · 2024-05-08

Float precision difference in arm64 vs x86_64

Tests are not passed on Mac ARM (perhaps not only on Mac) likely because of a rounding issue.

sanikolaevsanikolaev · 2024-05-20 · 3 · #1727

est::NO_ESTIMATE

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Done in PR https://github.com/manticoresoftware/manticoresearch/pull/2123

djklim87djklim87 · 2024-05-02

Multi-query request gets stuck

Bug Description: The following request get stuck when executed via MySQL console: mysql> delimiter # mysql> show tables; show tables# If we execute the same request via HTTP API, an empty result is returned: curl localhost 9308/cli_json -d 'show tables; …

Nick-S-2018Nick-S-2018 · 2024-05-20 · 0 · #2165

bugest::size_S

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

Now we need to update the respective parts of our code and tests to match these changes: thai_charset What's important is to make sure the older names are still accessible as aliases to the new ones (or vice versa).

sanikolaevsanikolaev · 2024-05-08

Need INSERT IGNORE support

Hello Is it possible to add support for INSERT IGNORE? In my case, the index is constantly updated in real time, but sometimes full sync is needed. The problem is that at the time of bulk inserting (After TRUNCATE) - another processes insert records and I …

webigorkievwebigorkiev · 2024-05-20 · 7 · #838

1👍1

est::size_L

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

@Nick-S-2018 I don't quite understand the idea of what's done in the PR: are cjk and cont going to be fully identical? should the thai charset be left in both or are we going to leave it in cont , but remove from cjk ? But they can't be aliases then.

sanikolaevsanikolaev · 2024-05-13

Poor work with plugin_dir and index_token_filter

Bug Description: There are several things which are looking more likely defects then features. If a table has non-empty index_token_filter , and is loaded with absent common section in the config, or absent plugin_dir param, daemon issue no messages about …

klirichekklirichek · 2024-05-20 · 2 · #2179

bugest::NO_ESTIMATE

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Pls update the docs. More in the PR

sanikolaevsanikolaev · 2024-05-02

searchd hangs on stop after FREEZE and FLUSH RAMCHUNK

Bug Description: If you start Manticore, FREEZE a table, attempt FLUSH RAMCHUNK and try to stop Manticore, it will hang. MRE: snikolaev@dev2:~$ mysql -P9315 -h0 -e "drop table if exists t; create table t; freeze t; flush ramchunk t;" …

sanikolaevsanikolaev · 2024-05-20 · 0 · #2184

bugest::size_S

Thai chars are in the wrong charsets

maximiummaximium · 2024-05-20 · 7 · #2103

bugest::size_S

non_cjk remains equal to non_cont , so it's ok to alias them in the C++ code what changes is that previously cjk included Thai character, now it won't, but it's expected and there are 2 options now: cjk, thai or just cont The breaking change related with …

sanikolaevsanikolaev · 2024-05-15

Allow Buddy to exceed the max_connections configuration.

Proposal: We should implement the logic to allow Buddy to use its own connections without limitations. This means the max_connections parameter in the configuration should not affect Buddy, because it's the sidecar that should operate without external …

donhardmandonhardman · 2024-05-20 · 0 · #2197

est::size_S

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Done

djklim87djklim87 · 2024-05-05

Engine columnar crash with infinity core dump loop

Bug Description: UPDATE May 17 2024 Find MRE here https://github.com/manticoresoftware/manticoresearch/issues/2176#issuecomment-2116580344 Original description: When using the engine "columnar" im getting a core dump, problem is i couldnt find what really …

2peter32peter3 · 2024-05-20 · 9 · #2176

bug

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Reopening since: it seems to be not working on dev2: ysql> show version; ------------- how version ------------- -----------+--------------------------------+ Component | Version | -----------+--------------------------------+ Daemon | 6.2.13 694cbe53d@ …

sanikolaevsanikolaev · 2024-05-06

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 …

sanikolaevsanikolaev · 2024-05-17 · 7 · #1778

2👍2

est::size_L

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

@PavelShilin89 we need to cover the new functionality with tests

djklim87djklim87 · 2024-05-06

Possible issue with Buddy on Windows

Bug Description: We seem to have a peculiar issue while using Buddy on Windows. We should try to replicate it on another machine and validate if it's a localized issue or a more widespread problem. Due to the changes we've made in how we work with …

donhardmandonhardman · 2024-05-17 · 9 · #2116

bug

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Reopening since: * it seems to be not working on dev2: ``` mysql> show version; -------------- show version -------------- +-----------+--------------------------------+ | Component | Version | +-----------+--------------------------------+ | Daemon | 6.2 …

djklim87djklim87 · 2024-05-06

Implement Protection Flags for Tables and Clusters

We must add new flag functionalities to the Manticoresearch daemon to safeguard our sharded tables and internal clusters from unauthorized alterations. This enhancement will ensure that these crucial components are only modified through Buddy, thus …

donhardmandonhardman · 2024-05-17 · 11 · #1423

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Fixed in 60c90e774faeb9d38b23ea8ab24919aad3bdd7c3 LGTM now.

sanikolaevsanikolaev · 2024-05-07

Jieba integration

ICU is not a good choice in China. In addition, it is very important for Chinese word segmentation to customize the dictionary, because the application of words in different industries is completely different. Taking jieba word segmentation as an example, …

oabuoabu · 2024-05-17 · 18 · #931

5👍5

CREATE TABLE new_table LIKE existing_table WITH DATA

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

@djklim87 a case was seen in which a table with data could not be copied. Please note that the folder itself is created. root@68d3b57be072:/# echo "a > b" > /tmp/wf; mysql -P9306 -h0 -e "drop table if exists t; create table t(f text) wordforms='/tmp/wf'; …

PavelShilin89PavelShilin89 · 2024-05-07