我正在运行此命令来更改 AWS 上数据库集群的主用户密码:
aws rds modify-db-cluster --db-cluster-identifier development-db \
--region us-east-2 --master-user-password newpassword --apply-immediately \
--no-cli-pager > /dev/null
当我执行此操作时,集群的状态从 变为available
。resetting-master-credentials
有时它会一次保持这种状态几分钟,这对我来说毫无意义 - 我希望这种变化几乎是即时的。
有什么想法可以解释为什么它不会发生吗?