文章目录
-
- [openGauss学习笔记-269 openGauss性能调优-TPCC性能调优测试指导-数据库服务端及客户端绑核](#openGauss学习笔记-269 openGauss性能调优-TPCC性能调优测试指导-数据库服务端及客户端绑核)
-
- [269.1 安装openGauss数据库](#269.1 安装openGauss数据库)
- [269.2 停止数据库](#269.2 停止数据库)
- [269.3 使用gs_guc工具修改数据库端口、IP等](#269.3 使用gs_guc工具修改数据库端口、IP等)
- [269.4 使用gs_guc工具设置如下参数](#269.4 使用gs_guc工具设置如下参数)
- [269.5 执行如下命令以绑核方式启动服务端数据库](#269.5 执行如下命令以绑核方式启动服务端数据库)
- [269.6 将客户端CPU的48个核与网卡中断队列进行绑定](#269.6 将客户端CPU的48个核与网卡中断队列进行绑定)
openGauss学习笔记-269 openGauss性能调优-TPCC性能调优测试指导-数据库服务端及客户端绑核
本章节主要介绍openGauss数据库内核基于鲲鹏服务器和openEuler操作系统,为了达到最佳TPMC性能所依赖的关键系统级调优。
269.1 安装openGauss数据库
具体操作请参考《安装指南》。
269.2 停止数据库
具体操作请参考《数据库运维指南》中的"启停openGauss"章节。
269.3 使用gs_guc工具修改数据库端口、IP等
gs_guc的使用请参考《工具与命令参考》中的"服务端工具>gs_guc"章节。
269.4 使用gs_guc工具设置如下参数
ini
advance_xlog_file_num = 100
numa_distribute_mode = 'all'
thread_pool_attr = '464,4,(cpubind:1-27,32-59,64-91,96-123)'
xloginsert_locks = 16
wal_writer_cpu=0
wal_file_init_num = 20
xlog_idle_flushes_before_sleep = 500000000
pagewriter_sleep = 10ms
269.5 执行如下命令以绑核方式启动服务端数据库
bash
numactl -C 1-27,32-59,64-91,96-123 gaussdb --single_node -D /data1/gaussdata -p 3625 &
其中0核用于wal_writer、1-27、32-59、64-91、96-123表示使用111个核运行TPCC程序,其余的16个核用来处理服务端的网络中断。
269.6 将客户端CPU的48个核与网卡中断队列进行绑定
执行如下命令,将客户端CPU的48个核与网卡中断队列进行绑定:
undefined
sh bind_net_irq.sh 48
👍 点赞,你的认可是我创作的动力!
⭐️ 收藏,你的青睐是我努力的方向!
✏️ 评论,你的意见是我进步的财富!