pgsql: Collect JIT instrumentation from workers. - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Collect JIT instrumentation from workers.
Date
Msg-id E1g4tkg-0005nv-Nm@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Collect JIT instrumentation from workers.

Previously, when using parallel query, EXPLAIN (ANALYZE)'s JIT
compilation timings did not include the overhead from doing so on the
workers.  Fix that.

We do so by simply aggregating the cost of doing JIT compilation on
workers and the leader together. Arguably that's not quite accurate,
because the total time spend doing so is spent in parallel - but it's
hard to do much better.  For additional detail, when VERBOSE is
specified, the stats for workers are displayed separately.

Author: Amit Khandekar and Andres Freund
Discussion: https://postgr.es/m/CAJ3gD9eLrz51RK_gTkod+71iDcjpB_N8eC6vU2AW-VicsAERpQ@mail.gmail.com
Backpatch: 11-

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/33001fd7a7072d483272115a9376478fdc007fb9

Modified Files
--------------
contrib/auto_explain/auto_explain.c |  6 +--
src/backend/commands/explain.c      | 87 +++++++++++++++++++++++++------------
src/backend/executor/execMain.c     | 16 +++++++
src/backend/executor/execParallel.c | 82 ++++++++++++++++++++++++++++++++++
src/backend/jit/jit.c               | 11 +++++
src/backend/jit/llvm/llvmjit.c      | 14 +++---
src/backend/jit/llvm/llvmjit_expr.c |  2 +-
src/include/commands/explain.h      |  3 +-
src/include/executor/execParallel.h |  1 +
src/include/jit/jit.h               | 27 +++++++++---
src/include/nodes/execnodes.h       |  8 ++++
11 files changed, 211 insertions(+), 46 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Make some fixes to allow building Postgres on macOS 10.14("Moja
Next
From: Andres Freund
Date:
Subject: pgsql: Collect JIT instrumentation from workers.