Skip to content

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.

NameTypeDescriptionOptional
job_idstrUnique identifier of the job to fetch.No

A JobMonitor object that enables tracking the job’s progress, checking its status, and retrieving results once the job is complete.

from relationalai_gnns import JobManager
job_manager = JobManager(connector=connector)
retrieved_job = job_manager.fetch_job("01bbe3b2-0205-0e72-001d-f987ec094ee2")