Skip to content

Commit cf8db22

Browse files
Merge branch 'main' into brendan/web-metrics
2 parents 10d2047 + 4fbf359 commit cf8db22

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Added a manually triggered cloud image release workflow for isolated internal deployments. [#1566](https://github.com/sourcebot-dev/sourcebot/pull/1566)
1212
- Added Prometheus metrics for the web process, served on `WEB_METRICS_PORT` (default `3070`). [#1570](https://github.com/sourcebot-dev/sourcebot/pull/1570)
1313

14+
### Fixed
15+
- Fixed the web process being capped at a ~4GiB heap regardless of how much memory the container has, which caused multi-second garbage collection pauses on larger deployments. [#1569](https://github.com/sourcebot-dev/sourcebot/pull/1569)
16+
1417
## [5.1.6] - 2026-08-10
1518

1619
### Added

supervisord.conf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ redirect_stderr=true
1515

1616
[program:web]
1717
command=./prefix-output.sh node packages/web/server.js
18+
environment=NODE_OPTIONS="--max-old-space-size-percentage=50"
1819
priority=20
1920
autostart=true
2021
autorestart=true
@@ -31,4 +32,4 @@ autorestart=true
3132
startretries=3
3233
stdout_logfile=/dev/fd/1
3334
stdout_logfile_maxbytes=0
34-
redirect_stderr=true
35+
redirect_stderr=true

0 commit comments

Comments
 (0)