File size: 38,530 Bytes
26af6fe | 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 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 | # Copyright 2025 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Contains commands to interact with jobs on the Hugging Face Hub.
Usage:
# run a job
hf jobs run <image> <command>
# List running or completed jobs
hf jobs ps [-a] [-f key=value] [--format table|json|TEMPLATE] [-q]
# Print logs from a job (non-blocking)
hf jobs logs <job-id>
# Stream logs from a job (blocking, like `docker logs -f`)
hf jobs logs -f <job-id>
# Stream resources usage stats and metrics from a job
hf jobs stats <job-id>
# Inspect detailed information about a job
hf jobs inspect <job-id>
# Cancel a running job
hf jobs cancel <job-id>
# List available hardware options
hf jobs hardware
# Run a UV script
hf jobs uv run <script>
# Schedule a job
hf jobs scheduled run <schedule> <image> <command>
# List scheduled jobs
hf jobs scheduled ps [-a] [-f key=value] [--format table|json] [-q]
# Inspect a scheduled job
hf jobs scheduled inspect <scheduled_job_id>
# Suspend a scheduled job
hf jobs scheduled suspend <scheduled_job_id>
# Resume a scheduled job
hf jobs scheduled resume <scheduled_job_id>
# Delete a scheduled job
hf jobs scheduled delete <scheduled_job_id>
"""
import json
import multiprocessing
import multiprocessing.pool
import shutil
import time
from collections import deque
from collections.abc import Callable, Iterable
from dataclasses import asdict
from fnmatch import fnmatch
from queue import Empty, Queue
from typing import Annotated, Any, TypeVar
import typer
from huggingface_hub import SpaceHardware
from huggingface_hub.errors import CLIError, HfHubHTTPError
from huggingface_hub.utils import logging
from huggingface_hub.utils._cache_manager import _format_size
from ._cli_utils import (
EnvFileOpt,
EnvOpt,
OutputFormat,
QuietOpt,
SecretsFileOpt,
SecretsOpt,
TokenOpt,
VolumesOpt,
_format_cell,
api_object_to_dict,
get_hf_api,
parse_env_map,
parse_volumes,
print_list_output,
typer_factory,
)
logger = logging.get_logger(__name__)
def _parse_namespace_from_job_id(job_id: str, namespace: str | None) -> tuple[str, str | None]:
"""Extract namespace from job_id if provided in 'namespace/job_id' format.
Allows users to pass job IDs copied from the Hub UI (e.g. 'username/job_id')
instead of only bare job IDs. If the namespace is also provided explicitly via
--namespace and conflicts, a CLIError is raised.
"""
if not job_id:
raise CLIError("Job ID cannot be empty.")
if job_id.count("/") > 1:
raise CLIError(f"Job ID must be in the form 'job_id' or 'namespace/job_id': '{job_id}'.")
if "/" not in job_id:
return job_id, namespace
extracted_namespace, parsed_job_id = job_id.split("/", 1)
if not extracted_namespace or not parsed_job_id:
raise CLIError(f"Job ID must be in the form 'job_id' or 'namespace/job_id': '{job_id}'.")
if namespace is not None and namespace != extracted_namespace:
raise CLIError(
f"Conflicting namespace: got --namespace='{namespace}' but job ID implies namespace='{extracted_namespace}'"
)
return parsed_job_id, extracted_namespace
SUGGESTED_FLAVORS = [item.value for item in SpaceHardware if item.value != "zero-a10g"]
STATS_UPDATE_MIN_INTERVAL = 0.1 # we set a limit here since there is one update per second per job
# Common job-related options
ImageArg = Annotated[
str,
typer.Argument(
help="The Docker image to use.",
),
]
ImageOpt = Annotated[
str | None,
typer.Option(
help="Use a custom Docker image with `uv` installed.",
),
]
FlavorOpt = Annotated[
SpaceHardware | None,
typer.Option(
help="Flavor for the hardware, as in HF Spaces. Run 'hf jobs hardware' to list available flavors. Defaults to `cpu-basic`.",
),
]
LabelsOpt = Annotated[
list[str] | None,
typer.Option(
"-l",
"--label",
help="Set labels. E.g. --label KEY=VALUE or --label LABEL",
),
]
TimeoutOpt = Annotated[
str | None,
typer.Option(
help="Max duration: int/float with s (seconds, default), m (minutes), h (hours) or d (days).",
),
]
DetachOpt = Annotated[
bool,
typer.Option(
"-d",
"--detach",
help="Run the Job in the background and print the Job ID.",
),
]
NamespaceOpt = Annotated[
str | None,
typer.Option(
help="The namespace where the job will be running. Defaults to the current user's namespace.",
),
]
WithOpt = Annotated[
list[str] | None,
typer.Option(
"--with",
help="Run with the given packages installed",
),
]
PythonOpt = Annotated[
str | None,
typer.Option(
"-p",
"--python",
help="The Python interpreter to use for the run environment",
),
]
SuspendOpt = Annotated[
bool | None,
typer.Option(
help="Suspend (pause) the scheduled Job",
),
]
ConcurrencyOpt = Annotated[
bool | None,
typer.Option(
help="Allow multiple instances of this Job to run concurrently",
),
]
ScheduleArg = Annotated[
str,
typer.Argument(
help="One of annually, yearly, monthly, weekly, daily, hourly, or a CRON schedule expression.",
),
]
ScriptArg = Annotated[
str,
typer.Argument(
help="UV script to run (local file or URL)",
),
]
ScriptArgsArg = Annotated[
list[str] | None,
typer.Argument(
help="Arguments for the script",
),
]
CommandArg = Annotated[
list[str],
typer.Argument(
help="The command to run.",
),
]
JobIdArg = Annotated[
str,
typer.Argument(
help="Job ID (or 'namespace/job_id')",
),
]
JobIdsArg = Annotated[
list[str] | None,
typer.Argument(
help="Job IDs (or 'namespace/job_id')",
),
]
ScheduledJobIdArg = Annotated[
str,
typer.Argument(
help="Scheduled Job ID (or 'namespace/scheduled_job_id')",
),
]
jobs_cli = typer_factory(help="Run and manage Jobs on the Hub.")
@jobs_cli.command(
"run",
context_settings={"ignore_unknown_options": True},
examples=[
"hf jobs run python:3.12 python -c 'print(\"Hello!\")'",
"hf jobs run -e FOO=foo python:3.12 python script.py",
"hf jobs run --secrets HF_TOKEN python:3.12 python script.py",
"hf jobs run -v hf://gpt2:/data -v hf://buckets/org/b:/mnt python:3.12 python script.py",
],
)
def jobs_run(
image: ImageArg,
command: CommandArg,
env: EnvOpt = None,
secrets: SecretsOpt = None,
label: LabelsOpt = None,
volume: VolumesOpt = None,
env_file: EnvFileOpt = None,
secrets_file: SecretsFileOpt = None,
flavor: FlavorOpt = None,
timeout: TimeoutOpt = None,
detach: DetachOpt = False,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Run a Job."""
env_map = parse_env_map(env, env_file)
secrets_map = parse_env_map(secrets, secrets_file)
api = get_hf_api(token=token)
job = api.run_job(
image=image,
command=command,
env=env_map,
secrets=secrets_map,
labels=_parse_labels_map(label),
volumes=parse_volumes(volume),
flavor=flavor,
timeout=timeout,
namespace=namespace,
)
# Always print the job ID to the user
print(f"Job started with ID: {job.id}")
print(f"View at: {job.url}")
if detach:
return
# Now let's stream the logs
for log in api.fetch_job_logs(job_id=job.id, namespace=job.owner.name, follow=True):
print(log)
@jobs_cli.command(
"logs", examples=["hf jobs logs <job_id>", "hf jobs logs -f <job_id>", "hf jobs logs --tail 20 <job_id>"]
)
def jobs_logs(
job_id: JobIdArg,
follow: Annotated[
bool,
typer.Option(
"-f",
"--follow",
help="Follow log output (stream until the job completes). Without this flag, only currently available logs are printed.",
),
] = False,
tail: Annotated[
int | None,
typer.Option(
"-n",
"--tail",
help="Number of lines to show from the end of the logs.",
),
] = None,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Fetch the logs of a Job.
By default, prints currently available logs and exits (non-blocking).
Use --follow/-f to stream logs in real-time until the job completes.
"""
job_id, namespace = _parse_namespace_from_job_id(job_id, namespace)
if follow and tail is not None:
raise CLIError(
"Cannot use --follow and --tail together. Use --follow to stream logs or --tail to show recent logs."
)
api = get_hf_api(token=token)
try:
logs = api.fetch_job_logs(job_id=job_id, namespace=namespace, follow=follow)
if tail is not None:
logs = deque(logs, maxlen=tail)
for log in logs:
print(log)
except HfHubHTTPError as e:
status = e.response.status_code if e.response is not None else None
if status == 404:
raise CLIError("Job not found. Please check the job ID.") from e
elif status == 403:
raise CLIError("Access denied. You may not have permission to view this job.") from e
else:
raise CLIError(f"Failed to fetch job logs: {e}") from e
def _matches_filters(job_properties: dict[str, str], filters: list[tuple[str, str, str]]) -> bool:
"""Check if scheduled job matches all specified filters."""
for key, op_str, pattern in filters:
value = job_properties.get(key)
if value is None:
if op_str == "!=":
continue
return False
match = fnmatch(value.lower(), pattern.lower())
if (op_str == "=" and not match) or (op_str == "!=" and match):
return False
return True
def _print_output(rows: list[list[str | int]], headers: list[str], aliases: list[str], fmt: str | None) -> None:
"""Print output according to the chosen format."""
if fmt:
# Use custom template if provided
template = fmt
for row in rows:
line = template
for i, field in enumerate(aliases):
placeholder = f"{{{{.{field}}}}}"
if placeholder in line:
line = line.replace(placeholder, str(row[i]))
print(line)
else:
# Default tabular format
print(_tabulate(rows, headers=headers))
def _clear_line(n: int) -> None:
LINE_UP = "\033[1A"
LINE_CLEAR = "\x1b[2K"
for i in range(n):
print(LINE_UP, end=LINE_CLEAR)
def _get_jobs_stats_rows(
job_id: str, metrics_stream: Iterable[dict[str, Any]], table_headers: list[str]
) -> Iterable[tuple[bool, str, list[list[str | int]]]]:
for metrics in metrics_stream:
row = [
job_id,
f"{metrics['cpu_usage_pct']}%",
round(metrics["cpu_millicores"] / 1000.0, 1),
f"{round(100 * metrics['memory_used_bytes'] / metrics['memory_total_bytes'], 2)}%",
f"{_format_size(metrics['memory_used_bytes'])}B / {_format_size(metrics['memory_total_bytes'])}B",
f"{_format_size(metrics['rx_bps'])}bps / {_format_size(metrics['tx_bps'])}bps",
]
if metrics["gpus"] and isinstance(metrics["gpus"], dict):
rows = [row] + [[""] * len(row)] * (len(metrics["gpus"]) - 1)
for row, gpu_id in zip(rows, sorted(metrics["gpus"])):
gpu = metrics["gpus"][gpu_id]
row += [
f"{gpu['utilization']}%",
f"{round(100 * gpu['memory_used_bytes'] / gpu['memory_total_bytes'], 2)}%",
f"{_format_size(gpu['memory_used_bytes'])}B / {_format_size(gpu['memory_total_bytes'])}B",
]
else:
row += ["N/A"] * (len(table_headers) - len(row))
rows = [row]
yield False, job_id, rows
yield True, job_id, []
@jobs_cli.command("stats", examples=["hf jobs stats <job_id>"])
def jobs_stats(
job_ids: JobIdsArg = None,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Fetch the resource usage statistics and metrics of Jobs"""
if job_ids is not None:
parsed_ids = []
for job_id in job_ids:
job_id, namespace = _parse_namespace_from_job_id(job_id, namespace)
parsed_ids.append(job_id)
job_ids = parsed_ids
api = get_hf_api(token=token)
if namespace is None:
namespace = api.whoami()["name"]
if job_ids is None:
job_ids = [
job.id
for job in api.list_jobs(namespace=namespace)
if (job.status.stage if job.status else "UNKNOWN") in ("RUNNING", "UPDATING")
]
if len(job_ids) == 0:
print("No running jobs found")
return
table_headers = [
"JOB ID",
"CPU %",
"NUM CPU",
"MEM %",
"MEM USAGE",
"NET I/O",
"GPU UTIL %",
"GPU MEM %",
"GPU MEM USAGE",
]
headers_aliases = [
"id",
"cpu_usage_pct",
"cpu_millicores",
"memory_used_bytes_pct",
"memory_used_bytes_and_total_bytes",
"rx_bps_and_tx_bps",
"gpu_utilization",
"gpu_memory_used_bytes_pct",
"gpu_memory_used_bytes_and_total_bytes",
]
try:
with multiprocessing.pool.ThreadPool(len(job_ids)) as pool:
rows_per_job_id: dict[str, list[list[str | int]]] = {}
for job_id in job_ids:
row: list[str | int] = [job_id]
row += ["-- / --" if ("/" in header or "USAGE" in header) else "--" for header in table_headers[1:]]
rows_per_job_id[job_id] = [row]
last_update_time = time.time()
total_rows = [row for job_id in rows_per_job_id for row in rows_per_job_id[job_id]]
_print_output(total_rows, table_headers, headers_aliases, None)
kwargs_list = [
{
"job_id": job_id,
"metrics_stream": api.fetch_job_metrics(job_id=job_id, namespace=namespace),
"table_headers": table_headers,
}
for job_id in job_ids
]
for done, job_id, rows in iflatmap_unordered(pool, _get_jobs_stats_rows, kwargs_list=kwargs_list):
if done:
rows_per_job_id.pop(job_id, None)
else:
rows_per_job_id[job_id] = rows
now = time.time()
if now - last_update_time >= STATS_UPDATE_MIN_INTERVAL:
_clear_line(2 + len(total_rows))
total_rows = [row for job_id in rows_per_job_id for row in rows_per_job_id[job_id]]
_print_output(total_rows, table_headers, headers_aliases, None)
last_update_time = now
except HfHubHTTPError as e:
status = e.response.status_code if e.response is not None else None
if status == 404:
raise CLIError("Job not found. Please check the job ID.") from e
elif status == 403:
raise CLIError("Access denied. You may not have permission to view this job.") from e
else:
raise CLIError(f"Failed to fetch job stats: {e}") from e
@jobs_cli.command("ps", examples=["hf jobs ps", "hf jobs ps -a"])
def jobs_ps(
all: Annotated[
bool,
typer.Option(
"-a",
"--all",
help="Show all Jobs (default shows just running)",
),
] = False,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
filter: Annotated[
list[str] | None,
typer.Option(
"-f",
"--filter",
help="Filter output based on conditions provided (format: key=value)",
),
] = None,
format: Annotated[
str | None,
typer.Option(help="Output format: 'table' (default), 'json', or a Go template (e.g. '{{.id}}')"),
] = None,
quiet: QuietOpt = False,
) -> None:
"""List Jobs."""
api = get_hf_api(token=token)
# Fetch jobs data
jobs = api.list_jobs(namespace=namespace)
filters: list[tuple[str, str, str]] = []
labels_filters: list[tuple[str, str, str]] = []
for f in filter or []:
if f.startswith("label!=") or f.startswith("label="):
if f.startswith("label!="):
label_part = f[len("label!=") :]
if "=" in label_part:
print(
f"Warning: Ignoring invalid label filter format 'label!={label_part}'. Use label!=key format."
)
continue
label_key, op, label_value = label_part, "!=", "*"
else:
label_part = f[len("label=") :]
if "=" in label_part:
label_key, label_value = label_part.split("=", 1)
else:
label_key, label_value = label_part, "*"
# Negate predicate in case of key!=value
if label_key.endswith("!"):
op = "!="
label_key = label_key[:-1]
else:
op = "="
labels_filters.append((label_key.lower(), op, label_value.lower()))
elif "=" in f:
key, value = f.split("=", 1)
# Negate predicate in case of key!=value
if key.endswith("!"):
op = "!="
key = key[:-1]
else:
op = "="
filters.append((key.lower(), op, value.lower()))
else:
print(f"Warning: Ignoring invalid filter format '{f}'. Use key=value format.")
# Filter jobs (operating on JobInfo objects to preserve existing filter behavior)
filtered_jobs = []
for job in jobs:
status = job.status.stage if job.status else "UNKNOWN"
if not all and status not in ("RUNNING", "UPDATING"):
continue
image_or_space = job.docker_image or "N/A"
cmd = job.command or []
command_str = " ".join(cmd) if cmd else "N/A"
props = {"id": job.id, "image": image_or_space, "status": status.lower(), "command": command_str}
if not _matches_filters(props, filters):
continue
if not _matches_filters(job.labels or {}, labels_filters):
continue
filtered_jobs.append(job)
if not filtered_jobs:
if not quiet and format != "json":
filters_msg = f" matching filters: {', '.join([f'{k}{o}{v}' for k, o, v in filters])}" if filters else ""
print(f"No jobs found{filters_msg}")
elif format == "json":
print("[]")
return
headers = ["JOB ID", "IMAGE/SPACE", "COMMAND", "CREATED", "STATUS"]
aliases = ["id", "image", "command", "created", "status"]
items = [api_object_to_dict(job) for job in filtered_jobs]
def row_fn(item: dict[str, Any]) -> list[str]:
status = item.get("status", {})
cmd = item.get("command") or []
command_str = " ".join(cmd) if cmd else "N/A"
return [
str(item.get("id", "")),
_format_cell(item.get("docker_image") or "N/A"),
_format_cell(command_str),
item["created_at"][:19].replace("T", " ") if item.get("created_at") else "N/A",
str(status.get("stage", "UNKNOWN")),
]
# Custom template format
if format and format not in ("table", "json"):
_print_output([row_fn(item) for item in items], headers, aliases, format) # type: ignore
else:
output_format = OutputFormat.json if format == "json" else OutputFormat.table
print_list_output(
items=items,
format=output_format,
quiet=quiet,
id_key="id",
headers=headers,
row_fn=row_fn,
)
@jobs_cli.command("hardware", examples=["hf jobs hardware"])
def jobs_hardware() -> None:
"""List available hardware options for Jobs"""
api = get_hf_api()
hardware_list = api.list_jobs_hardware()
table_headers = ["NAME", "PRETTY NAME", "CPU", "RAM", "ACCELERATOR", "COST/MIN", "COST/HOUR"]
headers_aliases = ["name", "prettyName", "cpu", "ram", "accelerator", "costMin", "costHour"]
rows: list[list[str | int]] = []
for hw in hardware_list:
accelerator_info = ""
if hw.accelerator:
accelerator_info = f"{hw.accelerator.quantity}x {hw.accelerator.model} ({hw.accelerator.vram})"
cost_min = f"${hw.unit_cost_usd:.4f}" if hw.unit_cost_usd else "free"
cost_hour = f"${hw.unit_cost_usd * 60:.2f}" if hw.unit_cost_usd else "free"
rows.append([hw.name, hw.pretty_name or "", hw.cpu, hw.ram, accelerator_info, cost_min, cost_hour])
if not rows:
print("No hardware options found")
return
_print_output(rows, table_headers, headers_aliases, None)
@jobs_cli.command("inspect", examples=["hf jobs inspect <job_id>"])
def jobs_inspect(
job_ids: Annotated[
list[str],
typer.Argument(
help="Job IDs to inspect (or 'namespace/job_id')",
),
],
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Display detailed information on one or more Jobs"""
parsed_ids = []
for job_id in job_ids:
job_id, namespace = _parse_namespace_from_job_id(job_id, namespace)
parsed_ids.append(job_id)
job_ids = parsed_ids
api = get_hf_api(token=token)
try:
jobs = [api.inspect_job(job_id=job_id, namespace=namespace) for job_id in job_ids]
print(json.dumps([asdict(job) for job in jobs], indent=4, default=str))
except HfHubHTTPError as e:
status = e.response.status_code if e.response is not None else None
if status == 404:
raise CLIError("Job not found. Please check the job ID.") from e
elif status == 403:
raise CLIError("Access denied. You may not have permission to view this job.") from e
else:
raise CLIError(f"Failed to inspect job: {e}") from e
@jobs_cli.command("cancel", examples=["hf jobs cancel <job_id>"])
def jobs_cancel(
job_id: JobIdArg,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Cancel a Job"""
job_id, namespace = _parse_namespace_from_job_id(job_id, namespace)
api = get_hf_api(token=token)
try:
api.cancel_job(job_id=job_id, namespace=namespace)
except HfHubHTTPError as e:
status = e.response.status_code if e.response is not None else None
if status == 404:
raise CLIError("Job not found. Please check the job ID.") from e
elif status == 403:
raise CLIError("Access denied. You may not have permission to cancel this job.") from e
else:
raise CLIError(f"Failed to cancel job: {e}") from e
uv_app = typer_factory(help="Run UV scripts (Python with inline dependencies) on HF infrastructure.")
jobs_cli.add_typer(uv_app, name="uv")
@uv_app.command(
"run",
context_settings={"ignore_unknown_options": True},
examples=[
"hf jobs uv run my_script.py",
"hf jobs uv run ml_training.py --flavor a10g-small",
"hf jobs uv run --with transformers train.py",
"hf jobs uv run -v hf://gpt2:/data -v hf://buckets/org/b:/mnt script.py",
],
)
def jobs_uv_run(
script: ScriptArg,
script_args: ScriptArgsArg = None,
image: ImageOpt = None,
flavor: FlavorOpt = None,
env: EnvOpt = None,
secrets: SecretsOpt = None,
label: LabelsOpt = None,
volume: VolumesOpt = None,
env_file: EnvFileOpt = None,
secrets_file: SecretsFileOpt = None,
timeout: TimeoutOpt = None,
detach: DetachOpt = False,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
with_: WithOpt = None,
python: PythonOpt = None,
) -> None:
"""Run a UV script (local file or URL) on HF infrastructure"""
env_map = parse_env_map(env, env_file)
secrets_map = parse_env_map(secrets, secrets_file)
api = get_hf_api(token=token)
job = api.run_uv_job(
script=script,
script_args=script_args or [],
dependencies=with_,
python=python,
image=image,
env=env_map,
secrets=secrets_map,
labels=_parse_labels_map(label),
volumes=parse_volumes(volume),
flavor=flavor, # type: ignore[arg-type,misc]
timeout=timeout,
namespace=namespace,
)
# Always print the job ID to the user
print(f"Job started with ID: {job.id}")
print(f"View at: {job.url}")
if detach:
return
# Now let's stream the logs
for log in api.fetch_job_logs(job_id=job.id, namespace=job.owner.name, follow=True):
print(log)
scheduled_app = typer_factory(help="Create and manage scheduled Jobs on the Hub.")
jobs_cli.add_typer(scheduled_app, name="scheduled")
@scheduled_app.command(
"run",
context_settings={"ignore_unknown_options": True},
examples=['hf jobs scheduled run "0 0 * * *" python:3.12 python script.py'],
)
def scheduled_run(
schedule: ScheduleArg,
image: ImageArg,
command: CommandArg,
suspend: SuspendOpt = None,
concurrency: ConcurrencyOpt = None,
env: EnvOpt = None,
secrets: SecretsOpt = None,
label: LabelsOpt = None,
volume: VolumesOpt = None,
env_file: EnvFileOpt = None,
secrets_file: SecretsFileOpt = None,
flavor: FlavorOpt = None,
timeout: TimeoutOpt = None,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Schedule a Job."""
env_map = parse_env_map(env, env_file)
secrets_map = parse_env_map(secrets, secrets_file)
api = get_hf_api(token=token)
scheduled_job = api.create_scheduled_job(
image=image,
command=command,
schedule=schedule,
suspend=suspend,
concurrency=concurrency,
env=env_map,
secrets=secrets_map,
labels=_parse_labels_map(label),
volumes=parse_volumes(volume),
flavor=flavor,
timeout=timeout,
namespace=namespace,
)
print(f"Scheduled Job created with ID: {scheduled_job.id}")
@scheduled_app.command("ps", examples=["hf jobs scheduled ps"])
def scheduled_ps(
all: Annotated[
bool,
typer.Option(
"-a",
"--all",
help="Show all scheduled Jobs (default hides suspended)",
),
] = False,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
filter: Annotated[
list[str] | None,
typer.Option(
"-f",
"--filter",
help="Filter output based on conditions provided (format: key=value)",
),
] = None,
format: Annotated[
str | None,
typer.Option(help="Output format: 'table' (default), 'json', or a Go template (e.g. '{{.id}}')"),
] = None,
quiet: QuietOpt = False,
) -> None:
"""List scheduled Jobs"""
api = get_hf_api(token=token)
scheduled_jobs = api.list_scheduled_jobs(namespace=namespace)
filters: list[tuple[str, str, str]] = []
for f in filter or []:
if "=" in f:
key, value = f.split("=", 1)
# Negate predicate in case of key!=value
if key.endswith("!"):
op = "!="
key = key[:-1]
else:
op = "="
filters.append((key.lower(), op, value.lower()))
else:
print(f"Warning: Ignoring invalid filter format '{f}'. Use key=value format.")
# Filter scheduled jobs (operating on ScheduledJobInfo objects to preserve existing filter behavior)
filtered_jobs = []
for scheduled_job in scheduled_jobs:
suspend = scheduled_job.suspend or False
if not all and suspend:
continue
image_or_space = scheduled_job.job_spec.docker_image or "N/A"
cmd = scheduled_job.job_spec.command or []
command_str = " ".join(cmd) if cmd else "N/A"
props = {"id": scheduled_job.id, "image": image_or_space, "suspend": str(suspend), "command": command_str}
if not _matches_filters(props, filters):
continue
filtered_jobs.append(scheduled_job)
if not filtered_jobs:
if not quiet and format != "json":
filters_msg = f" matching filters: {', '.join([f'{k}{o}{v}' for k, o, v in filters])}" if filters else ""
print(f"No scheduled jobs found{filters_msg}")
elif format == "json":
print("[]")
return
headers = ["ID", "SCHEDULE", "IMAGE/SPACE", "COMMAND", "LAST RUN", "NEXT RUN", "SUSPEND"]
aliases = ["id", "schedule", "image", "command", "last", "next", "suspend"]
items = [api_object_to_dict(sj) for sj in filtered_jobs]
def row_fn(item: dict[str, Any]) -> list[str]:
job_spec = item.get("job_spec", {})
status = item.get("status", {})
last_job = status.get("last_job")
cmd = job_spec.get("command") or []
last_job_at = "N/A"
if last_job and last_job.get("at"):
last_job_at = last_job["at"][:19].replace("T", " ")
next_run = "N/A"
if status.get("next_job_run_at"):
next_run = status["next_job_run_at"][:19].replace("T", " ")
command_str = " ".join(cmd) if cmd else "N/A"
return [
str(item.get("id", "")),
str(item.get("schedule") or "N/A"),
_format_cell(job_spec.get("docker_image") or "N/A"),
_format_cell(command_str),
last_job_at,
next_run,
str(item.get("suspend", False)),
]
# Custom template format (e.g. --format '{{.id}} {{.schedule}}')
if format and format not in ("table", "json"):
_print_output([row_fn(item) for item in items], headers, aliases, format) # type: ignore
else:
output_format = OutputFormat.json if format == "json" else OutputFormat.table
print_list_output(
items=items,
format=output_format,
quiet=quiet,
id_key="id",
headers=headers,
row_fn=row_fn,
)
@scheduled_app.command("inspect", examples=["hf jobs scheduled inspect <id>"])
def scheduled_inspect(
scheduled_job_ids: Annotated[
list[str],
typer.Argument(
help="Scheduled Job IDs to inspect (or 'namespace/scheduled_job_id')",
),
],
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Display detailed information on one or more scheduled Jobs"""
parsed_ids = []
for job_id in scheduled_job_ids:
job_id, namespace = _parse_namespace_from_job_id(job_id, namespace)
parsed_ids.append(job_id)
scheduled_job_ids = parsed_ids
api = get_hf_api(token=token)
scheduled_jobs = [
api.inspect_scheduled_job(scheduled_job_id=scheduled_job_id, namespace=namespace)
for scheduled_job_id in scheduled_job_ids
]
print(json.dumps([asdict(scheduled_job) for scheduled_job in scheduled_jobs], indent=4, default=str))
@scheduled_app.command("delete", examples=["hf jobs scheduled delete <id>"])
def scheduled_delete(
scheduled_job_id: ScheduledJobIdArg,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Delete a scheduled Job."""
scheduled_job_id, namespace = _parse_namespace_from_job_id(scheduled_job_id, namespace)
api = get_hf_api(token=token)
api.delete_scheduled_job(scheduled_job_id=scheduled_job_id, namespace=namespace)
@scheduled_app.command("suspend", examples=["hf jobs scheduled suspend <id>"])
def scheduled_suspend(
scheduled_job_id: ScheduledJobIdArg,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Suspend (pause) a scheduled Job."""
scheduled_job_id, namespace = _parse_namespace_from_job_id(scheduled_job_id, namespace)
api = get_hf_api(token=token)
api.suspend_scheduled_job(scheduled_job_id=scheduled_job_id, namespace=namespace)
@scheduled_app.command("resume", examples=["hf jobs scheduled resume <id>"])
def scheduled_resume(
scheduled_job_id: ScheduledJobIdArg,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
) -> None:
"""Resume (unpause) a scheduled Job."""
scheduled_job_id, namespace = _parse_namespace_from_job_id(scheduled_job_id, namespace)
api = get_hf_api(token=token)
api.resume_scheduled_job(scheduled_job_id=scheduled_job_id, namespace=namespace)
scheduled_uv_app = typer_factory(help="Schedule UV scripts on HF infrastructure.")
scheduled_app.add_typer(scheduled_uv_app, name="uv")
@scheduled_uv_app.command(
"run",
context_settings={"ignore_unknown_options": True},
examples=[
'hf jobs scheduled uv run "0 0 * * *" script.py',
'hf jobs scheduled uv run "0 0 * * *" script.py --with pandas',
],
)
def scheduled_uv_run(
schedule: ScheduleArg,
script: ScriptArg,
script_args: ScriptArgsArg = None,
suspend: SuspendOpt = None,
concurrency: ConcurrencyOpt = None,
image: ImageOpt = None,
flavor: FlavorOpt = None,
env: EnvOpt = None,
secrets: SecretsOpt = None,
label: LabelsOpt = None,
volume: VolumesOpt = None,
env_file: EnvFileOpt = None,
secrets_file: SecretsFileOpt = None,
timeout: TimeoutOpt = None,
namespace: NamespaceOpt = None,
token: TokenOpt = None,
with_: WithOpt = None,
python: PythonOpt = None,
) -> None:
"""Run a UV script (local file or URL) on HF infrastructure"""
env_map = parse_env_map(env, env_file)
secrets_map = parse_env_map(secrets, secrets_file)
api = get_hf_api(token=token)
job = api.create_scheduled_uv_job(
script=script,
script_args=script_args or [],
schedule=schedule,
suspend=suspend,
concurrency=concurrency,
dependencies=with_,
python=python,
image=image,
env=env_map,
secrets=secrets_map,
labels=_parse_labels_map(label),
volumes=parse_volumes(volume),
flavor=flavor, # type: ignore[arg-type,misc]
timeout=timeout,
namespace=namespace,
)
print(f"Scheduled Job created with ID: {job.id}")
### UTILS
def _parse_labels_map(labels: list[str] | None) -> dict[str, str] | None:
"""Parse label key-value pairs from CLI arguments.
Args:
labels: List of label strings in KEY=VALUE format. If KEY only, then VALUE is set to empty string.
Returns:
Dictionary mapping label keys to values, or None if no labels provided.
"""
if not labels:
return None
labels_map: dict[str, str] = {}
for label_var in labels:
key, value = label_var.split("=", 1) if "=" in label_var else (label_var, "")
labels_map[key] = value
return labels_map
def _tabulate(rows: list[list[str | int]], headers: list[str]) -> str:
"""
Inspired by:
- stackoverflow.com/a/8356620/593036
- stackoverflow.com/questions/9535954/printing-lists-as-tabular-data
"""
col_widths = [max(len(str(x)) for x in col) for col in zip(*rows, headers)]
terminal_width = max(shutil.get_terminal_size().columns, len(headers) * 12)
while len(headers) + sum(col_widths) > terminal_width:
col_to_minimize = col_widths.index(max(col_widths))
col_widths[col_to_minimize] //= 2
if len(headers) + sum(col_widths) <= terminal_width:
col_widths[col_to_minimize] = terminal_width - sum(col_widths) - len(headers) + col_widths[col_to_minimize]
row_format = ("{{:{}}} " * len(headers)).format(*col_widths)
lines = []
lines.append(row_format.format(*headers))
lines.append(row_format.format(*["-" * w for w in col_widths]))
for row in rows:
row_format_args = [
str(x)[: col_width - 3] + "..." if len(str(x)) > col_width else str(x)
for x, col_width in zip(row, col_widths)
]
lines.append(row_format.format(*row_format_args))
return "\n".join(lines)
T = TypeVar("T")
def _write_generator_to_queue(queue: Queue[T], func: Callable[..., Iterable[T]], kwargs: dict) -> None:
for result in func(**kwargs):
queue.put(result)
def iflatmap_unordered(
pool: multiprocessing.pool.ThreadPool,
func: Callable[..., Iterable[T]],
*,
kwargs_list: list[dict],
) -> Iterable[T]:
"""
Takes a function that returns an iterable of items, and run it in parallel using threads to return the flattened iterable of items as they arrive.
This is inspired by those three `map()` variants, and is the mix of all three:
* `imap()`: like `map()` but returns an iterable instead of a list of results
* `imap_unordered()`: like `imap()` but the output is sorted by time of arrival
* `flatmap()`: like `map()` but given a function which returns a list, `flatmap()` returns the flattened list that is the concatenation of all the output lists
"""
queue: Queue[T] = Queue()
async_results = [pool.apply_async(_write_generator_to_queue, (queue, func, kwargs)) for kwargs in kwargs_list]
try:
while True:
try:
yield queue.get(timeout=0.05)
except Empty:
if all(async_result.ready() for async_result in async_results) and queue.empty():
break
except KeyboardInterrupt:
pass
finally:
# we get the result in case there's an error to raise
try:
[async_result.get(timeout=0.05) for async_result in async_results]
except multiprocessing.TimeoutError:
pass
|