Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-metadata-queries-query-offload.html
The sys.processlist and sys.x$processlist views in the MySQL sys Schema also include an execution_engine column.
https://dev.mysql.com/doc/heatwave/en/mys-hw-oci-integration.html
Native integration with these services makes it easier for existing applications to use MySQL HeatWave. MySQL HeatWave leverages parallel processing to read and load data from files stored in Object Storage buckets. You can also use parallel ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-supported-cloud-platforms.html
This means that all the layers and components of MySQL HeatWave are deployed and fully managed on selected cloud platforms. MySQL HeatWave also supports hybrid deployments; it is fully compatible with MySQL on-premise. This provides you with the ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-onnx-import-overview.html
You cannot directly load models in ONNX format (.onnx) into a MySQL table. MySQL HeatWave AutoML supports the following ONNX model types: An ONNX model that has only one input, and it is the entire MySQL table. An ONNX model that has more than one ...The models require string serialization and conversion to Base64 encoding before you use the ML_MODEL_IMPORT ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-unload-model.html
The ML_MODEL_UNLOAD routine unloads a model from MySQL HeatWave AutoML. Before You Begin Review the following Train a Model Load a Model Unload a Model If you are on MySQL 9.0.0 or higher, you can verify what models are currently loaded with the ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-create-repl-user.html
Do the following to add a replication user to the source server: Open MySQL Shell and connect to the MySQL source server. Creating a Replication User On a Source Server 8.4 Creating a Replication User On a Source Server The replication user for ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-dbsystem-edit.html
Editing a DB System 3.4.3 Editing a DB System Use the MySQL HeatWave Console to edit details of a DB System and various options for it. (For MySQL HeatWave AutoML features only) Permissions to assume the MySQL HeatWave AutoML role. Do the following ...This task requires the following: (For data import feature only) Permissions to assume the data import ...
https://dev.mysql.com/doc/connector-j/en/connector-j-opentelemetry.html
MySQL Enterprise Server 8.4.0 has the capability of collecting observability data for the server operations in the OpenTelemetry format (see Telemetry for details). MySQL Connector/J 8.4.0 introduces the client-side counterpart feature, with the ...
https://dev.mysql.com/doc/connector-j/en/connector-j-time-instants.html
TIMESTAMP is the only MySQL data type designed to store instants. Starting from MySQL 8.0.19, you can also specify a time zone offset when storing TIMESTAMP values (see The DATE, DATETIME, and TIMESTAMP Types for details), in which case the ...
https://dev.mysql.com/doc/refman/8.4/en/alter-table-examples.html
However, column c2 uses in-memory storage, as can be seen here in the output of SHOW CREATE TABLE: mysql> SHOW CREATE TABLE t3\G *************************** 1. For NDB tables, it is also possible to change the storage type used for a table or column. row *************************** Table: t1 Create Table: CREATE TABLE `t2` ( `c1` int(11) DEFAULT NULL ) /*!50100 TABLESPACE ts_1 STORAGE DISK */ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 1 row in set (0.01 sec) To change the storage type of an individual column, you can use ALTER TABLE ...