You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
tilebox-workflows: Added execution_stats to the Job object to provide programmatic access to a job's execution
statistics.
tilebox-workflows: Added query filters to the JobClient.query method to filter jobs by multiple automation ids,
job state, and job name.
tilebox-workflows: Added additional JobState values to indicate a job's current state and progress more accurately.
tilebox-workflows: Removed the restriction of 64 subtasks per task.
Changed
tilebox-workflows: Deprecated the job.canceled property, which will be removed in a future version. The
equivalent expression behavior for the old job.canceled is (job.state in (JobState.CANCELED, JobState.FAILED).
tilebox-workflows: Deprecated the job.started_at property, which will be removed in a future version. The
equivalent information is available in job.execution_stats.first_task_started_at instead.
tilebox-workflows: The JobState.QUEUED enum value has been renamed in favor of the more accurate JobState.SUBMITTED. The QUEUED value is still available as an alias for SUBMITTED for backwards compatibility,
but will be removed in a future version.
tilebox-workflows: Switched to an updated internal TaskSubmission message format that allows for more efficient
submission of a very large number of tasks.