Aurora MySQL 파라미터와 적용 시 리부팅 필요 여부
2024. 1. 19. 14:27ㆍAWS/Amazon Relational Database Service
728x90
SMALL
- 개요
AWS RDS를 처음 만들거나 Parameter를 변경하고 싶을 때, custom parameter groups를 만들어서 사용하면 된다. RDS parameters는 적용시 리부팅이 필요한 값이 있고 바로 적용되는 값이 있다. 아래는 Aurora MySQL 전체 파라미터에 대한 설명과 리부팅 필요 여부 확인 방법 이다.
- Aurora MySQL 파라미터
https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Reference.ParameterGroups.html
- 확인 방법
Parameter Group
- Apply type "Dynamic" : 바로 적용
- Apply type "Static" : 리부팅 필요
AWS CLI
## list parameters
aws rds describe-db-cluster-parameters --db-cluster-parameter-group-name test_parameter_group
## list parameters only with Apply type
aws rds describe-db-parameters --db-parameter-group-name test_parameter_group --query "Parameters[*].[ParameterName,ApplyType]"
- 참고
https://repost.aws/knowledge-center/rds-parameter-group-update-issues
728x90
LIST
'AWS > Amazon Relational Database Service' 카테고리의 다른 글
Aurora MySQL8에서 database 생성 및 user 생성하는 간단한 쿼리 (0) | 2024.01.19 |
---|---|
RDS Aurora MySQL 생성 가이드 (일반 용도) (0) | 2024.01.19 |
Aurora MySQL 8 파라미터 추천 (0) | 2024.01.17 |
AWS RDS Proxy max_connections (0) | 2023.12.29 |
RDS tips for Application (0) | 2023.09.04 |