You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(tests): cache dd-trace tarball for sandbox creation (#7351)
Parallel integration tests were bottlenecked by multiple processes
simultaneously packing dd-trace.tgz during sandbox creation. This
caused severe I/O contention.
Cache the tarball at the sandboxRoot level so it's only created
once per test run, then reused by all parallel workers.
Debugger integration tests performance improvement example:
- Sequential: 5:06
- Parallel (--jobs 2) before: 6:47 (slower due to contention)
- Parallel (--jobs 2) after: 3:02 (40% faster than sequential)
- System CPU overhead reduced from 424s to 164s.
0 commit comments