Skip to content

Commit

Permalink
Add IOPS/BPS to task size proto (#7904)
Browse files Browse the repository at this point in the history
  • Loading branch information
bduffany authored Nov 15, 2024
1 parent 4337c11 commit 513710c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions proto/scheduler.proto
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,18 @@ message TaskSize {
// The task's estimated disk space requirement (beyond task inputs).
int64 estimated_free_disk_bytes = 3;

// The task's estimated disk bytes read per second.
int64 disk_read_bps = 5;

// The task's estimated disk bytes written per second.
int64 disk_write_bps = 6;

// The task's estimated disk read IO operations per second.
int64 disk_read_iops = 7;

// The task's estimated disk write IO operations per second.
int64 disk_write_iops = 8;

// The task's custom resource requirement.
//
// These are requested explicitly using platform properties prefixed with
Expand Down

0 comments on commit 513710c

Please sign in to comment.