nvflare.app_opt.job_launcher.workspace_cell_transfer module
CellNet-based workspace transfer for launched jobs.
The parent process exposes a small transfer service on its existing CellNet cell. Launched job pods create short-lived bootstrap child cells to:
request a workspace bundle from the parent
upload final job results back to the parent
The actual payload transfer uses the existing F3 file downloader infrastructure, so large bundles move in chunks instead of being buffered into a single message.
- class WorkspaceTransferManager(cell: Cell, download_timeout: float = 600.0, per_request_timeout: float = 300.0)[source]
Bases:
objectManage per-job workspace transfer over an existing CellNet cell.
- classmethod get_or_create(cell: Cell) WorkspaceTransferManager[source]
Return the per-cell manager, constructing one on first use.