Aurora MySQL 파라미터와 적용 시 리부팅 필요 여부

2024. 1. 19. 14:27AWS/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