Open soxofaan opened 3 weeks ago
FYI I think we can do this rename while keeping start_job
support for some time. We're already doing that with output_file
https://github.com/Open-EO/openeo-python-client/blob/7c321be49bcf6f1dbd091f5f4f4ea1c0163ed7e5/openeo/extra/job_management.py#L450-L457
MultiBackendJobManager.run_jobs
has astart_job
callable to create a job and, as suggested by its name, to start it too. However, blindly starting each job on creation is actually an anti-pattern with the job manager (which knows better when to start jobs, based on capacity).We should rename
start_job
tocreate_job
to make the better usage pattern more obvious