JobManager.fetch_job()
This method retrieves a previously created job that may have been lost due to repeated Python function calls.
⚠️ Important Note: Once an engine is suspended, job IDs are no longer available. However, experiment results and model run IDs remain accessible via Snowflake experiment tracking.
Parameters
Section titled “Parameters”| Name | Type | Description | Optional |
|---|---|---|---|
job_id | str | Unique identifier of the job to fetch. | No |
Returns
Section titled “Returns”A JobMonitor object that enables tracking the job’s progress, checking its status, and retrieving results once the job is complete.
Example
Section titled “Example”from relationalai_gnns import JobManagerjob_manager = JobManager(connector=connector)retrieved_job = job_manager.fetch_job("01bbe3b2-0205-0e72-001d-f987ec094ee2")