欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux 高并发性能调优

程序员文章站 2024-03-22 21:04:40
...

经验:
总共内存: 8G
总共连接:31万
消耗内存:15.6%
内存/连接:8 * 102410240.156/310000= 4.2K/连接

调优工具介绍

调优参数

  1. 调优工具介绍
  • top
P:按%CPU使用率排行
T:按MITE+排行
M:按%MEM排行
  • pmap
-x extended显示扩展格式
-d device显示设备格式
-q quiet不显示header/footer行
-V 显示版本信息

$ pmap -d 14596
  • ps
pmap -d 14596
$ ps aux | sort -k4,4nr | head -n 10 查看内存占用前10名的程序
$ ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid'  其中rsz是是实际内存
$ ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid' | grep oracle |  sort -nrk5
  • 查看内存
$ ps aux #RSS---进程实际占用物理内存大小;
$ cat /proc/pid/status
  • 调优参数

参考:
http://www.blogjava.net/yongboy/archive/2013/04/11/397677.html
https://www.jianshu.com/p/e0b52dc702d6