Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-start-process.html
start process {[--initial|-i] nodespec | --added} cluster_name nodespec: {nodetype | process_id_list} process_id_list: process_id[, process_id[, ...]] This command starts the MySQL NDB Cluster processes specified by nodespec in the cluster named ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-stop-agents.html
stop agents [[--hosts=host_list] site_name] This command stops one or more MySQL Cluster Manager agents on one or more hosts. The result of the following command is to stop MySQL Cluster Manager agents running on hosts kolja and torsk, both of ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-fewer-data-nodes.html
While the methods described in Section 4.6.2, “Basic MySQL NDB Cluster Backup and Restore Using MySQL Cluster Manager” will not work in that case, you can perform the transfer by just using the backup cluster command and the ndb_restore program.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-interface-usage.html
Each asynchronous function has the same name as its synchronous counterpart, plus a _nonblocking suffix: mysql_fetch_row_nonblocking(): Asynchronously fetches the next row from the result set. mysql_real_query_nonblocking(): Asynchronously executes ... This section describes how to use the C API asynchronous ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-data-structures.html
Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a pointer to a MYSQL_STMT data structure. To specify the statement to prepare, pass the MYSQL_STMT ...The following discussion describes the prepared statement data types in ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api-components.html
SQL statements: INSTALL PLUGIN registers a plugin in the mysql.plugin table and loads the plugin code. UNINSTALL PLUGIN unregisters a plugin from the mysql.plugin table and unloads the plugin code. The mysql.plugin table lists each plugin that was ...The WITH PARSER clause for full-text index creation associates a full-text parser plugin with a given FULLTEXT ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/preface.html
This document describes what you need to know when working on the MySQL 8.4 code. To track or contribute to MySQL development, follow the instructions in Installing MySQL Using a Development Source Tree. If you are interested in MySQL internals, ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-daemon-plugins.html
This section describes how to write a daemon server plugin, using the example plugin found in the plugin/daemon_example directory of MySQL source distributions. That directory contains the daemon_example.cc source file for a daemon plugin named ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-information-schema-plugins.html
For example code that implements such plugins, see the sql/sql_show.cc file of a MySQL source distribution. Other MySQL or general header files might also be needed, depending on the plugin capabilities and requirements. #include <sql_class.h> ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-explainers.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 ...