Skip to content

Commit

Permalink
More heap space for Lodestar (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Sep 17, 2023
1 parent da38b2c commit 18d6950
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lodestar-cl-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
entrypoint:
- docker-entrypoint.sh
- node
- --max-old-space-size=4096
- --max-old-space-size=16384
- /usr/app/node_modules/.bin/lodestar
- beacon
- --dataDir
Expand Down
2 changes: 1 addition & 1 deletion lodestar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
entrypoint:
- docker-entrypoint.sh
- node
- --max-old-space-size=4096
- --max-old-space-size=16384
- /usr/app/node_modules/.bin/lodestar
- beacon
- --dataDir
Expand Down
2 changes: 1 addition & 1 deletion lodestar/Dockerfile.binary
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ COPY --chown=${USER}:${USER} ./docker-entrypoint-vc.sh /usr/local/bin/
# Belt and suspenders
RUN chmod -R 755 /usr/local/bin/*

ENTRYPOINT ["node", "--max-old-space-size=6144", "/usr/app/node_modules/.bin/lodestar"]
ENTRYPOINT ["node", "--max-old-space-size=16384", "/usr/app/node_modules/.bin/lodestar"]
2 changes: 1 addition & 1 deletion lodestar/Dockerfile.source
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ RUN chmod -R 755 /usr/local/bin/*

USER lsconsensus

ENTRYPOINT ["node", "--max-old-space-size=6144", "/usr/app/node_modules/.bin/lodestar"]
ENTRYPOINT ["node", "--max-old-space-size=16384", "/usr/app/node_modules/.bin/lodestar"]

0 comments on commit 18d6950

Please sign in to comment.