微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PostgreSQL 性能测试工具

postgresql 自带性能测试工具 pgbench
pgbench 是 postgresql 自带的交互性能测试工具。用于测试postgresql数据库性能
为了测试postgresql数据库性能,简单测试如下

bash-4.2$ pgbench --help
pgbench is a benchmarking tool for Postgresql.

Usage:
  pgbench [OPTION]... [dbnAME]

Initialization options:
  -i invokes initialization mode   -F NUM fill factor   -s NUM scaling factor   --index-tablespace=TABLESPACE                create indexes in the specified tablespace
  --tablespace=TABLESPACE                create tables in the specified tablespace
  --unlogged-tables                create tables as unlogged tables

Benchmarking options:
  -c NUM number of concurrent database clients (default: 1)   -C establish new connection for each transaction   -D VARNAME=VALUE                define variable for use by custom script
  -f FILENAME read transaction script from FILENAME   -j NUM number of threads (default: 1)   -l write transaction times to log file   -M simple|extended|prepared                protocol for submitting queries to server (default: simple)
  -n do not run VACUUM before tests   -N do not update tables "pgbench_tellers" and "pgbench_branches"   -r report average latency per command   -s NUM report this scale factor in output   -S perform SELECT-only transactions   -t NUM number of transactions each client runs (default: 10)   -T NUM duration of benchmark test in seconds   -v vacuum all four standard tables before tests 
Common options:
  -d print debugging output   -h HOSTNAME database server host or socket directory   -p PORT database server port number   -U USERNAME connect as specified database user   -V,--version output version @R_8_4045@ion,then exit   -?,--help show this help,then exit 
Report bugs to <pgsql-bugs@postgresql.org>.
pgbench -i pgbench

生成8千万数据的测试库

pgbench -i  -s 800 pgbench

生成20亿测试数据(海量数据生成生成速度看机器配置)

pgbench -i-s 20000 pgbench

单独安装,postgresql94-contrib

yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm
yum install  postgresql94-contrib

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐