Skip to content

Commit

Permalink
chore: Reduce memory requests on prover node (#11678)
Browse files Browse the repository at this point in the history
This PR slightly reduces the memory request for the prover node and
prover broker. The new values may be too low, requiring an additional
node pool.
  • Loading branch information
PhilWindle authored Feb 2, 2025
1 parent bb25992 commit a720151
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions spartan/aztec-network/values/exp-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,17 +147,18 @@ proverAgent:
proverBroker:
resources:
requests:
memory: "5.5Gi"
memory: "5Gi"
cpu: "1.5"
ephemeral-storage: "275Gi"
maxOldSpaceSize: "5122"
maxOldSpaceSize: "4608"

proverNode:
resources:
requests:
memory: "5.5Gi"
memory: "5Gi"
cpu: "1.5"
ephemeral-storage: "275Gi"
maxOldSpaceSize: "5122"
maxOldSpaceSize: "4608"

bot:
replicas: 10
Expand Down
8 changes: 4 additions & 4 deletions spartan/aztec-network/values/exp-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,18 +308,18 @@ proverAgent:
proverBroker:
resources:
requests:
memory: "5.5Gi"
memory: "5Gi"
cpu: "1.5"
ephemeral-storage: "275Gi"
maxOldSpaceSize: "5122"
maxOldSpaceSize: "4608"

proverNode:
resources:
requests:
memory: "5.5Gi"
memory: "5Gi"
cpu: "1.5"
ephemeral-storage: "275Gi"
maxOldSpaceSize: "5122"
maxOldSpaceSize: "4608"

bot:
replicas: 10
Expand Down

0 comments on commit a720151

Please sign in to comment.