Tag

Log Buffer

0 views collected around this technical thread.

Sanyou's Java Diary
Sanyou's Java Diary
Jun 9, 2025 · Databases

Inside InnoDB: How Buffer Pool, Change Buffer, and Adaptive Hash Index Boost MySQL Performance

This article explores the inner workings of InnoDB's architecture—including the Buffer Pool, Change Buffer, Adaptive Hash Index, and Log Buffer—detailing their designs, configuration parameters, performance impacts, and best‑practice recommendations for high‑throughput MySQL deployments.

Adaptive Hash IndexBuffer PoolChange Buffer
0 likes · 15 min read
Inside InnoDB: How Buffer Pool, Change Buffer, and Adaptive Hash Index Boost MySQL Performance
政采云技术
政采云技术
Mar 14, 2023 · Databases

InnoDB Buffer Pool, Page Management, Change Buffer, and Log Buffer Overview

This article explains InnoDB's in‑memory structures, detailing the Buffer Pool architecture, page classifications and their management via free, flush, and LRU lists, the role and workflow of the Change Buffer, and the purpose and configuration of the Log Buffer.

Buffer PoolChange BufferDatabase Internals
0 likes · 11 min read
InnoDB Buffer Pool, Page Management, Change Buffer, and Log Buffer Overview
政采云技术
政采云技术
Mar 14, 2023 · Databases

InnoDB Memory Structures: Buffer Pool, Page Management, Change Buffer, Log Buffer, and Adaptive Hash Index

This article explains MySQL InnoDB's internal memory architecture, covering the buffer pool's composition and sizing, page classification and management via free, flush, and LRU lists, the change buffer for secondary index updates, log buffer behavior, and the role of the adaptive hash index.

Buffer PoolChange BufferDatabase Internals
0 likes · 11 min read
InnoDB Memory Structures: Buffer Pool, Page Management, Change Buffer, Log Buffer, and Adaptive Hash Index
IT Services Circle
IT Services Circle
Jul 20, 2022 · Databases

Understanding MySQL InnoDB Redo Log Generation, Buffering, and Flushing Mechanisms

This article explains the lifecycle of MySQL InnoDB redo logs—from generation during DML/DDL operations, through writing into the log buffer, to being flushed into the redo log file and finally persisted on disk—detailing the roles of mtr, log_writer, and log_flusher threads.

Database InternalsInnoDBLog Buffer
0 likes · 20 min read
Understanding MySQL InnoDB Redo Log Generation, Buffering, and Flushing Mechanisms
Aikesheng Open Source Community
Aikesheng Open Source Community
Mar 5, 2021 · Databases

Effect of innodb_log_buffer_size on Redo Log I/O in MySQL

This article experimentally demonstrates how increasing MySQL's innodb_log_buffer_size reduces redo‑log write I/O, showing fewer write operations but similar total data volume, and explains why performance gains may be subtle in typical virtual‑machine storage environments.

Database TuningI/O performanceInnoDB
0 likes · 4 min read
Effect of innodb_log_buffer_size on Redo Log I/O in MySQL