Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

How to Improve the performance of PostgreSQL Query Sort operation

Yesterday, I was doing performance tuning for one our long running queries. I have checked the execution plan of the query and found that query sort operations are spilling to disk instead of fitting in memory.
Every time, just tuning the Table Indexes should not be the ultimate solution to improve the query performance.
There are always N factors behind the bad performance shape of your query.
How can you know that your operations are spilling to disk?
When you execute EXPLAIN ANALYZE for your query and if you see a line like Sort Method: external merge Disk: 88342kB, your operations are spilling to disk.
Is spilling to disk a bad operation?
Yes: Because it requires more CPU/IO for the disk operation and it leads to biggest performance cause.
What is the solution?
The simple solution is, validate the configuration of a work_mem parameter.
If you do a lot of complex sorts and have a lot of memory, then increasing the work_mem parameter allows PostgreSQL to do larger in-memory sorts which, unsurprisingly, will be faster than disk-based equivalents.
How can you configure work_mem?
A work_mem of at least 16MB would keep the intermediate data in memory and likely improve the query response time.
You can set at the server level for the general use (in postgresql.conf).
You can also set at your session level using below sample query. Increase the setting until you see Memory instead of Disk in the EXPLAIN output.

Comments

Popular posts from this blog

Oracle DBMS SCHEDULER Examples

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

7 Steps to configure BDR replication in postgresql

How to Get Table Size, Database Size, Indexes Size, schema Size, Tablespace Size, column Size in PostgreSQL Database

How to Enable/Disable autovacuum on PostgreSQL