Search Results
https://dev.mysql.com/doc/extending-mysql/9.7/en/porting.html
Note If you create a new port of MySQL, you are free to copy and distribute it under the GPL license, but it does not make you a copyright holder of MySQL. Before attempting to port MySQL to other operating systems, check the list of currently ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-daemon-plugins.html
A daemon plugin is a simple type of plugin used for code that should be run by the server but that does not communicate with it. This section describes how to write a daemon server plugin, using the example plugin found in the plugin/daemon_example ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-information-schema-plugins.html
It creates a simple INFORMATION_SCHEMA table named SIMPLE_I_S_TABLE that has two columns named NAME and VALUE. This section describes how to write a server-side INFORMATION_SCHEMA table plugin. For example code that implements such plugins, see the ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-keyring-plugins.html
The general descriptor also refers to keyring_system_variables, a structure that exposes a system variable to the SHOW VARIABLES statement: static struct st_mysql_sys_var *keyring_system_variables[]= { MYSQL_SYSVAR(data), NULL }; The keyring_init ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-plugins-overview.html
The following procedure provides an overview of the steps needed to create a plugin library. These conditions apply to plugin writing: MySQL header files used by plugins contain C++ code, so plugins must be compiled as C++ code. You must compile ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-plugins.html
To create a plugin library, you must provide the required descriptor information that indicates what plugins the library file contains, and write the interface functions for each plugin. Every server plugin must have a general descriptor that ...
https://dev.mysql.com/doc/ndb-operator/9.7/en/crd-ndbdatanodespec.html
A PVC is created for each data node by the StatefulSet controller and is loaded into the data node pod and the container. config (map[string]* Kubernetes util/intstr.IntOrStringConfig): (optional) A map of default NDB data node configuration ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/myai-ml-machine-learning.html
This chapter describes how to create and manage machine learning models with the AutoML feature of MySQL AI.
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-anomaly-detection.html
To generate your own datasets to create machine learning models in MySQL AI, learn how to Generate Text-Based Content. Anomaly detection, which is also known as outlier detection, is the machine learning task that finds unusual patterns in data.
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-classification.html
To generate your own datasets for creating machine learning models in MySQL AI, learn how to Generate Text-Based Content. Classification models predict the discrete value of input data to specific predefined categories. Some examples of ...