diagnostics: add startup phase trace for runtime bootstrap#66
Open
sonukapoor wants to merge 1 commit intowasmerio:mainfrom
Open
diagnostics: add startup phase trace for runtime bootstrap#66sonukapoor wants to merge 1 commit intowasmerio:mainfrom
sonukapoor wants to merge 1 commit intowasmerio:mainfrom
Conversation
Contributor
Author
|
Quick cold-start update: Using Tried:
Outcome:
Current status: diagnostics improved, but no confirmed startup win yet. Next: split |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add an opt-in startup phase trace for runtime bootstrap diagnosis.
This PR adds lightweight, environment-gated tracing in
src/edge_runtime.ccto emit per-phase startup timing markers duringRunScriptWithGlobals.EDGE_STARTUP_TRACE=1stderredge_startup_trace(phase name)delta_ms(time since previous marker)total_ms(time since traced startup begin)Why
Current benchmark work shows startup-sensitive gaps, but wall-clock totals alone do not identify which bootstrap phase dominates.
This trace is intended as a diagnosis artifact so follow-up performance changes can target concrete hotspots and produce before/after evidence per phase.
Scope
EDGE_STARTUP_TRACEis unset.Example usage
EDGE_STARTUP_TRACE=1 ./build-edge/edge benchmarks/workloads/empty-startup.js EDGE_STARTUP_TRACE=1 ./build-edge/edge -e ""Example output (local)
This local sample suggests
bootstrap.node-and-webis a major hotspot candidate for the next narrow cold-start optimization pass.