[转帖]PostgreSQL 参数优化设置 32GB内存(推荐) 内存参数 检查点 日志参数 自动初始化参数shell脚本
这个shell脚本可以使用shell的关联数组对
-
#!/bin/bash
-
#command to execute script: su - postgres -c "./create.sh"
-
#default value refer to standard server(cpu:6cores,memory:32G,storage:12T)
-
#value according to the actual situation
-
-
#List of parameters to be modified
-
:<<!
-
enable_seqscan = off
-
enable_indexscan = on
-
enable_bitmapscan = on
-
max_connections = 1000
-
shared_buffers = 16GB
-
effective_cache_size = 24GB
-
work_mem = 32MB
-
temp_buffers = 32MB
-
wal_buffers = 512MB
-
maintenance_work_mem = 2GB
-
autovacuum_max_workers = 3
-
autovacuum_work_mem = 256MB
-
checkpoint_timeout = 30min
-
max_wal_size = 4GB
-
min_wal_size = 1GB
-
checkpoint_completion_target = 0.9
-
log_destination = csvlog
-
log_directory = pg_log
-
logging_collector = on
-
log_min_duration_statement = 800
-
log_rotation_size = 1024MB
-
log_truncate_on_rotation = on
-
log_filename = 'xl_log_%a.log'
-
!
-
-
ERROR="\033[41;37m ERROR \033[0m"
-
INFO="\033[42;37m INFO \033[0m"
-
WARN="\033[43;37m WARN \033[0m"
-
COMMON_ERROR="some error happened, specific information please see console output"
-
-
# Array of parameters
-
declare -A parameter_array
-
parameter_array=([enable_seqscan]=off [enable_indexscan]=on [enable_bitmapscan]=on [max_connections]=1000 [shared_buffers]=16GB
-
[effective_cache_size]=24GB [work_mem]=32MB [temp_buffers]=32MB [wal_buffers]=512MB [maintenance_work_mem]=2GB
-
[autovacuum_max_workers]=3 [autovacuum_work_mem]=256MB [checkpoint_timeout]=30min [max_wal_size]=4GB
-
[min_wal_size]=1GB [checkpoint_completion_target]=0.9 [log_destination]=csvlog [log_directory]=pg_log
-
[logging_collector]=on [log_min_duration_statement]=800 [log_rotation_size]=1024MB [log_truncate_on_rotation]=on [log_filename]=viid_log_%a.log )
-
-
#default value :
-
pgctl_path=
-
data_directory=
-
memory=
-
-
# check command exit value, 0 is success
-
function check_fun(){
-
status=$?
-
error=${COMMON_ERROR}
-
if [[ 0 -ne ${status} ]] ; then
-
echo -e "${ERROR} ${error}"
-
exit 1
-
fi
-
}
-
-
# prepare conditions
-
function prepare_conditions(){
-
data_directory=$(psql -qtAX -c "show data_directory" | sed 's/[ ]//g')
-
check_fun
-
if [[ ! -d "${data_directory}" ]] ; then
-
echo -e "${ERROR} database's data directory does not exist"
-
exit 1
-
fi
-
# physical machine environment
-
memory=$(grep MemTotal /proc/meminfo | awk '{print $2 / 1024 / 1024}' | sed 's/\.[0-9]*//' | tail -n 1)
-
check_fun
-
# docker environment
-
memory_limit=$(($(awk '{print $1}' /sys/fs/cgroup/memory/memory.limit_in_bytes) / 1024 / 1024 /1024))
-
check_fun
-
# comparing the two, choose the smaller one.
-
if [[ "${memory_limit}" -le "${memory}" ]] ; then
-
memory=${memory_limit}
-
fi
-
}
-
-
# calculate parameters
-
function calculate_parameters(){
-
# 50%*memory
-
parameter_array[shared_buffers]=$((memory * 1024 / 2))"MB"
-
# 75%*memory
-
parameter_array[effective_cache_size]=$((memory * 1024 * 3 / 4 ))"MB"
-
# <1%
-
parameter_array[work_mem]=${memory}"MB"
-
# <1%
-
parameter_array[temp_buffers]=${memory}"MB"
-
# 32GB => 512MB
-
parameter_array[wal_buffers]=$((memory * 16 ))"MB"
-
# 32GB => 2048MB
-
parameter_array[maintenance_work_mem]=$((memory * 64 ))"MB"
-
}
-
-
# modify parameters
-
function modify_parameters(){
-
# modify parameters by modifying file postgresql.conf:
-
for parameter in ${!parameter_array[*]}
-
do
-
#check whether the parameters have been modified
-
# PostgreSQL's default parameter configuration example: enable_seqscan = on
-
# viid's example: enable_seqscan='on'
-
check_out=$(grep "^${parameter}=" "${data_directory}"/postgresql.conf | grep -v '#' | tail -n 1)
-
# process sleep
-
sleep 0.2s
-
if [[ -z "${check_out}" ]] ; then
-
echo "${parameter}='${parameter_array[${parameter}]}'" >> "${data_directory}"/postgresql.conf
-
check_fun
-
echo -e "${INFO} modify ${parameter} successfully"
-
else
-
if [[ "${check_out}" = "${parameter}='${parameter_array[${parameter}]}'" ]] ; then
-
echo -e "${INFO} ${parameter} is already configured, then skip this step"
-
else
-
sed -i s!^"${check_out}"!"${parameter}='${parameter_array[${parameter}]}'"!g "${data_directory}"/postgresql.conf
-
check_fun
-
echo -e "${INFO} modify ${parameter} successfully"
-
fi
-
fi
-
done
-
}
-
-
# create directory(pg_log and pg_arch), and set user postgres permission
-
function create_dir(){
-
directory_array=("pg_arch" "pg_log")
-
for directory in ${directory_array[*]};
-
do
-
# process sleep
-
sleep 0.2s
-
if [[ ! -d "${data_directory}/${directory}" ]] ; then
-
mkdir -p "${data_directory}"/"${directory}"
-
echo -e "${INFO} path ${data_directory}/${directory} create successfully"
-
else
-
echo -e "${INFO} ${data_directory}/${directory} is already exists, then skip this step"
-
fi
-
# set user postgres permission
-
chown postgres:postgres "${data_directory}"/"${directory}"
-
done
-
}
-
-
# because the environment is different, need to find the path of the database restart command 'pg_ctl'
-
function find_cmd(){
-
result=$(find / -name pg_ctl 2> /dev/null | grep bin/pg_ctl$ | tail -n 1 )
-
# check whether the path exists
-
if [[ -z "${result}" ]] ; then
-
echo -e "${ERROR} database restart command 'pg_ctl' not exists"
-
echo -e "${ERROR} please check to see if the database is installed or the command directory does not have permission to access it"
-
exit 1
-
else
-
echo -e "${INFO} database restart command 'pg_ctl' path: ${result}"
-
pgctl_path=${result}
-
fi
-
}
-
-
# user choose whether to restart or not
-
function check_restart(){
-
read -r -p "Is it necessary to restart database immediately?[Enter YES or NO]:" result
-
if [[ "${result,,}" = "yes" ]] ; then
-
echo -e "${INFO} start to restart database"
-
${pgctl_path} restart -D "${data_directory}" >& /dev/null
-
if [[ 0 -ne ${status} ]] ; then
-
echo -e "${ERROR} restart database failed"
-
exit 12
-
fi
-
elif [[ "${result,,}" = "no" ]] ; then
-
echo -e "${WARN} please restart database manually"
-
echo -e "${WARN} if you don't restart, database may not be available"
-
exit 11
-
else
-
echo -e "${ERROR} invalid input,please enter again"
-
check_restart
-
fi
-
}
-
-
# ******* start *******
-
# prepare conditions:memory ,data_directory
-
prepare_conditions
-
# calculate parameters
-
calculate_parameters
-
# modify parameters
-
modify_parameters
-
# create directory(pg_log and pg_arch)
-
create_dir
-
# the path of the database restart command 'pg_ctl'
-
find_cmd
-
# remind user that they need to restart database to take effect
-
# process sleep
-
sleep 0.5s
-
echo -e ""
-
echo -e "*******************************************************************"
-
echo -e "* *"
-
echo -e "* *"
-
echo -e "* restart database to take effect *"
-
echo -e "* *"
-
echo -e "* *"
-
echo -e "*******************************************************************"
-
# process sleep
-
sleep 0.5s
-
# user choose whether to restart or not
-
# check_restart
-
echo -e "${INFO} start to restart database"
-
${pgctl_path} restart -D "${data_directory}" >& /dev/null
-
[转帖]PostgreSQL 参数优化设置 32GB内存(推荐) 内存参数 检查点 日志参数 自动初始化参数shell脚本的更多相关文章
- vm内核参数优化设置
http://www.cnblogs.com/wjoyxt/archive/2014/06/08/3777042.html (1)vm.overcommit_memory 执行grep -i com ...
- ajax 参数data问题 data中的 参数名 参数值为string 提交到后台后,会自动转换参数名相同的 类型 和 js字符串拼接
latlng"14.6005238,100.43635419999998"Cusid"accb5c1b-6aef-4f3b-a4eb-d60ea1ca5f54" ...
- AI人脸识别SDK接入 — 参数优化篇(虹软)
引言 使用了虹软公司免费的人脸识别算法,感觉还是很不错的,当然,如果是初次接触的话会对一些接口的参数有些疑问的.这里分享一下我对一些参数的验证结果(这里以windows版本为例,linux.andro ...
- 虹软AI 人脸识别SDK接入 — 参数优化篇
引言 使用了免费的人脸识别算法,感觉还是很不错的,但是初次接触的话会对一些接口的参数有些疑问的.这里分享一下我对一些参数的验证结果(这里以windows版本为例,linux.android基本一样), ...
- linux——系统内核参数优化
vim /etc/sysctl.conf net.ipv4.tcp_syncookies = 1 fs.file-max = 999999 net.ipv4.tcp_max_tw_buckets = ...
- 使用服务器参数文件(SPFILE)管理初始化参数
传统上,Oracle数据库的初始化参数存储在文本初始化参数文件中.为了更好的可管理性,您可以选择在二进制服务器参数文件中维护初始化参数,该文件在数据库启动和关闭期间保持不变.本节介绍服务器参数文件,并 ...
- Ubuntu 系统服务器初始化配置、安全加固、内核优化和常用软件安装的Shell脚本分享
转载自:https://www.bilibili.com/read/cv13875402?spm_id_from=333.999.0.0 描述: 适用于企业内部 Ubuntu 操作服务器初始化.系统安 ...
- CentOS7 系统服务器初始化配置、安全加固、内核升级优化常用软件安装的Shell脚本分享
转载自:https://www.bilibili.com/read/cv13875630?spm_id_from=333.999.0.0 描述: 适用于企业内部 CentOS7 系列操作服务器初始化. ...
- javaee学习-servlet初始化参数
1.需要定义ServletConfig对象来接收servlet配置的初始化参数. 2.当servlet配置了初始化参数后,web容器在创建servlet实例对象时, 会自动将这些初始化参数封装到Ser ...
- ORACLE初始化参数文件概述
ORACLE初始化参数文件概述 在9i之前,参数文件只有一种,它是文本格式的,称为pfile,在9i及以后的版本中,新增了服务器参数文件,称为spfile,它是二进制格式的.这两种参数文件都是用来存储 ...
随机推荐
- Unicode编码:打破语言壁垒,实现无缝交流
Unicode编码是一种用于表示文本字符的编码系统,它旨在解决不同字符集之间相互兼容的问题,使各种语言和文化得以在数字世界中无缝交流.本文将从多个方面介绍Unicode编码的概念.原理及其在现实中的应 ...
- 最基本的SpringCloud的搭建
对于springcloud而言,模块是按业务进行区分的: 父工程 依赖 <parent> <groupId>org.springframework.boot</group ...
- 神经网络基础篇:详解二分类(Binary Classification)
二分类 注:当实现一个神经网络的时候,通常不直接使用for循环来遍历整个训练集(编程tips) 举例逻辑回归 逻辑回归是一个用于二分类(binary classification)的算法.首先从一个问 ...
- 一文解析Spring JDBC Template的使用指导
摘要:Spring框架对JDBC的简单封装.提供了一个JDBCTemplate对象简化JDBC的开发. 本文分享自华为云社区<Spring JdbcTemplate使用解析>,作者: 共饮 ...
- 只需2步,教你在Vue中设置登录验证拦截
摘要:两步教你在Vue中设置登录验证拦截! 本文分享自华为云社区<两步教你在Vue中设置登录验证拦截!>,作者: 灰小猿 . 今天在做vue和springboot交互的一个项目的时候,想要 ...
- Cmder - 想让你的windows下 cmd 和 SecureCRT 操作 Linux 一样帅吗 附字符集编码 chcp 936、chcp 65001
想让你的windows下 cmd 和 SecureCRT 操作 Linux 一样帅的命令行显示吗. 下载 cmder 绿色版,然后用我的配置文件,替换原来的文件启动就可以了 配置文件下载:cmder ...
- Axure 母版与元件
需要重复使用的元件,建议创建成母版: 如果修改了母版,所有页面中的母版元件将会被同步修改 元件:添加后,所有的 Axure 都可以使用 母版:只适用当前的 Axure 原型 拖放行为: 任意位置:可以 ...
- CompletableFuture 打桌球的应用
CompletableFuture 使用 @Test public void billiardTest() throws Exception { // 创建点外卖线程: CompletableFutu ...
- 阿里OSS文件访问变成下载
将 ECS 挂载 OSS 多Bucket ,进行文件存储后,发现PDF.图片在浏览器中访问URL,变成了下载,页不是预览. 1. 解决办法,文件类型 application/octet-stream ...
- 【短道速滑二】古老的基于亮度平均值的自动Gamma校正算法。
在github上搜索代码Auto Gamma Correction,找到一个比较古老的代码,详见:https://github.com/PedramBabakhani/Automatic-Gamma- ...