使用方法

用户可以通过命令行客户端atune-adm使用A-Tune提供的功能。本章介绍A-Tune客户端包含的功能和使用方法。

总体说明

  • 使用A-Tune需要使用root权限。
  • atune-adm支持的命令可以通过 atune-adm help/—help/-h 查询。
  • 使用方法中所有命令的使用举例都是在单机部署模式下,如果是在分布式部署模式下,需要指定服务器IP和端口号,例如:

    1. # atune-adm -a 192.168.3.196 -p 60001 list
  • define、update、undefine、collection、train、upgrade不支持远程执行。

  • 命令格式中,[ ] 表示参数可选,<> 表示参数必选,具体参数由实际情况确定。
  • 命令格式中,各命令含义如下:
    • WORKLOAD_TYPE:用户自定义负载类型的名称,负载支持的类型参考list命令查询结果。
    • PROFILE_NAME:用户自定义profile的名称
    • PROFILE_PATH:用户自定义profile的路径

查询负载类型

list

功能描述

查询系统当前支持的workload_type和对应的profile,以及当前处于active状态的profile。

命令格式

atune-adm list

使用示例

  1. # atune-adm list
  2. Support WorkloadTypes:
  3. +-----------------------------------+------------------------+-----------+
  4. | WorkloadType | ProfileName | Active |
  5. +===================================+========================+===========+
  6. | default | default | true |
  7. +-----------------------------------+------------------------+-----------+
  8. | webserver | ssl_webserver | false |
  9. +-----------------------------------+------------------------+-----------+
  10. | big_database | database | false |
  11. +-----------------------------------+------------------------+-----------+
  12. | big_data | big_data | false |
  13. +-----------------------------------+------------------------+-----------+
  14. | in-memory_computing | in-memory_computing | false |
  15. +-----------------------------------+------------------------+-----------+
  16. | in-memory_database | in-memory_database | false |
  17. +-----------------------------------+------------------------+-----------+
  18. | single_computer_intensive_jobs | compute-intensive | false |
  19. +-----------------------------------+------------------------+-----------+
  20. | communication | rpc_communication | false |
  21. +-----------------------------------+------------------------+-----------+
  22. | idle | default | false |
  23. +-----------------------------------+------------------------+-----------+

使用方法 - 图1 说明:
Active为true表示当前激活的profile,示例表示当前激活的是default类型对应的profile。

分析负载类型并自优化

analysis

功能描述

采集系统的实时统计数据进行负载类型识别,并进行自动优化。

命令格式

atune-adm analysis [OPTIONS]

参数说明

  • OPTIONS

    参数

    描述

    —model, -m

    用户自训练产生的新模型

使用示例

  • 使用默认的模型进行分类识别

    1. # atune-adm analysis
  • 使用自训练的模型进行识别

    1. # atune-adm analysis --model /usr/libexec/atuned/analysis/models/new-model.m

自定义模型

A-Tune支持用户定义并学习新模型。定义新模型的操作流程如下:

  1. 用define命令定义workload_type和profile
  2. 用collection命令收集workload_type对应的画像数据
  3. 用train命令训练得到模型

define

功能描述

添加用户自定义的workload_type,及对应的profile优化项。

命令格式

atune-adm define

使用示例

新增一个workload type,workload type的名称为test_type,profile name的名称为test_name,优化项的配置文件为example.conf。

  1. # atune-adm define test_type test_name ./example.conf

example.conf 可以参考如下方式书写(以下各优化项非必填,仅供参考),也可通过atune-adm info查看已有的profile是如何书写的。

  1. [main]
  2. # list its parent profile
  3. [tip]
  4. # the recommended optimization, which should be performed manunaly
  5. [check]
  6. # check the environment
  7. [affinity.irq]
  8. # to change the affinity of irqs
  9. [affinity.task]
  10. # to change the affinity of tasks
  11. [bios]
  12. # to change the bios config
  13. [bootloader.grub2]
  14. # to change the grub2 config
  15. [kernel_config]
  16. # to change the kernel config
  17. [script]
  18. # the script extention of cpi
  19. [sysctl]
  20. # to change the /proc/sys/* config
  21. [sysfs]
  22. # to change the /sys/* config
  23. [systemctl]
  24. # to change the system service config
  25. [ulimit]
  26. # to change the resources limit of user

collection

功能描述

采集业务运行时系统的全局资源使用情况以及OS的各项状态信息,并将收集的结果保存到csv格式的输出文件中,作为模型训练的输入数据集。

使用方法 - 图2 说明:

  • 本命令依赖采样工具perf,mpstat,vmstat,iostat,sar。
  • CPU型号目前仅支持鲲鹏920,可通过dmidecode -t processor检查CPU型号。

命令格式

atune-adm collection

参数说明

  • OPTIONS

    参数

    描述

    —filename, -f

    生成的用于训练的csv文件名:名称-时间戳.csv

    —output_path, -o

    生成的csv文件的存放路径,需提供绝对路径

    —disk, -b

    业务运行时实际使用的磁盘,如/dev/sda

    —network, -n

    业务运行时使用的网络接口,如eth0

    —workload_type, -t

    标记业务的负载类型,作为训练时使用的标签

    —duration, -d

    业务运行时采集数据的时间,单位秒,默认采集时间1200秒

    —interval,-i

    采集数据的时间间隔,单位秒,默认采集间隔5秒

使用示例

  1. # atune-adm collection --filename name --interval 5 --duration 1200 --output_path /home/data --disk sda --network eth0 --workload_type test_type

train

功能描述

使用采集的数据进行模型的训练。训练时至少采集两种workload_type的数据,否则训练会出错。

命令格式

atune-adm train

参数说明

  • OPTIONS

    参数

    描述

    —data_path, -d

    存放模型训练所需的csv文件的目录

    —output_file, -o

    训练生成的新模型

使用示例

使用data目录下的csv文件作为训练输入,生成的新模型new-model.m存放在model目录下。

  1. # atune-adm train --data_path /home/data --output_file /usr/libexec/atuned/analysis/models/new-model.m

undefine

功能描述

删除用户自定义的workload_type。

命令格式

atune-adm undefine

使用示例

删除自定义的负载类型test_type。

  1. # atune-adm undefine test_type

查询profile

info

功能描述

查看workload_type对应的profile内容。

命令格式

atune-adm info _

使用示例

查看webserver的profile内容:

  1. # atune-adm info webserver
  2. *** ssl_webserver:
  3. #
  4. # webserver tuned configuration
  5. #
  6. [main]
  7. #TODO CONFIG
  8. [kernel_config]
  9. #TODO CONFIG
  10. [bios]
  11. #TODO CONFIG
  12. [sysfs]
  13. #TODO CONFIG
  14. [sysctl]
  15. fs.file-max=6553600
  16. fs.suid_dumpable = 1
  17. fs.aio-max-nr = 1048576
  18. kernel.shmmax = 68719476736
  19. kernel.shmall = 4294967296
  20. kernel.shmmni = 4096
  21. kernel.sem = 250 32000 100 128
  22. net.ipv4.tcp_tw_reuse = 1
  23. net.ipv4.tcp_syncookies = 1
  24. net.ipv4.ip_local_port_range = 1024 65500
  25. net.ipv4.tcp_max_tw_buckets = 5000
  26. net.core.somaxconn = 65535
  27. net.core.netdev_max_backlog = 262144
  28. net.ipv4.tcp_max_orphans = 262144
  29. net.ipv4.tcp_max_syn_backlog = 262144
  30. net.ipv4.tcp_timestamps = 0
  31. net.ipv4.tcp_synack_retries = 1
  32. net.ipv4.tcp_syn_retries = 1
  33. net.ipv4.tcp_fin_timeout = 1
  34. net.ipv4.tcp_keepalive_time = 60
  35. net.ipv4.tcp_mem = 362619 483495 725238
  36. net.ipv4.tcp_rmem = 4096 87380 6291456
  37. net.ipv4.tcp_wmem = 4096 16384 4194304
  38. net.core.wmem_default = 8388608
  39. net.core.rmem_default = 8388608
  40. net.core.rmem_max = 16777216
  41. net.core.wmem_max = 16777216
  42. [systemctl]
  43. sysmonitor=stop
  44. irqbalance=stop
  45. [bootloader.grub2]
  46. selinux=0
  47. iommu.passthrough=1
  48. [tip]
  49. bind your master process to the CPU near the network = affinity
  50. bind your network interrupt to the CPU that has this network = affinity
  51. relogin into the system to enable limits setting = OS
  52. [script]
  53. openssl_hpre = 0
  54. prefetch = off
  55. [ulimit]
  56. {user}.hard.nofile = 102400
  57. {user}.soft.nofile = 102400
  58. [affinity.task]
  59. #TODO CONFIG
  60. [affinity.irq]
  61. #TODO CONFIG
  62. [check]
  63. #TODO CONFIG

更新profile

用户根据需要更新已有profile。

update

功能描述

将workload_type原来的优化项更新为new.conf中的内容。

命令格式

atune-adm update

使用示例

更新负载类型为test_type,优化项名称为test_name的优化项为new.conf。

  1. # atune-adm update test_type test_name ./new.conf

激活profile

profile

功能描述

手动激活workload_type对应的profile,使得workload_type处于active状态。

命令格式

atune-adm profile <_WORKLOAD_TYPE>_

参数说明

WORKLOAD_TYPE支持的类型参考list命令查询结果。

使用示例

激活webserver对应的profile配置。

  1. # atune-adm profile webserver

回滚profile

rollback

功能描述

回退当前的配置到系统的初始配置。

命令格式

atune-adm rollback

使用示例

  1. # atune-adm rollback

更新数据库

upgrade

功能描述

更新系统的数据库。

命令格式

atune-adm upgrade

参数说明

  • DB_FILE

    新的数据库文件路径

使用示例

数据库更新为new_sqlite.db。

  1. # atune-adm upgrade ./new_sqlite.db

系统信息查询

check

功能描述

检查系统当前的cpu、bios、os、网卡等信息。

命令格式

atune-adm check

使用示例

  1. # atune-adm check
  2. cpu information:
  3. cpu:0 version: Kunpeng 920-6426 speed: 2600000000 HZ cores: 64
  4. cpu:1 version: Kunpeng 920-6426 speed: 2600000000 HZ cores: 64
  5. system information:
  6. DMIBIOSVersion: 0.59
  7. OSRelease: 4.19.36-vhulk1906.3.0.h356.eulerosv2r8.aarch64
  8. network information:
  9. name: eth0 product: HNS GE/10GE/25GE RDMA Network Controller
  10. name: eth1 product: HNS GE/10GE/25GE Network Controller
  11. name: eth2 product: HNS GE/10GE/25GE RDMA Network Controller
  12. name: eth3 product: HNS GE/10GE/25GE Network Controller
  13. name: eth4 product: HNS GE/10GE/25GE RDMA Network Controller
  14. name: eth5 product: HNS GE/10GE/25GE Network Controller
  15. name: eth6 product: HNS GE/10GE/25GE RDMA Network Controller
  16. name: eth7 product: HNS GE/10GE/25GE Network Controller
  17. name: docker0 product:

参数自调优

A-Tune提供了最佳配置的自动搜索能力,免去人工反复做参数调整、性能评价的调优过程,极大地提升最优配置的搜寻效率。

tuning

功能描述

使用指定的项目文件对参数进行动态空间的搜索,找到当前环境配置下的最优解。

命令格式

使用方法 - 图3 说明:
在运行命令前,需要满足如下条件:

  1. 编辑好服务端yaml配置文件,且需要服务端管理员将该配置文件放到服务端的/etc/atuned/tuning/目录下。
  2. 编辑好客户端yaml配置文件并放在客户端任一目录。

atune-adm tuning [OPTIONS]

参数说明

  • OPTIONS

    参数

    描述

    —restore, -r

    恢复tuning优化前的初始配置

    —project, -p

    指定需要恢复的yaml文件中的项目名称

    使用方法 - 图4 说明:
    当使用参数时,上述两个参数需要同时使用,且-p参数后需要跟具体的项目名称。

  • PROJECT_YAML:客户端yaml配置文件。

配置说明

表 1 服务端yaml文件

配置名称

配置说明

参数类型

取值范围

project

项目名称。

字符串

-

startworkload

待调优服务的启动脚本。

字符串

-

stopworkload

待调优服务的停止脚本。

字符串

-

maxiterations

最大调优迭代次数,用于限制客户端的迭代次数。一般来说,调优迭代次数越多,优化效果越好,但所需时间越长。用户必须根据实际的业务场景进行配置。

整型

>10

object

需要调节的参数项及信息。

object 配置项请参见表2

-

-

表 2 object项配置说明

配置名称

配置说明

参数类型

取值范围

name

待调参数名称

字符串

-

desc

待调参数描述

字符串

-

get

查询参数值的脚本

-

-

set

设置参数值的脚本

-

-

needrestart

参数生效是否需要重启业务

枚举

“true”, “false”

type

参数的类型,目前支持discrete, continuous两种类型,对应离散型、连续型参数

枚举

“discrete”, “continuous”

dtype

该参数仅在type为discrete类型时配置,目前支持int和string两种类型

枚举

int, string

scope

参数设置范围,仅在type为discrete且dtype为int时或者type为continuous时生效

整型

用户自定义,取值在该参数的合法范围

step

参数值步长,dtype为int时使用

整型

用户自定义

items

参数值在scope定义范围之外的枚举值,dtype为int时使用

整型

用户自定义,取值在该参数的合法范围

options

参数值的枚举范围,dtype为string时使用

字符串

用户自定义,取值在该参数的合法范围

ref

参数的推荐初始值

整型或字符串

用户自定义,取值在该参数的合法范围

表 3 客户端yaml文件配置说明

配置名称

配置说明

参数类型

取值范围

project

项目名称,需要与服务端对应配置文件中的project匹配

字符串

-

iterations

调优迭代次数

整型

>=10

benchmark

性能测试脚本

-

-

evaluations

性能测试评估指标

evaluations 配置项请参见表4

-

-

表 4 evaluations项配置说明

配置名称

配置说明

参数类型

取值范围

name

评价指标名称

字符串

-

get

获取性能评估结果的脚本

-

-

type

评估结果的正负类型,positive代表最小化性能值,negative代表最大化对应性能值

枚举

“positive”,”negative”

weight

该指标的权重百分比,0-100

整型

0-100

threshold

该指标的最低性能要求

整型

用户指定

配置示例

服务端yaml文件配置示例:

  1. project: "example"
  2. maxiterations: 10
  3. startworkload: ""
  4. stopworkload: ""
  5. object :
  6. -
  7. name : "vm.swappiness"
  8. info :
  9. desc : "the vm.swappiness"
  10. get : "sysctl -a | grep vm.swappiness"
  11. set : "sysctl -w vm.swappiness=$value"
  12. needrestart: "false"
  13. type : "continuous"
  14. scope :
  15. - 0
  16. - 10
  17. ref : 1
  18. -
  19. name : "irqbalance"
  20. info :
  21. desc : "system irqbalance"
  22. get : "systemctl status irqbalance"
  23. set : "systemctl $value sysmonitor;systemctl $value irqbalance"
  24. needrestart: "false"
  25. type : "discrete"
  26. options:
  27. - "start"
  28. - "stop"
  29. dtype : "string"
  30. ref : "start"
  31. -
  32. name : "net.tcp_min_tso_segs"
  33. info :
  34. desc : "the minimum tso number"
  35. get : "cat /proc/sys/net/ipv4/tcp_min_tso_segs"
  36. set : "echo $value > /proc/sys/net/ipv4/tcp_min_tso_segs"
  37. needrestart: "false"
  38. type : "continuous"
  39. scope:
  40. - 1
  41. - 16
  42. ref : 2
  43. -
  44. name : "prefetcher"
  45. info :
  46. desc : ""
  47. get : "cat /sys/class/misc/prefetch/policy"
  48. set : "echo $value > /sys/class/misc/prefetch/policy"
  49. needrestart: "false"
  50. type : "discrete"
  51. options:
  52. - "0"
  53. - "15"
  54. dtype : "string"
  55. ref : "15"
  56. -
  57. name : "kernel.sched_min_granularity_ns"
  58. info :
  59. desc : "Minimal preemption granularity for CPU-bound tasks"
  60. get : "sysctl kernel.sched_min_granularity_ns"
  61. set : "sysctl -w kernel.sched_min_granularity_ns=$value"
  62. needrestart: "false"
  63. type : "continuous"
  64. scope:
  65. - 5000000
  66. - 50000000
  67. ref : 10000000
  68. -
  69. name : "kernel.sched_latency_ns"
  70. info :
  71. desc : ""
  72. get : "sysctl kernel.sched_latency_ns"
  73. set : "sysctl -w kernel.sched_latency_ns=$value"
  74. needrestart: "false"
  75. type : "continuous"
  76. scope:
  77. - 10000000
  78. - 100000000
  79. ref : 16000000

客户端yaml文件配置示例:

  1. project: "example"
  2. iterations : 10
  3. benchmark : "sh /home/Benchmarks/mysql/tunning_mysql.sh"
  4. evaluations :
  5. -
  6. name: "tps"
  7. info:
  8. get: "echo -e '$out' |grep 'transactions:' |awk '{print $3}' | cut -c 2-"
  9. type: "negative"
  10. weight: 100
  11. threshold: 100

使用示例

  • 进行tuning调优

    1. # atune-adm tuning example-client.yaml
  • 恢复tuning调优前的初始配置,example为yaml文件中的项目名称

    1. # atune-adm tuning --restore --project example