Page MenuHomePhabricator

[native] Function for triggering file data upload
ClosedPublic

Authored by michal on Jan 15 2024, 6:16 AM.
Tags
None
Referenced Files
F3376850: D10630.diff
Wed, Nov 27, 2:35 AM
Unknown Object (File)
Thu, Nov 21, 3:52 AM
Unknown Object (File)
Thu, Nov 21, 3:52 AM
Unknown Object (File)
Oct 22 2024, 1:06 PM
Unknown Object (File)
Oct 22 2024, 9:00 AM
Unknown Object (File)
Oct 22 2024, 5:31 AM
Unknown Object (File)
Oct 22 2024, 5:31 AM
Unknown Object (File)
Sep 13 2024, 7:04 AM
Subscribers

Details

Summary

ENG-6214 : Create a function for signaling a new log/compaction

This a function that the C++ database code will call to specify that a new compaction or log has been saved to a file and needs to be uploaded to the backup service. It uses the Notify struct which allows waiting for an event using notify_object.notified().await; and triggering the event with notify_object.notify_one() (which is non-blocking). It will be used in the backup_data_sender function.

Depends on D10629

Test Plan

Run code:

loop {TRIGGER_BACKUP_FILE_UPLOAD.notified().await; println!("Triggered");}
  1. After each call to notify_one(), "Triggered" is logged
  2. Don't run the loop code. Make sure notify_one() can still be called and doesn't block.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable