perf: resolve compilation hang in release mode and fix port conflicts#99
Merged
Merged
Conversation
…axum_router_chain # Conflicts: # crates/test-suite/tests/e2e_swarm/docker-compose.e2e.yaml
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Closed
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.
Overview
This PR resolves the release-mode compilation hang during Docker image builds and fixes docker compose swarm port conflicts with GitLab on host servers.
Key Changes
Axum Router Optimization:
build_router()in runtime_routes.rs to register routes statement-by-statement (router = router.route(...)) rather than using a single, deeply nested chained expression. This eliminates the compiler type-inference and trait-checking bottlenecks.Cargo Profile Overrides:
coreason-manifest-typesto build atopt-level = 0in release mode. This resolves the backend LLVM optimizer hang on the massive 6MBontology.rsfile (containing over 128,000 lines of generated code with heavy serialization macros).coreason-serverto build atopt-level = 0in release mode.lto = falsein the release profile to disable Link-Time Optimization, reducing link phase duration and memory consumption.opt-level = 3) active for performance-critical engine and ledger crates.Swarm Port Configuration & Conflict Resolution:
gatewayto host port8089(internal8080).openshell-managerto host port8087(internal8080).COREASON_GATEWAY_URLenvironment variable (falling back tohttp://localhost:8080).Timings & Diagnostics:
--timings --verboseflags to Dockerfile cargo compilation steps to provide timing and progress diagnostics.Verification
cargo check -p test-suitecompiles successfully.