Skip to main content
moss v1.7.1 moss / JobHandle

JobHandle

Returned by create_index(..., wait=False). The build runs server-side, so you can read the job_id, tear down your process, and reconnect later to check on it — or call wait() to block until it completes.
Requires moss 1.7.1+ (which pulls inferedge-moss-core 0.20.1).

Properties

job_id

  • Type: str
The build job id. Available immediately, before the build finishes. Persist it to poll the build later via get_job_status(job_id).

Methods

status()

Current build status — a live readout of the phase and progress.

Returns

JobStatusResponse

wait()

Block until the build completes. Raises if the build fails or times out.

Returns

MutationResult

Example