Re: error context for vacuum to include block number
Amit Kapila <amit.kapila16@gmail.com>
From: Amit Kapila <amit.kapila16@gmail.com>
To: Justin Pryzby <pryzby@telsasoft.com>
Cc: Masahiko Sawada <masahiko.sawada@2ndquadrant.com>, Alvaro Herrera <alvherre@2ndquadrant.com>,
Andres Freund <andres@anarazel.de>, Michael Paquier <michael@paquier.xyz>,
pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2020-03-17T06:21:09Z
Lists: pgsql-hackers
On Tue, Mar 17, 2020 at 9:52 AM Amit Kapila <amit.kapila16@gmail.com> wrote: > > > Another minor point, don't we need to remove the error stack by doing > "error_context_stack = errcallback.previous;" in parallel_vacuum_main? > Few other comments: 1. The error in lazy_vacuum_heap can either have phase VACUUM_ERRCB_PHASE_INDEX_* or VACUUM_ERRCB_PHASE_VACUUM_HEAP depending on when it occurs. If it occurs the first time it enters that function before a call to lazy_vacuum_page, it will use phase VACUUM_ERRCB_PHASE_INDEX_*, otherwise, it would use VACUUM_ERRCB_PHASE_VACUUM_HEAP. The reason is lazy_vacuum_index or lazy_cleanup_index won't reset the phase after leaving that function. 2. Also once we set phase as VACUUM_ERRCB_PHASE_VACUUM_HEAP via lazy_vacuum_page, it doesn't seem to be reset to VACUUM_ERRCB_PHASE_SCAN_HEAP even when we do scanning of the heap. I think you need to set phase VACUUM_ERRCB_PHASE_SCAN_HEAP inside loop. I think we need to be a bit more careful in setting/resetting the phase information correctly so that it doesn't display the wrong info in the context in an error message. -- With Regards, Amit Kapila. EnterpriseDB: http://www.enterprisedb.com
Commits
-
Avoid calls to RelationGetRelationName() and RelationGetNamespace() in
- ef75140fe756 13.0 landed
-
Introduce vacuum errcontext to display additional information.
- b61d161c1463 13.0 landed
-
Fix mesurement of elapsed time during truncating heap in VACUUM.
- 007491979461 13.0 cited
-
Allow vacuum command to process indexes in parallel.
- 40d964ec997f 13.0 cited
-
Refactor code dedicated to index vacuuming in vacuumlazy.c
- 1ab41a3c8edc 13.0 landed
-
Remove duplicated progress reporting during heap scan of VACUUM
- e5a02e0fc68b 13.0 landed