Re: Suggestion to add --continue-client-on-abort option to pgbench
Yugo Nagata <nagata@sraoss.co.jp>
From: Yugo Nagata <nagata@sraoss.co.jp>
To: "Hayato Kuroda (Fujitsu)" <kuroda.hayato@fujitsu.com>
Cc: 'Rintaro Ikeda' <ikedarintarof@oss.nttdata.com>, "slpmcf@gmail.com"
<slpmcf@gmail.com>, "boekewurm+postgres@gmail.com"
<boekewurm+postgres@gmail.com>, "pgsql-hackers@postgresql.org"
<pgsql-hackers@postgresql.org>, Srinath Reddy Sadipiralla
<srinath2133@gmail.com>, Dilip Kumar <dilipbalaut@gmail.com>
Date: 2025-07-04T15:22:39Z
Lists: pgsql-hackers
On Fri, 4 Jul 2025 13:01:12 +0000 "Hayato Kuroda (Fujitsu)" <kuroda.hayato@fujitsu.com> wrote: > Thanks for the diagram, it's quite helpful. Let me share my understanding and opinion. > > The terminology "retry" is being used for the transition CSTATE_ERROR->CSTATE_RETRY, > and here the random state would be restored to be the begining: > > ``` > /* > * Reset the random state as they were at the beginning of the > * transaction. > */ > st->cs_func_rs = st->random_state; > ``` Yes. The random state is reset in the CSTATE_RETRY state, which then transitions directly to CSTATE_START_COMMAND. > In --continue-on-error case, the transaction CSTATE_WAIT_RESULT->CSTATE_ERROR > can happen even the reason of failure is not serialization and deadlock. > Ultimately the pass will reach ...->CSTATE_END_TX->CSTATE_CHOOSE_SCRIPT, the > beginning of the state machine. cs_func_rs is not overwritten in the route so > that different random value would be generated, or even another script may be > chosen. Is it correct? Yes, that matches my understanding. > 04. > ``` > <term><replaceable>retries</replaceable></term> > <listitem> > <para> > number of retries after serialization or deadlock errors > (zero unless <option>--max-tries</option> is not equal to one) > </para> > </listitem> > ``` > > To confirm; --continue-on-error won't be counted here because it is not "retry", > in other words, it does not reach CSTATE_RETRY, right? Right. Transactions marked as failure due to --continue-on-error are not retried and should not counted here. Regards, Yugo Nagata -- Yugo Nagata <nagata@sraoss.co.jp>
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
pgbench: Fix assertion failure with multiple \syncpipeline in pipeline mode.
- 5bc251b28839 17.8 landed
- 00e64e35c8bd 18.2 landed
- 4aa0ac05765e 19 (unreleased) landed
-
pgbench: Add --continue-on-error option.
- 0ab208fa505c 19 (unreleased) landed
-
Fix "inconsistent DLL linkage" warning on Windows MSVC
- a3ea5330fcf4 19 (unreleased) cited
-
pgbench: Fix error reporting in readCommandResponse().
- 7d7e81d1e6b8 13.23 landed
- cb21e1f92fb3 14.20 landed
- bdccb6302871 15.15 landed
- 36c4d30c8f24 16.11 landed
- a912118c6055 17.7 landed
- 29aabbc43269 18.1 landed
- 19d4f9ffc207 19 (unreleased) landed
-
pgbench: Fix assertion failure with retriable errors in pipeline mode.
- 704f517711b4 15.15 landed
- 8b2e290bde21 16.11 landed
- f39d9164b70a 17.7 landed
- c736808e03b7 18.1 landed
- 8bb174295e89 19 (unreleased) landed
-
Allow pgbench to retry in some cases.
- 4a39f87acd6e 15.0 cited