Search Results
MySQL Connector/Python Developer Guide :: 4.5 Installing Connector/Python from a Source Distribution
https://dev.mysql.com/doc/connector-python/en/connector-python-installation-source.html
Optional: To include the C Extension, use these steps to provide the path to the installation directory of MySQL Server (or to the folder where the server binaries are located) with the MYSQL_CAPI system variable before running the installation step. For installing the classic interface only: MySQL Server binaries (server may be installed or not installed on the system), including development files (to obtain the MySQL Server binaries, visit the MySQL download ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndb-cluster-connection.html
You can use the ndb_data_node_neighbour server system variable to set a data node neighbor for an NDB Cluster SQL node. This section provides information about the Ndb_cluster_connection class, which models a connection by a management server ...By ...
https://dev.mysql.com/doc/refman/9.7/en/performance-schema-replication-asynchronous-connection-failover-table.html
For the GroupReplication managed service, the identifier is the value of the group_replication_group_name system variable. You set and manage source lists using the asynchronous_connection_failover_add_source and ... This table holds the replica's ...
https://dev.mysql.com/doc/refman/9.7/en/performance-schema-transaction-tables.html
For example, when the autocommit system variable is enabled, the start of each statement starts a new transaction. Transaction Boundaries In MySQL Server, transactions start explicitly with these statements: START TRANSACTION | BEGIN | XA START | XA ...Within the event hierarchy, wait events nest within stage events, which nest within statement events, which nest within transaction ...
https://dev.mysql.com/doc/refman/9.7/en/replication-asynchronous-connection-failover-source.html
For a managed group, you also specify the type of managed service (currently only Group Replication is available), and the identifier of the managed group (for Group Replication, this is the value of the group_replication_group_name system variable). You set and manage source lists using the asynchronous_connection_failover_add_source and asynchronous_connection_failover_delete_source functions to add and remove single replication source ...
https://dev.mysql.com/doc/refman/9.7/en/replication-encrypted-connections.html
The SOURCE_TLS_VERSION option specifies a comma-separated list of the TLS encryption protocols permitted by the replica for the replication connection, in a format like that for the tls_version server system variable. To use an encrypted connection ...You must obtain (or create) a suitable security certificate that you can use on the source, and a similar certificate (from the same certificate authority) on each ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/innodb-clusterset-remove.html
Leaves the super_read_only system variable set on all the member servers, to ensure that no updates are performed on them. If you want to use the server instances in the deployment again, you can use them to set up a new cluster and add that cluster ... To remove a cluster from the InnoDB ClusterSet, use clusterSet.removeCluster() ...
https://dev.mysql.com/doc/extending-mysql/9.7/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. The server does not create threads to handle interfaces that it does not listen to.
https://dev.mysql.com/doc/mysql-ai/9.7/en/myai-installation-clean.html
The location must be configured by the server system variable secure_file_priv for mysqld to import data securely from it. Internal communication between MySQL Server and the Machine Learning and AI subsystem should not be encrypted because no ...
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-9.html
(Bug #25829054, Bug #25860579, WL #10954) MySQL Connector/NET now supports MySQL servers configured to use utf8mb4 as the default character set. (WL #10949) Support for connections using Unix domain socket files was extended to include MySQL servers ...For example: SessionConfigManager.Save( "mysess", "{ \"uri\": \"mysqlx://myuser@localhost/mysess\", \"appdata\": { \"biz\": \"quux\" } }" ); SessionConfigManager.Save( "mysess", "{ \"uri\": \"mysqlx://test@localhost/mysess\", \"appdata\": { \"tar\": \"zzzz\" } }" ); The mysess.uri and mysess.appdata values set by the first statement are replaced with the new values set by the second ...