I’m testing manticoresearch if it fits our needs but already stumbling on the “easy” parts. The SQL (mysql) part is not very intuitive:
GUI tool (datagrip)
can connect but not run any commands, always some error
mysql shell
always syntaxerror
low-code tools / pipelining
syntax errors
it really seems the cli tool is the only thing that actually works an one can use the SQL interface. But that isn’t a very useful tool in context of actual usage in a real application or for testing and then especially bulk insertion of data in way not needing extensive coding.
it seems in the end one is forced to use the official manticoresearch client anyway making the whole sql interface a bit pointless?
all mysql libraries work fine with ManticoreSearch , however different tool could issue some specific queries and as SphinxQL is not fully compatible MySQL interface, could fail with error.
You could try to set mysql_version_string = 5.0.37 at the searchd section of the config as described at our documentation to prevent send of specific queries.
i think the shell (which is different from the commandline client) does some “clever” stuff that breaks things just like the “GUI tools” do.
(with shell I meant this one: https://dev.mysql.com/doc/mysql-shell/8.0/en/).
The cli client does work fine so we can forget about the shell, i don’t really mind that one.
Data Grip:
Create table statements fail. I tried with examples from the documentation:
The error is to me meaningless: "Found input string: “”
When I create the table with mysql cli client and then “Show Tables;” works in data grip.
low-code tool I mean KNIME which has a mysql connector but here I suspect they are also doing “clever” things in the background which really only works with mysql. the idea is to have an easy way to populate a db with test data.
mysqlsh is not for sending queries to your mysql databases. The mysqlsh program is for configuring the server mostly for use in cluster configurations. You want mysql workbench or the mysql command line that Sergey already provided. mysql -u username -p