Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-add-hosts.html
Do not use localhost in the host list, as MySQL Cluster Manager relies on the operating system for host name resolution, and localhost might be resolved differently on different systems. When IPv6-enabled Windows systems are used as MySQL NDB ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-start-cluster.html
See Section 5.4.1, “The create cluster Command”, and Section 4.5, “Importing MySQL NDB Clusters into MySQL Cluster Manager”, for more information. All cluster SQL nodes are started as if start process --initial have been used on them, which ...--initial option The --initial option (short form: -i) causes the following to happen: All cluster data node are started as if start process --initial had been used on them, which means that all data nodes wipe their data and start with clean data node file ...
https://dev.mysql.com/doc/c-api/8.4/en/preface.html
The C API provides low-level access to the MySQL client/server protocol and enables C programs to access database contents. The C API code is distributed with MySQL and implemented in the libmysqlclient library. Trademark Notice Oracle, Java, MySQL, ...License Restrictions This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-plugins-overview.html
These conditions apply to plugin writing: MySQL header files used by plugins contain C++ code, so plugins must be compiled as C++ code. For a plugin compiled against MySQL 8.4.X, there is no guarantee it will work with a MySQL 8.4.Y server without ...You must compile plugins with the entire server source code present, not just the libraries and header ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/installation-helm-chart.html
You can install NDB Operator with the Helm package manager for Kubernetes using the Helm chart included in the NDB Operator distribution to create the necessary Custom Resource Definitions (CRDs) and to deploy NDB Operator (together with the web ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-classification-generate-prediction.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('classification_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...To ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-classification-overview.html
Preparing Data To prepare the data for the classification model: Connect to the MySQL Server. mysql> CREATE DATABASE classification_data; mysql> USE classification_data; Create the table to insert the sample data into. This topic describes how to ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-model-quality.html
mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); The following example loads the trained model. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-preparing-a-recommendation-model.html
Preparing Data To prepare the data for the recommendation model: Connect to the MySQL Server. mysql> CREATE DATABASE recommendation_data; mysql> USE recommendation_data; Create the table to insert the sample data into. mysql> CREATE TABLE ... This ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-prereqs.html
Data Requirements Each dataset must reside in a single table on the MySQL server. NaN (Not a Number) values are not recognized by MySQL and should be replaced by NULL. The input data as it exists in the MySQL database is not modified by ML_TRAIN.