shcat words.txt | tr -s ' ' '\n' | sort | uniq -c | sort -r | awk '{ print $2, $1 }'
shfunction kill_processes() {
local pid=$1
if [ -f /proc/$pid/status ]; then
for subpid in $(ps -e o pid=,ppid= | awk -vPID=$pid '{if($2==PID)print $1;}'); do
kill_processes $subpid
done
fi
if [ -f /proc/$pid/status ]; then
kill -9 $pid
fi
}
背景
在生产环境中,我们使用了 pymysql 和 DBUtils.PooledDB 来管理 MySQL 数据库连接池。由于业务量激增,新增了多个业务实例,最终导致 MySQL 集群以及本地实例的连接数被打满,无法建立新的请求连接。经过排查,发现根本原因是 pymysql 默认开启事务,所有的 SQL 操作(包括查询)都会自动开启事务,并且不会自动提交,导致事务长时间占用连接,无法释放。