No Picture
MinervaDB

Linear Trees in InnoDB

Introduction In InnoDB, a linear tree is a type of data structure used for indexing and searching data. Linear trees are also known as B+ trees. The key characteristic of a linear tree is that […]

No Picture
MinervaDB

How to implement Partitioned Bitmaps in PostgreSQL?

Partitioned Bitmaps are a technique used to speed up queries on large databases by breaking them down into smaller pieces, or partitions, that can be searched independently. PostgreSQL supports Partitioned Bitmaps through the use of […]

No Picture
MinervaDB

Monitoring BgWriter latches in PostgreSQL

The BgWriter process in PostgreSQL is responsible for flushing dirty pages from the shared buffer pool to disk. As such, it is a critical component of the database system and it is important to monitor […]

No Picture
MinervaDB

Why are PostgreSQL updates getting slower?

UPDATE latency refers to the time taken by PostgreSQL to perform an UPDATE operation on a table. Slow UPDATE operations can negatively impact the overall performance of the database. Here are some steps to troubleshoot […]

No Picture

Understanding PostgreSQL pg_stat_activity

The pg_stat_activity view in PostgreSQL provides information about the current activity of each server process. The view returns one row for each server process, showing the current state of that process. The following table describes […]

No Picture

How to configure PostgreSQL for Statistics Collection?

PostgreSQL collects various statistics about its internal operations and the usage of database objects, which can be useful for performance tuning and troubleshooting purposes. By default, PostgreSQL enables statistics collection, but you may need to […]