You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vine: reserve a factor of disk when allocating resources (#4035)
* init
* tune param
* lint
* lint
* lint
* condition cahnge: value > 1 || value <= 0
* reserve disk not only for proportional
* lint
* only modify disk factor when in range (0,1)
---------
Co-authored-by: Benjamin Tovar <[email protected]>
Copy file name to clipboardexpand all lines: taskvine/src/manager/vine_manager.h
+1
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,7 @@ struct vine_manager {
229
229
intwatch_library_logfiles; /* If true, watch the output files produced by each of the library processes running on the remote workers, take them back the current logging directory */
230
230
231
231
doublesandbox_grow_factor; /* When task disk sandboxes are exhausted, increase the allocation using their measured valued times this factor */
232
+
doubledisk_proportion_available_to_task; /* intentionally reduces disk allocation for tasks to reserve some space for cache growth. */
232
233
233
234
/*todo: confirm datatype. int or int64*/
234
235
intmax_task_stdout_storage; /* Maximum size of standard output from task. (If larger, send to a separate file.) */
0 commit comments