Search



Search Results
Displaying 3551 to 3559 of 3559 total results
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-authentication-plugins-client-side.html
Declare the client-side plugin descriptor with the mysql_declare_client_plugin() and mysql_end_client_plugin macros (see Section 4.4.2.3, “Client Plugin Descriptors”). (For descriptions, see Section 4.4.2.3, “Client Plugin Descriptors”.) ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-authentication-plugins.html
Authentication plugins enable the use of authentication methods other than the built-in method of passwords stored in the mysql.user system table. MySQL supports pluggable authentication, in which plugins are invoked to authenticate client ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-plugins.html
These variables become visible through the SHOW STATUS and SHOW VARIABLES statements and the corresponding INFORMATION_SCHEMA tables. To create a plugin library, you must provide the required descriptor information that indicates what plugins the ...
https://dev.mysql.com/doc/ndb-operator/9.7/en/tasks-access-within-k8s.html
row *************************** ENGINE: ndbcluster SUPPORT: YES COMMENT: Clustered, fault-tolerant tables TRANSACTIONS: YES XA: NO SAVEPOINTS: NO 2 rows in set (0.00 sec) . An application running inside the Kubernetes Cluster can use these ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-ease-of-use.html
For example, the following call to the ML_PREDICT_TABLE routine generates predictions for a table of input data: CALL sys.ML_PREDICT_TABLE('heatwaveml_bench.census_test', @census_model, 'heatwaveml_bench.census_predictions', NULL); All AutoML ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-explainers.html
mysql> CALL sys.ML_EXPLAIN ('table_name', 'target_column_name', model_handle, [options]); The following example generates a model explanation on the trained and loaded model with the shap model explainer. mysql> CALL ... After the ML_TRAIN routine, ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-onnx-metadata.html
To learn more about model metadata in the model catalog, see Model Metadata. ONNX Inputs Info Use the data_types_map to map the data type of each column to an ONNX model data type. For example, to convert inputs of the type tensor(float) to ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-scoring-a-forecasting-model.html
However, the target column needs to be in the table to generate a valid score value. mysql> CALL sys.ML_SCORE(table_name, target_column_name, model_handle, metric, score, [options]); Replace table_name, target_column_name, model_handle, metric, ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-performance-monitoring.html
MySQL AI lets you offload vector-based tables to the MySQL AI Engine for accelerated processing of queries that uses at least one of the vector functions. The MySQL Performance Schema collects statistics on the usage of the AI engine and different ...