Aurora MySQL 8 파라미터 추천
2024. 1. 17. 11:12ㆍAWS/Amazon Relational Database Service
728x90
SMALL
- 개요
AWS RDS를 생성할 때, Custom Parameter group을 생성한 후 RDS를 생성하는 것을 추천한다. 아래는 Aurora MySQL 8에서 사용할 수 있는 기본적인 파라미터 이다.
- 추천 파라미터
## for common use
performance_schema = 1
slow_query_log = 1
long_query_time = 10
log_output = TABLE
log_queries_not_using_indexes = 1
time_zone = UTC
## only for Aurora MySQL
aurora_parallel_query = 1
aurora_read_replica_read_committed = ON
innodb_flush_log_at_trx_commit=1
- 참고
https://docs.aws.amazon.com/ko_kr/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.BestPractices.html
https://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/hyperscale-aurora-mysql/parameter-tuning.html
728x90
LIST
'AWS > Amazon Relational Database Service' 카테고리의 다른 글
RDS Aurora MySQL 생성 가이드 (일반 용도) (0) | 2024.01.19 |
---|---|
Aurora MySQL 파라미터와 적용 시 리부팅 필요 여부 (0) | 2024.01.19 |
AWS RDS Proxy max_connections (0) | 2023.12.29 |
RDS tips for Application (0) | 2023.09.04 |
RDS Snapshot을 통해 restore를 할 경우 multi-az 변경 불가 (0) | 2022.09.06 |