Skip to content

Commit

Permalink
switch all references to t3 to t4g
Browse files Browse the repository at this point in the history
  • Loading branch information
carlalexander committed Jun 26, 2024
1 parent ae1dd03 commit 5774bac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/guides/object-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ That's why WooCommerce sites more than any other type of site rely on object cac

## Choosing an object cache plugin your WordPress site

At this time, Ymir only supports object caching using [Redis][3]. Redis is an extremely performant object caching option. Load tests have shown that the smallest Redis cluster available (`t3.micro`) can [handle over a thousand concurrent requests][4] with ease.
At this time, Ymir only supports object caching using [Redis][3]. Redis is an extremely performant object caching option. Load tests have shown that the smallest Redis cluster available (`t4g.micro`) can [handle over a thousand concurrent requests][4] with ease.

To use a Redis object cache, you'll need to attach a Redis cache cluster to your project. You can read more on Redis cache clusters and how to attach one to your project [here][5]. Once that's done, you'll be ready to install a Redis object cache plugin.

Expand Down
18 changes: 9 additions & 9 deletions docs/guides/scaling.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@ If you'd rather not have to have to think about database server connections or d

The reason you don't want to disable the concurrency limit is because of your database server. A database server can only have a certain number of active database connection if you reach that limit, you will start seeing database connection errors. To prevent this, you want to keep your `concurrency` value below the number of maximum connections allowed by your database server.

The number of database connections that a database server can have depends on the type. Ymir supports a lot of different database types. Below is a list of all `t3` instance types with their maximum number of connections.
The number of database connections that a database server can have depends on the type. Ymir supports a lot of different database types. Below is a list of all `t4g` instance types with their maximum number of connections.

|Type|Maximum connections|
---|:---:
db.t3.micro|85
db.t3.small|170
db.t3.medium|341
db.t3.large|682
db.t3.xlarge|1365
db.t3.2xlarge|2730

`t3` databases are ideal for most situations. But if you'd like to use another category of database servers, you can refer to [this article][10] to see all maximum connection numbers for all database server types.
db.t4g.micro|85
db.t4g.small|170
db.t4g.medium|341
db.t4g.large|682
db.t4g.xlarge|1365
db.t4g.2xlarge|2730

`t4g` databases are ideal for most situations. But if you'd like to use another category of database servers, you can refer to [this article][10] to see all maximum connection numbers for all database server types.

[1]: ../reference/configuration.md#caching
[2]: https://woocommerce.com/
Expand Down
2 changes: 1 addition & 1 deletion docs/team-resources/networks.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If the configured `network` doesn't have a NAT gateway, a NAT gateway will be co

## Bastion host

If you want to access private subnet resources, you'll need a [bastion host][2] to do so. A bastion host is a small (`t3.nano`) SSH accessible EC2 instance that resides on your public subnet. You connect to it and then from there you can connect to resources on your private subnet.
If you want to access private subnet resources, you'll need a [bastion host][2] to do so. A bastion host is a small (`t4g.nano`) SSH accessible EC2 instance that resides on your public subnet. You connect to it and then from there you can connect to resources on your private subnet.

You can add a bastion host to your network by using the `network:bastion:add` command. Once the bastion host created, the Ymir CLI will return the SSH private key used to connect to it.

Expand Down

0 comments on commit 5774bac

Please sign in to comment.