-
Notifications
You must be signed in to change notification settings - Fork 0
⚡ Bolt: Throttle synchronous disk I/O in stats tracking #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
56764d9
⚡ Bolt: Throttle synchronous disk I/O in stats tracking
google-labs-jules[bot] 29dbea7
⚡ Bolt: Throttle synchronous disk I/O in stats tracking
google-labs-jules[bot] d2f3b06
⚡ Bolt: Throttle synchronous disk I/O in stats tracking
google-labs-jules[bot] bc052b6
⚡ Bolt: Throttle synchronous disk I/O in stats tracking
google-labs-jules[bot] 808a28d
fix: address CodeRabbit and Gemini review feedback
sheepdestroyer 60da6e1
fix: address CodeRabbit and Gemini round-2 review feedback
sheepdestroyer 418f90c
fix: address Gemini round-3 review — offload sync I/O to thread pool
sheepdestroyer 1fd6d01
feat: dataset visualizer + benchmark script + gap-fill extraction
sheepdestroyer 7fc31cb
fix: restore tier table widget + extract first user msg from Hermes s…
sheepdestroyer a4fcb01
feat: gemma4 classifier with grammar, combined evals visualizer, dash…
sheepdestroyer 640d2b6
feat: direct classifier + error retry scripts for dataset building
sheepdestroyer 958e6b8
fix: address PR reviews and align test suite for DualCircuitBreaker
sheepdestroyer 43f0eef
fix: prevent file descriptor leaks, deduplicate save stats, and log b…
sheepdestroyer ef47704
Address code review feedback from pullrequestreview-4523251587
sheepdestroyer 764fe64
Add robustness fixes for reclassify/retry datasets, utf-8, and error …
sheepdestroyer 9bfbdba
Use absolute paths in visualizer fetch requests to prevent trailing s…
sheepdestroyer 9c8f286
Add GitHub Actions testing workflow and correct Dependabot Docker dir…
sheepdestroyer 3b82424
Fix Dependabot schema validation errors by removing invalid prefix-ma…
sheepdestroyer ead7ed4
fix: resolve dependabot yaml parsing errors
google-labs-jules[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ## 2024-06-16 - Synchronous I/O in Async API Handlers | ||
| **Learning:** `save_persisted_stats()` was being called synchronously on every API request, cache hit, and tool usage log, triggering blocking disk I/O in the main event loop. | ||
| **Action:** Always throttle or batch background telemetry writes in async Python applications to prevent blocking the event loop under load. |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "id": "nvidia/nemotron-3-ultra-550b-a55b:free", | ||
| "name": "NVIDIA: Nemotron 3 Ultra (free)", | ||
| "score": 48.0, | ||
| "context_length": 1000000, | ||
| "is_fallback": false, | ||
| "updated_at": "2026-06-16T15:43:39.475769Z" | ||
| } |
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing the
ollama-deepseek-v4-flashbackend frombackendswill cause a runtimeHTTPException(500 Internal Server Error) when routing reasoning-core requests via Ollama. Inrouter/main.py,agent-reasoning-corerequests are mapped toollama-deepseek-v4-flashand looked up in thebackendsdictionary. Since it is no longer defined inbackends,backends.get(target_model)will returnNone, causing a misconfiguration error.