Skip to content

Commit

Permalink
Change Teku default heap to 6g, from 5g (#1430)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Jun 20, 2023
1 parent 63b651d commit 7b564af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion default.env
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ CL_EXTRAS=
VC_EXTRAS=

# Heap for Besu and Teku, both written in Java. Sets JAVA_OPTS to this
# value, for example BESU_HEAP=-Xmx8g to set it to 8g. If left empty, the
# value, for example TEKU_HEAP=-Xmx12g to set it to 12g. If left empty, the
# defaults in besu.yml and teku.yml are used.
BESU_HEAP=
TEKU_HEAP=
Expand Down
2 changes: 1 addition & 1 deletion teku-cl-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- /etc/localtime:/etc/localtime:ro
- jwtsecret:/var/lib/teku/ee-secret
environment:
- JAVA_OPTS=${TEKU_HEAP:--Xmx5g}
- JAVA_OPTS=${TEKU_HEAP:--Xmx6g}
- RAPID_SYNC_URL=${RAPID_SYNC_URL}
- JWT_SECRET=${JWT_SECRET}
- MEV_BOOST=${MEV_BOOST}
Expand Down
2 changes: 1 addition & 1 deletion teku.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- /etc/localtime:/etc/localtime:ro
- jwtsecret:/var/lib/teku/ee-secret
environment:
- JAVA_OPTS=${TEKU_HEAP:--Xmx5g}
- JAVA_OPTS=${TEKU_HEAP:--Xmx6g}
- RAPID_SYNC_URL=${RAPID_SYNC_URL}
- JWT_SECRET=${JWT_SECRET}
- MEV_BOOST=${MEV_BOOST}
Expand Down

0 comments on commit 7b564af

Please sign in to comment.