Upload Utilities
Utilities for uploading files and assets to a Deriva catalog's Hatrac object store.
This module provides functions that help structure local directories for uploading to a DerivaML catalog, and generating an upload specification for those directories.
Here is the directory layout we support:
deriva-ml/
execution
asset_file_path
asset_file_path(
prefix: Path | str,
exec_rid: RID,
asset_table: Table,
file_name: str,
metadata: dict[str, Any],
) -> Path
Return the file in which to place assets of a specified type are to be uploaded.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Path prefix to use. |
required |
exec_rid
|
RID
|
RID to use. |
required |
asset_table
|
Table
|
Table in which to place assets. |
required |
file_name
|
str
|
File name to use. |
required |
metadata
|
dict[str, Any]
|
Any additional metadata to add to the asset |
required |
Returns: Path to directory in which to place assets of type asset_type.
Source code in src/deriva_ml/dataset/upload.py
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 | |
asset_root
asset_root(
prefix: Path | str, exec_rid: str
) -> Path
Return the directory for staging asset uploads for a specific execution.
The directory is created if it does not already exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of the upload root directory. |
required |
exec_rid
|
str
|
RID of the execution whose asset files are being staged. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to the asset upload directory for the given execution. |
Source code in src/deriva_ml/dataset/upload.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | |
asset_table_upload_spec
asset_table_upload_spec(
model: DerivaModel,
asset_table: str | Table,
chunk_size: int | None = None,
)
Generate upload specification for an asset table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
DerivaModel
|
The DerivaModel instance. |
required |
asset_table
|
str | Table
|
The asset table name or Table object. |
required |
chunk_size
|
int | None
|
Optional chunk size in bytes for hatrac uploads. If provided, large files will be uploaded in chunks of this size. |
None
|
Returns:
| Type | Description |
|---|---|
|
A dictionary containing the upload specification for the asset table. |
Source code in src/deriva_ml/dataset/upload.py
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 | |
asset_type_path
asset_type_path(
prefix: Path | str,
exec_rid: RID,
asset_table: Table,
) -> Path
Return the path to a JSON line file in which to place asset_type information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of upload root directory |
required |
exec_rid
|
RID
|
Execution RID |
required |
asset_table
|
Table
|
Table in which to place assets. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to the file in which to place asset_type values for the named asset. |
Source code in src/deriva_ml/dataset/upload.py
698 699 700 701 702 703 704 705 706 707 708 709 710 711 | |
bulk_upload_configuration
bulk_upload_configuration(
model: DerivaModel,
chunk_size: int | None = None,
) -> dict[str, Any]
Return an upload specification for deriva-ml
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
DerivaModel
|
Model from which to generate the upload configuration. |
required |
chunk_size
|
int | None
|
Optional chunk size in bytes for hatrac uploads. If provided, large files will be uploaded in chunks of this size. |
None
|
Source code in src/deriva_ml/dataset/upload.py
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 | |
execution_rids
execution_rids(
prefix: Path | str,
) -> list[RID]
Return all execution RIDs that have files staged for upload.
Scans the execution/ subdirectory under the upload root and returns the
name of each immediate child directory, which corresponds to an execution RID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of the upload root directory. |
required |
Returns:
| Type | Description |
|---|---|
list[RID]
|
List of execution RID strings found under the upload root. |
Source code in src/deriva_ml/dataset/upload.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 | |
execution_root
execution_root(
prefix: Path | str, exec_rid
) -> Path
Return the directory for staging upload files for a specific execution.
The directory is created if it does not already exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of the upload root directory. |
required |
exec_rid
|
RID of the execution whose upload files are being staged. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to the execution-specific upload directory. |
Source code in src/deriva_ml/dataset/upload.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | |
feature_dir
feature_dir(
prefix: Path | str,
exec_rid: str,
schema: str,
target_table: str,
feature_name: str,
) -> Path
Return the path to the directory in which a named feature for an execution should be placed.
Source code in src/deriva_ml/dataset/upload.py
237 238 239 240 241 | |
feature_root
feature_root(
prefix: Path | str, exec_rid: str
) -> Path
Return the directory for staging feature uploads for a specific execution.
The directory is created if it does not already exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of the upload root directory. |
required |
exec_rid
|
str
|
RID of the execution whose feature files are being staged. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to the feature upload directory for the given execution. |
Source code in src/deriva_ml/dataset/upload.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | |
feature_value_path
feature_value_path(
prefix: Path | str,
exec_rid: str,
schema: str,
target_table: str,
feature_name: str,
) -> Path
Return the path to a CSV file in which to place feature values that are to be uploaded.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of upload root directory |
required |
exec_rid
|
str
|
RID of the execution to be associated with this feature. |
required |
schema
|
str
|
Domain schema name |
required |
target_table
|
str
|
Target table name for the feature. |
required |
feature_name
|
str
|
Name of the feature. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to CSV file in which to place feature values |
Source code in src/deriva_ml/dataset/upload.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 | |
flat_asset_dir
flat_asset_dir(
prefix: Path | str,
exec_rid: str,
asset_table_name: str,
) -> Path
Return the flat per-table asset directory for the manifest-first storage layout.
Files are stored in assets/{AssetTable}/ without metadata encoding in the path.
Metadata lives in the manifest JSON file instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of upload root directory. |
required |
exec_rid
|
str
|
Execution RID. |
required |
asset_table_name
|
str
|
Name of the asset table (e.g., "Image", "Model"). |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to the flat asset directory (created if it doesn't exist). |
Source code in src/deriva_ml/dataset/upload.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | |
is_feature_dir
is_feature_dir(
path: Path,
) -> Optional[re.Match]
Check whether a path matches the expected directory layout for a feature table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path
|
Filesystem path to check against the feature table directory pattern. |
required |
Returns:
| Type | Description |
|---|---|
Optional[Match]
|
A regex Match object with named groups ( |
Optional[Match]
|
|
Source code in src/deriva_ml/dataset/upload.py
99 100 101 102 103 104 105 106 107 108 109 | |
manifest_path
manifest_path(
prefix: Path | str, exec_rid: str
) -> Path
Return the path to the asset-manifest.json file for an execution.
Source code in src/deriva_ml/dataset/upload.py
232 233 234 | |
normalize_asset_dir
normalize_asset_dir(
path: str | Path,
) -> Optional[tuple[str, str]]
Parse a path to an asset file and return the asset table name and file name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to the asset file |
required |
Returns:
| Type | Description |
|---|---|
Optional[tuple[str, str]]
|
Tuple of (schema/table, filename) or None if path doesn't match pattern |
Source code in src/deriva_ml/dataset/upload.py
112 113 114 115 116 117 118 119 120 121 122 123 124 | |
table_path
table_path(
prefix: Path | str,
schema: str,
table: str,
) -> Path
Return the path to a CSV file in which to place table values that are to be uploaded.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
Path | str
|
Location of upload root directory |
required |
schema
|
str
|
Domain schema |
required |
table
|
str
|
Name of the table to be uploaded. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
Path to the file in which to place table values that are to be uploaded. |
Source code in src/deriva_ml/dataset/upload.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 | |
upload_asset
upload_asset(
model: DerivaModel,
file: Path | str,
table: Table,
**kwargs: Any,
) -> dict
Upload the specified file into Hatrac and update the associated asset table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
Path | str
|
path to the file to upload. |
required |
table
|
Table
|
Name of the asset table |
required |
model
|
DerivaModel
|
Model to upload assets to. |
required |
kwargs
|
Any
|
Keyword arguments for values of additional columns to be added to the asset table. |
{}
|
Returns:
Source code in src/deriva_ml/dataset/upload.py
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 | |
upload_directory
upload_directory(
model: DerivaModel,
directory: Path | str,
progress_callback: Callable[
[UploadProgress], None
]
| None = None,
max_retries: int = 3,
retry_delay: float = 5.0,
timeout: tuple[int, int]
| None = None,
chunk_size: int | None = None,
) -> dict[Any, FileUploadState] | None
Upload assets from a directory. This routine assumes that the current upload specification includes a configuration for the specified directory. Every asset in the specified directory is uploaded
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
DerivaModel
|
Model to upload assets to. |
required |
directory
|
Path | str
|
Directory containing the assets and tables to upload. |
required |
progress_callback
|
Callable[[UploadProgress], None] | None
|
Optional callback function to receive upload progress updates. Called with UploadProgress objects containing file information and progress. |
None
|
max_retries
|
int
|
Maximum number of retry attempts for failed uploads (default: 3). |
3
|
retry_delay
|
float
|
Initial delay in seconds between retries, doubles with each attempt (default: 5.0). |
5.0
|
timeout
|
tuple[int, int] | None
|
Tuple of (connect_timeout, read_timeout) in seconds. Default is (600, 600). Note: urllib3 uses connect_timeout as the socket timeout during request body writes, so it must be large enough for a full chunk upload. Both values should be set generously for large file uploads. |
None
|
chunk_size
|
int | None
|
Optional chunk size in bytes for hatrac uploads. If provided, large files will be uploaded in chunks of this size. |
None
|
Returns:
| Type | Description |
|---|---|
dict[Any, FileUploadState] | None
|
Results of the upload operation. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If there is an issue with uploading the assets. |
Source code in src/deriva_ml/dataset/upload.py
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 | |
upload_root
upload_root(prefix: Path | str) -> Path
Return the top level directory of where to put files to be uploaded.
Source code in src/deriva_ml/dataset/upload.py
127 128 129 130 131 | |
upload_staging_root
upload_staging_root(
prefix: Path | str, exec_rid: str
) -> Path
Return the ephemeral upload-staging directory, created at upload time only.
This directory holds symlinks arranged in the regex-expected tree structure that GenericUploader needs. It is created from manifest data at upload time and cleaned up after upload completes.
Source code in src/deriva_ml/dataset/upload.py
220 221 222 223 224 225 226 227 228 229 | |