Search Results
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training-an-anomaly-detection-model.html
Log lines are grouped according to their respective source (for example, logs from multiple MySQL databases that are in the same table). mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. For ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training.html
The training dataset used with ML_TRAIN must reside in a table on the MySQL server. mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. For example: mysql> SET @census_model = 'census_test'; The model ... Run the ML_TRAIN routine on a training dataset to produce a trained machine learning ...
https://dev.mysql.com/doc/internals/en/files-in-innodb-sources.html
The InnoDB source files are the best place to look for information about internals of the file structure that MySQLers can optionally use for transaction support. I'll take each of the 31 InnoDB subdirectories that come with the MySQL 5.0 source ...
https://dev.mysql.com/doc/refman/8.4/en/mysqlbinlog.html
To display their contents in text format, use the mysqlbinlog utility. You can also use mysqlbinlog to display the contents of relay log files written by a replica server in a replication setup because relay logs have the same format as binary logs.
https://dev.mysql.com/doc/refman/8.4/en/replica-io-thread-states.html
If the incompatible changes have an impact for you, set the terminology_use_previous system variable to BEFORE_8_0_26 to make MySQL Server use the old versions of the names for the objects specified in the previous list. Queueing master event to the ... The following list shows the most common states you see in the State column for a replication I/O (receiver) thread on a replica ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-performance-thread_concurrency.html
The default value for innodb_thread_concurrency and the implied default limit on the number of concurrent threads has been changed in various releases of MySQL and InnoDB. When there is a limit on the number of threads (when ... InnoDB uses ...
https://dev.mysql.com/doc/refman/8.4/en/keyring-okv-plugin.html
Note The keyring_okv plugin is an extension included in MySQL Enterprise Edition, a commercial product. The plugin works with these KMIP-compatible products: Oracle Key Vault Gemalto SafeNet KeySecure Appliance Townsend Alliance Key Manager Entrust ...The Key Management Interoperability Protocol (KMIP) enables communication of cryptographic keys between a key management server and its ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/mysql-threads.html
The MySQL server creates the following threads: Connection manager threads handle client connection requests on the network interfaces that the server listens to. An SQL thread is started to apply updates read from the source. On Unix, this manager ...
https://dev.mysql.com/doc/mysql-router/9.4/en/mysql-router-conf-options.html
When started, MySQL Router reads a list of configuration files that together make up the configuration of the router. MySQL Router reads options from configuration files that closely resemble the traditional INI file format, with sections and ...
https://dev.mysql.com/doc/connectors/en/connector-python-connection-pooling.html
Simple connection pooling is supported that has these characteristics: The mysql.connector.pooling module implements pooling. This enables applications to support pools of connections to different MySQL servers, for example. Applications that can ...A pool opens a number of connections and handles thread safety when providing connections to ...