File size: 54,531 Bytes
9c6594c |
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 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 |
"""Tooling for the W&B Importer."""
import itertools
import json
import logging
import numbers
import os
import re
import shutil
from dataclasses import dataclass, field
from datetime import datetime as dt
from pathlib import Path
from typing import Any, Dict, Iterable, Iterator, List, Optional, Tuple
from unittest.mock import patch
import filelock
import polars as pl
import requests
import urllib3
import wandb_workspaces.reports.v1 as wr
import yaml
from wandb_gql import gql
from wandb_workspaces.reports.v1 import Report
import wandb
from wandb.apis.public import ArtifactCollection, Run
from wandb.apis.public.files import File
from wandb.util import coalesce, remove_keys_with_none_values
from . import validation
from .internals import internal
from .internals.protocols import PathStr, Policy
from .internals.util import Namespace, for_each
Artifact = wandb.Artifact
Api = wandb.Api
Project = wandb.apis.public.Project
ARTIFACT_ERRORS_FNAME = "artifact_errors.jsonl"
ARTIFACT_SUCCESSES_FNAME = "artifact_successes.jsonl"
RUN_ERRORS_FNAME = "run_errors.jsonl"
RUN_SUCCESSES_FNAME = "run_successes.jsonl"
ART_SEQUENCE_DUMMY_PLACEHOLDER = "__ART_SEQUENCE_DUMMY_PLACEHOLDER__"
RUN_DUMMY_PLACEHOLDER = "__RUN_DUMMY_PLACEHOLDER__"
ART_DUMMY_PLACEHOLDER_PATH = "__importer_temp__"
ART_DUMMY_PLACEHOLDER_TYPE = "__temp__"
SRC_ART_PATH = "./artifacts/src"
DST_ART_PATH = "./artifacts/dst"
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
if os.getenv("WANDB_IMPORTER_ENABLE_RICH_LOGGING"):
from rich.logging import RichHandler
logger.addHandler(RichHandler(rich_tracebacks=True, tracebacks_show_locals=True))
else:
console_handler = logging.StreamHandler()
console_handler.setLevel(logging.INFO)
formatter = logging.Formatter("%(asctime)s - %(levelname)s - %(message)s")
console_handler.setFormatter(formatter)
logger.addHandler(console_handler)
@dataclass
class ArtifactSequence:
artifacts: Iterable[wandb.Artifact]
entity: str
project: str
type_: str
name: str
def __iter__(self) -> Iterator:
return iter(self.artifacts)
def __repr__(self) -> str:
return f"ArtifactSequence({self.identifier})"
@property
def identifier(self) -> str:
return "/".join([self.entity, self.project, self.type_, self.name])
@classmethod
def from_collection(cls, collection: ArtifactCollection):
arts = collection.artifacts()
arts = sorted(arts, key=lambda a: int(a.version.lstrip("v")))
return ArtifactSequence(
arts,
collection.entity,
collection.project,
collection.type,
collection.name,
)
class WandbRun:
def __init__(
self,
run: Run,
*,
src_base_url: str,
src_api_key: str,
dst_base_url: str,
dst_api_key: str,
) -> None:
self.run = run
self.api = wandb.Api(
api_key=src_api_key,
overrides={"base_url": src_base_url},
)
self.dst_api = wandb.Api(
api_key=dst_api_key,
overrides={"base_url": dst_base_url},
)
# For caching
self._files: Optional[Iterable[Tuple[str, str]]] = None
self._artifacts: Optional[Iterable[Artifact]] = None
self._used_artifacts: Optional[Iterable[Artifact]] = None
self._parquet_history_paths: Optional[Iterable[str]] = None
def __repr__(self) -> str:
s = os.path.join(self.entity(), self.project(), self.run_id())
return f"WandbRun({s})"
def run_id(self) -> str:
return self.run.id
def entity(self) -> str:
return self.run.entity
def project(self) -> str:
return self.run.project
def config(self) -> Dict[str, Any]:
return self.run.config
def summary(self) -> Dict[str, float]:
s = self.run.summary
return s
def metrics(self) -> Iterable[Dict[str, float]]:
if self._parquet_history_paths is None:
self._parquet_history_paths = list(self._get_parquet_history_paths())
if self._parquet_history_paths:
rows = self._get_rows_from_parquet_history_paths()
else:
logger.warning(
"No parquet files detected; using scan history (this may not be reliable)"
)
rows = self.run.scan_history()
for row in rows:
row = remove_keys_with_none_values(row)
yield row
def run_group(self) -> Optional[str]:
return self.run.group
def job_type(self) -> Optional[str]:
return self.run.job_type
def display_name(self) -> str:
return self.run.display_name
def notes(self) -> Optional[str]:
# Notes includes the previous notes and serves as a catch-all for things we missed or can't add back
previous_link = f"Imported from: {self.run.url}"
previous_author = f"Author: {self.run.user.username}"
header = [previous_link, previous_author]
previous_notes = self.run.notes or ""
return "\n".join(header) + "\n---\n" + previous_notes
def tags(self) -> Optional[List[str]]:
return self.run.tags
def artifacts(self) -> Optional[Iterable[Artifact]]:
if self._artifacts is None:
_artifacts = []
for art in self.run.logged_artifacts():
a = _clone_art(art)
_artifacts.append(a)
self._artifacts = _artifacts
yield from self._artifacts
def used_artifacts(self) -> Optional[Iterable[Artifact]]:
if self._used_artifacts is None:
_used_artifacts = []
for art in self.run.used_artifacts():
a = _clone_art(art)
_used_artifacts.append(a)
self._used_artifacts = _used_artifacts
yield from self._used_artifacts
def os_version(self) -> Optional[str]: ... # pragma: no cover
def python_version(self) -> Optional[str]:
return self._metadata_file().get("python")
def cuda_version(self) -> Optional[str]: ... # pragma: no cover
def program(self) -> Optional[str]: ... # pragma: no cover
def host(self) -> Optional[str]:
return self._metadata_file().get("host")
def username(self) -> Optional[str]: ... # pragma: no cover
def executable(self) -> Optional[str]: ... # pragma: no cover
def gpus_used(self) -> Optional[str]: ... # pragma: no cover
def cpus_used(self) -> Optional[int]: # can we get the model?
... # pragma: no cover
def memory_used(self) -> Optional[int]: ... # pragma: no cover
def runtime(self) -> Optional[int]:
wandb_runtime = self.run.summary.get("_wandb", {}).get("runtime")
base_runtime = self.run.summary.get("_runtime")
if (t := coalesce(wandb_runtime, base_runtime)) is None:
return t
return int(t)
def start_time(self) -> Optional[int]:
t = dt.fromisoformat(self.run.created_at).timestamp() * 1000
return int(t)
def code_path(self) -> Optional[str]:
path = self._metadata_file().get("codePath", "")
return f"code/{path}"
def cli_version(self) -> Optional[str]:
return self._config_file().get("_wandb", {}).get("value", {}).get("cli_version")
def files(self) -> Optional[Iterable[Tuple[PathStr, Policy]]]:
if self._files is None:
files_dir = f"{internal.ROOT_DIR}/{self.run_id()}/files"
_files = []
for f in self.run.files():
f: File
# These optimizations are intended to avoid rate limiting when importing many runs in parallel
# Don't carry over empty files
if f.size == 0:
continue
# Skip deadlist to avoid overloading S3
if "wandb_manifest.json.deadlist" in f.name:
continue
result = f.download(files_dir, exist_ok=True, api=self.api)
file_and_policy = (result.name, "end")
_files.append(file_and_policy)
self._files = _files
yield from self._files
def logs(self) -> Optional[Iterable[str]]:
log_files = self._find_all_in_files_regex(r"^.*output\.log$")
for path in log_files:
with open(path) as f:
yield from f.readlines()
def _metadata_file(self) -> Dict[str, Any]:
if (fname := self._find_in_files("wandb-metadata.json")) is None:
return {}
with open(fname) as f:
return json.loads(f.read())
def _config_file(self) -> Dict[str, Any]:
if (fname := self._find_in_files("config.yaml")) is None:
return {}
with open(fname) as f:
return yaml.safe_load(f) or {}
def _get_rows_from_parquet_history_paths(self) -> Iterable[Dict[str, Any]]:
# Unfortunately, it's not feasible to validate non-parquet history
if not (paths := self._get_parquet_history_paths()):
yield {}
return
# Collect and merge parquet history
dfs = [
pl.read_parquet(p) for path in paths for p in Path(path).glob("*.parquet")
]
if "_step" in (df := _merge_dfs(dfs)):
df = df.with_columns(pl.col("_step").cast(pl.Int64))
yield from df.iter_rows(named=True)
def _get_parquet_history_paths(self) -> Iterable[str]:
if self._parquet_history_paths is None:
paths = []
# self.artifacts() returns a copy of the artifacts; use this to get raw
for art in self.run.logged_artifacts():
if art.type != "wandb-history":
continue
if (
path := _download_art(art, root=f"{SRC_ART_PATH}/{art.name}")
) is None:
continue
paths.append(path)
self._parquet_history_paths = paths
yield from self._parquet_history_paths
def _find_in_files(self, name: str) -> Optional[str]:
if files := self.files():
for path, _ in files:
if name in path:
return path
return None
def _find_all_in_files_regex(self, regex: str) -> Iterable[str]:
if files := self.files():
for path, _ in files:
if re.match(regex, path):
yield path
class WandbImporter:
"""Transfers runs, reports, and artifact sequences between W&B instances."""
def __init__(
self,
src_base_url: str,
src_api_key: str,
dst_base_url: str,
dst_api_key: str,
*,
custom_api_kwargs: Optional[Dict[str, Any]] = None,
) -> None:
self.src_base_url = src_base_url
self.src_api_key = src_api_key
self.dst_base_url = dst_base_url
self.dst_api_key = dst_api_key
if custom_api_kwargs is None:
custom_api_kwargs = {"timeout": 600}
self.src_api = wandb.Api(
api_key=src_api_key,
overrides={"base_url": src_base_url},
**custom_api_kwargs,
)
self.dst_api = wandb.Api(
api_key=dst_api_key,
overrides={"base_url": dst_base_url},
**custom_api_kwargs,
)
self.run_api_kwargs = {
"src_base_url": src_base_url,
"src_api_key": src_api_key,
"dst_base_url": dst_base_url,
"dst_api_key": dst_api_key,
}
def __repr__(self):
return f"<WandbImporter src={self.src_base_url}, dst={self.dst_base_url}>" # pragma: no cover
def _import_run(
self,
run: WandbRun,
*,
namespace: Optional[Namespace] = None,
config: Optional[internal.SendManagerConfig] = None,
) -> None:
"""Import one WandbRun.
Use `namespace` to specify alternate settings like where the run should be uploaded
"""
if namespace is None:
namespace = Namespace(run.entity(), run.project())
if config is None:
config = internal.SendManagerConfig(
metadata=True,
files=True,
media=True,
code=True,
history=True,
summary=True,
terminal_output=True,
)
settings_override = {
"api_key": self.dst_api_key,
"base_url": self.dst_base_url,
"resume": "true",
"resumed": True,
}
# Send run with base config
logger.debug(f"Importing run, {run=}")
internal.send_run(
run,
overrides=namespace.send_manager_overrides,
settings_override=settings_override,
config=config,
)
if config.history:
# Send run again with history artifacts in case config history=True, artifacts=False
# The history artifact must come with the actual history data
logger.debug(f"Collecting history artifacts, {run=}")
history_arts = []
for art in run.run.logged_artifacts():
if art.type != "wandb-history":
continue
logger.debug(f"Collecting history artifact {art.name=}")
new_art = _clone_art(art)
history_arts.append(new_art)
logger.debug(f"Importing history artifacts, {run=}")
internal.send_run(
run,
extra_arts=history_arts,
overrides=namespace.send_manager_overrides,
settings_override=settings_override,
config=config,
)
def _delete_collection_in_dst(
self,
seq: ArtifactSequence,
namespace: Optional[Namespace] = None,
):
"""Deletes the equivalent artifact collection in destination.
Intended to clear the destination when an uploaded artifact does not pass validation.
"""
entity = coalesce(namespace.entity, seq.entity)
project = coalesce(namespace.project, seq.project)
art_type = f"{entity}/{project}/{seq.type_}"
art_name = seq.name
logger.info(
f"Deleting collection {entity=}, {project=}, {art_type=}, {art_name=}"
)
try:
dst_collection = self.dst_api.artifact_collection(art_type, art_name)
except (wandb.CommError, ValueError):
logger.warning(f"Collection doesn't exist {art_type=}, {art_name=}")
return
try:
dst_collection.delete()
except (wandb.CommError, ValueError) as e:
logger.warning(
f"Collection can't be deleted, {art_type=}, {art_name=}, {e=}"
)
return
def _import_artifact_sequence(
self,
seq: ArtifactSequence,
*,
namespace: Optional[Namespace] = None,
) -> None:
"""Import one artifact sequence.
Use `namespace` to specify alternate settings like where the artifact sequence should be uploaded
"""
if not seq.artifacts:
# The artifact sequence has no versions. This usually means all artifacts versions were deleted intentionally,
# but it can also happen if the sequence represents run history and that run was deleted.
logger.warning(f"Artifact {seq=} has no artifacts, skipping.")
return
if namespace is None:
namespace = Namespace(seq.entity, seq.project)
settings_override = {
"api_key": self.dst_api_key,
"base_url": self.dst_base_url,
"resume": "true",
"resumed": True,
}
send_manager_config = internal.SendManagerConfig(log_artifacts=True)
# Delete any existing artifact sequence, otherwise versions will be out of order
# Unfortunately, you can't delete only part of the sequence because versions are "remembered" even after deletion
self._delete_collection_in_dst(seq, namespace)
# Get a placeholder run for dummy artifacts we'll upload later
art = seq.artifacts[0]
run_or_dummy: Optional[Run] = _get_run_or_dummy_from_art(art, self.src_api)
# Each `group_of_artifacts` is either:
# 1. A single "real" artifact in a list; or
# 2. A list of dummy artifacts that are uploaded together.
# This guarantees the real artifacts have the correct version numbers while allowing for parallel upload of dummies.
groups_of_artifacts = list(_make_groups_of_artifacts(seq))
for i, group in enumerate(groups_of_artifacts, 1):
art = group[0]
if art.description == ART_SEQUENCE_DUMMY_PLACEHOLDER:
run = WandbRun(run_or_dummy, **self.run_api_kwargs)
else:
try:
wandb_run = art.logged_by()
except ValueError:
# The run used to exist but has since been deleted
# wandb_run = None
pass
# Could be logged by None (rare) or ValueError
if wandb_run is None:
logger.warning(
f"Run for {art.name=} does not exist (deleted?), using {run_or_dummy=}"
)
wandb_run = run_or_dummy
new_art = _clone_art(art)
group = [new_art]
run = WandbRun(wandb_run, **self.run_api_kwargs)
logger.info(
f"Uploading partial artifact {seq=}, {i}/{len(groups_of_artifacts)}"
)
internal.send_run(
run,
extra_arts=group,
overrides=namespace.send_manager_overrides,
settings_override=settings_override,
config=send_manager_config,
)
logger.info(f"Finished uploading {seq=}")
# query it back and remove placeholders
self._remove_placeholders(seq)
def _remove_placeholders(self, seq: ArtifactSequence) -> None:
try:
retry_arts_func = internal.exp_retry(self._dst_api.artifacts)
dst_arts = list(retry_arts_func(seq.type_, seq.name))
except wandb.CommError:
logger.warning(
f"{seq=} does not exist in dst. Has it already been deleted?"
)
return
except TypeError:
logger.exception("Problem getting dst versions (try again later).")
return
for art in dst_arts:
if art.description != ART_SEQUENCE_DUMMY_PLACEHOLDER:
continue
if art.type in ("wandb-history", "job"):
continue
try:
art.delete(delete_aliases=True)
except wandb.CommError as e:
if "cannot delete system managed artifact" in str(e):
logger.warning("Cannot delete system managed artifact")
else:
raise
def _get_dst_art(
self, src_art: Run, entity: Optional[str] = None, project: Optional[str] = None
) -> Artifact:
entity = coalesce(entity, src_art.entity)
project = coalesce(project, src_art.project)
name = src_art.name
return self.dst_api._artifact(f"{entity}/{project}/{name}")
def _get_run_problems(
self, src_run: Run, dst_run: Run, force_retry: bool = False
) -> List[dict]:
problems = []
if force_retry:
problems.append("__force_retry__")
if non_matching_metadata := self._compare_run_metadata(src_run, dst_run):
problems.append("metadata:" + str(non_matching_metadata))
if non_matching_summary := self._compare_run_summary(src_run, dst_run):
problems.append("summary:" + str(non_matching_summary))
# TODO: Compare files?
return problems
def _compare_run_metadata(self, src_run: Run, dst_run: Run) -> dict:
fname = "wandb-metadata.json"
# problems = {}
src_f = src_run.file(fname)
if src_f.size == 0:
# the src was corrupted so no comparisons here will ever work
return {}
dst_f = dst_run.file(fname)
try:
contents = wandb.util.download_file_into_memory(
dst_f.url, self.dst_api.api_key
)
except urllib3.exceptions.ReadTimeoutError:
return {"Error checking": "Timeout"}
except requests.HTTPError as e:
if e.response.status_code == 404:
return {"Bad upload": f"File not found: {fname}"}
return {"http problem": f"{fname}: ({e})"}
dst_meta = wandb.wandb_sdk.lib.json_util.loads(contents)
non_matching = {}
if src_run.metadata:
for k, src_v in src_run.metadata.items():
if k not in dst_meta:
non_matching[k] = {"src": src_v, "dst": "KEY NOT FOUND"}
continue
dst_v = dst_meta[k]
if src_v != dst_v:
non_matching[k] = {"src": src_v, "dst": dst_v}
return non_matching
def _compare_run_summary(self, src_run: Run, dst_run: Run) -> dict:
non_matching = {}
for k, src_v in src_run.summary.items():
# These won't match between systems and that's ok
if isinstance(src_v, str) and src_v.startswith("wandb-client-artifact://"):
continue
if k in ("_wandb", "_runtime"):
continue
src_v = _recursive_cast_to_dict(src_v)
dst_v = dst_run.summary.get(k)
dst_v = _recursive_cast_to_dict(dst_v)
if isinstance(src_v, dict) and isinstance(dst_v, dict):
for kk, sv in src_v.items():
# These won't match between systems and that's ok
if isinstance(sv, str) and sv.startswith(
"wandb-client-artifact://"
):
continue
dv = dst_v.get(kk)
if not _almost_equal(sv, dv):
non_matching[f"{k}-{kk}"] = {"src": sv, "dst": dv}
else:
if not _almost_equal(src_v, dst_v):
non_matching[k] = {"src": src_v, "dst": dst_v}
return non_matching
def _collect_failed_artifact_sequences(self) -> Iterable[ArtifactSequence]:
if (df := _read_ndjson(ARTIFACT_ERRORS_FNAME)) is None:
logger.debug(f"{ARTIFACT_ERRORS_FNAME=} is empty, returning nothing")
return
unique_failed_sequences = df[
["src_entity", "src_project", "name", "type"]
].unique()
for row in unique_failed_sequences.iter_rows(named=True):
entity = row["src_entity"]
project = row["src_project"]
name = row["name"]
_type = row["type"]
art_name = f"{entity}/{project}/{name}"
arts = self.src_api.artifacts(_type, art_name)
arts = sorted(arts, key=lambda a: int(a.version.lstrip("v")))
arts = sorted(arts, key=lambda a: a.type)
yield ArtifactSequence(arts, entity, project, _type, name)
def _cleanup_dummy_runs(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
api: Optional[Api] = None,
remapping: Optional[Dict[Namespace, Namespace]] = None,
) -> None:
api = coalesce(api, self.dst_api)
namespaces = coalesce(namespaces, self._all_namespaces())
for ns in namespaces:
if remapping and ns in remapping:
ns = remapping[ns]
logger.debug(f"Cleaning up, {ns=}")
try:
runs = list(
api.runs(ns.path, filters={"displayName": RUN_DUMMY_PLACEHOLDER})
)
except ValueError as e:
if "Could not find project" in str(e):
logger.exception("Could not find project, does it exist?")
continue
for run in runs:
logger.debug(f"Deleting dummy {run=}")
run.delete(delete_artifacts=False)
def _import_report(
self, report: Report, *, namespace: Optional[Namespace] = None
) -> None:
"""Import one wandb.Report.
Use `namespace` to specify alternate settings like where the report should be uploaded
"""
if namespace is None:
namespace = Namespace(report.entity, report.project)
entity = coalesce(namespace.entity, report.entity)
project = coalesce(namespace.project, report.project)
name = report.name
title = report.title
description = report.description
api = self.dst_api
# We shouldn't need to upsert the project for every report
logger.debug(f"Upserting {entity=}/{project=}")
try:
api.create_project(project, entity)
except requests.exceptions.HTTPError as e:
if e.response.status_code != 409:
logger.warning(f"Issue upserting {entity=}/{project=}, {e=}")
logger.debug(f"Upserting report {entity=}, {project=}, {name=}, {title=}")
api.client.execute(
wr.report.UPSERT_VIEW,
variable_values={
"id": None, # Is there any benefit for this to be the same as default report?
"name": name,
"entityName": entity,
"projectName": project,
"description": description,
"displayName": title,
"type": "runs",
"spec": json.dumps(report.spec),
},
)
def _use_artifact_sequence(
self,
sequence: ArtifactSequence,
*,
namespace: Optional[Namespace] = None,
):
if namespace is None:
namespace = Namespace(sequence.entity, sequence.project)
settings_override = {
"api_key": self.dst_api_key,
"base_url": self.dst_base_url,
"resume": "true",
"resumed": True,
}
logger.debug(f"Using artifact sequence with {settings_override=}, {namespace=}")
send_manager_config = internal.SendManagerConfig(use_artifacts=True)
for art in sequence:
if (used_by := art.used_by()) is None:
continue
for wandb_run in used_by:
run = WandbRun(wandb_run, **self.run_api_kwargs)
internal.send_run(
run,
overrides=namespace.send_manager_overrides,
settings_override=settings_override,
config=send_manager_config,
)
def import_runs(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
remapping: Optional[Dict[Namespace, Namespace]] = None,
parallel: bool = True,
incremental: bool = True,
max_workers: Optional[int] = None,
limit: Optional[int] = None,
metadata: bool = True,
files: bool = True,
media: bool = True,
code: bool = True,
history: bool = True,
summary: bool = True,
terminal_output: bool = True,
):
logger.info("START: Import runs")
logger.info("Setting up for import")
_create_files_if_not_exists()
_clear_fname(RUN_ERRORS_FNAME)
logger.info("Collecting runs")
runs = list(self._collect_runs(namespaces=namespaces, limit=limit))
logger.info(f"Validating runs, {len(runs)=}")
self._validate_runs(
runs,
skip_previously_validated=incremental,
remapping=remapping,
)
logger.info("Collecting failed runs")
runs = list(self._collect_failed_runs())
logger.info(f"Importing runs, {len(runs)=}")
def _import_run_wrapped(run):
namespace = Namespace(run.entity(), run.project())
if remapping is not None and namespace in remapping:
namespace = remapping[namespace]
config = internal.SendManagerConfig(
metadata=metadata,
files=files,
media=media,
code=code,
history=history,
summary=summary,
terminal_output=terminal_output,
)
logger.debug(f"Importing {run=}, {namespace=}, {config=}")
self._import_run(run, namespace=namespace, config=config)
logger.debug(f"Finished importing {run=}, {namespace=}, {config=}")
for_each(_import_run_wrapped, runs, max_workers=max_workers, parallel=parallel)
logger.info("END: Importing runs")
def import_reports(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
limit: Optional[int] = None,
remapping: Optional[Dict[Namespace, Namespace]] = None,
):
logger.info("START: Importing reports")
logger.info("Collecting reports")
reports = self._collect_reports(namespaces=namespaces, limit=limit)
logger.info("Importing reports")
def _import_report_wrapped(report):
namespace = Namespace(report.entity, report.project)
if remapping is not None and namespace in remapping:
namespace = remapping[namespace]
logger.debug(f"Importing {report=}, {namespace=}")
self._import_report(report, namespace=namespace)
logger.debug(f"Finished importing {report=}, {namespace=}")
for_each(_import_report_wrapped, reports)
logger.info("END: Importing reports")
def import_artifact_sequences(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
incremental: bool = True,
max_workers: Optional[int] = None,
remapping: Optional[Dict[Namespace, Namespace]] = None,
):
"""Import all artifact sequences from `namespaces`.
Note: There is a known bug with the AWS backend where artifacts > 2048MB will fail to upload. This seems to be related to multipart uploads, but we don't have a fix yet.
"""
logger.info("START: Importing artifact sequences")
_clear_fname(ARTIFACT_ERRORS_FNAME)
logger.info("Collecting artifact sequences")
seqs = list(self._collect_artifact_sequences(namespaces=namespaces))
logger.info("Validating artifact sequences")
self._validate_artifact_sequences(
seqs,
incremental=incremental,
remapping=remapping,
)
logger.info("Collecting failed artifact sequences")
seqs = list(self._collect_failed_artifact_sequences())
logger.info(f"Importing artifact sequences, {len(seqs)=}")
def _import_artifact_sequence_wrapped(seq):
namespace = Namespace(seq.entity, seq.project)
if remapping is not None and namespace in remapping:
namespace = remapping[namespace]
logger.debug(f"Importing artifact sequence {seq=}, {namespace=}")
self._import_artifact_sequence(seq, namespace=namespace)
logger.debug(f"Finished importing artifact sequence {seq=}, {namespace=}")
for_each(_import_artifact_sequence_wrapped, seqs, max_workers=max_workers)
# it's safer to just use artifact on all seqs to make sure we don't miss anything
# For seqs that have already been used, this is a no-op.
logger.debug(f"Using artifact sequences, {len(seqs)=}")
def _use_artifact_sequence_wrapped(seq):
namespace = Namespace(seq.entity, seq.project)
if remapping is not None and namespace in remapping:
namespace = remapping[namespace]
logger.debug(f"Using artifact sequence {seq=}, {namespace=}")
self._use_artifact_sequence(seq, namespace=namespace)
logger.debug(f"Finished using artifact sequence {seq=}, {namespace=}")
for_each(_use_artifact_sequence_wrapped, seqs, max_workers=max_workers)
# Artifacts whose parent runs have been deleted should have that run deleted in the
# destination as well
logger.info("Cleaning up dummy runs")
self._cleanup_dummy_runs(
namespaces=namespaces,
remapping=remapping,
)
logger.info("END: Importing artifact sequences")
def import_all(
self,
*,
runs: bool = True,
artifacts: bool = True,
reports: bool = True,
namespaces: Optional[Iterable[Namespace]] = None,
incremental: bool = True,
remapping: Optional[Dict[Namespace, Namespace]] = None,
):
logger.info(f"START: Importing all, {runs=}, {artifacts=}, {reports=}")
if runs:
self.import_runs(
namespaces=namespaces,
incremental=incremental,
remapping=remapping,
)
if reports:
self.import_reports(
namespaces=namespaces,
remapping=remapping,
)
if artifacts:
self.import_artifact_sequences(
namespaces=namespaces,
incremental=incremental,
remapping=remapping,
)
logger.info("END: Importing all")
def _validate_run(
self,
src_run: Run,
*,
remapping: Optional[Dict[Namespace, Namespace]] = None,
) -> None:
namespace = Namespace(src_run.entity, src_run.project)
if remapping is not None and namespace in remapping:
namespace = remapping[namespace]
dst_entity = namespace.entity
dst_project = namespace.project
run_id = src_run.id
try:
dst_run = self.dst_api.run(f"{dst_entity}/{dst_project}/{run_id}")
except wandb.CommError:
problems = [f"run does not exist in dst at {dst_entity=}/{dst_project=}"]
else:
problems = self._get_run_problems(src_run, dst_run)
d = {
"src_entity": src_run.entity,
"src_project": src_run.project,
"dst_entity": dst_entity,
"dst_project": dst_project,
"run_id": run_id,
}
if problems:
d["problems"] = problems
fname = RUN_ERRORS_FNAME
else:
fname = RUN_SUCCESSES_FNAME
with filelock.FileLock("runs.lock"):
with open(fname, "a") as f:
f.write(json.dumps(d) + "\n")
def _filter_previously_checked_runs(
self,
runs: Iterable[Run],
*,
remapping: Optional[Dict[Namespace, Namespace]] = None,
) -> Iterable[Run]:
if (df := _read_ndjson(RUN_SUCCESSES_FNAME)) is None:
logger.debug(f"{RUN_SUCCESSES_FNAME=} is empty, yielding all runs")
yield from runs
return
data = []
for r in runs:
namespace = Namespace(r.entity, r.project)
if remapping is not None and namespace in remapping:
namespace = remapping[namespace]
data.append(
{
"src_entity": r.entity,
"src_project": r.project,
"dst_entity": namespace.entity,
"dst_project": namespace.project,
"run_id": r.id,
"data": r,
}
)
df2 = pl.DataFrame(data)
logger.debug(f"Starting with {len(runs)=} in namespaces")
results = df2.join(
df,
how="anti",
on=["src_entity", "src_project", "dst_entity", "dst_project", "run_id"],
)
logger.debug(f"After filtering out already successful runs, {len(results)=}")
if not results.is_empty():
results = results.filter(~results["run_id"].is_null())
results = results.unique(
["src_entity", "src_project", "dst_entity", "dst_project", "run_id"]
)
for r in results.iter_rows(named=True):
yield r["data"]
def _validate_artifact(
self,
src_art: Artifact,
dst_entity: str,
dst_project: str,
download_files_and_compare: bool = False,
check_entries_are_downloadable: bool = True,
):
problems = []
# These patterns of artifacts are special and should not be validated
ignore_patterns = [
r"^job-(.*?)\.py(:v\d+)?$",
# r"^run-.*-history(?:\:v\d+)?$$",
]
for pattern in ignore_patterns:
if re.search(pattern, src_art.name):
return (src_art, dst_entity, dst_project, problems)
try:
dst_art = self._get_dst_art(src_art, dst_entity, dst_project)
except Exception:
problems.append("destination artifact not found")
return (src_art, dst_entity, dst_project, problems)
try:
logger.debug("Comparing artifact manifests")
except Exception as e:
problems.append(
f"Problem getting problems! problem with {src_art.entity=}, {src_art.project=}, {src_art.name=} {e=}"
)
else:
problems += validation._compare_artifact_manifests(src_art, dst_art)
if check_entries_are_downloadable:
# validation._check_entries_are_downloadable(src_art)
validation._check_entries_are_downloadable(dst_art)
if download_files_and_compare:
logger.debug(f"Downloading {src_art=}")
try:
src_dir = _download_art(src_art, root=f"{SRC_ART_PATH}/{src_art.name}")
except requests.HTTPError as e:
problems.append(
f"Invalid download link for src {src_art.entity=}, {src_art.project=}, {src_art.name=}, {e}"
)
logger.debug(f"Downloading {dst_art=}")
try:
dst_dir = _download_art(dst_art, root=f"{DST_ART_PATH}/{dst_art.name}")
except requests.HTTPError as e:
problems.append(
f"Invalid download link for dst {dst_art.entity=}, {dst_art.project=}, {dst_art.name=}, {e}"
)
else:
logger.debug(f"Comparing artifact dirs {src_dir=}, {dst_dir=}")
if problem := validation._compare_artifact_dirs(src_dir, dst_dir):
problems.append(problem)
return (src_art, dst_entity, dst_project, problems)
def _validate_runs(
self,
runs: Iterable[WandbRun],
*,
skip_previously_validated: bool = True,
remapping: Optional[Dict[Namespace, Namespace]] = None,
):
base_runs = [r.run for r in runs]
if skip_previously_validated:
base_runs = list(
self._filter_previously_checked_runs(
base_runs,
remapping=remapping,
)
)
def _validate_run(run):
logger.debug(f"Validating {run=}")
self._validate_run(run, remapping=remapping)
logger.debug(f"Finished validating {run=}")
for_each(_validate_run, base_runs)
def _collect_failed_runs(self):
if (df := _read_ndjson(RUN_ERRORS_FNAME)) is None:
logger.debug(f"{RUN_ERRORS_FNAME=} is empty, returning nothing")
return
unique_failed_runs = df[
["src_entity", "src_project", "dst_entity", "dst_project", "run_id"]
].unique()
for row in unique_failed_runs.iter_rows(named=True):
src_entity = row["src_entity"]
src_project = row["src_project"]
# dst_entity = row["dst_entity"]
# dst_project = row["dst_project"]
run_id = row["run_id"]
run = self.src_api.run(f"{src_entity}/{src_project}/{run_id}")
yield WandbRun(run, **self.run_api_kwargs)
def _filter_previously_checked_artifacts(self, seqs: Iterable[ArtifactSequence]):
if (df := _read_ndjson(ARTIFACT_SUCCESSES_FNAME)) is None:
logger.info(
f"{ARTIFACT_SUCCESSES_FNAME=} is empty, yielding all artifact sequences"
)
for seq in seqs:
yield from seq.artifacts
return
for seq in seqs:
for art in seq:
try:
logged_by = _get_run_or_dummy_from_art(art, self.src_api)
except requests.HTTPError:
logger.exception(f"Failed to get run, skipping: {art=}")
continue
if art.type == "wandb-history" and isinstance(logged_by, _DummyRun):
logger.debug(f"Skipping history artifact {art=}")
# We can never upload valid history for a deleted run, so skip it
continue
entity = art.entity
project = art.project
_type = art.type
name, ver = _get_art_name_ver(art)
filtered_df = df.filter(
(df["src_entity"] == entity)
& (df["src_project"] == project)
& (df["name"] == name)
& (df["version"] == ver)
& (df["type"] == _type)
)
# not in file, so not verified yet, don't filter out
if len(filtered_df) == 0:
yield art
def _validate_artifact_sequences(
self,
seqs: Iterable[ArtifactSequence],
*,
incremental: bool = True,
download_files_and_compare: bool = False,
check_entries_are_downloadable: bool = True,
remapping: Optional[Dict[Namespace, Namespace]] = None,
):
if incremental:
logger.info("Validating in incremental mode")
def filtered_sequences():
for seq in seqs:
if not seq.artifacts:
continue
art = seq.artifacts[0]
try:
logged_by = _get_run_or_dummy_from_art(art, self.src_api)
except requests.HTTPError:
logger.exception(
f"Validate Artifact http error: {art.entity=},"
f" {art.project=}, {art.name=}"
)
continue
if art.type == "wandb-history" and isinstance(logged_by, _DummyRun):
# We can never upload valid history for a deleted run, so skip it
continue
yield seq
artifacts = self._filter_previously_checked_artifacts(filtered_sequences())
else:
logger.info("Validating in non-incremental mode")
artifacts = [art for seq in seqs for art in seq.artifacts]
def _validate_artifact_wrapped(args):
art, entity, project = args
if (
remapping is not None
and (namespace := Namespace(entity, project)) in remapping
):
remapped_ns = remapping[namespace]
entity = remapped_ns.entity
project = remapped_ns.project
logger.debug(f"Validating {art=}, {entity=}, {project=}")
result = self._validate_artifact(
art,
entity,
project,
download_files_and_compare=download_files_and_compare,
check_entries_are_downloadable=check_entries_are_downloadable,
)
logger.debug(f"Finished validating {art=}, {entity=}, {project=}")
return result
args = ((art, art.entity, art.project) for art in artifacts)
art_problems = for_each(_validate_artifact_wrapped, args)
for art, dst_entity, dst_project, problems in art_problems:
name, ver = _get_art_name_ver(art)
d = {
"src_entity": art.entity,
"src_project": art.project,
"dst_entity": dst_entity,
"dst_project": dst_project,
"name": name,
"version": ver,
"type": art.type,
}
if problems:
d["problems"] = problems
fname = ARTIFACT_ERRORS_FNAME
else:
fname = ARTIFACT_SUCCESSES_FNAME
with open(fname, "a") as f:
f.write(json.dumps(d) + "\n")
def _collect_runs(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
limit: Optional[int] = None,
skip_ids: Optional[List[str]] = None,
start_date: Optional[str] = None,
api: Optional[Api] = None,
) -> Iterable[WandbRun]:
api = coalesce(api, self.src_api)
namespaces = coalesce(namespaces, self._all_namespaces())
filters: Dict[str, Any] = {}
if skip_ids is not None:
filters["name"] = {"$nin": skip_ids}
if start_date is not None:
filters["createdAt"] = {"$gte": start_date}
def _runs():
for ns in namespaces:
logger.debug(f"Collecting runs from {ns=}")
for run in api.runs(ns.path, filters=filters):
yield WandbRun(run, **self.run_api_kwargs)
runs = itertools.islice(_runs(), limit)
yield from runs
def _all_namespaces(
self, *, entity: Optional[str] = None, api: Optional[Api] = None
):
api = coalesce(api, self.src_api)
entity = coalesce(entity, api.default_entity)
projects = api.projects(entity)
for p in projects:
yield Namespace(p.entity, p.name)
def _collect_reports(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
limit: Optional[int] = None,
api: Optional[Api] = None,
):
api = coalesce(api, self.src_api)
namespaces = coalesce(namespaces, self._all_namespaces())
wandb.login(key=self.src_api_key, host=self.src_base_url)
def reports():
for ns in namespaces:
for r in api.reports(ns.path):
yield wr.Report.from_url(r.url, api=api)
yield from itertools.islice(reports(), limit)
def _collect_artifact_sequences(
self,
*,
namespaces: Optional[Iterable[Namespace]] = None,
limit: Optional[int] = None,
api: Optional[Api] = None,
):
api = coalesce(api, self.src_api)
namespaces = coalesce(namespaces, self._all_namespaces())
def artifact_sequences():
for ns in namespaces:
logger.debug(f"Collecting artifact sequences from {ns=}")
types = []
try:
types = [t for t in api.artifact_types(ns.path)]
except Exception:
logger.exception("Failed to get artifact types.")
for t in types:
collections = []
# Skip history because it's really for run history
if t.name == "wandb-history":
continue
try:
collections = t.collections()
except Exception:
logger.exception("Failed to get artifact collections.")
for c in collections:
if c.is_sequence():
yield ArtifactSequence.from_collection(c)
seqs = itertools.islice(artifact_sequences(), limit)
unique_sequences = {seq.identifier: seq for seq in seqs}
yield from unique_sequences.values()
def _get_art_name_ver(art: Artifact) -> Tuple[str, int]:
name, ver = art.name.split(":v")
return name, int(ver)
def _make_dummy_art(name: str, _type: str, ver: int):
art = Artifact(name, ART_DUMMY_PLACEHOLDER_TYPE)
art._type = _type
art._description = ART_SEQUENCE_DUMMY_PLACEHOLDER
p = Path(ART_DUMMY_PLACEHOLDER_PATH)
p.mkdir(parents=True, exist_ok=True)
# dummy file with different name to prevent dedupe
fname = p / str(ver)
with open(fname, "w"):
pass
art.add_file(fname)
return art
def _make_groups_of_artifacts(seq: ArtifactSequence, start: int = 0):
prev_ver = start - 1
for art in seq:
name, ver = _get_art_name_ver(art)
# If there's a gap between versions, fill with dummy artifacts
if ver - prev_ver > 1:
yield [_make_dummy_art(name, art.type, v) for v in range(prev_ver + 1, ver)]
# Then yield the actual artifact
# Must always be a list of one artifact to guarantee ordering
yield [art]
prev_ver = ver
def _recursive_cast_to_dict(obj):
if isinstance(obj, list):
return [_recursive_cast_to_dict(item) for item in obj]
elif isinstance(obj, dict) or hasattr(obj, "items"):
new_dict = {}
for key, value in obj.items():
new_dict[key] = _recursive_cast_to_dict(value)
return new_dict
else:
return obj
def _almost_equal(x, y, eps=1e-6):
if isinstance(x, dict) and isinstance(y, dict):
if x.keys() != y.keys():
return False
return all(_almost_equal(x[k], y[k], eps) for k in x)
if isinstance(x, numbers.Number) and isinstance(y, numbers.Number):
return abs(x - y) < eps
if type(x) is not type(y):
return False
return x == y
@dataclass
class _DummyUser:
username: str = ""
@dataclass
class _DummyRun:
entity: str = ""
project: str = ""
run_id: str = RUN_DUMMY_PLACEHOLDER
id: str = RUN_DUMMY_PLACEHOLDER
display_name: str = RUN_DUMMY_PLACEHOLDER
notes: str = ""
url: str = ""
group: str = ""
created_at: str = "2000-01-01"
user: _DummyUser = field(default_factory=_DummyUser)
tags: list = field(default_factory=list)
summary: dict = field(default_factory=dict)
config: dict = field(default_factory=dict)
def files(self):
return []
def _read_ndjson(fname: str) -> Optional[pl.DataFrame]:
try:
df = pl.read_ndjson(fname)
except FileNotFoundError:
return None
except RuntimeError as e:
# No runs previously checked
if "empty string is not a valid JSON value" in str(e):
return None
if "error parsing ndjson" in str(e):
return None
raise
return df
def _get_run_or_dummy_from_art(art: Artifact, api=None):
run = None
try:
run = art.logged_by()
except ValueError as e:
logger.warning(
f"Can't log artifact because run doesn't exist, {art=}, {run=}, {e=}"
)
if run is not None:
return run
query = gql(
"""
query ArtifactCreatedBy(
$id: ID!
) {
artifact(id: $id) {
createdBy {
... on Run {
name
project {
name
entityName
}
}
}
}
}
"""
)
response = api.client.execute(query, variable_values={"id": art.id})
creator = response.get("artifact", {}).get("createdBy", {})
run = _DummyRun(
entity=art.entity,
project=art.project,
run_id=creator.get("name", RUN_DUMMY_PLACEHOLDER),
id=creator.get("name", RUN_DUMMY_PLACEHOLDER),
)
return run
def _clear_fname(fname: str) -> None:
old_fname = f"{internal.ROOT_DIR}/{fname}"
new_fname = f"{internal.ROOT_DIR}/prev_{fname}"
logger.debug(f"Moving {old_fname=} to {new_fname=}")
try:
shutil.copy2(old_fname, new_fname)
except FileNotFoundError:
# this is just to make a copy of the last iteration, so its ok if the src doesn't exist
pass
with open(fname, "w"):
pass
def _download_art(art: Artifact, root: str) -> Optional[str]:
try:
with patch("click.echo"):
return art.download(root=root, skip_cache=True)
except Exception:
logger.exception(f"Error downloading artifact {art=}")
def _clone_art(art: Artifact, root: Optional[str] = None):
if root is None:
# Currently, we would only ever clone a src artifact to move it to dst.
root = f"{SRC_ART_PATH}/{art.name}"
if (path := _download_art(art, root=root)) is None:
raise ValueError(f"Problem downloading {art=}")
name, _ = art.name.split(":v")
# Hack: skip naming validation check for wandb-* types
new_art = Artifact(name, ART_DUMMY_PLACEHOLDER_TYPE)
new_art._type = art.type
new_art._created_at = art.created_at
new_art._aliases = art.aliases
new_art._description = art.description
with patch("click.echo"):
new_art.add_dir(path)
return new_art
def _create_files_if_not_exists() -> None:
fnames = [
ARTIFACT_ERRORS_FNAME,
ARTIFACT_SUCCESSES_FNAME,
RUN_ERRORS_FNAME,
RUN_SUCCESSES_FNAME,
]
for fname in fnames:
logger.debug(f"Creating {fname=} if not exists")
with open(fname, "a"):
pass
def _merge_dfs(dfs: List[pl.DataFrame]) -> pl.DataFrame:
# Ensure there are DataFrames in the list
if len(dfs) == 0:
return pl.DataFrame()
if len(dfs) == 1:
return dfs[0]
merged_df = dfs[0]
for df in dfs[1:]:
merged_df = merged_df.join(df, how="outer", on=["_step"])
col_pairs = [
(c, f"{c}_right")
for c in merged_df.columns
if f"{c}_right" in merged_df.columns
]
for col, right in col_pairs:
new_col = merged_df[col].fill_null(merged_df[right])
merged_df = merged_df.with_columns(new_col).drop(right)
return merged_df
|