feat: Quick wins - SCIOT-039,040,041,044,046#41
Open
lbedogni wants to merge 2 commits into
Open
Conversation
- SCIOT-039: Bound MQTT task queue with max_queue_size config * Added max_queue_size to settings.yaml (default 1000) * Added validation in config.py * Implemented bounded queue in MqttClient with backpressure handling * Worker thread processes queued messages - SCIOT-040: Config validation for offloading_algo and MQTT queue * Added _validate_offloading_algo() with ema_alpha range validation (0.0, 1.0] * Added max_queue_size validation for MQTT transport - SCIOT-041: Make EMA alpha configurable * Added offloading_algo.ema_alpha to settings.yaml * Added load_ema_alpha() in request_handler.py * Replaced hardcoded alpha=0.5 with config value in EMA updates - SCIOT-044: Replace print statements with structured logging * Converted all print() in request_handler.py to logger.info()/warning() * Converted print() in http_server.py to logger.error()/info() * Header table, inference timing, profiler exports, model registration now use structured logging - SCIOT-046: Add time breakdown telemetry * Created src/sciot/telemetry.py with @profile_phase decorator * Phase timing utilities: start_phase/end_phase, get_phase_stats * Predefined phases: preprocessing, device_compute, network_transfer, edge_compute, postprocessing, offloading_decision, total_inference * Thread-safe with per-phase statistics All unit tests pass (config, inference_protocol, offloading_decisions, dashboard, variance, etc.)
Codecov Report❌ Patch coverage is
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
….github.io submodule - Moved 3 split computing papers from lbedogni.github.io/files/ to files/: - 2511.18151_AVERY.md (Adaptive VLM Split Computing for UAVs) - 2512.09963_GoodSpeed.md (Fair Goodput with Speculative Decoding) - 2603.14958_SALT.md (Closed Split Computing Personalization) - Created split-computing-papers-summary.md with comparative summary - Updated lbedogni.github.io submodule to latest master (synced moved files)
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.
SCIOT-039: Bound MQTT task queue with max_queue_size config
SCIOT-040: Config validation for offloading_algo and MQTT queue
SCIOT-041: Make EMA alpha configurable
SCIOT-044: Replace print statements with structured logging
SCIOT-046: Add time breakdown telemetry
All unit tests pass (config, inference_protocol, offloading_decisions, dashboard, variance, etc.)