Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-async-apptask-logs.html
If the value is NULL, all the log entries for the specified task ID are displayed. The app_task_logs routine returns a list of logs associated with an application-level task. This topic contains the following sections: Syntax Syntax Example See ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-async-apptask-status-list.html
If the value is NULL, status information for all tasks is included. If the value is NULL, the offset defaults to 0, and the result is displayed starting from the first row. If the value is NULL, the limit defaults to 20, and up to 20 rows are ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-async-task-list.html
If the value is NULL, tasks of all types are included. If the value is NULL, the offset defaults to 0, and the result is displayed starting from the first row. If the value is NULL, the limit defaults to 20, and up to 20 rows are displayed. The ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-async-task-logs.html
If the value is NULL, all the log entries for a given task ID are displayed. The task_logs routine returns a list of logs associated with a task. This topic contains the following sections: Syntax Syntax Example See Also Syntax mysql> SELECT ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-defining-secondary-engine.html
Defining Secondary Engine For each table that you want to load into MySQL HeatWave Cluster, you must define the MySQL HeatWave query processing engine (RAPID) as the secondary engine for the table. Then, the MySQL HeatWave query processing engine ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-generate-content.html
MySQL offers high performance, reliability, and scalability, making it a popular choice for developers worldwide.\n\n[DONE]", "error": null} *************************** 2. It's a rapidly evolving field with applications in various sectors including ... The following sections in this topic describe how to generate new text-based content using MySQL HeatWave GenAI: Before You Begin Generate Content Run Batch Queries What's Next Before You Begin Review the MySQL HeatWave GenAI requirements and ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-create-table-auto-parallel-load-task.html
mysql> CALL sys.HEATWAVE_LOAD( '[{"db_name": "db_1", "tables": [{ "table_name": "table_1", "engine_attribute": { "file": [{"uri": "oci://bucket_1@tenant_1/data_file_1.csv"}] } }] }]', NULL); While you can specify all parameters in one command, it ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-anomaly-detection-model-types.html
When training the model, the target_column_name parameter must be set to NULL. The target_column_name parameter must specify a column whose only allowed values are 0 (normal), 1 (anomalous), and NULL (unlabeled). All rows are used to train the ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-classification-generate-explanation.html
For the option to set the user name, you can set it to NULL. mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('classification_use_case', NULL); Use the ML_EXPLAIN_TABLE routine ... After training a classification model, you can query the default model explanation or query new model ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-model-quality.html
mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about training and loading models, see Train a Model and Load a Model. mysql> CALL sys.ML_SCORE(table_name, target_column_name, model_handle, metric, score, [options]); The ...