Skip to content

Commit

Permalink
recording storage details include bucket name
Browse files Browse the repository at this point in the history
  • Loading branch information
zehiko committed Oct 9, 2024
1 parent 16933bd commit 9d9ba96
Show file tree
Hide file tree
Showing 2 changed files with 161 additions and 79 deletions.
7 changes: 6 additions & 1 deletion crates/store/re_storage_types/proto/rerun/v0/storage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@ message RecordingId {

message RegisterRecordingsRequest {
string description = 1;
string storage_url = 2;
ObjectStorage obj_storage = 2;
// TODO should this be auto-discoverable?
RecordingType typ = 3;
}

message ObjectStorage {
string bucket_name = 1;
string url = 2;
}

message RegisterRecordingsResponse {
// Note: this implies we read the record (for example go through entire .rrd file
// chunk by chunk) and extract the metadata. So we might want to 1/ not do this i.e.
Expand Down
Loading

0 comments on commit 9d9ba96

Please sign in to comment.