@@ -472,18 +472,18 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</>
472
472
transaction scheduled start time, not the actual transaction beginning
473
473
time. Thus, the latency also includes the average schedule lag time. If
474
474
any transactions have been rolled back and retried after a
475
- serialization/deadlockfailure since the last report, the report
475
+ serialization/deadlockerror since the last report, the report
476
476
includes the number of such transactions and the sum of all retries. Use
477
477
the <option>--max-tries</> to enable transactions retries after
478
- serialization/deadlockfailures .
478
+ serialization/deadlockerrors .
479
479
</para>
480
480
<note>
481
481
<para>
482
482
If a custom script contains multiple transactions, its run is reported
483
483
as failed if any of its transactions ended with a
484
484
serialization/deadlock failure. The run of this script is reported as
485
485
retried if any of its transactions was retried after a
486
- serialization/deadlockfailure . The total sum of retries includes the
486
+ serialization/deadlockerror . The total sum of retries includes the
487
487
retries for all transactions in this script.
488
488
</para>
489
489
</note>
@@ -639,7 +639,7 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</>
639
639
<listitem>
640
640
<para>
641
641
Set the maximum number of tries for transactions with
642
- serialization/deadlockfailures . The default is 1.
642
+ serialization/deadlockerrors . The default is 1.
643
643
</para>
644
644
645
645
<note>
@@ -655,8 +655,8 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</>
655
655
<note>
656
656
<para>
657
657
Transactions that span over more than one script are not rolled back
658
- and will not be retried in case ofa failure . In such cases, the script
659
- in which thefailure occurred is reported as failed.
658
+ and will not be retried in case ofan error . In such cases, the script
659
+ in which theerror occurred is reported as failed.
660
660
</para>
661
661
</note>
662
662
</listitem>
@@ -1234,7 +1234,7 @@ END;
1234
1234
the <replaceable>time</> for a skipped transaction will be reported as
1235
1235
<literal>skipped</>.
1236
1236
<replaceable>serialization_retries</> and <replaceable>deadlock_retries</>
1237
- are the sums of all the retries after the correspondingfailures during the
1237
+ are the sums of all the retries after the correspondingerrors during the
1238
1238
current script execution. They are only present when the maximum number of
1239
1239
tries for transactions is more than 1 (<option>--max-tries</>).
1240
1240
If the transaction ended with a serialization/deadlock failure, its
@@ -1333,7 +1333,7 @@ END;
1333
1333
<replaceable>serialization_retries</>, and <replaceable>deadlock_retries</>
1334
1334
fields are only present if the maximum number of tries for transactions is
1335
1335
more than 1 (<option>--max-tries</>). They report the number of retried
1336
- transactions and the sum of all the retries after the correspondingfailures
1336
+ transactions and the sum of all the retries after the correspondingerrors
1337
1337
within the interval.
1338
1338
</para>
1339
1339
@@ -1346,7 +1346,7 @@ END;
1346
1346
statistics is increased by one, regardless of the number of retried
1347
1347
transactions. However, the <replaceable>serialization_retries</> and
1348
1348
<replaceable>deadlock_retries</> include the sum of all retries after the
1349
- correspondingfailures for all transactions in this script.
1349
+ correspondingerrors for all transactions in this script.
1350
1350
</para>
1351
1351
</note>
1352
1352
@@ -1384,14 +1384,14 @@ END;
1384
1384
</listitem>
1385
1385
<listitem>
1386
1386
<para>
1387
- The number of serialization and deadlock failures that did not cause a
1388
- retry. See <xref linkend="failures-and-retries"
1387
+ The number of serialization and deadlock failures. See
1388
+ <xref linkend="failures-and-retries"
1389
1389
endterm="failures-and-retries-title"> for more information.
1390
1390
</para>
1391
1391
</listitem>
1392
1392
<listitem>
1393
1393
<para>
1394
- The number of retries after a serialization/deadlockfailure in this
1394
+ The number of retries after a serialization/deadlockerror in this
1395
1395
statement; they are reported as serialization/deadlock retries,
1396
1396
respectively.
1397
1397
</para>
@@ -1513,16 +1513,16 @@ script statistics:
1513
1513
<title id="failures-and-retries-title">Serialization/Deadlock Failures and Retries</title>
1514
1514
1515
1515
<para>
1516
- Transactions with serialization or deadlockfailures are rolled back and
1516
+ Transactions with serialization or deadlockerrors are rolled back and
1517
1517
repeated until they complete successfully or reach the maximum number of
1518
1518
tries specified by the <option>--max-tries</> option. If the last transaction
1519
1519
run fails, this transaction will be reported as failed.
1520
1520
</para>
1521
1521
1522
1522
<para>
1523
1523
Transactions that span over more than one script are not rolled back and will
1524
- not be retried in case ofa failure . In such cases, the script in which the
1525
- failure occurred is reported as failed.
1524
+ not be retried in case ofan error . In such cases, the script in which the
1525
+ error occurred is reported as failed.
1526
1526
</para>
1527
1527
1528
1528
<para>
@@ -1536,15 +1536,15 @@ script statistics:
1536
1536
If the total number of retried transactions is non-zero, the main report also
1537
1537
contains the statistics related to retries: the total number of retried
1538
1538
transactions, the total number of retries, and the number of retries after
1539
- each kind offailure (use option <option>--max-tries</> to make it possible).
1539
+ each kind oferror (use option <option>--max-tries</> to make it possible).
1540
1540
The per-statement report inherits all columns from the main report.
1541
1541
</para>
1542
1542
<note>
1543
1543
<para>
1544
1544
If a custom script contains multiple transactions, its run is reported as
1545
1545
failed if any of its transactions ended with a serialization/deadlock
1546
1546
failure. The run of this script is reported as retried if any of its
1547
- transactions was retried after a serialization/deadlockfailure . The total
1547
+ transactions was retried after a serialization/deadlockerror . The total
1548
1548
sum of retries includes the retries for all transactions in this script.
1549
1549
</para>
1550
1550
</note>