Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
One of the most useful tuts yet! Everyone needs a good hard to kill DB. Thanks!
It is worth mentioning the limitations of using a cluster compared to a single node. This is primarily the lack of distributed table locking. Developers may think that their applications never make use of table locks and have managed to use transactions for everything, but table locking is a key part of ALTER TABLE queries when running an application’s database migrations. Also, some queries, such as TRUNCATE run an alter table query implicitly without developers perhaps realizing. The MySQL docs for the limitations of running multiple MySQL cluster nodes can be found here: https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-limitations-multiple-nodes.html
Can NDB do Full text searching yet, all the info I see on it is old? Would like to experiment with this but not sure, any other recommendations for getting around it if not?
Hello, i have got 2 server running mysql databse (2 differents database) im not sure when the connect them to the cluster. I have to connect them on the manager server after settin gup the 2 node server & the manager one?
Great tutorial, In a disaster scenario, does a single cluster node work as single regular DB server? if all other nodes and MySQL cluster manager is not accessible or down. Thanks
Hi I have 2 Problems and maybe somebody here can help me with them. 1 My notes are stuck in “starting” on the manager but on the notes they say they are connected.
2 Also for some reason my mysqld(API) is not getting connected either
I hope somebody can help me
with best regards Pinche
i can’t fine /opt/mysql/server-5.7/scripts/mysql_install_db . can some one show me how the mysql_install_db
Great tutorial. I’m configuring Master - Slave MySQL Cluster replication between two MySQL Clusters . Someone brief me about what configuration changes required and where it is need to do. Thanks in advance.
Question Regarding MySQL Cluster Ports
Hello,
I am on Linux platform with MySQL NDB 5.7. I am trying to monitor all traffic related to MySQL clustering - between data nodes, management node and sql nodes. To that end, I used netstat to list all open ports listening on my machine before starting MySQL cluster. Then, I started MySQL cluster and ran netstat again. I assumed that the ports that were listening the second time around, but not the first time, were related to MySQL clustering. But there are two problems with this. First, there could be ports opened by other processes between the two netstat runs. Second, MySQL might open other ports after I ran the netstat command the second time. *****What is the best way to go about finding all ports being used by MySQL for clustering purposes? ***** I believe ephemeral ports are picked dynamically, so perhaps if I knew all the MySQL clustering related processes that would be running, I can figure out every port that they are using. Pointers will be very welcome.