Showing entries 833 to 842 of 44804
« 10 Newer Entries | 10 Older Entries »
Machine Learning with MySQL HeatWave and predictions in Grafana

In MySQL HeatWave, the Database as a Service (DBaaS) offered by Oracle, Machine Learning is incorporated to provide database administrators (DBAs) and developers with an optimal experience.

Those tools are the Auto ML advisors like the autopilot indexing for example.

MySQL HeatWave is also an invaluable asset for Data Analysts, offering straightforward tools that streamline the process of creating predictive models through data training and scoring.

The Data

The data we are using is the Bank Marketing data related to marketing campaigns over phone calls of a Portuguese banking …

[Read more]
Executing System Commands in MySQL Shell

MySQL Shell offer many features to make life easier for DBAs and developers. In this post we talk about how to execute system commands inside MySQL Shell.

TLS in MySQL NDB Cluster 8.4 with MCM 8.4

MySQL NDB Cluster Manager 8.4, or MCM 8.4, was recently released as part of the 8.4 LTS (Long Term Support) release series by the MySQL team. If you are unfamiliar with MCM, it is a commercial addition, available with the commercial version of MySQL NDB Cluster. MCM simplifies the creation and management of your MySQL […]

MySQL NDB Cluster replication: Merge replication for active-active clusters

This is the fifth article in our series about MySQL NDB Cluster replication. In many cases, it’s enough to replicate between two clusters located in different data centers or cloud regions to achieve the desired availability level and disaster protection. However, for some use cases, there is a need to replicate data between even more […]

Running External Scripts in MySQL Shell

Over the last few years, I have become quite smitten with MySQL Shell. For those who may not be familiar with MySQL Shell, it is a new(ish) command line interface (CLI) for connecting to and managing MySQL instances. During a recent episode of Inside MySQL: Sakila Speaks, Fred and I talked to Miguel Araujo about many of the helpful […]

Running External Scripts in MySQL Shell

MySQl Shell offer many features to make life easier for DBAs and developers. In this post we talk about how to execute external JavaScript, Python, or SQL files indie MySQL Shell.

Executing System Commands in MySQL Shell

Over the last few years, I have become quite smitten with MySQL Shell. For those who may not be familiar with MySQL Shell, it is a new(ish) command line interface (CLI) for connecting to and managing MySQL instances. During a recent episode of Inside MySQL: Sakila Speaks, Fred and I talked to Miguel Araujo about many of the helpful […]

Where can you find MySQL during June – August 2024

It’s a time to announce a list of conferences and events where you can find the MySQL Community and the MySQL team during June – August 2024 plus one conference at the end of May. See the list below. May 2024: June 2024: July 2024: August 2024:  

Where can you find MySQL during June - August 2024

Where is MySQL, 6-9, 2024

Making my MySQL InnoDB Cluster safe from naughtiness

TL;DR: Make sure to run “SET persist_only disabled_storage_engines=’MyISAM’, persist sql_generate_invisible_primary_key=ON;” on all instances and restart each one in your MySQL InnoDB Cluster.

Ok, what does “safe from naughtiness” mean?:
– Anyone creating tables that aren’t InnoDB, as this doesn’t make sense, after all, it is an “InnoDB” cluster.
– Making sure all tables have a Primary Key (invisible or not).
– Making sure that my (invisible) primary keys are visible to the cluster as it will rightfully complain if they aren’t!

This basically means that once you’ve got it all up and running you won’t run into those horrible situations whereby someone, somewhere, creates a MyISAM table that didn’t have a Primary Key and thus leave you with a broken cluster.

Eg.

MySQL rtnode-01:3306 ssl JS > vlc.status()
{
 "clusterName": "VLC",
 "clusterRole": "PRIMARY", …
[Read more]
Showing entries 833 to 842 of 44804
« 10 Newer Entries | 10 Older Entries »