12.1 HeatWave AutoML Requirements
HeatWave AutoML has the following requirements:
-
An operational DB System with sufficient resources and a HeatWave Cluster. See the following:
-
The MySQL account for the user who will train a model does not have a period character (".") in the username. For example, the username
'joesmith'@'domain'
can train a model, but the username'joe.smith'@'domain'
cannot. For more information about this requirement, see 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'@'%';
-
Parent topic: HeatWave AutoML