File size: 28,404 Bytes
8c9ba62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 | """Scheduler for rollout tasks."""
import asyncio
import re
import time
import traceback
from collections import defaultdict, deque
from dataclasses import dataclass, field, replace
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
import numpy as np
import ray
from trinity.common.config import Config
from trinity.common.experience import Experience
from trinity.common.models import InferenceModel
from trinity.common.workflows import Task
from trinity.explorer.workflow_runner import Status, WorkflowRunner
from trinity.utils.log import get_logger
@dataclass
class TaskWrapper:
"""A wrapper for a task.
Each task can run multiple times (repeat_times) on same or different runners.
"""
task: Task
batch_id: Union[int, str]
sub_task_num: int = 1 # number of sub tasks splitted from this task
# if max_repeat_times_per_runner is set, one task may be splitted into multiple sub tasks
results: List[Tuple[Status, List[Experience]]] = field(default_factory=list)
# Adapted from verl/trainer/ppo/metric_utils.py
def bootstrap_metric(
data: list[Any],
subset_size: int,
reduce_fns: list[Callable[[np.ndarray], float]],
n_bootstrap: int = 1000,
seed: int = 42,
) -> list[tuple[float, float]]:
"""
Performs bootstrap resampling to estimate statistics of metrics.
This function uses bootstrap resampling to estimate the mean and standard deviation
of metrics computed by the provided reduction functions on random subsets of the data.
Args:
data: List of data points to bootstrap from.
subset_size: Size of each bootstrap sample.
reduce_fns: List of functions that compute a metric from a subset of data.
n_bootstrap: Number of bootstrap iterations. Defaults to 1000.
seed: Random seed for reproducibility. Defaults to 42.
Returns:
A list of tuples, where each tuple contains (mean, std) for a metric
corresponding to each reduction function in reduce_fns.
Example:
>>> data = [1, 2, 3, 4, 5]
>>> reduce_fns = [np.mean, np.max]
>>> bootstrap_metric(data, 3, reduce_fns)
[(3.0, 0.5), (4.5, 0.3)] # Example values
"""
np.random.seed(seed)
bootstrap_metric_lsts = [[] for _ in range(len(reduce_fns))]
for _ in range(n_bootstrap):
bootstrap_idxs = np.random.choice(len(data), size=subset_size, replace=True)
bootstrap_data = [data[i] for i in bootstrap_idxs]
for i, reduce_fn in enumerate(reduce_fns):
bootstrap_metric_lsts[i].append(reduce_fn(bootstrap_data))
return [(np.mean(lst), np.std(lst)) for lst in bootstrap_metric_lsts]
def calculate_task_level_metrics(metrics: List[Dict], is_eval: bool) -> Dict[str, float]:
"""Calculate task level metrics (mean) from multiple runs of the same task.
Args:
metrics (`List[Dict]`): A list of metric dictionaries from multiple runs of the same task.
is_eval (`bool`): Whether this is an evaluation task.
Returns:
`Dict[str, float]`: A dictionary of aggregated metrics, where each metric is averaged over all runs.
"""
if not metrics:
return {}
aggregated_metrics: Dict[str, List[float]] = defaultdict(list)
for m in metrics:
for key, value in m.items():
if isinstance(value, (int, float)):
aggregated_metrics[key].append(value)
if is_eval:
result = {}
for key, values in aggregated_metrics.items():
if "time/task_execution" in key or "time/run_execution" in key:
result[key] = sum(values) / len(values)
continue
n_values = len(values)
result[f"{key}/mean@{n_values}"] = np.mean(values)
result[f"{key}/std@{n_values}"] = np.std(values)
if n_values > 1:
ns = []
n = 2
while n < n_values:
ns.append(n)
n *= 2
ns.append(n_values)
for n in ns:
[(bon_mean, bon_std), (won_mean, won_std)] = bootstrap_metric(
data=values, subset_size=n, reduce_fns=[np.max, np.min], seed=42
)
result[f"{key}/best@{n}"] = bon_mean
result[f"{key}/worst@{n}"] = won_mean
return result
else:
return {
key: sum(values) / len(values) for key, values in aggregated_metrics.items() if values
}
class RunnerWrapper:
"""A wrapper for a WorkflowRunner"""
def __init__(
self,
runner_id: int,
rollout_model: InferenceModel,
auxiliary_models: List[InferenceModel],
config: Config,
):
self.logger = get_logger(__name__)
self.runner_id = runner_id
self.rollout_model = rollout_model
self.auxiliary_models = auxiliary_models
self.config = config
self.retry_times = config.explorer.max_retry_times
self.timeout = config.explorer.max_timeout
self.namespace = config.ray_namespace
self.runner = self._create_runner()
self.state = {}
def _create_runner(self):
return (
ray.remote(WorkflowRunner)
.options(
num_cpus=0,
namespace=self.namespace,
scheduling_strategy="SPREAD",
runtime_env={
"env_vars": self.config.explorer.env_vars,
},
)
.remote(self.config, self.rollout_model, self.auxiliary_models, self.runner_id)
)
async def prepare(self):
await self.runner.prepare.remote()
async def update_state(self) -> None:
"""Get the runner state."""
self.state = await self.runner.get_runner_state.remote()
self.state["running_time"] = time.time() - self.state.get("begin_time", time.time())
async def run_with_retry(
self, task: TaskWrapper, repeat_times: int, run_id_base: int, timeout: float
) -> Tuple[Status, List, int, float]:
"""
Args:
task (`TaskWrapper`): The task to run.
repeat_times (`int`): The number of times to repeat the task.
run_id_base (`int`): The base run id for this task runs.
timeout (`float`): The timeout for each task run.
Returns:
`Status`: The return status of the task.
`List`: The experiences generated by the task.
`int`: The runner_id of current runner.
`float`: The time taken to run the task.
"""
last_exception_msg = None
await self.runner.__ray_ready__.remote()
start_time = time.time()
status = Status(ok=False, metrics=list())
exps = []
task2run = replace(
task.task,
rollout_args=replace(
task.task.rollout_args,
n=repeat_times,
),
)
try:
for attempt in range(self.retry_times + 1):
try:
status, exps = await asyncio.wait_for(
self.runner.run_task.remote(
task=task2run,
repeat_times=repeat_times,
run_id_base=run_id_base,
),
timeout=timeout,
)
if status.ok:
break
else:
self.logger.error(status.message)
except asyncio.TimeoutError:
last_exception_msg = f"Timeout when running task of batch {task.batch_id} at runner {self.runner_id} at attempt {attempt + 1}: {task.task}"
self.logger.error(last_exception_msg)
status = Status(ok=False, metrics=list(), message=last_exception_msg)
except Exception:
last_exception_msg = traceback.format_exc()
self.logger.warning(
f"Task execution attempt {attempt + 1} failed:\n{last_exception_msg}"
)
status = Status(ok=False, metrics=list(), message=last_exception_msg)
finally:
end_time = time.time()
status.metrics.append({"time/task_execution": end_time - start_time})
return status, exps, self.runner_id, end_time - start_time
async def restart_runner(self):
old_runner = self.runner
self.runner = self._create_runner()
await self.runner.prepare.remote()
try:
ray.kill(old_runner)
except Exception:
pass
def sort_batch_id(batch_id: Union[int, str]):
"""Priority of batch_id"""
# TODO: avoid sort the batch_id every time
if isinstance(batch_id, int):
return (batch_id, 0)
else:
match = re.match(r"^(\d+)", batch_id)
if match:
num = int(match.group(1))
return (num, 1)
else:
return (float("inf"), 1)
class Scheduler:
"""Scheduler for rollout tasks.
Supports scheduling tasks to multiple runners, retrying failed tasks,
and collecting results at different levels.
"""
def __init__(
self,
config: Config,
rollout_model: List[InferenceModel],
auxiliary_models: Optional[List[List[InferenceModel]]] = None,
):
self.logger = get_logger(__name__)
self.config = config
self.rollout_model = rollout_model
self.auxiliary_models = auxiliary_models or []
self.namespace = ray.get_runtime_context().namespace
self.default_timeout = config.explorer.max_timeout * (config.explorer.max_retry_times + 1)
self.max_retry_times = config.explorer.max_retry_times
self.max_repeat_times = config.explorer.max_repeat_times_per_runner
self.default_batch_size = config.buffer.batch_size
self.running = False
self.runner_num = len(rollout_model) * config.explorer.runner_per_model
self.runners: Dict[int, RunnerWrapper] = dict()
self.idle_runners = set() # runner_id of idle runners
self.busy_runners = dict() # runner_id -> task
self.pending_tasks: Dict[Union[int, str], deque] = defaultdict(
deque
) # batch_id -> (task, repeat_times, run_id_base)
self.running_tasks: Dict[Union[int, str], set[asyncio.Future]] = defaultdict(
set
) # batch_id -> futures
self.task_num_map: Dict[Union[int, str], int] = defaultdict(
int
) # batch_id -> tasks scheduled under this batch_id
self.running_task_map: Dict[asyncio.Future, TaskWrapper] = dict() # future -> task
self.completed_tasks: Dict[
Union[int, str], deque[Tuple[Status, List[Experience]]]
] = defaultdict(
deque
) # batch_id -> results
self.scheduler_task: Optional[asyncio.Task] = None
self.running = False
self.total_running_time = 0.0
self.total_completed_tasks = 0
async def _create_runner(
self,
runner_id: int,
):
runner = RunnerWrapper(
runner_id=runner_id,
rollout_model=self.rollout_model[runner_id % len(self.rollout_model)],
auxiliary_models=[
self.auxiliary_models[j][runner_id % len(self.auxiliary_models[j])]
for j in range(len(self.auxiliary_models))
],
config=self.config,
)
await runner.prepare()
self.runners[runner_id] = runner
self.idle_runners.add(runner_id)
async def _restart_runner(self, runner_id: int):
"""Restart a runner."""
await self.runners[runner_id].restart_runner()
if runner_id in self.busy_runners:
task = self.busy_runners.pop(runner_id)
self.logger.warning(
f"Runner {runner_id} failed to run task at batch_id {task.batch_id}: {task.task.raw_task}"
)
self.idle_runners.add(runner_id)
self.logger.info(f"Runner {runner_id} restarted.")
async def _scheduler_loop(self) -> None:
self.logger.info("Scheduler loop started.")
while self.running:
try:
await self._schedule_pending_tasks()
await asyncio.sleep(0.01)
except Exception:
self.logger.error(f"Error in scheduler loop:\n{traceback.format_exc()}")
await asyncio.sleep(0.1)
self.logger.info("Scheduler loop stopped.")
async def _monitor_runner_state_loop(self) -> None:
interval = self.config.explorer.runner_state_report_interval
if interval <= 0:
self.logger.info("Runner state monitoring loop disabled.")
return
self.logger.info("Runner state monitoring loop started.")
while self.running:
try:
await asyncio.gather(*[runner.update_state() for runner in self.runners.values()])
self.print_all_state()
except Exception:
self.logger.error(
f"Error in runner state monitoring loop:\n{traceback.format_exc()}"
)
await asyncio.sleep(interval)
self.logger.info("Runner state monitoring loop stopped.")
async def _schedule_pending_tasks(self) -> None:
if not self.idle_runners:
return
# TODO: Support more advanced scheduling strategies
for batch_id in sorted(self.pending_tasks.keys(), key=sort_batch_id):
task_queue = self.pending_tasks[batch_id]
while task_queue and self.idle_runners:
task, repeat_times, run_id_base = task_queue.pop()
runner_id = self.idle_runners.pop()
self.busy_runners[runner_id] = task
future = asyncio.create_task(
self.runners[runner_id].run_with_retry(
task,
repeat_times=repeat_times,
run_id_base=run_id_base,
timeout=self.dynamic_timeout(),
)
)
self.running_task_map[future] = task
future.add_done_callback(self.task_done_callback)
self.running_tasks[batch_id].add(future)
if not task_queue:
del self.pending_tasks[batch_id]
def task_done_callback(self, async_task: asyncio.Task):
task = self.running_task_map.pop(async_task)
if async_task.cancelled():
return
elif async_task.exception():
self.logger.error(f"Task {task.task.task_id} failed: {async_task.exception()}")
return
else:
status, exps, runner_id, run_time = async_task.result()
if not task.task.is_eval: # only count running time for non-eval tasks
self.total_running_time += run_time
self.total_completed_tasks += 1
task.results.append((status, exps))
self.busy_runners.pop(runner_id)
self.idle_runners.add(runner_id)
# If all sub runs in a task are completed
if len(task.results) == task.sub_task_num:
task_experiences = []
task_metrics = []
all_success = True
for s, exp in task.results:
task_metrics.extend(s.metrics)
task_experiences.extend(exp)
if not s.ok:
all_success = False
# calculate task level metrics
task_status = Status(
ok=all_success,
metrics=[calculate_task_level_metrics(task_metrics, task.task.is_eval)],
)
self.completed_tasks[task.batch_id].appendleft((task_status, task_experiences))
self.logger.debug(f"Task completed (batch_id {task.batch_id}).")
if task.batch_id in self.running_tasks:
self.running_tasks[task.batch_id].remove(async_task)
if not self.running_tasks[task.batch_id]:
del self.running_tasks[task.batch_id]
def _clear_timeout_tasks(self, batch_id: Union[int, str]) -> None:
if batch_id in self.pending_tasks:
self.logger.info(f"Clear timeout pending tasks at batch_id {batch_id}.")
del self.pending_tasks[batch_id]
if batch_id in self.running_tasks:
self.logger.info(f"Clear timeout running tasks at batch_id {batch_id}.")
for future in self.running_tasks[batch_id]:
future.cancel()
del self.running_tasks[batch_id]
self.task_num_map.pop(batch_id, None)
async def start(self) -> None:
if self.running:
return
self.running = True
await asyncio.gather(*[self._create_runner(i) for i in range(self.runner_num)])
self.scheduler_task = asyncio.create_task(self._scheduler_loop())
ready_refs = [runner.runner.__ray_ready__.remote() for runner in self.runners.values()]
await asyncio.gather(*ready_refs)
self.monitor_task = asyncio.create_task(self._monitor_runner_state_loop())
self.logger.info(f"Starting Scheduler with {self.runner_num} runners")
async def stop(self) -> None:
if not self.running:
return
self.running = False
all_running_futures = []
for futures in self.running_tasks.values():
all_running_futures.extend(futures)
if all_running_futures:
self.logger.info(f"Waiting for {len(all_running_futures)} running tasks to complete...")
await asyncio.gather(*all_running_futures, return_exceptions=True)
if self.scheduler_task:
self.scheduler_task.cancel()
try:
await self.scheduler_task
except asyncio.CancelledError:
pass
if self.monitor_task:
self.monitor_task.cancel()
try:
await self.monitor_task
except asyncio.CancelledError:
pass
self.logger.info("Scheduler stopped")
def schedule(self, tasks: List[Task], batch_id: Union[int, str]) -> None:
"""Schedule the provided tasks.
Args:
tasks (`List[Task]`): The tasks to schedule.
batch_id (`Union[int, str]`): The id of provided tasks. It should be an integer or a string
starting with an integer (e.g., 123, "123/my_task")
"""
if not tasks:
return
self.task_num_map[batch_id] += len(tasks)
self._split_and_submit_tasks(tasks, batch_id=batch_id)
def _split_and_submit_tasks(self, tasks: List[Task], batch_id: Union[int, str]) -> None:
for i, task in enumerate(tasks):
assert task.repeat_times is not None, "Task repeat_times should not be None"
task_wrapper = TaskWrapper(
task=replace(task, batch_id=batch_id, task_id=i),
batch_id=batch_id,
)
if self.max_repeat_times is None:
task_wrapper.sub_task_num = 1
self.pending_tasks[batch_id].appendleft((task_wrapper, task.repeat_times, 0))
continue
sub_tasks = []
for run_id_base in range(0, task.repeat_times, self.max_repeat_times):
repeat_times = min(self.max_repeat_times, task.repeat_times - run_id_base)
sub_tasks.append((task_wrapper, repeat_times, run_id_base))
task_wrapper.sub_task_num = len(sub_tasks)
self.pending_tasks[batch_id].extendleft(sub_tasks)
def dynamic_timeout(self, timeout: Optional[float] = None) -> float:
"""Calculate dynamic timeout based on historical data."""
max_timeout = timeout or self.default_timeout
if not self.config.explorer.dynamic_timeout.enable:
return max_timeout
if self.total_completed_tasks < self.default_batch_size:
return max_timeout
avg_time_per_task = self.total_running_time / self.total_completed_tasks
return min(
max_timeout,
avg_time_per_task * self.config.explorer.dynamic_timeout.ratio,
)
async def get_results(
self,
batch_id: Union[int, str],
min_num: Optional[int] = None,
timeout: Optional[float] = None,
clear_timeout_tasks: bool = True,
) -> Tuple[List[Status], List[Experience]]:
"""Get the result of tasks at the specific batch_id.
Args:
batch_id (`Union[int, str]`): Only wait for tasks at this batch.
min_num (`int`): The minimum number of tasks to wait for. If `None`, wait for all tasks at `batch_id`.
timeout (`float`): The timeout for waiting for tasks to finish. If `None`, wait for default timeout.
clear_timeout_tasks (`bool`): Whether to clear timeout tasks.
"""
timeout = timeout or self.default_timeout
start_time = time.time()
scheduled_num = self.task_num_map.get(batch_id, 0)
if min_num is None:
min_num = scheduled_num
elif min_num > scheduled_num:
self.logger.warning(
f"Requested min_num {min_num} is greater than scheduled tasks {scheduled_num} at batch_id {batch_id}. Adjusting min_num to {scheduled_num}."
)
min_num = scheduled_num
self.logger.debug(f"Waiting for {min_num} tasks to complete...")
min_threshold_reached_time = None
while time.time() - start_time <= timeout:
completed_count = len(self.completed_tasks.get(batch_id, []))
if completed_count >= min_num:
min_threshold_reached_time = min_threshold_reached_time or time.time()
if (completed_count >= scheduled_num) or (
time.time() - min_threshold_reached_time
>= self.config.explorer.over_rollout.wait_after_min
):
break
await asyncio.sleep(0.1)
if time.time() - start_time > timeout:
self.logger.error(
f"Timed out waiting for tasks at batch {batch_id} to complete after {timeout} seconds"
)
if clear_timeout_tasks:
self._clear_timeout_tasks(batch_id=batch_id)
runners_to_restart = []
for runner_id, task in list(self.busy_runners.items()):
if task.batch_id == batch_id:
runners_to_restart.append(runner_id)
asyncio.gather(
*[self._restart_runner(runner_id) for runner_id in runners_to_restart]
)
statuses = []
experiences = []
completed_queue = self.completed_tasks.get(batch_id, deque())
while completed_queue:
status, exps = completed_queue.pop()
statuses.append(status)
if isinstance(exps, list):
experiences.extend(exps)
else:
experiences.append(exps)
if batch_id in self.completed_tasks and not self.completed_tasks[batch_id]:
del self.completed_tasks[batch_id]
completed_count = len(statuses)
if completed_count < min_num:
self.logger.warning(
f"Timeout reached, only {completed_count}/{min_num} tasks completed"
)
return statuses, experiences
def has_step(self, batch_id: Union[int, str]) -> bool:
return (
batch_id in self.completed_tasks
or batch_id in self.pending_tasks
or batch_id in self.running_tasks
)
async def wait_all(
self, timeout: Optional[float] = None, clear_timeout_tasks: bool = True
) -> None:
"""Wait for all tasks to complete without poping results. If timeout reached, raise TimeoutError.
Args:
timeout (`float`): timeout in seconds. Raise `TimeoutError` when no new tasks is completed within timeout.
clear_timeout_tasks (`bool`): Whether to clear timeout tasks.
"""
timeout = timeout or self.default_timeout
start_time = time.time()
self.logger.debug("Waiting for all tasks to complete...")
last_completed_count = 0
while time.time() - start_time < timeout:
has_pending = bool(self.pending_tasks)
has_running = bool(self.running_tasks)
if not has_pending and not has_running:
self.logger.debug("All tasks completed successfully")
return
completed_count = sum(len(tasks) for tasks in self.completed_tasks.values())
if completed_count != last_completed_count:
# flush timeout when new tasks are completed
start_time = time.time()
last_completed_count = completed_count
await asyncio.sleep(0.1)
pending_count = sum(len(tasks) for tasks in self.pending_tasks.values())
running_count = sum(len(futures) for futures in self.running_tasks.values())
error_msg = f"Timeout after {timeout} seconds. Still have {pending_count} pending tasks and {running_count} running tasks."
self.logger.error(error_msg)
if clear_timeout_tasks:
for batch_id in self.pending_tasks.keys() | self.running_tasks.keys():
self._clear_timeout_tasks(batch_id)
asyncio.gather(
*[self._restart_runner(runner_id) for runner_id in self.busy_runners.keys()]
)
raise TimeoutError(error_msg)
def get_key_state(self, key: str) -> Dict:
"""Get the scheduler state.
Args:
key (`str`): The key of the state to get.
Returns:
`Dict`: A dictionary of runner ids to their state for the given key.
"""
result = {}
for runner in self.runners.values():
runner_state = runner.state
if runner_state and key in runner_state:
result[runner.runner_id] = runner_state[key]
return result
def get_runner_state(self, runner_id: int) -> Dict:
"""Get the scheduler state.
Args:
runner_id (`int`): The id of the runner.
Returns:
`Dict`: The state of the runner.
"""
runner = self.runners.get(runner_id, None)
if runner:
return runner.state
else:
return {}
def get_all_state(self) -> Dict:
"""Get all runners' state.
Returns:
`Dict`: The state of all runners.
"""
result = {}
for runner in self.runners.values():
runner_state = runner.state
if runner_state:
result[runner.runner_id] = runner_state
return result
def print_all_state(self) -> None:
"""Print all runners' state in a clear, aligned table format."""
all_keys = set()
for runner in self.runners.values():
runner_state = runner.state
if runner_state:
all_keys.update(runner_state.keys())
all_keys = sorted(all_keys)
# Prepare header
header = ["runner_id"] + all_keys # type: ignore [operator]
# Prepare rows
rows = []
for runner in self.runners.values():
runner_state = runner.state or {}
row = [str(runner.runner_id)]
for key in all_keys:
value = runner_state.get(key, "-")
row.append(str(value))
rows.append(row)
# Calculate column widths
col_widths = [max(len(str(x)) for x in col) for col in zip(header, *rows)]
# Print header
header_line = " | ".join(str(h).ljust(w) for h, w in zip(header, col_widths))
self.logger.info(header_line)
self.logger.info("-+-".join("-" * w for w in col_widths))
# Print each row
for row in rows:
line = " | ".join(str(cell).ljust(w) for cell, w in zip(row, col_widths))
self.logger.info(line)
|