Skip to content

Commit

Permalink
Merge pull request #29 from steveteahan/add-a-few-more-max-conns
Browse files Browse the repository at this point in the history
Add max conns data for db.t3.medium and db.r4.large
  • Loading branch information
Steve Teahan authored Mar 28, 2022
2 parents 8e601c1 + 498f513 commit d5c9065
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions rds.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ var DBMaxConnections = map[string]map[string]int64{
"default.postgres13": 225,
"default.postgres14": 225,
},
"db.t3.medium": map[string]int64{
"default": 550,
"default.postgres10": 550,
"default.postgres11": 550,
"default.postgres12": 550,
"default.postgres13": 550,
"default.postgres14": 550,
},
"db.m3.medium": map[string]int64{
"default": 392,
},
Expand Down Expand Up @@ -88,6 +96,9 @@ var DBMaxConnections = map[string]map[string]int64{
"default.postgres13": 5000,
"default.postgres14": 5000,
},
"db.r4.large": map[string]int64{
"default.mysql5.7": 1301,
},
"db.r4.4xlarge": map[string]int64{
"default.mysql5.7": 10410,
},
Expand Down

0 comments on commit d5c9065

Please sign in to comment.