mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Try again to fix accumulation of parallel worker instrumentation.
When a Gather or Gather Merge node is started and stopped multiple
times, accumulate instrumentation data only once, at the end, instead
of after each execution, to avoid recording inflated totals.
Commit 778e78ae9f
, the previous attempt
at a fix, instead reset the state after every execution, which worked
for the general instrumentation data but had problems for the additional
instrumentation specific to Sort and Hash nodes.
Report by hubert depesz lubaczewski. Analysis and fix by Amit Kapila,
following a design proposal from Thomas Munro, with a comment tweak
by me.
Discussion: http://postgr.es/m/20171127175631.GA405@depesz.com
This commit is contained in:
@ -396,23 +396,6 @@ ExecSortInitializeDSM(SortState *node, ParallelContext *pcxt)
|
||||
node->shared_info);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
* ExecSortReInitializeDSM
|
||||
*
|
||||
* Reset shared state before beginning a fresh scan.
|
||||
* ----------------------------------------------------------------
|
||||
*/
|
||||
void
|
||||
ExecSortReInitializeDSM(SortState *node, ParallelContext *pcxt)
|
||||
{
|
||||
/* If there's any instrumentation space, clear it for next time */
|
||||
if (node->shared_info != NULL)
|
||||
{
|
||||
memset(node->shared_info->sinstrument, 0,
|
||||
node->shared_info->num_workers * sizeof(TuplesortInstrumentation));
|
||||
}
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
* ExecSortInitializeWorker
|
||||
*
|
||||
|
Reference in New Issue
Block a user