Search Results
https://dev.mysql.com/doc/extending-mysql/9.7/en/using-own-protocol-trace-plugins.html
Note To use your own protocol trace plugins, you must configure MySQL with the WITH_TEST_TRACE_PLUGIN CMake option disabled because only one protocol trace plugin can be loaded at a time and an error occurs for attempts to load a second one. If you ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-authentication-plugins-setup.html
Invoke the client program each way to verify this: $> mysql --user=x --skip-password ERROR 1045 (28000): Access denied for user 'x'@'localhost' (using password: NO) $> mysql --user=x --password Enter password: abc mysql> Because the server plugin ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-semisynchronous-replication-plugins.html
Each function returns 0 for success or 1 if an error occurs. This section describes how to write server-side semisynchronous replication plugins, using the example plugins found in the plugin/semisync directory of MySQL source distributions. That ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-how-to-import-onnx.html
This topic describes how to import an external ONNX model. Ways to Import External ONNX Model You have the following ways to import an external ONNX model. Import model as a string: For smaller models, you can copy the encoded string and paste it ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-model-handles.html
If you set a model handle that already appears in the model catalog, the ML_TRAIN routine returns an error. When ML_TRAIN trains a model, you have the option to specify a name for the model, which is the model handle. If you do not specify a model ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-model-quality.html
If an invalid metric is specified, the following error message is reported: Invalid data for the metric. ML_SCORE scores a model by generating predictions using the feature columns in a labeled dataset as input and comparing the predictions to ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-predictions-ml-predict-table.html
ML_PREDICT_TABLE generates predictions for an entire table of trained data. If ML_PREDICT_TABLE takes a long time to complete, manually limit input tables to a maximum of 1,000 rows. Some of these columns include: Prediction ml_results The input ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-training-a-forecasting-model.html
An error is returned if any part of the training table or predict table has dates outside this range. After preparing the data for a forecasting model, you can train the model. Before You Begin Requirements for Forecasting Training Forecasting ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-training-an-anomaly-detection-model.html
Selecting more than one model or an unsupported model produces an error. After preparing the data for an anomaly detection model, you can train the model. Requirements for Anomaly Detection Training Consider the following based on the type of ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-using-a-recommendation-model-similar-items.html
This topic describes how to generate recommendations for similar items. For known items, the output includes a list of predicted items that have similar ratings and are appreciated by similar users. The predictions are expressed in cosine ...