No Picture
PostgreSQL Performance

Installation and configuration of pgBadger

pgBadger is a PostgreSQL log analyzer that can be used to analyze and summarize the PostgreSQL log files to help identify performance issues and troubleshoot problems. Here are the steps to install and configure pgBadger […]
No Picture
PostgreSQL Performance

PostgreSQL15 Replication Lag: Reducing It with IO Concurrency

PostgreSQL 15 introduced a new feature called “asynchronous commit”, which can help reduce replication lag by allowing multiple transactions to be committed concurrently. This feature works by allowing the server to continue processing new transactions […]
No Picture
PostgreSQL Troubleshooting

PostgreSQL Contention: Troubleshooting Thread Contention

Thread contention in PostgreSQL occurs when multiple threads are competing for the same resources, such as CPU time, disk I/O, or database locks. This can lead to performance degradation, slower response times, and even database […]
No Picture
PostgreSQL Internals

Anatomy of PostgreSQL I/O Subsystem

The I/O subsystem is a critical component of PostgreSQL, responsible for reading and writing data to and from disk. Here is an overview of the anatomy of PostgreSQL’s I/O subsystem: Monitoring the I/O subsystem is […]