[转帖]PostgreSQL 压测工具pgbench
1.命令
-
pgbench --help
-
-
pgbench is a benchmarking tool for PostgreSQL.
-
-
Usage:
-
pgbench [OPTION]... [DBNAME]
-
-
Initialization options:
-
-i, --initialize invokes initialization mode 初始化模式
-
-F, --fillfactor=NUM set fill factor
-
-n, --no-vacuum do not run VACUUM after initialization
-
-q, --quiet quiet logging (one message each 5 seconds)
-
-s, --scale=NUM scaling factor
-
--foreign-keys create foreign key constraints between tables
-
--index-tablespace=TABLESPACE
-
create indexes in the specified tablespace
-
--tablespace=TABLESPACE create tables in the specified tablespace
-
--unlogged-tables create tables as unlogged tables
-
-
Options to select what to run:
-
-b, --builtin=NAME[@W] add builtin script NAME weighted at W (default: 1)
-
(use "-b list" to list available scripts)
-
-f, --file=FILENAME[@W] add script FILENAME weighted at W (default: 1) 测试脚本位置(可以自定义)
-
-N, --skip-some-updates skip updates of pgbench_tellers and pgbench_branches
-
(same as "-b simple-update")
-
-S, --select-only perform SELECT-only transactions
-
(same as "-b select-only")
-
-
Benchmarking options:
-
-c, --client=NUM number of concurrent database clients (default: 1) 模拟客户端个数,相当于并发量
-
-C, --connect establish new connection for each transaction 设定为每一个事务建一个新连接
-
-D, --define=VARNAME=VALUE
-
define variable for use by custom script
-
-j, --jobs=NUM number of threads (default: 1) 启动线程数
-
-l, --log write transaction times to log file
-
-L, --latency-limit=NUM count transactions lasting more than NUM ms as late
-
-M, --protocol=simple|extended|prepared
-
protocol for submitting queries (default: simple)
-
-n, --no-vacuum do not run VACUUM before tests
-
-P, --progress=NUM show thread progress report every NUM seconds 每隔数秒显示线程进度报告
-
-r, --report-latencies report average latency per command 报告每个命令的平均延迟
-
-R, --rate=NUM target rate in transactions per second
-
-s, --scale=NUM report this scale factor in output
-
-t, --transactions=NUM number of transactions each client runs (default: 10)
-
-T, --time=NUM duration of benchmark test in seconds 测试时间,单位:秒
-
-v, --vacuum-all vacuum all four standard tables before tests
-
--aggregate-interval=NUM aggregate data over NUM seconds
-
--progress-timestamp use Unix epoch timestamps for progress
-
--sampling-rate=NUM fraction of transactions to log (e.g., 0.01 for 1%)
-
-
Common options:
-
-d, --debug print debugging output
-
-h, --host=HOSTNAME database server host or socket directory
-
-p, --port=PORT database server port number
-
-U, --username=USERNAME connect as specified database user
-
-V, --version output version information, then exit
-
-?, --help show this help, then exit
2.初始化
-
su - postgres
-
-
# 使用postgres作为测试库
-
pgbench -i -d postgres
-
-
# 使用默认参数创造的测试表,各表的数据量:
-
pgbench_accounts:100000
-
pg_branches:1
-
pg_tellers:10

pgbench -i -F 100 -s 100 -d postgres

3.压力测试
(1)测试一个客户端session(用户)
pgbench -c 1 -T 20 -r -d postgres
(2)测试30个客户端session(用户)
pgbench -c 30 -T 20 -r -d postgres
4.自定义脚本压力测试
create table test(id int primary key, info text, crt_time timestamp);
-
vi test.sql
-
\set id random(1,100000000)
-
insert into test (id,info,crt_time) values (:id, md5(random()::text), now()) on conflict (id) do update set info=excluded.info, crt_time=excluded.crt_time;
pgbench -M prepared -r -f ./test.sql -c 32 -j 32 -T 20 -d postgres
[转帖]PostgreSQL 压测工具pgbench的更多相关文章
- super-smack压测工具
简介 super-smack是一款开源压测工具,支持MySQL.PostgreSQL.Oracle.本篇主要介绍一下使用super-smack压测MySQL体会. 1.SQL定义 2.数据字典定义 3 ...
- Http压测工具wrk使用指南
用过了很多压测工具,却一直没找到中意的那款.最近试了wrk感觉不错,写下这份使用指南给自己备忘用,如果能帮到你,那也很好. 安装 wrk支持大多数类UNIX系统,不支持windows.需要操作系统支持 ...
- web压测工具http_load原理分析
一.前言 http_load是一款测试web服务器性能的开源工具,从下面的网址可以下载到最新版本的http_load: http://www.acme.com/software/http_load/ ...
- [软件测试]网站压测工具Webbench源码分析
一.我与webbench二三事 Webbench是一个在linux下使用的非常简单的网站压测工具.它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能.Webbench ...
- Http压测工具wrk使用指南【转】
用过了很多压测工具,却一直没找到中意的那款.最近试了wrk感觉不错,写下这份使用指南给自己备忘用,如果能帮到你,那也很好. 安装 wrk支持大多数类UNIX系统,不支持windows.需要操作系统支持 ...
- python服务端多进程压测工具
本文描述一个python实现的多进程压测工具,这个压测工具的特点如下: 多进程 在大多数情况下,压测一般适用于IO密集型场景(如访问接口并等待返回),在这种场景下多线程多进程的区分并不明显(详情请参见 ...
- 内存压测工具Memtester
在做压力测试时,发现一个内存压测工具Memtester,可以随意设置内存占用大小,非常方便 下载地址:http://pyropus.ca/software/memtester/old-versions ...
- Http 压测工具 wrk 基本使用
Http 压测工具 wrk 基本使用 Intro wrk 是一款现代HTTP基准测试工具,能够在单个多核CPU上运行时产生显着负载.它将多线程设计与可扩展事件通知系统(如epoll和kqueue)结合 ...
- 压测工具使用(vegeta)
一.压测工具vegeta 1.介绍 Vegeta 是一个用 Go 语言编写的多功能的 HTTP 负载测试工具,它提供了命令行工具和一个开发库. 官方地址:https://github.com/tsen ...
- 003_ab http压测工具
一. ab -r -k -c 20000 -n 25000000 https://www.uuwatch.me/abtest #ab压测工具单机最大并发为20000,可以在多台机器上执行以增大并发 y ...
随机推荐
- rime中州韵 输入效果一览 100+增强功能效果
rime是一个定制化程度很高的输入法框架, 我们可以在该框架上搭建适合自己的输入法程序.我们将在专栏 小狼毫 Rime 保姆教程 中完成以下近百种定制化效果的配置与演示.欢迎订阅. 以下为个性化定制的 ...
- 【Python】人工智能-机器学习——不调库手撕深度网络分类问题
1. 作业内容描述 1.1 背景 数据集大小150 该数据有4个属性,分别如下 Sepal.Length:花萼长度(cm) Sepal.Width:花萼宽度单位(cm) Petal.Length:花瓣 ...
- Quartz.Net系列(八):Trigger之CalendarIntervalScheduleBuilder详解
所有方法图 CalendarIntervalScheduleBuilder方法 在SimpleScheduleBuilder基础上实现了日.周.月.年 WithInterval:指定要生成触发器的时间 ...
- Istio与Kubernetes:资源管理与协同解析
本文分享自华为云社区<istio资源介绍以及和kubernetes资源扭转关系>,作者:可以交个朋友. 一.istio原理 Istio的原理是拦截 Kubernetes 中创建 Pod 的 ...
- 软件界旷世之架:测试驱动开发(TDD)之争
摘要:在软件行业中,神仙打架的名场面,那就不得不提的是2014年的那场--测试驱动开发(TDD)之争. 在历史上有很多精彩绝伦的神仙打架,比如数学界的牛顿和莱布尼茨关于微积分的旷世之争:比如量子物理中 ...
- pip升级和卸载安装的第三方库
pip install --upgrade 第三方库名 pip uninstall 第三方库名
- A/B测试助力游戏业务增长
更多技术交流.求职机会.试用福利,欢迎关注字节跳动数据平台微信公众号,回复[1]进入官方交流群 中国游戏行业发展现状及挑战 国内市场增长乏力 2021年游戏销售收入2965.13亿元,同比增长6.4% ...
- Python MatplotlibDeprecationWarning Matplotlib 3.6 and will be removed two minor releases later
百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support ...
- HF Hub 现已加入存储区域功能
我们在 企业版 Hub 服务 方案中推出了 存储区域(Storage Regions) 功能. 通过此功能,用户能够自主决定其组织的模型和数据集的存储地点,这带来两大显著优势,接下来的内容会进行简要介 ...
- go对mongodb的聚合查询
mongodb的环境搭建参考前面一篇通过mongo-driver使用说明 GO 包管理机制 BSON 介绍 在Go中使用BSON对象构建操作命令 在我们发送查询给数据库之前, 很重要的一点是,理解Go ...