HeatWave on AWS  /  MySQL HeatWave AutoML  /  MySQL HeatWave AutoML Requirements

13.1 MySQL HeatWave AutoML Requirements

MySQL HeatWave AutoML has the following requirements:

  • An operational DB System with sufficient resources and a MySQL 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 MySQL 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 MySQL HeatWave AutoML routines reside; for example:

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