Before you begin using HeatWave AutoML, the following is assumed:
You have an operational MySQL DB System and are able to connect to it using a MySQL client. If not, complete the steps described in Getting Started with MySQL HeatWave Service.
Your MySQL DB System has an operational HeatWave Cluster. If not, complete the steps described in Adding a HeatWave Cluster.
The MySQL account that you will use to train a model does not have a period character (".") in its name; for example, a user named
'joesmith'@'
is permitted to train a model, but a user named%
''joe.smith'@'
is not. For more information about this requirement, see Section 3.16, “Limitations”.%
'-
The MySQL account that will use HeatWave AutoML has been granted the following privileges:
-
SELECT
andALTER
privileges on the schema that contains the machine learning datasets; for example:mysql> GRANT SELECT, ALTER ON schema_name.* TO 'user_name'@'%';
-
SELECT
andEXECUTE
on the MySQLsys
schema where HeatWave AutoML routines reside; for example:mysql> GRANT SELECT, EXECUTE ON sys.* TO 'user_name'@'%';
-