Thread: [GENERAL] Memory consumption for Query

[GENERAL] Memory consumption for Query

From
dhaval jaiswal
Date:

How to check how much memory query is consuming.  

Is there tool can check of query consuming memory for the execution or output.

Let's say for following query how to calculate memory consumption.


select * from test where id=1;  



Sent from Outlook

Re: [GENERAL] Memory consumption for Query

From
Albe Laurenz
Date:
dhaval jaiswal wrote:
> How to check how much memory query is consuming.
> 
> Is there tool can check of query consuming memory for the execution or output.
> 
> Let's say for following query how to calculate memory consumption.
> 
> select * from test where id=1;

That query will not consume memory worth mention unless
"test" is a non-trivial view.

You can run "EXPLAIN (ANALYZE) SELECT ..." to see how much memory is used
for memory intense operations like sort, hash or materialize.

Other operations don't really consume much memory.

Yours,
Laurenz Albe

Re: [GENERAL] Memory consumption for Query

From
dhaval jaiswal
Date:

>> Other operations don't really consume much memory.


Is there any way to find out that as well. 


>> You can run "EXPLAIN (ANALYZE) SELECT ..." to see how much memory is used
for memory intense operations like sort, hash or materialize.

I am aware of it.

 


Sent from Outlook




From: Albe Laurenz <laurenz.albe@wien.gv.at>
Sent: Monday, April 24, 2017 12:54 PM
To: 'dhaval jaiswal *EXTERN*'; PostgreSQL General
Subject: RE: Memory consumption for Query
 
dhaval jaiswal wrote:
> How to check how much memory query is consuming.
>
> Is there tool can check of query consuming memory for the execution or output.
>
> Let's say for following query how to calculate memory consumption.
>
> select * from test where id=1;

That query will not consume memory worth mention unless
"test" is a non-trivial view.

You can run "EXPLAIN (ANALYZE) SELECT ..." to see how much memory is used
for memory intense operations like sort, hash or materialize.

Other operations don't really consume much memory.

Yours,
Laurenz Albe