Search Results
https://dev.mysql.com/doc/refman/8.4/en/mysqlslap.html
--compression-algorithms=value Command-Line Format --compression-algorithms=value Type Set Default Value uncompressed Valid Values zlibzstduncompressed The permitted compression algorithms for connections to the server. --detach=N Command-Line ...
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-replication-connection-configuration-table.html
This table shows the configuration parameters used by the replica for connecting to the source. It contains values that define how the replica connects to the source and that remain constant during the connection, whereas ...Parameters stored in ...
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-tp-connections-table.html
The tp_connections table contains one row per connection managed by the Thread Pool plugin. Each row provides information about the current state of a thread pool connection. The tp_connections table contains the following rows: CONNECTION_ID The ...TP_GROUP_ID The index of the thread group in the global ...
https://dev.mysql.com/doc/connectors/en/connector-python-asyncio.html
Installing Connector/Python also installs the mysql.connector.aio package that integrates asyncio with the connector to allow integrating asynchronous MySQL interactions with an application. import asyncio import os import time from ...Functions ...
https://dev.mysql.com/doc/connector-python/en/connector-python-asyncio.html
Installing Connector/Python also installs the mysql.connector.aio package that integrates asyncio with the connector to allow integrating asynchronous MySQL interactions with an application. import asyncio import os import time from ...Functions ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-option-tables.html
ndb-cluster-connection-pool-nodeids: Comma-separated list of node IDs for connections to cluster used by MySQL; number of nodes in list must match value set for --ndb-cluster-connection-pool. ndb-connectstring: Address of NDB management server ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-attribute-tables-mysqld.html
ndb-cluster-connection-pool-nodeids: Comma-separated list of node IDs for connections to cluster used by MySQL; number of nodes in list must match value set for --ndb-cluster-connection-pool. ndb-connectstring: Address of NDB management server ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-j2ee-concepts-managing-load-balanced-connections.html
Connector/J has long provided an effective means to distribute read/write load across multiple MySQL server instances for Cluster or source-source replication deployments. This is the key property for management: if you do not define a name ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-j2ee-concepts-managing-load-balanced-connections.html
Connector/J has long provided an effective means to distribute read/write load across multiple MySQL server instances for Cluster or source-source replication deployments. This is the key property for management: if you do not define a name ...
https://dev.mysql.com/doc/refman/8.4/en/optimizer-hints.html
It places a limit N (a timeout value in milliseconds) on how long a statement is permitted to execute before the server terminates it: MAX_EXECUTION_TIME(N) Example with a timeout of 1 second (1000 milliseconds): SELECT /*+ MAX_EXECUTION_TIME(1000) ... One means of control over optimizer strategies is to set the optimizer_switch system variable (see Section 10.9.2, “Switchable ...