From: | Vijaykumar Jain <vijaykumarjain(dot)github(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: explain vs auto_explain |
Date: | 2024-10-19 18:18:12 |
Message-ID: | CAM+6J97N7RY0WQg2u8qiEUhOKPVgZ=fO835CYdRkGoJ3TzCJmw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Sat, 19 Oct 2024 at 23:31, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> "David G. Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com> writes:
> > On Sat, Oct 19, 2024 at 10:43 AM Vijaykumar Jain <
> > vijaykumarjain(dot)github(at)gmail(dot)com> wrote:
> >> i tried to check the code for auto_explain , there is nothing that helps
> >> understand why it was provided as a separate .
>
> > Probably because output to log was easier than reworking the internals to
> > make output to client happen.
>
> The reason that auto_explain exists is to capture plans for queries
> that are being issued by real applications --- which aren't programmed
> to issue EXPLAIN for themselves, and likely don't have a good place to
> put the data if they did. Also, auto_explain can capture runtime
> details for queries that are really being executed and delivering
> results, whereas EXPLAIN ANALYZE doesn't deliver the query results and
> thus can't be shoehorned into real applications. So it's partly a
> matter of not having a protocol spec that would allow the EXPLAIN data
> to be delivered on a side channel, but mostly a recognition that
> rewriting applications to capture such data would be painful.
>
> regards, tom lane
>
ok, it makes sense for the reason of having auto_explain. but maybe i did
ask correctly,
why do we not have the extended flags in auto_explain , in , explain wrt
nested_statements, and triggers ...
a user who finds the console output complicated, could well use a pager or
redirect the output to the file via \o which is client side.
as i mentioned the reason is, there are differences on what auto_explain
captures and what explain does... and the dev user is not able to see the
difference
without having access to logs.
for example , iirc
refresh materialised view does not show the plan , although there was once
a feature reported, which showed the difference in support for parallelism.
ex in this discussion
Thread: CREATE/REFRESH MATERIALIZED VIEW planner difference? : Postgres
Professional <https://postgrespro.com/list/thread-id/2553661>
i dont expect this to be a feature request or something, it was just that i
wanted to be aware why there are differences,
because the cloud guys have strict control over logs as it has many other
things, so they just wont give access at all.
--
Thanks,
Vijay
Open to work
Resume - Vijaykumar Jain <https://github.com/cabecada>
From | Date | Subject | |
---|---|---|---|
Next Message | Vijaykumar Jain | 2024-10-19 18:31:07 | Re: explain vs auto_explain |
Previous Message | Tom Lane | 2024-10-19 18:01:56 | Re: explain vs auto_explain |