No Picture
InnoDB

InnoDB Process Global Area: How It Is Managed

  InnoDB: Management of the Process Global Area (PGA) In InnoDB, the Process Global Area (PGA) manages per-connection memory and data structures for each client connection, including query execution buffers, sort buffers, and join buffers. […]
No Picture
PostgreSQL DBA

PostgreSQL Encryption-at-Rest: How to Implement It in Kubernetes

Implementing encryption-at-Rest for PostgreSQL in Kubernetes involves configuring encryption for the persistent storage where PostgreSQL data resides. Below is a step-by-step explanation of how to achieve this, along with a real-world example: apiVersion: apps/v1kind: Deploymentmetadata:name: […]
No Picture
InnoDB

InnoDB Reading and Writing Blocks Explained

InnoDB, the default storage engine in MySQL, uses a buffer pool to manage the reading and writing of data blocks. The buffer pool is a cache that holds frequently accessed data pages in memory, reducing […]
No Picture
PostgreSQL DBA

PostgreSQL SQL/JSON Patches Committed to PostgreSQL 15!

PostgreSQL SQL/JSON: PostgreSQL continues evolving its support for modern data formats with each release. Notably, PostgreSQL 15 introduces significant improvements to handle JSON data more efficiently. These updates bring greater flexibility, performance, and ease of […]