System Grab Bag

View all TLDR pages from common (or from all pages)

pgbench

Run a benchmark test on PostgreSQL. More information: https://www.postgresql.org/docs/10/pgbench.html.
  • Initialize a database with a scale factor of 50 times the default size:
    pgbench --initialize --scale={{50}} {{database_name}}
  • Benchmark a database with 10 clients, 2 worker threads, and 10,000 transactions per client:
    pgbench --client={{10}} --jobs={{2}} --transactions={{10000}} {{database_name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.