pgbench.sgml 33.9 KB
Newer Older
1
<!-- doc/src/sgml/pgbench.sgml -->
2

3 4 5 6 7 8 9 10 11 12 13
<refentry id="pgbench">
 <refmeta>
  <refentrytitle><application>pgbench</application></refentrytitle>
  <manvolnum>1</manvolnum>
  <refmiscinfo>Application</refmiscinfo>
 </refmeta>

 <refnamediv>
  <refname>pgbench</refname>
  <refpurpose>run a benchmark test on <productname>PostgreSQL</productname></refpurpose>
 </refnamediv>
14 15 16 17 18

 <indexterm zone="pgbench">
  <primary>pgbench</primary>
 </indexterm>

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 <refsynopsisdiv>
  <cmdsynopsis>
   <command>pgbench</command>
   <arg choice="plain"><option>-i</option></arg>
   <arg rep="repeat"><replaceable>option</replaceable></arg>
   <arg choice="opt"><replaceable>dbname</replaceable></arg>
  </cmdsynopsis>
  <cmdsynopsis>
   <command>pgbench</command>
   <arg rep="repeat"><replaceable>option</replaceable></arg>
   <arg choice="opt"><replaceable>dbname</replaceable></arg>
  </cmdsynopsis>
 </refsynopsisdiv>

 <refsect1>
  <title>Description</title>
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
 <para>
  <application>pgbench</application> is a simple program for running benchmark
  tests on <productname>PostgreSQL</>.  It runs the same sequence of SQL
  commands over and over, possibly in multiple concurrent database sessions,
  and then calculates the average transaction rate (transactions per second).
  By default, <application>pgbench</application> tests a scenario that is
  loosely based on TPC-B, involving five <command>SELECT</>,
  <command>UPDATE</>, and <command>INSERT</> commands per transaction.
  However, it is easy to test other cases by writing your own transaction
  script files.
 </para>

 <para>
  Typical output from pgbench looks like:

50
<screen>
51 52 53 54 55 56 57 58 59
transaction type: TPC-B (sort of)
scaling factor: 10
query mode: simple
number of clients: 10
number of threads: 1
number of transactions per client: 1000
number of transactions actually processed: 10000/10000
tps = 85.184871 (including connections establishing)
tps = 85.296346 (excluding connections establishing)
60
</screen>
61 62 63 64 65

  The first six lines report some of the most important parameter
  settings.  The next line reports the number of transactions completed
  and intended (the latter being just the product of number of clients
  and number of transactions per client); these will be equal unless the run
66
  failed before completion.  (In <option>-T</> mode, only the actual
67
  number of transactions is printed.)
T
Tom Lane 已提交
68
  The last two lines report the number of transactions per second,
69 70 71 72 73 74
  figured with and without counting the time to start database sessions.
 </para>

  <para>
   The default TPC-B-like transaction test requires specific tables to be
   set up beforehand.  <application>pgbench</> should be invoked with
75
   the <option>-i</> (initialize) option to create and populate these
76 77 78 79
   tables.  (When you are testing a custom script, you don't need this
   step, but will instead need to do whatever setup your test needs.)
   Initialization looks like:

80
<programlisting>
81
pgbench -i <optional> <replaceable>other-options</> </optional> <replaceable>dbname</>
82
</programlisting>
83 84

   where <replaceable>dbname</> is the name of the already-created
85 86
   database to test in.  (You may also need <option>-h</>,
   <option>-p</>, and/or <option>-U</> options to specify how to
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
   connect to the database server.)
  </para>

  <caution>
   <para>
    <literal>pgbench -i</> creates four tables <structname>pgbench_accounts</>,
    <structname>pgbench_branches</>, <structname>pgbench_history</>, and
    <structname>pgbench_tellers</>,
    destroying any existing tables of these names.
    Be very careful to use another database if you have tables having these
    names!
   </para>
  </caution>

  <para>
   At the default <quote>scale factor</> of 1, the tables initially
   contain this many rows:
104
<screen>
105 106 107 108 109 110
table                   # of rows
---------------------------------
pgbench_branches        1
pgbench_tellers         10
pgbench_accounts        100000
pgbench_history         0
111
</screen>
112
   You can (and, for most purposes, probably should) increase the number
113 114
   of rows by using the <option>-s</> (scale factor) option.  The
   <option>-F</> (fillfactor) option might also be used at this point.
115 116 117 118
  </para>

  <para>
   Once you have done the necessary setup, you can run your benchmark
119
   with a command that doesn't include <option>-i</>, that is
120

121
<programlisting>
122
pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</>
123
</programlisting>
124 125

   In nearly all cases, you'll need some options to make a useful test.
126 127 128
   The most important options are <option>-c</> (number of clients),
   <option>-t</> (number of transactions), <option>-T</> (time limit),
   and <option>-f</> (specify a custom script file).
129 130
   See below for a full list.
  </para>
131 132 133 134
 </refsect1>

 <refsect1>
  <title>Options</title>
135 136

  <para>
137 138 139
   The following is divided into three subsections: Different options are used
   during database initialization and while running benchmarks, some options
   are useful in both cases.
140 141
  </para>

142 143
 <refsect2 id="pgbench-init-options">
  <title>Initialization Options</title>
144 145 146 147 148 149 150 151

   <para>
    <application>pgbench</application> accepts the following command-line
    initialization arguments:

    <variablelist>

     <varlistentry>
152
      <term><option>-i</option></term>
153
      <term><option>--initialize</option></term>
154 155
      <listitem>
       <para>
156
        Required to invoke initialization mode.
157 158 159 160
       </para>
      </listitem>
     </varlistentry>

161 162
     <varlistentry>
      <term><option>-F</option> <replaceable>fillfactor</></term>
163
      <term><option>--fillfactor=</option><replaceable>fillfactor</></term>
164 165 166 167 168 169 170 171 172 173
      <listitem>
       <para>
        Create the <structname>pgbench_accounts</>,
        <structname>pgbench_tellers</> and
        <structname>pgbench_branches</> tables with the given fillfactor.
        Default is 100.
       </para>
      </listitem>
     </varlistentry>

174 175
     <varlistentry>
      <term><option>-n</option></term>
176
      <term><option>--no-vacuum</option></term>
177 178 179 180 181 182 183
      <listitem>
       <para>
        Perform no vacuuming after initialization.
       </para>
      </listitem>
     </varlistentry>

184
     <varlistentry>
185
      <term><option>-q</option></term>
186
      <term><option>--quiet</option></term>
187 188
      <listitem>
       <para>
189 190 191
        Switch logging to quiet mode, producing only one progress message per 5
        seconds. The default logging prints one message each 100000 rows, which
        often outputs many lines per second (especially on good hardware).
192 193 194 195 196 197
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-s</option> <replaceable>scale_factor</></term>
198
      <term><option>--scale=</option><replaceable>scale_factor</></term>
199 200 201 202 203
      <listitem>
       <para>
        Multiply the number of rows generated by the scale factor.
        For example, <literal>-s 100</> will create 10,000,000 rows
        in the <structname>pgbench_accounts</> table. Default is 1.
204 205 206 207 208
        When the scale is 20,000 or larger, the columns used to
        hold account identifiers (<structfield>aid</structfield> columns)
        will switch to using larger integers (<type>bigint</type>),
        in order to be big enough to hold the range of account
        identifiers.
209 210 211 212
       </para>
      </listitem>
     </varlistentry>

213 214 215 216 217 218 219 220 221
     <varlistentry>
      <term><option>--foreign-keys</option></term>
      <listitem>
       <para>
        Create foreign key constraints between the standard tables.
       </para>
      </listitem>
     </varlistentry>

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
     <varlistentry>
      <term><option>--index-tablespace=<replaceable>index_tablespace</replaceable></option></term>
      <listitem>
       <para>
        Create indexes in the specified tablespace, rather than the default
        tablespace.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>--tablespace=<replaceable>tablespace</replaceable></option></term>
      <listitem>
       <para>
        Create tables in the specified tablespace, rather than the default
        tablespace.
       </para>
      </listitem>
     </varlistentry>

242 243 244 245 246 247 248 249 250
     <varlistentry>
      <term><option>--unlogged-tables</option></term>
      <listitem>
       <para>
        Create all tables as unlogged tables, rather than permanent tables.
       </para>
      </listitem>
     </varlistentry>

251 252 253
    </variablelist>
   </para>

254
 </refsect2>
255

256 257
 <refsect2 id="pgbench-run-options">
  <title>Benchmarking Options</title>
258 259 260 261 262 263 264 265 266

   <para>
    <application>pgbench</application> accepts the following command-line
    benchmarking arguments:

    <variablelist>

     <varlistentry>
      <term><option>-c</option> <replaceable>clients</></term>
267
      <term><option>--client=</option><replaceable>clients</></term>
268 269 270 271 272 273 274 275 276 277
      <listitem>
       <para>
        Number of clients simulated, that is, number of concurrent database
        sessions.  Default is 1.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-C</option></term>
278
      <term><option>--connect</option></term>
279 280 281 282 283 284 285 286 287 288 289
      <listitem>
       <para>
        Establish a new connection for each transaction, rather than
        doing it just once per client session.
        This is useful to measure the connection overhead.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-d</option></term>
290
      <term><option>--debug</option></term>
291 292 293 294 295 296 297 298 299
      <listitem>
       <para>
        Print debugging output.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-D</option> <replaceable>varname</><literal>=</><replaceable>value</></term>
300
      <term><option>--define=</option><replaceable>varname</><literal>=</><replaceable>value</></term>
301 302 303
      <listitem>
       <para>
        Define a variable for use by a custom script (see below).
304
        Multiple <option>-D</> options are allowed.
305 306 307 308 309 310
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-f</option> <replaceable>filename</></term>
311
      <term><option>--file=</option><replaceable>filename</></term>
312 313 314 315
      <listitem>
       <para>
        Read transaction script from <replaceable>filename</>.
        See below for details.
316
        <option>-N</option>, <option>-S</option>, and <option>-f</option>
317 318 319 320 321 322 323
        are mutually exclusive.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-j</option> <replaceable>threads</></term>
324
      <term><option>--jobs=</option><replaceable>threads</></term>
325 326 327 328 329 330 331 332 333 334 335 336 337
      <listitem>
       <para>
        Number of worker threads within <application>pgbench</application>.
        Using more than one thread can be helpful on multi-CPU machines.
        The number of clients must be a multiple of the number of threads,
        since each thread is given the same number of client sessions to manage.
        Default is 1.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-l</option></term>
338
      <term><option>--log</option></term>
339 340
      <listitem>
       <para>
P
Peter Eisentraut 已提交
341
        Write the time taken by each transaction to a log file.
342 343 344 345 346 347 348
        See below for details.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-M</option> <replaceable>querymode</></term>
349
      <term><option>--protocol=</option><replaceable>querymode</></term>
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
      <listitem>
       <para>
        Protocol to use for submitting queries to the server:
          <itemizedlist>
           <listitem>
            <para><literal>simple</>: use simple query protocol.</para>
           </listitem>
           <listitem>
            <para><literal>extended</>: use extended query protocol.</para>
           </listitem>
           <listitem>
            <para><literal>prepared</>: use extended query protocol with prepared statements.</para>
           </listitem>
          </itemizedlist>
        The default is simple query protocol.  (See <xref linkend="protocol">
        for more information.)
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-n</option></term>
372
      <term><option>--no-vacuum</option></term>
373 374 375 376 377 378 379 380 381 382 383 384 385 386
      <listitem>
       <para>
        Perform no vacuuming before running the test.
        This option is <emphasis>necessary</>
        if you are running a custom test scenario that does not include
        the standard tables <structname>pgbench_accounts</>,
        <structname>pgbench_branches</>, <structname>pgbench_history</>, and
        <structname>pgbench_tellers</>.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-N</option></term>
387
      <term><option>--skip-some-updates</option></term>
388 389 390 391 392 393 394 395 396 397
      <listitem>
       <para>
        Do not update <structname>pgbench_tellers</> and
        <structname>pgbench_branches</>.
        This will avoid update contention on these tables, but
        it makes the test case even less like TPC-B.
       </para>
      </listitem>
     </varlistentry>

398 399
     <varlistentry>
      <term><option>-r</option></term>
400
      <term><option>--report-latencies</option></term>
401 402 403 404 405 406 407 408 409
      <listitem>
       <para>
        Report the average per-statement latency (execution time from the
        perspective of the client) of each command after the benchmark
        finishes.  See below for details.
       </para>
      </listitem>
     </varlistentry>

410 411
     <varlistentry>
      <term><option>-s</option> <replaceable>scale_factor</></term>
412
      <term><option>--scale=</option><replaceable>scale_factor</></term>
413 414 415 416 417 418
      <listitem>
       <para>
        Report the specified scale factor in <application>pgbench</>'s
        output.  With the built-in tests, this is not necessary; the
        correct scale factor will be detected by counting the number of
        rows in the <structname>pgbench_branches</> table.  However, when testing
419
        custom benchmarks (<option>-f</> option), the scale factor
420 421 422 423 424 425 426
        will be reported as 1 unless this option is used.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-S</option></term>
427
      <term><option>--select-only</option></term>
428 429 430 431 432 433 434 435 436
      <listitem>
       <para>
        Perform select-only transactions instead of TPC-B-like test.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-t</option> <replaceable>transactions</></term>
437
      <term><option>--transactions=</option><replaceable>transactions</></term>
438 439 440 441 442 443 444 445 446
      <listitem>
       <para>
        Number of transactions each client runs.  Default is 10.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-T</option> <replaceable>seconds</></term>
447
      <term><option>--time=</option><replaceable>seconds</></term>
448 449 450
      <listitem>
       <para>
        Run the test for this many seconds, rather than a fixed number of
451 452
        transactions per client. <option>-t</option> and
        <option>-T</option> are mutually exclusive.
453 454 455 456 457 458
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-v</option></term>
459
      <term><option>--vacuum-all</option></term>
460 461 462
      <listitem>
       <para>
        Vacuum all four standard tables before running the test.
463
        With neither <option>-n</> nor <option>-v</>, pgbench will vacuum the
464 465 466 467 468 469
        <structname>pgbench_tellers</> and <structname>pgbench_branches</>
        tables, and will truncate <structname>pgbench_history</>.
       </para>
      </listitem>
     </varlistentry>

470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
     <varlistentry>
      <term><option>--aggregate-interval=<replaceable>seconds</></option></term>
      <listitem>
       <para>
        Length of aggregation interval (in seconds). May be used only together
        with <application>-l</application> - with this option, the log contains
        per-interval summary (number of transactions, min/max latency and two
        additional fields useful for variance estimation).
       </para>
       <para>
        This option is not currently supported on Windows.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>--sampling-rate=<replaceable>rate</></option></term>
      <listitem>
       <para>
        Sampling rate, used when writing data into the log, to reduce the
        amount of log generated. If this option is given, only the specified
        fraction of transactions are logged. 1.0 means all transactions will
        be logged, 0.05 means only 5% of the transactions will be logged.
       </para>
       <para>
        Remember to take the sampling rate into account when processing the
        log file. For example, when computing tps values, you need to multiply
        the numbers accordingly (e.g. with 0.01 sample rate, you'll only get
        1/100 of the actual tps).
       </para>
      </listitem>
     </varlistentry>

503 504 505
    </variablelist>
   </para>

506
 </refsect2>
507

508 509
 <refsect2 id="pgbench-common-options">
  <title>Common Options</title>
510 511 512 513 514 515 516 517 518

   <para>
    <application>pgbench</application> accepts the following command-line
    common arguments:

    <variablelist>

     <varlistentry>
      <term><option>-h</option> <replaceable>hostname</></term>
519
      <term><option>--host=</option><replaceable>hostname</></term>
520 521
      <listitem>
       <para>
P
Peter Eisentraut 已提交
522
        The database server's host name
523 524 525 526 527 528
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-p</option> <replaceable>port</></term>
529
      <term><option>--port=</option><replaceable>port</></term>
530 531 532 533 534 535 536 537 538
      <listitem>
       <para>
        The database server's port number
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-U</option> <replaceable>login</></term>
539
      <term><option>--username=</option><replaceable>login</></term>
540 541
      <listitem>
       <para>
P
Peter Eisentraut 已提交
542
        The user name to connect as
543 544 545 546
       </para>
      </listitem>
     </varlistentry>

547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
     <varlistentry>
      <term><option>-V</></term>
      <term><option>--version</></term>
      <listitem>
       <para>
        Print the <application>pgbench</application> version and exit.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-?</></term>
      <term><option>--help</></term>
      <listitem>
       <para>
        Show help about <application>pgbench</application> command line
        arguments, and exit.
       </para>
      </listitem>
     </varlistentry>
567 568 569
    </variablelist>
   </para>

570 571
 </refsect2>
 </refsect1>
572

573 574 575 576
 <refsect1>
  <title>Notes</title>

 <refsect2>
577
  <title>What is the <quote>Transaction</> Actually Performed in pgbench?</title>
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593

  <para>
   The default transaction script issues seven commands per transaction:
  </para>

  <orderedlist>
   <listitem><para><literal>BEGIN;</literal></para></listitem>
   <listitem><para><literal>UPDATE pgbench_accounts SET abalance = abalance + :delta WHERE aid = :aid;</literal></para></listitem>
   <listitem><para><literal>SELECT abalance FROM pgbench_accounts WHERE aid = :aid;</literal></para></listitem>
   <listitem><para><literal>UPDATE pgbench_tellers SET tbalance = tbalance + :delta WHERE tid = :tid;</literal></para></listitem>
   <listitem><para><literal>UPDATE pgbench_branches SET bbalance = bbalance + :delta WHERE bid = :bid;</literal></para></listitem>
   <listitem><para><literal>INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP);</literal></para></listitem>
   <listitem><para><literal>END;</literal></para></listitem>
  </orderedlist>

  <para>
594 595
   If you specify <option>-N</>, steps 4 and 5 aren't included in the
   transaction.  If you specify <option>-S</>, only the <command>SELECT</> is
596 597
   issued.
  </para>
598
 </refsect2>
599

600
 <refsect2>
601 602 603 604 605 606
  <title>Custom Scripts</title>

  <para>
   <application>pgbench</application> has support for running custom
   benchmark scenarios by replacing the default transaction script
   (described above) with a transaction script read from a file
607
   (<option>-f</option> option).  In this case a <quote>transaction</>
608
   counts as one execution of a script file.  You can even specify
609
   multiple scripts (multiple <option>-f</option> options), in which
610 611 612 613 614
   case a random one of the scripts is chosen each time a client session
   starts a new transaction.
  </para>

  <para>
P
Peter Eisentraut 已提交
615
   The format of a script file is one SQL command per line; multiline
616 617 618 619 620 621 622 623
   SQL commands are not supported.  Empty lines and lines beginning with
   <literal>--</> are ignored.  Script file lines can also be
   <quote>meta commands</>, which are interpreted by <application>pgbench</>
   itself, as described below.
  </para>

  <para>
   There is a simple variable-substitution facility for script files.
624
   Variables can be set by the command-line <option>-D</> option,
625
   explained above, or by the meta commands explained below.
626
   In addition to any variables preset by <option>-D</> command-line options,
627 628 629
   there are a few variables that are preset automatically, listed in
   <xref linkend="pgbench-automatic-variables">. A value specified for these
   variables using <option>-D</> takes precedence over the automatic presets.
630 631 632 633 634 635
   Once set, a variable's
   value can be inserted into a SQL command by writing
   <literal>:</><replaceable>variablename</>.  When running more than
   one client session, each session has its own set of variables.
  </para>

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
   <table id="pgbench-automatic-variables">
    <title>Automatic variables</title>
    <tgroup cols="2">
     <thead>
      <row>
       <entry>Variable</entry>
       <entry>Description</entry>
      </row>
     </thead>

     <tbody>
      <row>
       <entry> <literal>scale</literal> </entry>
       <entry>current scale factor</entry>
      </row>

      <row>
       <entry> <literal>client_id</literal> </entry>
       <entry>unique number identifying the client session (starts from zero)</entry>
      </row>
     </tbody>
    </tgroup>
   </table>

660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
  <para>
   Script file meta commands begin with a backslash (<literal>\</>).
   Arguments to a meta command are separated by white space.
   These meta commands are supported:
  </para>

  <variablelist>
   <varlistentry>
    <term>
     <literal>\set <replaceable>varname</> <replaceable>operand1</> [ <replaceable>operator</> <replaceable>operand2</> ]</literal>
    </term>

    <listitem>
     <para>
      Sets variable <replaceable>varname</> to a calculated integer value.
      Each <replaceable>operand</> is either an integer constant or a
      <literal>:</><replaceable>variablename</> reference to a variable
      having an integer value.  The <replaceable>operator</> can be
      <literal>+</>, <literal>-</>, <literal>*</>, or <literal>/</>.
     </para>

     <para>
      Example:
683
<programlisting>
684
\set ntellers 10 * :scale
685
</programlisting></para>
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
    </listitem>
   </varlistentry>

   <varlistentry>
    <term>
     <literal>\setrandom <replaceable>varname</> <replaceable>min</> <replaceable>max</></literal>
    </term>

    <listitem>
     <para>
      Sets variable <replaceable>varname</> to a random integer value
      between the limits <replaceable>min</> and <replaceable>max</> inclusive.
      Each limit can be either an integer constant or a
      <literal>:</><replaceable>variablename</> reference to a variable
      having an integer value.
     </para>

     <para>
      Example:
705
<programlisting>
706
\setrandom aid 1 :naccounts
707
</programlisting></para>
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
    </listitem>
   </varlistentry>

   <varlistentry>
    <term>
     <literal>\sleep <replaceable>number</> [ us | ms | s ]</literal>
    </term>

    <listitem>
     <para>
      Causes script execution to sleep for the specified duration in
      microseconds (<literal>us</>), milliseconds (<literal>ms</>) or seconds
      (<literal>s</>).  If the unit is omitted then seconds are the default.
      <replaceable>number</> can be either an integer constant or a
      <literal>:</><replaceable>variablename</> reference to a variable
      having an integer value.
     </para>

     <para>
      Example:
728
<programlisting>
729
\sleep 10 ms
730
</programlisting></para>
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
    </listitem>
   </varlistentry>

   <varlistentry>
    <term>
     <literal>\setshell <replaceable>varname</> <replaceable>command</> [ <replaceable>argument</> ... ]</literal>
    </term>

    <listitem>
     <para>
      Sets variable <replaceable>varname</> to the result of the shell command
      <replaceable>command</>. The command must return an integer value
      through its standard output.
     </para>

746
     <para><replaceable>argument</> can be either a text constant or a
747 748 749 750 751 752 753 754
      <literal>:</><replaceable>variablename</> reference to a variable of
      any types. If you want to use <replaceable>argument</> starting with
      colons, you need to add an additional colon at the beginning of
      <replaceable>argument</>.
     </para>

     <para>
      Example:
755
<programlisting>
756
\setshell variable_to_be_assigned command literal_argument :variable ::literal_starting_with_colon
757
</programlisting></para>
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
    </listitem>
   </varlistentry>

   <varlistentry>
    <term>
     <literal>\shell <replaceable>command</> [ <replaceable>argument</> ... ]</literal>
    </term>

    <listitem>
     <para>
      Same as <literal>\setshell</literal>, but the result is ignored.
     </para>

     <para>
      Example:
773
<programlisting>
774
\shell command literal_argument :variable ::literal_starting_with_colon
775
</programlisting></para>
776 777 778 779 780 781 782 783
    </listitem>
   </varlistentry>
  </variablelist>

  <para>
   As an example, the full definition of the built-in TPC-B-like
   transaction is:

784
<programlisting>
785 786 787 788 789 790 791 792 793 794 795 796 797 798
\set nbranches :scale
\set ntellers 10 * :scale
\set naccounts 100000 * :scale
\setrandom aid 1 :naccounts
\setrandom bid 1 :nbranches
\setrandom tid 1 :ntellers
\setrandom delta -5000 5000
BEGIN;
UPDATE pgbench_accounts SET abalance = abalance + :delta WHERE aid = :aid;
SELECT abalance FROM pgbench_accounts WHERE aid = :aid;
UPDATE pgbench_tellers SET tbalance = tbalance + :delta WHERE tid = :tid;
UPDATE pgbench_branches SET bbalance = bbalance + :delta WHERE bid = :bid;
INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP);
END;
799
</programlisting>
800 801 802 803 804 805 806

   This script allows each iteration of the transaction to reference
   different, randomly-chosen rows.  (This example also shows why it's
   important for each client session to have its own variables &mdash;
   otherwise they'd not be independently touching different rows.)
  </para>

807
 </refsect2>
808

809
 <refsect2>
810
  <title>Per-Transaction Logging</title>
811 812

  <para>
T
Tatsuo Ishii 已提交
813 814 815
   With the <option>-l</> option but without the <option>--aggregate-interval</option>,
   <application>pgbench</> writes the time taken by each transaction
   to a log file.  The log file will be named
816 817
   <filename>pgbench_log.<replaceable>nnn</></filename>, where
   <replaceable>nnn</> is the PID of the pgbench process.
818
   If the <option>-j</> option is 2 or higher, creating multiple worker
819
   threads, each will have its own log file. The first worker will use the
820
   same name for its log file as in the standard single worker case.
821 822 823 824 825 826 827 828 829
   The additional log files for the other workers will be named
   <filename>pgbench_log.<replaceable>nnn</>.<replaceable>mmm</></filename>,
   where <replaceable>mmm</> is a sequential number for each worker starting
   with 1.
  </para>

  <para>
   The format of the log is:

830 831 832
<synopsis>
<replaceable>client_id</> <replaceable>transaction_no</> <replaceable>time</> <replaceable>file_no</> <replaceable>time_epoch</> <replaceable>time_us</>
</synopsis>
833

834
   where <replaceable>time</> is the total elapsed transaction time in microseconds,
835
   <replaceable>file_no</> identifies which script file was used
836
   (useful when multiple scripts were specified with <option>-f</>),
837 838 839 840 841 842 843 844 845
   and <replaceable>time_epoch</>/<replaceable>time_us</> are a
   UNIX epoch format timestamp and an offset
   in microseconds (suitable for creating a ISO 8601
   timestamp with fractional seconds) showing when
   the transaction completed.
  </para>

  <para>
   Here are example outputs:
846
<screen>
847 848 849 850
 0 199 2241 0 1175850568 995598
 0 200 2465 0 1175850568 998079
 0 201 2513 0 1175850569 608
 0 202 2038 0 1175850569 2663
851
</screen></para>
852 853 854 855 856 857

  <para>
   When running a long test on hardware that can handle a lot of transactions,
   the log files can become very large.  The <option>--sampling-rate</> option
   can be used to log only a random sample of transactions.
  </para>
858
 </refsect2>
859

T
Tatsuo Ishii 已提交
860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
 <refsect2>
  <title>Aggregated Logging</title>
  
  <para>
   With the <option>--aggregate-interval</option> option, the logs use a bit different format:

<synopsis>
<replaceable>interval_start</> <replaceable>num_of_transactions</> <replaceable>latency_sum</> <replaceable>latency_2_sum</> <replaceable>min_latency</> <replaceable>max_latency</>
</synopsis>

   where <replaceable>interval_start</> is the start of the interval (UNIX epoch
   format timestamp), <replaceable>num_of_transactions</> is the number of transactions
   within the interval, <replaceable>latency_sum</replaceable> is a sum of latencies
   (so you can compute average latency easily). The following two fields are useful
   for variance estimation - <replaceable>latency_sum</> is a sum of latencies and
   <replaceable>latency_2_sum</> is a sum of 2nd powers of latencies. The last two
   fields are <replaceable>min_latency</> - a minimum latency within the interval, and
   <replaceable>max_latency</> - maximum latency within the interval. A transaction is
   counted into the interval when it was committed.
  </para>

  <para>
   Here is example outputs:
<screen>
1345828501 5601 1542744 483552416 61 2573
1345828503 7884 1979812 565806736 60 1479
1345828505 7208 1979422 567277552 59 1391
1345828507 7685 1980268 569784714 60 1398
1345828509 7073 1979779 573489941 236 1411
</screen></para>

  <para>
   Notice that while the plain (unaggregated) log file contains index
   of the custom script files, the aggregated log does not. Therefore if
   you need per script data, you need to aggregate the data on your own.
  </para>

 </refsect2>

899
 <refsect2>
900
  <title>Per-Statement Latencies</title>
901 902

  <para>
903
   With the <option>-r</> option, <application>pgbench</> collects
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
   the elapsed transaction time of each statement executed by every
   client.  It then reports an average of those values, referred to
   as the latency for each statement, after the benchmark has finished.
  </para>

  <para>
   For the default script, the output will look similar to this:
<screen>
starting vacuum...end.
transaction type: TPC-B (sort of)
scaling factor: 1
query mode: simple
number of clients: 10
number of threads: 1
number of transactions per client: 1000
number of transactions actually processed: 10000/10000
tps = 618.764555 (including connections establishing)
tps = 622.977698 (excluding connections establishing)
statement latencies in milliseconds:
        0.004386        \set nbranches 1 * :scale
        0.001343        \set ntellers 10 * :scale
        0.001212        \set naccounts 100000 * :scale
        0.001310        \setrandom aid 1 :naccounts
        0.001073        \setrandom bid 1 :nbranches
        0.001005        \setrandom tid 1 :ntellers
        0.001078        \setrandom delta -5000 5000
        0.326152        BEGIN;
        0.603376        UPDATE pgbench_accounts SET abalance = abalance + :delta WHERE aid = :aid;
        0.454643        SELECT abalance FROM pgbench_accounts WHERE aid = :aid;
        5.528491        UPDATE pgbench_tellers SET tbalance = tbalance + :delta WHERE tid = :tid;
        7.335435        UPDATE pgbench_branches SET bbalance = bbalance + :delta WHERE bid = :bid;
        0.371851        INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP);
        1.212976        END;
</screen>
  </para>

  <para>
   If multiple script files are specified, the averages are reported
   separately for each script file.
  </para>

  <para>
   Note that collecting the additional timing information needed for
   per-statement latency computation adds some overhead.  This will slow
   average execution speed and lower the computed TPS.  The amount
   of slowdown varies significantly depending on platform and hardware.
   Comparing average TPS values with and without latency reporting enabled
   is a good way to measure if the timing overhead is significant.
  </para>
953
 </refsect2>
954

955
 <refsect2>
956 957 958 959 960 961 962 963 964 965
  <title>Good Practices</title>

  <para>
   It is very easy to use <application>pgbench</> to produce completely
   meaningless numbers.  Here are some guidelines to help you get useful
   results.
  </para>

  <para>
   In the first place, <emphasis>never</> believe any test that runs
966
   for only a few seconds.  Use the <option>-t</> or <option>-T</> option
967 968 969 970 971 972 973 974
   to make the run last at least a few minutes, so as to average out noise.
   In some cases you could need hours to get numbers that are reproducible.
   It's a good idea to try the test run a few times, to find out if your
   numbers are reproducible or not.
  </para>

  <para>
   For the default TPC-B-like test scenario, the initialization scale factor
975 976 977
   (<option>-s</>) should be at least as large as the largest number of
   clients you intend to test (<option>-c</>); else you'll mostly be
   measuring update contention.  There are only <option>-s</> rows in
978
   the <structname>pgbench_branches</> table, and every transaction wants to
979
   update one of them, so <option>-c</> values in excess of <option>-s</>
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
   will undoubtedly result in lots of transactions blocked waiting for
   other transactions.
  </para>

  <para>
   The default test scenario is also quite sensitive to how long it's been
   since the tables were initialized: accumulation of dead rows and dead space
   in the tables changes the results.  To understand the results you must keep
   track of the total number of updates and when vacuuming happens.  If
   autovacuum is enabled it can result in unpredictable changes in measured
   performance.
  </para>

  <para>
   A limitation of <application>pgbench</> is that it can itself become
   the bottleneck when trying to test a large number of client sessions.
   This can be alleviated by running <application>pgbench</> on a different
   machine from the database server, although low network latency will be
   essential.  It might even be useful to run several <application>pgbench</>
   instances concurrently, on several client machines, against the same
   database server.
  </para>
1002 1003 1004
 </refsect2>
 </refsect1>
</refentry>