- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Ensure that RDS database instances have the Auto Minor Version Upgrade flag enabled in order to automatically receive minor engine upgrades (features, bug fixes, and security patches) during the specified maintenance window.
AWS RDS will occasionally deprecate minor engine versions and provide new ones for an upgrade. When the last version number in the release is replaced, the version change is considered minor. With the Auto Minor Version Upgrade feature enabled, the version upgrades will occur automatically during the specified maintenance window.
Creation, management, and storage of Customer-Managed Keys (CMKs) may require additional time assistance from an administrator.
Run the following command to list all RDS database instances that are available in the selected AWS region:
aws rds describe-db-instances --region <regionName> --query 'DBInstances[*].DBInstanceIdentifier'
Run the following command to modify the selected RDS instance configuration and apply the changes immediately. To avoid downtime, you can remove –apply-immediately to apply the changes during the next scheduled maintenance window:
aws rds modify-db-instance --region <regionName> \
--db-instance-identifier <dbInstanceIdentifier> \
--auto-minor-version-upgrade \
--apply-immediately
The command output returns the new configuration metadata for the RDS instance along with the AutoMinorVersionUpgrade parameter value. To verify that the Auto Minor Version Upgrade feature has been successfully enabled, run the following command:
aws rds describe-db-instances --region <regionName> \
--db-instance-identifier <dbInstanceIdentifier> \
--query 'DBInstances[*].AutoMinorVersionUpgrade'
If the command output returns the current status as true, the feature is successfully enabled.