Spaces:
Running
Running
File size: 67,674 Bytes
add02b7 | 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 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 | import os
import shutil
import sqlite3
import time
from datetime import datetime, timezone
from pathlib import Path
from threading import Lock
try:
import fcntl
except ImportError:
fcntl = None
try:
import msvcrt as _msvcrt
except ImportError:
_msvcrt = None
import huggingface_hub as hf
import orjson
import pandas as pd
from trackio.commit_scheduler import CommitScheduler
from trackio.dummy_commit_scheduler import DummyCommitScheduler
from trackio.utils import (
MEDIA_DIR,
TRACKIO_DIR,
deserialize_values,
serialize_values,
)
DB_EXT = ".db"
class ProcessLock:
"""A file-based lock that works across processes using fcntl (Unix) or msvcrt (Windows)."""
def __init__(self, lockfile_path: Path):
self.lockfile_path = lockfile_path
self.lockfile = None
def __enter__(self):
if fcntl is None and _msvcrt is None:
return self
self.lockfile_path.parent.mkdir(parents=True, exist_ok=True)
self.lockfile = open(self.lockfile_path, "w")
max_retries = 100
for attempt in range(max_retries):
try:
if fcntl is not None:
fcntl.flock(self.lockfile.fileno(), fcntl.LOCK_EX | fcntl.LOCK_NB)
else:
_msvcrt.locking(self.lockfile.fileno(), _msvcrt.LK_NBLCK, 1)
return self
except (IOError, OSError):
if attempt < max_retries - 1:
time.sleep(0.1)
else:
raise IOError("Could not acquire database lock after 10 seconds")
def __exit__(self, exc_type, exc_val, exc_tb):
if self.lockfile:
try:
if fcntl is not None:
fcntl.flock(self.lockfile.fileno(), fcntl.LOCK_UN)
elif _msvcrt is not None:
_msvcrt.locking(self.lockfile.fileno(), _msvcrt.LK_UNLCK, 1)
except (IOError, OSError):
pass
self.lockfile.close()
class SQLiteStorage:
_dataset_import_attempted = False
_current_scheduler: CommitScheduler | DummyCommitScheduler | None = None
_scheduler_lock = Lock()
@staticmethod
def _get_connection(db_path: Path) -> sqlite3.Connection:
conn = sqlite3.connect(str(db_path), timeout=30.0)
# Keep WAL for concurrency + performance on many small writes
conn.execute("PRAGMA journal_mode = WAL")
# ---- Minimal perf tweaks for many tiny transactions ----
# NORMAL = fsync at critical points only (safer than OFF, much faster than FULL)
conn.execute("PRAGMA synchronous = NORMAL")
# Keep temp data in memory to avoid disk hits during small writes
conn.execute("PRAGMA temp_store = MEMORY")
# Give SQLite a bit more room for cache (negative = KB, engine-managed)
conn.execute("PRAGMA cache_size = -20000")
# --------------------------------------------------------
conn.row_factory = sqlite3.Row
return conn
@staticmethod
def _get_process_lock(project: str) -> ProcessLock:
lockfile_path = TRACKIO_DIR / f"{project}.lock"
return ProcessLock(lockfile_path)
@staticmethod
def get_project_db_filename(project: str) -> str:
"""Get the database filename for a specific project."""
safe_project_name = "".join(
c for c in project if c.isalnum() or c in ("-", "_")
).rstrip()
if not safe_project_name:
safe_project_name = "default"
return f"{safe_project_name}{DB_EXT}"
@staticmethod
def get_project_db_path(project: str) -> Path:
"""Get the database path for a specific project."""
filename = SQLiteStorage.get_project_db_filename(project)
return TRACKIO_DIR / filename
@staticmethod
def init_db(project: str) -> Path:
"""
Initialize the SQLite database with required tables.
Returns the database path.
"""
db_path = SQLiteStorage.get_project_db_path(project)
db_path.parent.mkdir(parents=True, exist_ok=True)
with SQLiteStorage._get_process_lock(project):
with sqlite3.connect(str(db_path), timeout=30.0) as conn:
conn.execute("PRAGMA journal_mode = WAL")
conn.execute("PRAGMA synchronous = NORMAL")
conn.execute("PRAGMA temp_store = MEMORY")
conn.execute("PRAGMA cache_size = -20000")
cursor = conn.cursor()
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS metrics (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
run_name TEXT NOT NULL,
step INTEGER NOT NULL,
metrics TEXT NOT NULL
)
"""
)
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS configs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
run_name TEXT NOT NULL,
config TEXT NOT NULL,
created_at TEXT NOT NULL,
UNIQUE(run_name)
)
"""
)
cursor.execute(
"""
CREATE INDEX IF NOT EXISTS idx_metrics_run_step
ON metrics(run_name, step)
"""
)
cursor.execute(
"""
CREATE INDEX IF NOT EXISTS idx_configs_run_name
ON configs(run_name)
"""
)
cursor.execute(
"""
CREATE INDEX IF NOT EXISTS idx_metrics_run_timestamp
ON metrics(run_name, timestamp)
"""
)
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS system_metrics (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
run_name TEXT NOT NULL,
metrics TEXT NOT NULL
)
"""
)
cursor.execute(
"""
CREATE INDEX IF NOT EXISTS idx_system_metrics_run_timestamp
ON system_metrics(run_name, timestamp)
"""
)
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS project_metadata (
key TEXT PRIMARY KEY,
value TEXT NOT NULL
)
"""
)
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS pending_uploads (
id INTEGER PRIMARY KEY AUTOINCREMENT,
space_id TEXT NOT NULL,
run_name TEXT,
step INTEGER,
file_path TEXT NOT NULL,
relative_path TEXT,
created_at TEXT NOT NULL
)
"""
)
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS alerts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
run_name TEXT NOT NULL,
title TEXT NOT NULL,
text TEXT,
level TEXT NOT NULL DEFAULT 'warn',
step INTEGER,
alert_id TEXT
)
"""
)
cursor.execute(
"""
CREATE INDEX IF NOT EXISTS idx_alerts_run
ON alerts(run_name)
"""
)
cursor.execute(
"""
CREATE INDEX IF NOT EXISTS idx_alerts_timestamp
ON alerts(timestamp)
"""
)
cursor.execute(
"""
CREATE UNIQUE INDEX IF NOT EXISTS idx_alerts_alert_id
ON alerts(alert_id) WHERE alert_id IS NOT NULL
"""
)
for table in ("metrics", "system_metrics"):
for col in ("log_id TEXT", "space_id TEXT"):
try:
cursor.execute(f"ALTER TABLE {table} ADD COLUMN {col}")
except sqlite3.OperationalError:
pass
cursor.execute(
f"""CREATE UNIQUE INDEX IF NOT EXISTS idx_{table}_log_id
ON {table}(log_id) WHERE log_id IS NOT NULL"""
)
cursor.execute(
f"""CREATE INDEX IF NOT EXISTS idx_{table}_pending
ON {table}(space_id) WHERE space_id IS NOT NULL"""
)
conn.commit()
return db_path
@staticmethod
def export_to_parquet():
"""
Exports all projects' DB files as Parquet under the same path but with extension ".parquet".
Also exports system_metrics to separate parquet files with "_system.parquet" suffix.
Also exports configs to separate parquet files with "_configs.parquet" suffix.
"""
if not SQLiteStorage._dataset_import_attempted:
return
if not TRACKIO_DIR.exists():
return
all_paths = os.listdir(TRACKIO_DIR)
db_names = [f for f in all_paths if f.endswith(DB_EXT)]
for db_name in db_names:
db_path = TRACKIO_DIR / db_name
parquet_path = db_path.with_suffix(".parquet")
system_parquet_path = db_path.with_suffix("") / ""
system_parquet_path = TRACKIO_DIR / (db_path.stem + "_system.parquet")
configs_parquet_path = TRACKIO_DIR / (db_path.stem + "_configs.parquet")
if (not parquet_path.exists()) or (
db_path.stat().st_mtime > parquet_path.stat().st_mtime
):
with sqlite3.connect(str(db_path)) as conn:
df = pd.read_sql("SELECT * FROM metrics", conn)
if not df.empty:
metrics = df["metrics"].copy()
metrics = pd.DataFrame(
metrics.apply(
lambda x: deserialize_values(orjson.loads(x))
).values.tolist(),
index=df.index,
)
del df["metrics"]
for col in metrics.columns:
df[col] = metrics[col]
df.to_parquet(
parquet_path,
write_page_index=True,
use_content_defined_chunking=True,
)
if (not system_parquet_path.exists()) or (
db_path.stat().st_mtime > system_parquet_path.stat().st_mtime
):
with sqlite3.connect(str(db_path)) as conn:
try:
sys_df = pd.read_sql("SELECT * FROM system_metrics", conn)
except Exception:
sys_df = pd.DataFrame()
if not sys_df.empty:
sys_metrics = sys_df["metrics"].copy()
sys_metrics = pd.DataFrame(
sys_metrics.apply(
lambda x: deserialize_values(orjson.loads(x))
).values.tolist(),
index=sys_df.index,
)
del sys_df["metrics"]
for col in sys_metrics.columns:
sys_df[col] = sys_metrics[col]
sys_df.to_parquet(
system_parquet_path,
write_page_index=True,
use_content_defined_chunking=True,
)
if (not configs_parquet_path.exists()) or (
db_path.stat().st_mtime > configs_parquet_path.stat().st_mtime
):
with sqlite3.connect(str(db_path)) as conn:
try:
configs_df = pd.read_sql("SELECT * FROM configs", conn)
except Exception:
configs_df = pd.DataFrame()
if not configs_df.empty:
config_data = configs_df["config"].copy()
config_data = pd.DataFrame(
config_data.apply(
lambda x: deserialize_values(orjson.loads(x))
).values.tolist(),
index=configs_df.index,
)
del configs_df["config"]
for col in config_data.columns:
configs_df[col] = config_data[col]
configs_df.to_parquet(
configs_parquet_path,
write_page_index=True,
use_content_defined_chunking=True,
)
@staticmethod
def _cleanup_wal_sidecars(db_path: Path) -> None:
"""Remove leftover -wal/-shm files for a DB basename (prevents disk I/O errors)."""
for suffix in ("-wal", "-shm"):
sidecar = Path(str(db_path) + suffix)
try:
if sidecar.exists():
sidecar.unlink()
except Exception:
pass
@staticmethod
def import_from_parquet():
"""
Imports to all DB files that have matching files under the same path but with extension ".parquet".
Also imports system_metrics from "_system.parquet" files.
Also imports configs from "_configs.parquet" files.
"""
if not TRACKIO_DIR.exists():
return
all_paths = os.listdir(TRACKIO_DIR)
parquet_names = [
f
for f in all_paths
if f.endswith(".parquet")
and not f.endswith("_system.parquet")
and not f.endswith("_configs.parquet")
]
for pq_name in parquet_names:
parquet_path = TRACKIO_DIR / pq_name
db_path = parquet_path.with_suffix(DB_EXT)
SQLiteStorage._cleanup_wal_sidecars(db_path)
df = pd.read_parquet(parquet_path)
if "metrics" not in df.columns:
metrics = df.copy()
structural_cols = [
"id",
"timestamp",
"run_name",
"step",
"log_id",
"space_id",
]
df = df[[c for c in structural_cols if c in df.columns]]
for col in structural_cols:
if col in metrics.columns:
del metrics[col]
metrics = orjson.loads(metrics.to_json(orient="records"))
df["metrics"] = [orjson.dumps(serialize_values(row)) for row in metrics]
with sqlite3.connect(str(db_path), timeout=30.0) as conn:
df.to_sql("metrics", conn, if_exists="replace", index=False)
conn.commit()
system_parquet_names = [f for f in all_paths if f.endswith("_system.parquet")]
for pq_name in system_parquet_names:
parquet_path = TRACKIO_DIR / pq_name
db_name = pq_name.replace("_system.parquet", DB_EXT)
db_path = TRACKIO_DIR / db_name
df = pd.read_parquet(parquet_path)
if "metrics" not in df.columns:
metrics = df.copy()
other_cols = ["id", "timestamp", "run_name"]
df = df[[c for c in other_cols if c in df.columns]]
for col in other_cols:
if col in metrics.columns:
del metrics[col]
metrics = orjson.loads(metrics.to_json(orient="records"))
df["metrics"] = [orjson.dumps(serialize_values(row)) for row in metrics]
with sqlite3.connect(str(db_path), timeout=30.0) as conn:
df.to_sql("system_metrics", conn, if_exists="replace", index=False)
conn.commit()
configs_parquet_names = [f for f in all_paths if f.endswith("_configs.parquet")]
for pq_name in configs_parquet_names:
parquet_path = TRACKIO_DIR / pq_name
db_name = pq_name.replace("_configs.parquet", DB_EXT)
db_path = TRACKIO_DIR / db_name
df = pd.read_parquet(parquet_path)
if "config" not in df.columns:
config_data = df.copy()
other_cols = ["id", "run_name", "created_at"]
df = df[[c for c in other_cols if c in df.columns]]
for col in other_cols:
if col in config_data.columns:
del config_data[col]
config_data = orjson.loads(config_data.to_json(orient="records"))
df["config"] = [
orjson.dumps(serialize_values(row)) for row in config_data
]
with sqlite3.connect(str(db_path), timeout=30.0) as conn:
df.to_sql("configs", conn, if_exists="replace", index=False)
conn.commit()
@staticmethod
def get_scheduler():
"""
Get the scheduler for the database based on the environment variables.
This applies to both local and Spaces.
"""
with SQLiteStorage._scheduler_lock:
if SQLiteStorage._current_scheduler is not None:
return SQLiteStorage._current_scheduler
hf_token = os.environ.get("HF_TOKEN")
dataset_id = os.environ.get("TRACKIO_DATASET_ID")
space_repo_name = os.environ.get("SPACE_REPO_NAME")
if dataset_id is None or space_repo_name is None:
scheduler = DummyCommitScheduler()
else:
scheduler = CommitScheduler(
repo_id=dataset_id,
repo_type="dataset",
folder_path=TRACKIO_DIR,
private=True,
allow_patterns=[
"*.parquet",
"*_system.parquet",
"*_configs.parquet",
"media/**/*",
],
squash_history=True,
token=hf_token,
on_before_commit=SQLiteStorage.export_to_parquet,
)
SQLiteStorage._current_scheduler = scheduler
return scheduler
@staticmethod
def log(project: str, run: str, metrics: dict, step: int | None = None):
"""
Safely log metrics to the database. Before logging, this method will ensure the database exists
and is set up with the correct tables. It also uses a cross-process lock to prevent
database locking errors when multiple processes access the same database.
This method is not used in the latest versions of Trackio (replaced by bulk_log) but
is kept for backwards compatibility for users who are connecting to a newer version of
a Trackio Spaces dashboard with an older version of Trackio installed locally.
"""
db_path = SQLiteStorage.init_db(project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
cursor.execute(
"""
SELECT MAX(step)
FROM metrics
WHERE run_name = ?
""",
(run,),
)
last_step = cursor.fetchone()[0]
current_step = (
0
if step is None and last_step is None
else (step if step is not None else last_step + 1)
)
current_timestamp = datetime.now(timezone.utc).isoformat()
cursor.execute(
"""
INSERT INTO metrics
(timestamp, run_name, step, metrics)
VALUES (?, ?, ?, ?)
""",
(
current_timestamp,
run,
current_step,
orjson.dumps(serialize_values(metrics)),
),
)
conn.commit()
@staticmethod
def bulk_log(
project: str,
run: str,
metrics_list: list[dict],
steps: list[int] | None = None,
timestamps: list[str] | None = None,
config: dict | None = None,
log_ids: list[str] | None = None,
space_id: str | None = None,
):
"""
Safely log bulk metrics to the database. Before logging, this method will ensure the database exists
and is set up with the correct tables. It also uses a cross-process lock to prevent
database locking errors when multiple processes access the same database.
"""
if not metrics_list:
return
if timestamps is None:
timestamps = [datetime.now(timezone.utc).isoformat()] * len(metrics_list)
db_path = SQLiteStorage.init_db(project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
if steps is None:
steps = list(range(len(metrics_list)))
elif any(s is None for s in steps):
cursor.execute(
"SELECT MAX(step) FROM metrics WHERE run_name = ?", (run,)
)
last_step = cursor.fetchone()[0]
current_step = 0 if last_step is None else last_step + 1
processed_steps = []
for step in steps:
if step is None:
processed_steps.append(current_step)
current_step += 1
else:
processed_steps.append(step)
steps = processed_steps
if len(metrics_list) != len(steps) or len(metrics_list) != len(
timestamps
):
raise ValueError(
"metrics_list, steps, and timestamps must have the same length"
)
data = []
for i, metrics in enumerate(metrics_list):
lid = log_ids[i] if log_ids else None
data.append(
(
timestamps[i],
run,
steps[i],
orjson.dumps(serialize_values(metrics)),
lid,
space_id,
)
)
cursor.executemany(
"""
INSERT OR IGNORE INTO metrics
(timestamp, run_name, step, metrics, log_id, space_id)
VALUES (?, ?, ?, ?, ?, ?)
""",
data,
)
if config:
current_timestamp = datetime.now(timezone.utc).isoformat()
cursor.execute(
"""
INSERT OR REPLACE INTO configs
(run_name, config, created_at)
VALUES (?, ?, ?)
""",
(
run,
orjson.dumps(serialize_values(config)),
current_timestamp,
),
)
conn.commit()
@staticmethod
def bulk_log_system(
project: str,
run: str,
metrics_list: list[dict],
timestamps: list[str] | None = None,
log_ids: list[str] | None = None,
space_id: str | None = None,
):
"""
Log system metrics (GPU, etc.) to the database without step numbers.
These metrics use timestamps for the x-axis instead of steps.
"""
if not metrics_list:
return
if timestamps is None:
timestamps = [datetime.now(timezone.utc).isoformat()] * len(metrics_list)
if len(metrics_list) != len(timestamps):
raise ValueError("metrics_list and timestamps must have the same length")
db_path = SQLiteStorage.init_db(project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
data = []
for i, metrics in enumerate(metrics_list):
lid = log_ids[i] if log_ids else None
data.append(
(
timestamps[i],
run,
orjson.dumps(serialize_values(metrics)),
lid,
space_id,
)
)
cursor.executemany(
"""
INSERT OR IGNORE INTO system_metrics
(timestamp, run_name, metrics, log_id, space_id)
VALUES (?, ?, ?, ?, ?)
""",
data,
)
conn.commit()
@staticmethod
def bulk_alert(
project: str,
run: str,
titles: list[str],
texts: list[str | None],
levels: list[str],
steps: list[int | None],
timestamps: list[str] | None = None,
alert_ids: list[str] | None = None,
):
if not titles:
return
if timestamps is None:
timestamps = [datetime.now(timezone.utc).isoformat()] * len(titles)
db_path = SQLiteStorage.init_db(project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
data = []
for i in range(len(titles)):
aid = alert_ids[i] if alert_ids else None
data.append(
(
timestamps[i],
run,
titles[i],
texts[i],
levels[i],
steps[i],
aid,
)
)
cursor.executemany(
"""
INSERT OR IGNORE INTO alerts
(timestamp, run_name, title, text, level, step, alert_id)
VALUES (?, ?, ?, ?, ?, ?, ?)
""",
data,
)
conn.commit()
@staticmethod
def get_alerts(
project: str,
run_name: str | None = None,
level: str | None = None,
since: str | None = None,
) -> list[dict]:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
query = (
"SELECT timestamp, run_name, title, text, level, step FROM alerts"
)
conditions = []
params = []
if run_name is not None:
conditions.append("run_name = ?")
params.append(run_name)
if level is not None:
conditions.append("level = ?")
params.append(level)
if since is not None:
conditions.append("timestamp > ?")
params.append(since)
if conditions:
query += " WHERE " + " AND ".join(conditions)
query += " ORDER BY timestamp DESC"
cursor.execute(query, params)
rows = cursor.fetchall()
return [
{
"timestamp": row["timestamp"],
"run": row["run_name"],
"title": row["title"],
"text": row["text"],
"level": row["level"],
"step": row["step"],
}
for row in rows
]
except sqlite3.OperationalError as e:
if "no such table: alerts" in str(e):
return []
raise
@staticmethod
def get_alert_count(project: str) -> int:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return 0
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute("SELECT COUNT(*) FROM alerts")
return cursor.fetchone()[0]
except sqlite3.OperationalError:
return 0
@staticmethod
def get_system_logs(project: str, run: str) -> list[dict]:
"""Retrieve system metrics for a specific run. Returns metrics with timestamps (no steps)."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
"""
SELECT timestamp, metrics
FROM system_metrics
WHERE run_name = ?
ORDER BY timestamp
""",
(run,),
)
rows = cursor.fetchall()
results = []
for row in rows:
metrics = orjson.loads(row["metrics"])
metrics = deserialize_values(metrics)
metrics["timestamp"] = row["timestamp"]
results.append(metrics)
return results
except sqlite3.OperationalError as e:
if "no such table: system_metrics" in str(e):
return []
raise
@staticmethod
def get_all_system_metrics_for_run(project: str, run: str) -> list[str]:
"""Get all system metric names for a specific project/run."""
return SQLiteStorage._get_metric_names(
project, run, "system_metrics", exclude_keys={"timestamp"}
)
@staticmethod
def has_system_metrics(project: str) -> bool:
"""Check if a project has any system metrics logged."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return False
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute("SELECT COUNT(*) FROM system_metrics LIMIT 1")
count = cursor.fetchone()[0]
return count > 0
except sqlite3.OperationalError:
return False
@staticmethod
def get_logs(project: str, run: str) -> list[dict]:
"""Retrieve logs for a specific run. Logs include the step count (int) and the timestamp (datetime object)."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
cursor.execute(
"""
SELECT timestamp, step, metrics
FROM metrics
WHERE run_name = ?
ORDER BY timestamp
""",
(run,),
)
rows = cursor.fetchall()
results = []
for row in rows:
metrics = orjson.loads(row["metrics"])
metrics = deserialize_values(metrics)
metrics["timestamp"] = row["timestamp"]
metrics["step"] = row["step"]
results.append(metrics)
return results
@staticmethod
def load_from_dataset():
dataset_id = os.environ.get("TRACKIO_DATASET_ID")
space_repo_name = os.environ.get("SPACE_REPO_NAME")
if dataset_id is not None and space_repo_name is not None:
hfapi = hf.HfApi()
updated = False
if not TRACKIO_DIR.exists():
TRACKIO_DIR.mkdir(parents=True, exist_ok=True)
with SQLiteStorage.get_scheduler().lock:
try:
files = hfapi.list_repo_files(dataset_id, repo_type="dataset")
for file in files:
# Download parquet and media assets
if not (file.endswith(".parquet") or file.startswith("media/")):
continue
if (TRACKIO_DIR / file).exists():
continue
hf.hf_hub_download(
dataset_id, file, repo_type="dataset", local_dir=TRACKIO_DIR
)
updated = True
except hf.errors.EntryNotFoundError:
pass
except hf.errors.RepositoryNotFoundError:
pass
if updated:
SQLiteStorage.import_from_parquet()
SQLiteStorage._dataset_import_attempted = True
@staticmethod
def get_projects() -> list[str]:
"""
Get list of all projects by scanning the database files in the trackio directory.
"""
if not SQLiteStorage._dataset_import_attempted:
SQLiteStorage.load_from_dataset()
projects: set[str] = set()
if not TRACKIO_DIR.exists():
return []
for db_file in TRACKIO_DIR.glob(f"*{DB_EXT}"):
project_name = db_file.stem
projects.add(project_name)
return sorted(projects)
@staticmethod
def get_runs(project: str) -> list[str]:
"""Get list of all runs for a project, ordered by creation time."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
cursor.execute(
"""
SELECT run_name
FROM metrics
GROUP BY run_name
ORDER BY MIN(timestamp) ASC
""",
)
return [row[0] for row in cursor.fetchall()]
@staticmethod
def get_max_steps_for_runs(project: str) -> dict[str, int]:
"""Get the maximum step for each run in a project."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return {}
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
cursor.execute(
"""
SELECT run_name, MAX(step) as max_step
FROM metrics
GROUP BY run_name
"""
)
results = {}
for row in cursor.fetchall():
results[row["run_name"]] = row["max_step"]
return results
@staticmethod
def get_max_step_for_run(project: str, run: str) -> int | None:
"""Get the maximum step for a specific run, or None if no logs exist."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return None
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
cursor.execute("SELECT MAX(step) FROM metrics WHERE run_name = ?", (run,))
result = cursor.fetchone()[0]
return result
@staticmethod
def get_run_config(project: str, run: str) -> dict | None:
"""Get configuration for a specific run."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return None
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
"""
SELECT config FROM configs WHERE run_name = ?
""",
(run,),
)
row = cursor.fetchone()
if row:
config = orjson.loads(row["config"])
return deserialize_values(config)
return None
except sqlite3.OperationalError as e:
if "no such table: configs" in str(e):
return None
raise
@staticmethod
def delete_run(project: str, run: str) -> bool:
"""Delete a run from the database (metrics, config, and system_metrics)."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return False
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute("DELETE FROM metrics WHERE run_name = ?", (run,))
cursor.execute("DELETE FROM configs WHERE run_name = ?", (run,))
try:
cursor.execute(
"DELETE FROM system_metrics WHERE run_name = ?", (run,)
)
except sqlite3.OperationalError:
pass
try:
cursor.execute("DELETE FROM alerts WHERE run_name = ?", (run,))
except sqlite3.OperationalError:
pass
conn.commit()
return True
except sqlite3.Error:
return False
@staticmethod
def _update_media_paths(obj, old_prefix, new_prefix):
"""Update media file paths in nested data structures."""
if isinstance(obj, dict):
if obj.get("_type") in [
"trackio.image",
"trackio.video",
"trackio.audio",
]:
old_path = obj.get("file_path", "")
if isinstance(old_path, str):
normalized_path = old_path.replace("\\", "/")
if normalized_path.startswith(old_prefix):
new_path = normalized_path.replace(old_prefix, new_prefix, 1)
return {**obj, "file_path": new_path}
return {
key: SQLiteStorage._update_media_paths(value, old_prefix, new_prefix)
for key, value in obj.items()
}
elif isinstance(obj, list):
return [
SQLiteStorage._update_media_paths(item, old_prefix, new_prefix)
for item in obj
]
return obj
@staticmethod
def _rewrite_metrics_rows(metrics_rows, new_run_name, old_prefix, new_prefix):
"""Deserialize metrics rows, update media paths, and reserialize."""
result = []
for row in metrics_rows:
metrics_data = orjson.loads(row["metrics"])
metrics_deserialized = deserialize_values(metrics_data)
updated = SQLiteStorage._update_media_paths(
metrics_deserialized, old_prefix, new_prefix
)
result.append(
(
row["timestamp"],
new_run_name,
row["step"],
orjson.dumps(serialize_values(updated)),
)
)
return result
@staticmethod
def _move_media_dir(source: Path, target: Path):
"""Move a media directory from source to target."""
if source.exists():
target.parent.mkdir(parents=True, exist_ok=True)
if target.exists():
shutil.rmtree(target)
shutil.move(str(source), str(target))
@staticmethod
def rename_run(project: str, old_name: str, new_name: str) -> None:
"""Rename a run within the same project.
Raises:
ValueError: If the new name is empty, the old run doesn't exist,
or a run with the new name already exists.
RuntimeError: If the database operation fails.
"""
if not new_name or not new_name.strip():
raise ValueError("New run name cannot be empty")
new_name = new_name.strip()
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
raise ValueError(f"Project '{project}' does not exist")
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT COUNT(*) FROM metrics WHERE run_name = ?", (old_name,)
)
if cursor.fetchone()[0] == 0:
raise ValueError(
f"Run '{old_name}' does not exist in project '{project}'"
)
cursor.execute(
"SELECT COUNT(*) FROM metrics WHERE run_name = ?", (new_name,)
)
if cursor.fetchone()[0] > 0:
raise ValueError(
f"A run named '{new_name}' already exists in project '{project}'"
)
try:
cursor.execute(
"SELECT timestamp, step, metrics FROM metrics WHERE run_name = ?",
(old_name,),
)
metrics_rows = cursor.fetchall()
old_prefix = f"{project}/{old_name}/"
new_prefix = f"{project}/{new_name}/"
updated_rows = SQLiteStorage._rewrite_metrics_rows(
metrics_rows, new_name, old_prefix, new_prefix
)
cursor.execute(
"DELETE FROM metrics WHERE run_name = ?", (old_name,)
)
cursor.executemany(
"INSERT INTO metrics (timestamp, run_name, step, metrics) VALUES (?, ?, ?, ?)",
updated_rows,
)
cursor.execute(
"UPDATE configs SET run_name = ? WHERE run_name = ?",
(new_name, old_name),
)
try:
cursor.execute(
"UPDATE system_metrics SET run_name = ? WHERE run_name = ?",
(new_name, old_name),
)
except sqlite3.OperationalError:
pass
try:
cursor.execute(
"UPDATE alerts SET run_name = ? WHERE run_name = ?",
(new_name, old_name),
)
except sqlite3.OperationalError:
pass
conn.commit()
SQLiteStorage._move_media_dir(
MEDIA_DIR / project / old_name,
MEDIA_DIR / project / new_name,
)
except sqlite3.Error as e:
raise RuntimeError(
f"Database error while renaming run '{old_name}' to '{new_name}': {e}"
) from e
@staticmethod
def move_run(project: str, run: str, new_project: str) -> bool:
"""Move a run from one project to another."""
source_db_path = SQLiteStorage.get_project_db_path(project)
if not source_db_path.exists():
return False
target_db_path = SQLiteStorage.init_db(new_project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_process_lock(new_project):
with SQLiteStorage._get_connection(source_db_path) as source_conn:
source_cursor = source_conn.cursor()
source_cursor.execute(
"SELECT timestamp, step, metrics FROM metrics WHERE run_name = ?",
(run,),
)
metrics_rows = source_cursor.fetchall()
source_cursor.execute(
"SELECT config, created_at FROM configs WHERE run_name = ?",
(run,),
)
config_row = source_cursor.fetchone()
try:
source_cursor.execute(
"SELECT timestamp, metrics FROM system_metrics WHERE run_name = ?",
(run,),
)
system_metrics_rows = source_cursor.fetchall()
except sqlite3.OperationalError:
system_metrics_rows = []
try:
source_cursor.execute(
"SELECT timestamp, title, text, level, step, alert_id FROM alerts WHERE run_name = ?",
(run,),
)
alert_rows = source_cursor.fetchall()
except sqlite3.OperationalError:
alert_rows = []
if not metrics_rows and not config_row and not system_metrics_rows:
return False
with SQLiteStorage._get_connection(target_db_path) as target_conn:
target_cursor = target_conn.cursor()
old_prefix = f"{project}/{run}/"
new_prefix = f"{new_project}/{run}/"
updated_rows = SQLiteStorage._rewrite_metrics_rows(
metrics_rows, run, old_prefix, new_prefix
)
target_cursor.executemany(
"INSERT INTO metrics (timestamp, run_name, step, metrics) VALUES (?, ?, ?, ?)",
updated_rows,
)
if config_row:
target_cursor.execute(
"""
INSERT OR REPLACE INTO configs (run_name, config, created_at)
VALUES (?, ?, ?)
""",
(run, config_row["config"], config_row["created_at"]),
)
for row in system_metrics_rows:
try:
target_cursor.execute(
"""
INSERT INTO system_metrics (timestamp, run_name, metrics)
VALUES (?, ?, ?)
""",
(row["timestamp"], run, row["metrics"]),
)
except sqlite3.OperationalError:
pass
for row in alert_rows:
try:
target_cursor.execute(
"""
INSERT OR IGNORE INTO alerts (timestamp, run_name, title, text, level, step, alert_id)
VALUES (?, ?, ?, ?, ?, ?, ?)
""",
(
row["timestamp"],
run,
row["title"],
row["text"],
row["level"],
row["step"],
row["alert_id"],
),
)
except sqlite3.OperationalError:
pass
target_conn.commit()
SQLiteStorage._move_media_dir(
MEDIA_DIR / project / run,
MEDIA_DIR / new_project / run,
)
source_cursor.execute(
"DELETE FROM metrics WHERE run_name = ?", (run,)
)
source_cursor.execute(
"DELETE FROM configs WHERE run_name = ?", (run,)
)
try:
source_cursor.execute(
"DELETE FROM system_metrics WHERE run_name = ?", (run,)
)
except sqlite3.OperationalError:
pass
try:
source_cursor.execute(
"DELETE FROM alerts WHERE run_name = ?", (run,)
)
except sqlite3.OperationalError:
pass
source_conn.commit()
return True
@staticmethod
def get_all_run_configs(project: str) -> dict[str, dict]:
"""Get configurations for all runs in a project."""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return {}
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
"""
SELECT run_name, config FROM configs
"""
)
results = {}
for row in cursor.fetchall():
config = orjson.loads(row["config"])
results[row["run_name"]] = deserialize_values(config)
return results
except sqlite3.OperationalError as e:
if "no such table: configs" in str(e):
return {}
raise
@staticmethod
def get_metric_values(
project: str,
run: str,
metric_name: str,
step: int | None = None,
around_step: int | None = None,
at_time: str | None = None,
window: int | float | None = None,
) -> list[dict]:
"""Get values for a specific metric in a project/run with optional filtering.
Filtering modes:
- step: return the single row at exactly this step
- around_step + window: return rows where step is in [around_step - window, around_step + window]
- at_time + window: return rows within ±window seconds of the ISO timestamp
- No filters: return all rows
"""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
query = "SELECT timestamp, step, metrics FROM metrics WHERE run_name = ?"
params: list = [run]
if step is not None:
query += " AND step = ?"
params.append(step)
elif around_step is not None and window is not None:
query += " AND step >= ? AND step <= ?"
params.extend([around_step - int(window), around_step + int(window)])
elif at_time is not None and window is not None:
query += (
" AND timestamp >= datetime(?, '-' || ? || ' seconds')"
" AND timestamp <= datetime(?, '+' || ? || ' seconds')"
)
params.extend([at_time, int(window), at_time, int(window)])
query += " ORDER BY timestamp"
cursor.execute(query, params)
rows = cursor.fetchall()
results = []
for row in rows:
metrics = orjson.loads(row["metrics"])
metrics = deserialize_values(metrics)
if metric_name in metrics:
results.append(
{
"timestamp": row["timestamp"],
"step": row["step"],
"value": metrics[metric_name],
}
)
return results
@staticmethod
def get_snapshot(
project: str,
run: str,
step: int | None = None,
around_step: int | None = None,
at_time: str | None = None,
window: int | float | None = None,
) -> dict[str, list[dict]]:
"""Get all metrics at/around a point in time or step.
Returns a dict mapping metric names to lists of {timestamp, step, value}.
"""
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return {}
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
query = "SELECT timestamp, step, metrics FROM metrics WHERE run_name = ?"
params: list = [run]
if step is not None:
query += " AND step = ?"
params.append(step)
elif around_step is not None and window is not None:
query += " AND step >= ? AND step <= ?"
params.extend([around_step - int(window), around_step + int(window)])
elif at_time is not None and window is not None:
query += (
" AND timestamp >= datetime(?, '-' || ? || ' seconds')"
" AND timestamp <= datetime(?, '+' || ? || ' seconds')"
)
params.extend([at_time, int(window), at_time, int(window)])
query += " ORDER BY timestamp"
cursor.execute(query, params)
result: dict[str, list[dict]] = {}
for row in cursor.fetchall():
metrics = orjson.loads(row["metrics"])
metrics = deserialize_values(metrics)
for key, value in metrics.items():
if key not in result:
result[key] = []
result[key].append(
{
"timestamp": row["timestamp"],
"step": row["step"],
"value": value,
}
)
return result
@staticmethod
def get_all_metrics_for_run(project: str, run: str) -> list[str]:
"""Get all metric names for a specific project/run."""
return SQLiteStorage._get_metric_names(
project, run, "metrics", exclude_keys={"timestamp", "step"}
)
@staticmethod
def _get_metric_names(
project: str, run: str, table: str, exclude_keys: set[str]
) -> list[str]:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
f"""
SELECT metrics
FROM {table}
WHERE run_name = ?
ORDER BY timestamp
""",
(run,),
)
rows = cursor.fetchall()
all_metrics = set()
for row in rows:
metrics = orjson.loads(row["metrics"])
metrics = deserialize_values(metrics)
for key in metrics.keys():
if key not in exclude_keys:
all_metrics.add(key)
return sorted(list(all_metrics))
except sqlite3.OperationalError as e:
if f"no such table: {table}" in str(e):
return []
raise
@staticmethod
def set_project_metadata(project: str, key: str, value: str) -> None:
db_path = SQLiteStorage.init_db(project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
conn.execute(
"INSERT OR REPLACE INTO project_metadata (key, value) VALUES (?, ?)",
(key, value),
)
conn.commit()
@staticmethod
def get_project_metadata(project: str, key: str) -> str | None:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return None
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
"SELECT value FROM project_metadata WHERE key = ?", (key,)
)
row = cursor.fetchone()
return row[0] if row else None
except sqlite3.OperationalError:
return None
@staticmethod
def get_space_id(project: str) -> str | None:
return SQLiteStorage.get_project_metadata(project, "space_id")
@staticmethod
def has_pending_data(project: str) -> bool:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return False
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
"SELECT EXISTS(SELECT 1 FROM metrics WHERE space_id IS NOT NULL LIMIT 1)"
)
if cursor.fetchone()[0]:
return True
except sqlite3.OperationalError:
pass
try:
cursor.execute(
"SELECT EXISTS(SELECT 1 FROM system_metrics WHERE space_id IS NOT NULL LIMIT 1)"
)
if cursor.fetchone()[0]:
return True
except sqlite3.OperationalError:
pass
try:
cursor.execute("SELECT EXISTS(SELECT 1 FROM pending_uploads LIMIT 1)")
if cursor.fetchone()[0]:
return True
except sqlite3.OperationalError:
pass
return False
@staticmethod
def get_pending_logs(project: str) -> dict | None:
return SQLiteStorage._get_pending(
project, "metrics", extra_fields=["step"], include_config=True
)
@staticmethod
def clear_pending_logs(project: str, metric_ids: list[int]) -> None:
SQLiteStorage._clear_pending(project, "metrics", metric_ids)
@staticmethod
def get_pending_system_logs(project: str) -> dict | None:
return SQLiteStorage._get_pending(project, "system_metrics")
@staticmethod
def _get_pending(
project: str,
table: str,
extra_fields: list[str] | None = None,
include_config: bool = False,
) -> dict | None:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return None
extra_cols = ", ".join(extra_fields) + ", " if extra_fields else ""
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
f"""SELECT id, timestamp, run_name, {extra_cols}metrics, log_id, space_id
FROM {table} WHERE space_id IS NOT NULL"""
)
except sqlite3.OperationalError:
return None
rows = cursor.fetchall()
if not rows:
return None
logs = []
ids = []
for row in rows:
metrics = deserialize_values(orjson.loads(row["metrics"]))
entry = {
"project": project,
"run": row["run_name"],
"metrics": metrics,
"timestamp": row["timestamp"],
"log_id": row["log_id"],
}
for field in extra_fields or []:
entry[field] = row[field]
if include_config:
entry["config"] = None
logs.append(entry)
ids.append(row["id"])
return {"logs": logs, "ids": ids, "space_id": rows[0]["space_id"]}
@staticmethod
def clear_pending_system_logs(project: str, metric_ids: list[int]) -> None:
SQLiteStorage._clear_pending(project, "system_metrics", metric_ids)
@staticmethod
def _clear_pending(project: str, table: str, ids: list[int]) -> None:
if not ids:
return
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
placeholders = ",".join("?" * len(ids))
conn.execute(
f"DELETE FROM {table} WHERE id IN ({placeholders})",
ids,
)
conn.commit()
@staticmethod
def get_pending_uploads(project: str) -> dict | None:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return None
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
"""SELECT id, space_id, run_name, step, file_path, relative_path
FROM pending_uploads"""
)
except sqlite3.OperationalError:
return None
rows = cursor.fetchall()
if not rows:
return None
uploads = []
ids = []
for row in rows:
uploads.append(
{
"project": project,
"run": row["run_name"],
"step": row["step"],
"file_path": row["file_path"],
"relative_path": row["relative_path"],
}
)
ids.append(row["id"])
return {"uploads": uploads, "ids": ids, "space_id": rows[0]["space_id"]}
@staticmethod
def clear_pending_uploads(project: str, upload_ids: list[int]) -> None:
if not upload_ids:
return
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
placeholders = ",".join("?" * len(upload_ids))
conn.execute(
f"DELETE FROM pending_uploads WHERE id IN ({placeholders})",
upload_ids,
)
conn.commit()
@staticmethod
def add_pending_upload(
project: str,
space_id: str,
run_name: str | None,
step: int | None,
file_path: str,
relative_path: str | None,
) -> None:
db_path = SQLiteStorage.init_db(project)
with SQLiteStorage._get_process_lock(project):
with SQLiteStorage._get_connection(db_path) as conn:
conn.execute(
"""INSERT INTO pending_uploads
(space_id, run_name, step, file_path, relative_path, created_at)
VALUES (?, ?, ?, ?, ?, ?)""",
(
space_id,
run_name,
step,
file_path,
relative_path,
datetime.now(timezone.utc).isoformat(),
),
)
conn.commit()
@staticmethod
def get_all_logs_for_sync(project: str) -> list[dict]:
return SQLiteStorage._get_all_for_sync(
project,
"metrics",
order_by="run_name, step",
extra_fields=["step"],
include_config=True,
)
@staticmethod
def get_all_system_logs_for_sync(project: str) -> list[dict]:
return SQLiteStorage._get_all_for_sync(
project, "system_metrics", order_by="run_name, timestamp"
)
@staticmethod
def _get_all_for_sync(
project: str,
table: str,
order_by: str,
extra_fields: list[str] | None = None,
include_config: bool = False,
) -> list[dict]:
db_path = SQLiteStorage.get_project_db_path(project)
if not db_path.exists():
return []
extra_cols = ", ".join(extra_fields) + ", " if extra_fields else ""
with SQLiteStorage._get_connection(db_path) as conn:
cursor = conn.cursor()
try:
cursor.execute(
f"""SELECT timestamp, run_name, {extra_cols}metrics, log_id
FROM {table} ORDER BY {order_by}"""
)
except sqlite3.OperationalError:
return []
rows = cursor.fetchall()
results = []
for row in rows:
metrics = deserialize_values(orjson.loads(row["metrics"]))
entry = {
"project": project,
"run": row["run_name"],
"metrics": metrics,
"timestamp": row["timestamp"],
"log_id": row["log_id"],
}
for field in extra_fields or []:
entry[field] = row[field]
if include_config:
entry["config"] = None
results.append(entry)
return results
|