No Picture
MinervaDB

How invisible indexes in MySQL 8 work?

In MySQL 8, invisible indexes are a feature that allows you to create an index without it being used by the optimizer. This can be useful in situations where you want to test the impact […]

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 […]