Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-unload-tables.html
Unload Tables Unloading a table from MySQL HeatWave may be necessary to replace an existing table, to reload a table, to free up memory, or simply to remove a table that is no longer used. To unload a table manually, specify the SECONDARY_UNLOAD ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-explainers.html
After the ML_TRAIN routine, use the ML_EXPLAIN routine to train model explainers for MySQL HeatWave AutoML. The Fast SHAP model explainer, specified as fast_shap, is a subsampling version of the SHAP model explainer, which usually has a faster ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-model-load.html
A model remains loaded until the model is unloaded using the ML_MODEL_UNLOAD routine or until the MySQL HeatWave Cluster restarts. MySQL 9.0.0 introduces support for large models that changes how MySQL HeatWave AutoML stores models. ML_MODEL_LOAD ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-predictions-ml-predict-row.html
mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); The following example loads the trained model. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-scoring-a-recommendation-model.html
item_metadata: As of MySQL 9.5.0, it defines the table that has item descriptions. user_metadata: As of MySQL 9.5.0, it defines the table that has user descriptions. mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model ... After generating predicted ratings/rankings and recommendations, you can score the model to assess its ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-topic-modeling-prediction.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('topic_modeling_use_case', NULL); Run topic modeling on the dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ... After ...
https://dev.mysql.com/doc/heatwave-aws/en/ha-overview.html
Overview of High Availability 12.1 Overview of High Availability A high availability DB System is made up of three MySQL instances: a primary instance and two secondary instances. Each MySQL instance utilizes the same amount of block volume ...All ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-dbsystems.html
About DB Systems 3.1 About DB Systems A DB System is a logical container for the MySQL instance. It also provides a read/write endpoint enabling you to connect to the MySQL instance using the standard MySQL protocols. Only the MySQL instance is ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-oci-integration.html
Integration with Oracle Cloud Infrastructure (OCI) 1.3 Integration with Oracle Cloud Infrastructure (OCI) MySQL HeatWave on AWS is integrated with Oracle Cloud Infrastructure (OCI) for identity and access management, and for billing and cost ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-session-variables.html
Session Variables 19.9 Session Variables Session variables remain in effect during the session until the variable changes or the session ends. For new connections, a session variable value is initialized with the corresponding global system ...