No Picture
MinervaDB

How invisible indexes in MySQL 8 works?

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

MinervaDB

Optimizing MySQL 8 Performance with Group Commit

Comprehensive Guide to Optimizing MySQL 8 Performance with Group Commit: Understanding, Fine-Tuning System Variables, and Monitoring Techniques for Enhanced Throughput and Reduced Disk I/O Overhead Group commit in MySQL 8 is a critical feature that […]

No Picture
MinervaDB

When MySQL ignores histograms?

MySQL can ignore histograms in the query optimizer when it determines that using the histograms would not provide any benefit to the query execution plan. This can occur in several cases, including: Why MySQL ignores […]

No Picture
MinervaDB

Troubleshooting Mutex Contention in MySQL

Mutex contention occurs in MySQL when multiple threads attempt to access a shared resource, such as a data structure or a system resource, simultaneously. Because only one thread can access the resource at a time, […]