viewer: fix HTTP live-follow OOM via datasetLoaded backpressure + shared pixel mask
The viewer could grow to ~100 GB RAM when live-following an HTTP broker. The rc.153 images_in_flight backpressure only throttled imageLoaded; the heavy per-frame payload rides datasetLoaded, fanned out over ~10 queued cross-thread connections with no cap. In HTTPSyncDataset follow mode (entered when an operator clicks an image while following live) RefreshDatasetOnly_i emits a fresh full dataset every autoload tick with no imageLoaded, so the gate never engaged and the queued events - each pinning a full JFJochReaderDataset (full-detector PixelMask + per-image plots) - accumulated without bound. Backpressure datasetLoaded the same way as imageLoaded: a datasets_in_flight counter (cap 2), all emits routed through EmitDatasetLoaded_i, and AutoLoadTimerExpired gated on it (covers HTTPSyncDataset). The window routes the worker's datasetLoaded through a single OnDatasetReady sink that fans out synchronously via datasetReady and acks with datasetConsumed. Under load stale datasets are dropped; the next tick sends the latest. Share the pixel mask instead of deep-copying it: JFJochReaderDataset::pixel_mask is now shared_ptr<const PixelMask>, so per-frame dataset copies share the ~72 MB mask. UpdateUserMask does copy-on-write; JFJochHttpReader caches the mask by arm_date so a live refresh reuses one shared mask per acquisition. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1035,7 +1035,7 @@ int main(int argc, char **argv) {
|
||||
config.nthreads = nthreads;
|
||||
config.output_prefix = output_prefix;
|
||||
|
||||
Rugnux process(reader, experiment, dataset->pixel_mask, config);
|
||||
Rugnux process(reader, experiment, *dataset->pixel_mask, config);
|
||||
g_active_process = &process;
|
||||
std::signal(SIGINT, handle_sigint);
|
||||
|
||||
@@ -1199,7 +1199,7 @@ int main(int argc, char **argv) {
|
||||
// _process.h5 unless explicitly requested. Without merging, the _process.h5 is the only output.
|
||||
config.write_process_h5 = run_scaling ? write_process_h5_flag : true;
|
||||
|
||||
Rugnux process(reader, experiment, dataset->pixel_mask, config);
|
||||
Rugnux process(reader, experiment, *dataset->pixel_mask, config);
|
||||
|
||||
g_active_process = &process;
|
||||
std::signal(SIGINT, handle_sigint);
|
||||
|
||||
Reference in New Issue
Block a user