Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aurora Serverless Scaling - TimeoutAction Parameter #8929

Closed
araddas opened this issue Jun 10, 2019 · 2 comments · Fixed by #9374
Closed

Aurora Serverless Scaling - TimeoutAction Parameter #8929

araddas opened this issue Jun 10, 2019 · 2 comments · Fixed by #9374
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/rds Issues and PRs that pertain to the rds service.
Milestone

Comments

@araddas
Copy link

araddas commented Jun 10, 2019

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Add TimeoutAction as a parameter in the scaling configuration when making an Aurora Serverless Cluster. Currently, the only way to change the TimeoutAction is through AWS CLI or the AWS Console. If the cluster is unable to find a scaling point the default action is to cancel the scaling after the timeout. This is problematic if the load is high on the cluster and can cause service disruption. One should be able to change this parameter with terraform.

New or Affected Resource(s)

  • aws_rds_cluster

Potential Terraform Configuration

Example of what should be available:

resource "aws_rds_cluster" "aurora_cluster" {
  engine      = "aurora"
  engine_mode = "serverless"
...
  scaling_configuration {
    auto_pause   = true
    max_capacity = "4"
    min_capacity = "1"
    seconds_until_auto_pause = 300
    timeout_action = "ForceApplyCapacityChange"
  }
}

References

@araddas araddas added the enhancement Requests to existing resources that expand the functionality or scope. label Jun 10, 2019
@bflad bflad added the service/rds Issues and PRs that pertain to the rds service. label Jun 10, 2019
@bflad bflad added this to the v2.20.0 milestone Jul 18, 2019
@bflad
Copy link
Contributor

bflad commented Jul 18, 2019

Support for the timeout_action argument has been merged and will release with version 2.20.0 of the Terraform AWS Provider, expected tomorrow. Thanks to @stefansundin for the implementation. 👍

@ghost
Copy link

ghost commented Nov 2, 2019

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked and limited conversation to collaborators Nov 2, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/rds Issues and PRs that pertain to the rds service.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants