mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
Increase devnet ECS memory (#203)
* Increase devnet ECS memory * decrease devnet ecs cpu
This commit is contained in:
parent
d50e01b7d8
commit
1ac3e9c8d9
1 changed files with 3 additions and 3 deletions
|
|
@ -24,9 +24,9 @@ resource "aws_ecs_task_definition" "devnet_task_definition_group" {
|
||||||
# New nodes will consume a lot more CPU usage than existing nodes.
|
# New nodes will consume a lot more CPU usage than existing nodes.
|
||||||
# This is due to sync is resource heavy. Recommending set to below if doing sync:
|
# This is due to sync is resource heavy. Recommending set to below if doing sync:
|
||||||
# CPU = 2048, Memory = 4096
|
# CPU = 2048, Memory = 4096
|
||||||
# Please set it back to cpu 512 and memory of 1024 after sync is done to save the cost
|
# Please set it back to cpu 512 and memory of 2048 after sync is done to save the cost
|
||||||
cpu = 512
|
cpu = 256
|
||||||
memory = 1024
|
memory = 2048
|
||||||
volume {
|
volume {
|
||||||
name = "efs"
|
name = "efs"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue