MySQL HeatWave on AWS  /  HeatWave AutoML  /  HeatWave AutoML Requirements

10.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 and ALTER privileges on the schema that contains the machine learning datasets; for example:

      mysql> GRANT SELECT, ALTER ON schema_name.* TO 'user_name'@'%';
    • SELECT and EXECUTE on the MySQL sys schema where HeatWave AutoML routines reside; for example:

      mysql> GRANT SELECT, EXECUTE ON sys.* TO 'user_name'@'%';