MySQL HeatWave User Guide

6.9.1.1 The Model Catalog Table

The MODEL_CATALOG table (ML_SCHEMA_user_name.MODEL_CATALOG) has the following columns:

The Model Object Catalog Table

As of MySQL 9.0.0, models are chunked and stored uncompressed in the model_object_catalog table. Each chunk is saved with the same model_handle.

A call to one of the following routines upgrades the model catalog, and store the model in the model_object_catalog table:

If the call to one of these routines is not successful or is aborted, then the previous model catalog is still available.

The model_object_catalog table has the following columns:

  • chunk_id

    A primary key, and an auto-incrementing numeric identifier for the chunk. It is unique for the chunks sharing the same model_handle.

  • model_handle

    A primary key, and a foreign key that references model_handle in the MODEL_CATALOG table.

  • model_object

    A string in JSON format containing the serialized MySQL HeatWave AutoML model.

See Also