环境部署

前提条件

需要保证openGauss处于正常状态,用户通过身份验证成功登录openGauss;用户执行的SQL语法正确无报错,且不会导致数据库异常等;历史性能数据窗口内openGauss并发量稳定,表结构、表数量不变,数据量无突变,涉及查询性能的guc参数不变;进行预测时,需要保证模型已训练并收敛;AiEngine运行环境稳定。

请求样例

AiEngine进程与内核进程使用https发送请求进行通信,请求样例如下:

  1. curl -X POST -d '{"modelName":"modelname"}' -H 'Content-Type: application/json' 'https://IP-address:port/request-API'

表 1 : AI-Engine对外接口

Request-API

功能

/check

检查模型是否被正常拉起

/configure

设置模型参数

/train

模型训练

/track_process

查看模型训练日志

/setup

加载历史模型

/predict

模型预测

证书生成

使用此功能前需使用openssl工具生成通信双方认证所需的证书,保证通信安全。

  1. 搭建证书生成环境,证书文件保存路径为$GAUSSHOME/CA。

    –拷贝证书生成脚本及相关文件

    1. cp path_to_predictor/install/ssl.sh $GAUSSHOME/
    2. cp path_to_predictor/install/ca_ext.txt $GAUSSHOME/

    –copy 配置文件openssl.cnf到$GAUSSHOME路径下

    1. cp $GAUSSHOME/share/om/openssl.cnf $GAUSSHOME/

    –修改openssl.conf配置参数

    1. dir = $GAUSSHOME/CA/demoCA
    2. default_md = sha256

    –至此证书生成环境准备完成

  2. 生成证书及密钥

    1. cd $GAUSSHOME
    2. sh ssl.sh

    –根据提示设置密码,假如为Test@123:

    –密码要求至少3种不同类型字符,长度至少为8位

    1. Please enter your password:

    –根据提示输入选项:

    1. Certificate Details:
    2. Serial Number: 1 (0x1)
    3. Validity
    4. Not Before: May 15 08:32:44 2020 GMT
    5. Not After : May 15 08:32:44 2021 GMT
    6. Subject:
    7. countryName = CN
    8. stateOrProvinceName = SZ
    9. organizationName = HW
    10. organizationalUnitName = GS
    11. commonName = CA
    12. X509v3 extensions:
    13. X509v3 Basic Constraints:
    14. CA:TRUE
    15. Certificate is to be certified until May 15 08:32:44 2021 GMT (365 days)
    16. Sign the certificate? [y/n]:y
    17. 1 out of 1 certificate requests certified, commit? [y/n]y

    –输入拉起AIEngine的IP地址,如IP为127.0.0.1:

    1. Please enter your aiEngine IP: 127.0.0.1

    –根据提示输入选项:

    1. Certificate Details:
    2. Serial Number: 2 (0x2)
    3. Validity
    4. Not Before: May 15 08:38:07 2020 GMT
    5. Not After : May 13 08:38:07 2030 GMT
    6. Subject:
    7. countryName = CN
    8. stateOrProvinceName = SZ
    9. organizationName = HW
    10. organizationalUnitName = GS
    11. commonName = 127.0.0.1
    12. X509v3 extensions:
    13. X509v3 Basic Constraints:
    14. CA:FALSE
    15. Certificate is to be certified until May 13 08:38:07 2030 GMT (3650 days)
    16. Sign the certificate? [y/n]:y
    17. 1 out of 1 certificate requests certified, commit? [y/n]y

    –输入启动openGauss IP地址,如IP为127.0.0.1:

    1. Please enter your gaussdb IP: 127.0.0.1

    –根据提示输入选项:

    1. Certificate Details:
    2. Serial Number: 3 (0x3)
    3. Validity
    4. Not Before: May 15 08:41:46 2020 GMT
    5. Not After : May 13 08:41:46 2030 GMT
    6. Subject:
    7. countryName = CN
    8. stateOrProvinceName = SZ
    9. organizationName = HW
    10. organizationalUnitName = GS
    11. commonName = 127.0.0.1
    12. X509v3 extensions:
    13. X509v3 Basic Constraints:
    14. CA:FALSE
    15. Certificate is to be certified until May 13 08:41:46 2030 GMT (3650 days)
    16. Sign the certificate? [y/n]:y
    17. 1 out of 1 certificate requests certified, commit? [y/n]y

    –至此,相关证书及密钥已生成,($GAUSSHOME/CA)内容如下:

    环境部署 - 图1

环境准备

  1. 将工具代码文件夹拷贝至目标环境

    –假设安装路径为$INSTALL_FOLDER

    –假设目标环境路径为/home/ai_user :

    1. scp -r $INSTALL_FOLDER/bin/dbmind/predictor ai_user@127.0.0.1:path_to_Predictor
  2. 拷贝CA证书文件夹至aiEngine环境中某路径下:

    1. cp -r $GAUSSHOME/CA ai_user@127.0.0.1:path_to_CA
  3. 安装predictor/install/requirements(-gpu).txt工具:

    1. GPUpip install -r requirements-gpu.txt
    2. GPUpip install -r requirements.txt

拉起AiEngine

  1. 切换至aiEngine环境(即拷贝predictor的目标环境 ai_user):

    设置predictor/python/settings.py 中的相关参数:

    1. DEFAULT_FLASK_SERVER_HOST = '127.0.0.1' aiEngine运行IP地址)
    2. DEFAULT_FLASK_SERVER_PORT = '5000' aiEngine运行端口号)
    3. PATH_SSL = "path_to_CA" (CA文件夹路径)
  2. 运行aiEngine启动脚本:

    1. python path_to_Predictor/python/run.py

    此时,aiEngine即在相应端口保持拉起状态,等待内核侧时间预测功能的请求指令。

    至此,aiEngine工具部署完成。从内核中发起执行时间预测功能指令步骤,请参考《时间预测使用说明》。