1.命令


  1. pgbench --help
  2. pgbench is a benchmarking tool for PostgreSQL.
  3. Usage:
  4.   pgbench [OPTION]... [DBNAME]
  5. Initialization options:
  6.   -i, --initialize         invokes initialization mode 初始化模式
  7.   -F, --fillfactor=NUM     set fill factor
  8.   -n, --no-vacuum          do not run VACUUM after initialization
  9.   -q, --quiet              quiet logging (one message each 5 seconds)
  10.   -s, --scale=NUM          scaling factor
  11.   --foreign-keys           create foreign key constraints between tables    
  12.   --index-tablespace=TABLESPACE    
  13.                            create indexes in the specified tablespace    
  14.   --tablespace=TABLESPACE  create tables in the specified tablespace    
  15.   --unlogged-tables        create tables as unlogged tables    
  16.     
  17. Options to select what to run:    
  18.   -b, --builtin=NAME[@W]   add builtin script NAME weighted at W (default: 1)    
  19.                            (use "-b list" to list available scripts)    
  20.   -f, --file=FILENAME[@W]  add script FILENAME weighted at W (default: 1)  测试脚本位置(可以自定义)    
  21.   -N, --skip-some-updates  skip updates of pgbench_tellers and pgbench_branches    
  22.                            (same as "-b simple-update")    
  23.   -S, --select-only        perform SELECT-only transactions    
  24.                            (same as "-b select-only")    
  25.     
  26. Benchmarking options:    
  27.   -c, --client=NUM         number of concurrent database clients (default: 1)  模拟客户端个数,相当于并发量
  28.   -C, --connect            establish new connection for each transaction  设定为每一个事务建一个新连接   
  29.   -D, --define=VARNAME=VALUE    
  30.                            define variable for use by custom script    
  31.   -j, --jobs=NUM           number of threads (default: 1)    启动线程数
  32.   -l, --log                write transaction times to log file    
  33.   -L, --latency-limit=NUM  count transactions lasting more than NUM ms as late    
  34.   -M, --protocol=simple|extended|prepared    
  35.                            protocol for submitting queries (default: simple)    
  36.   -n, --no-vacuum          do not run VACUUM before tests    
  37.   -P, --progress=NUM       show thread progress report every NUM seconds    每隔数秒显示线程进度报告
  38.   -r, --report-latencies   report average latency per command    报告每个命令的平均延迟
  39.   -R, --rate=NUM           target rate in transactions per second    
  40.   -s, --scale=NUM          report this scale factor in output    
  41.   -t, --transactions=NUM   number of transactions each client runs (default: 10)    
  42.   -T, --time=NUM           duration of benchmark test in seconds   测试时间,单位:秒 
  43.   -v, --vacuum-all         vacuum all four standard tables before tests    
  44.   --aggregate-interval=NUM aggregate data over NUM seconds    
  45.   --progress-timestamp     use Unix epoch timestamps for progress    
  46.   --sampling-rate=NUM      fraction of transactions to log (e.g., 0.01 for 1%)    
  47. Common options:
  48.   -d, --debug              print debugging output    
  49.   -h, --host=HOSTNAME      database server host or socket directory    
  50.   -p, --port=PORT          database server port number    
  51.   -U, --username=USERNAME  connect as specified database user    
  52.   -V, --version            output version information, then exit
  53.   -?, --help               show this help, then exit
 

2.初始化


  1. su - postgres
  2. # 使用postgres作为测试库
  3. pgbench -i -d postgres
  4. # 使用默认参数创造的测试表,各表的数据量:
  5. pgbench_accounts:100000
  6. pg_branches:1
  7. pg_tellers:10
 
# 设置自定测试数据量,将测试数据扩大100倍,测试总数1000万,并且实时显示创建数据量
pgbench -i -F 100 -s 100 -d postgres
压测结果:
 
 

3.压力测试

(1)测试一个客户端session(用户)

# 时间20秒,显示每个命令的平均延迟
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);
 
# 创建脚本


  1. vi test.sql
  2. \set id random(1,100000000)
  3. 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技能树首页概览6104 人正在系统学习中

[转帖]PostgreSQL 压测工具pgbench的更多相关文章

  1. super-smack压测工具

    简介 super-smack是一款开源压测工具,支持MySQL.PostgreSQL.Oracle.本篇主要介绍一下使用super-smack压测MySQL体会. 1.SQL定义 2.数据字典定义 3 ...

  2. Http压测工具wrk使用指南

    用过了很多压测工具,却一直没找到中意的那款.最近试了wrk感觉不错,写下这份使用指南给自己备忘用,如果能帮到你,那也很好. 安装 wrk支持大多数类UNIX系统,不支持windows.需要操作系统支持 ...

  3. web压测工具http_load原理分析

    一.前言 http_load是一款测试web服务器性能的开源工具,从下面的网址可以下载到最新版本的http_load: http://www.acme.com/software/http_load/ ...

  4. [软件测试]网站压测工具Webbench源码分析

    一.我与webbench二三事 Webbench是一个在linux下使用的非常简单的网站压测工具.它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能.Webbench ...

  5. Http压测工具wrk使用指南【转】

    用过了很多压测工具,却一直没找到中意的那款.最近试了wrk感觉不错,写下这份使用指南给自己备忘用,如果能帮到你,那也很好. 安装 wrk支持大多数类UNIX系统,不支持windows.需要操作系统支持 ...

  6. python服务端多进程压测工具

    本文描述一个python实现的多进程压测工具,这个压测工具的特点如下: 多进程 在大多数情况下,压测一般适用于IO密集型场景(如访问接口并等待返回),在这种场景下多线程多进程的区分并不明显(详情请参见 ...

  7. 内存压测工具Memtester

    在做压力测试时,发现一个内存压测工具Memtester,可以随意设置内存占用大小,非常方便 下载地址:http://pyropus.ca/software/memtester/old-versions ...

  8. Http 压测工具 wrk 基本使用

    Http 压测工具 wrk 基本使用 Intro wrk 是一款现代HTTP基准测试工具,能够在单个多核CPU上运行时产生显着负载.它将多线程设计与可扩展事件通知系统(如epoll和kqueue)结合 ...

  9. 压测工具使用(vegeta)

    一.压测工具vegeta 1.介绍 Vegeta 是一个用 Go 语言编写的多功能的 HTTP 负载测试工具,它提供了命令行工具和一个开发库. 官方地址:https://github.com/tsen ...

  10. 003_ab http压测工具

    一. ab -r -k -c 20000 -n 25000000 https://www.uuwatch.me/abtest #ab压测工具单机最大并发为20000,可以在多台机器上执行以增大并发 y ...

随机推荐

  1. rime中州韵 输入效果一览 100+增强功能效果

    rime是一个定制化程度很高的输入法框架, 我们可以在该框架上搭建适合自己的输入法程序.我们将在专栏 小狼毫 Rime 保姆教程 中完成以下近百种定制化效果的配置与演示.欢迎订阅. 以下为个性化定制的 ...

  2. 【Python】人工智能-机器学习——不调库手撕深度网络分类问题

    1. 作业内容描述 1.1 背景 数据集大小150 该数据有4个属性,分别如下 Sepal.Length:花萼长度(cm) Sepal.Width:花萼宽度单位(cm) Petal.Length:花瓣 ...

  3. Quartz.Net系列(八):Trigger之CalendarIntervalScheduleBuilder详解

    所有方法图 CalendarIntervalScheduleBuilder方法 在SimpleScheduleBuilder基础上实现了日.周.月.年 WithInterval:指定要生成触发器的时间 ...

  4. Istio与Kubernetes:资源管理与协同解析

    本文分享自华为云社区<istio资源介绍以及和kubernetes资源扭转关系>,作者:可以交个朋友. 一.istio原理 Istio的原理是拦截 Kubernetes 中创建 Pod 的 ...

  5. 软件界旷世之架:测试驱动开发(TDD)之争

    摘要:在软件行业中,神仙打架的名场面,那就不得不提的是2014年的那场--测试驱动开发(TDD)之争. 在历史上有很多精彩绝伦的神仙打架,比如数学界的牛顿和莱布尼茨关于微积分的旷世之争:比如量子物理中 ...

  6. pip升级和卸载安装的第三方库

    pip install --upgrade 第三方库名 pip uninstall 第三方库名

  7. A/B测试助力游戏业务增长

    更多技术交流.求职机会.试用福利,欢迎关注字节跳动数据平台微信公众号,回复[1]进入官方交流群 中国游戏行业发展现状及挑战 国内市场增长乏力 2021年游戏销售收入2965.13亿元,同比增长6.4% ...

  8. Python MatplotlibDeprecationWarning Matplotlib 3.6 and will be removed two minor releases later

    百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support ...

  9. HF Hub 现已加入存储区域功能

    我们在 企业版 Hub 服务 方案中推出了 存储区域(Storage Regions) 功能. 通过此功能,用户能够自主决定其组织的模型和数据集的存储地点,这带来两大显著优势,接下来的内容会进行简要介 ...

  10. go对mongodb的聚合查询

    mongodb的环境搭建参考前面一篇通过mongo-driver使用说明 GO 包管理机制 BSON 介绍 在Go中使用BSON对象构建操作命令 在我们发送查询给数据库之前, 很重要的一点是,理解Go ...