@@ -110,7 +110,7 @@ Full Example of Global Configuration
110110 heartbeat : 120
111111 interrupt_signal_code : 130
112112 max_broken : 10
113- max_idle_time : 60
113+ reservation_timeout : 60
114114 max_trials : 1000000000
115115 user_script_config : config
116116
@@ -365,7 +365,7 @@ Worker
365365 heartbeat : 120
366366 interrupt_signal_code : 130
367367 max_broken : 10
368- max_idle_time : 60
368+ reservation_timeout : 60
369369 max_trials : 1000000000
370370 user_script_config : config
371371
@@ -464,21 +464,37 @@ max_broken
464464 Maximum number of broken trials before worker stops.
465465
466466
467+ .. _config_worker_reservation_timeout :
468+
469+ reservation_timeout
470+ ~~~~~~~~~~~~~~~~~~~
471+
472+ :Type: int
473+ :Default: 60
474+ :Env var: ORION_RESERVATION_TIMEOUT
475+ :Description:
476+ Maximum time the experiment can spend trying to reserve a new suggestion. Such timeout are
477+ generally caused by slow database, large number of concurrent workers leading to many race
478+ conditions or small search spaces with integer/categorical dimensions that may be fully
479+ explored.
480+
467481
468482.. _config_worker_max_idle_time :
469483
470484max_idle_time
471485~~~~~~~~~~~~~
472486
487+ .. warning ::
488+
489+ **DEPRECATED. ** This argument will be removed in v0.3.
490+ Use :ref: `config_worker_reservation_timeout ` instead.
491+
473492:Type: int
474493:Default: 60
475494:Env var: ORION_MAX_IDLE_TIME
476495:Description:
477- Maximum time the producer can spend trying to generate a new suggestion.Such timeout are
478- generally caused by slow database, large number of concurrent workers leading to many race
479- conditions or small search spaces with integer/categorical dimensions that may be fully
480- explored.
481-
496+ (DEPRECATED) This argument will be removed in v0.3. Use :ref: `config_worker_reservation_timeout `
497+ instead.
482498
483499
484500.. _config_worker_interrupt_signal_code :
0 commit comments