Database & Bigdata/MySQL&MariaDB1 [MySQL/MariaDB] innodb_flush_log_at_trx_commit 파라미터 / 개념도 innodb_flush_log_at_trx_commit 란 ? - 트랜잭션이 commit 될 때 log buffer를 flush하고 disk 연산이 flush 되는 시점을 설정하는 파라미터 - default 값은 1 Innodb_flush_log_at_trx_commit 개념도 1. commit 2. InnoDB의 log buffer에 데이터 쓰기 (메모리 영역) 3. OS buffer Cache에 쓰기 (메모리 영역) 4. InnoDB log file에 쓰기 (데이터 영역) --> flush innodb_flush_log_at_trx_commit=0 - 트랜잭션 commit되면 1~2단계까지 처리하고(log buffer에 데이터 쓰기), 1초에 한번 씩 3~4단계를 자동으로 수행함 (OS buffer .. 2021. 9. 16. 이전 1 다음