Search Results
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), @variable); Replace table_name, target_column_name, ... Run the ML_TRAIN routine on a training dataset to produce a trained machine learning ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-genai-generate-embeddings.html
Generating a Vector Embedding for Specified Text To generate a vector embedding, perform the following steps: To define the text that you want to encode, set the @text variable: mysql> SET @text="TextToEncode"; Replace TextToEncode with the text ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-genai-vector-store-load.html
You can ingest the source files into the vector store using the following methods: Perform the following steps: To create the vector store table, use a new or existing database: mysql> USE DBName; Replace DBName with the database name. For example: ... This section describes how to generate vector embeddings for files or folders stored in , and load the embeddings into a vector store ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-high-availability-and-clustering.html
Default Value 0 Since Version 5.1.6 ha.loadBalanceStrategy If using a load-balanced connection to connect to SQL servers in a MySQL Cluster configuration (by using the URL prefix "jdbc:mysql:loadbalance://"), which load balancing algorithm should ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-networking.html
socksProxyHost Name or IP address of a SOCKS host to connect through. Default Value 1080 Since Version 5.1.34 socketFactory The name of the class that the driver should use for creating socket connections to the server. This class must implement ...
https://dev.mysql.com/doc/connectors/en/connector-j-reference-configuration-properties.html
Configuration properties define how Connector/J will make a connection to a MySQL server. Unless otherwise noted, properties can be set for a DataSource object or for a Connection object. If you specify a configuration property in the URL without ...
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. A pool opens a number of connections and handles thread safety when providing connections to requesters. The size of a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html
Simple connection pooling is supported that has these characteristics: The mysql.connector.pooling module implements pooling. A pool opens a number of connections and handles thread safety when providing connections to requesters. The size of a ...
https://dev.mysql.com/doc/internals/en/compressed-payload.html
It uses the deflate algorithm as defined in RFC 1951 and implemented in zlib. If the length of payload before compression is more than 0 the Compressed Packet header is followed by the compressed payload. The header of the compressed packet has the ...
https://dev.mysql.com/doc/internals/en/filesort.html
This algorithm is described in the MySQL Reference manual; see ORDER BY Optimization.