create_job: Creates a job on the back-end from a Graph object

Description Usage Arguments Value

View source: R/jobs.R

Description

This function shall be called after the user defined a process graph for the back-end to create a job on the back-end. Therefore the user sends the process graph and the optional output specifications like format and additional creation parameter by '...'. To add some meta data about the job, the user might use title or description. By providing a execution plan and a maximum usable budget the user can change the execution behavior of the back-end provider.

Usage

1
2
3
4
5
6
7
8
9
create_job(
  graph = NULL,
  title = NULL,
  description = NULL,
  plan = NULL,
  budget = NULL,
  con = NULL,
  ...
)

Arguments

graph

A Graph, a function returning a ProcessNode as an endpoint or the ProcessNode will return the results

title

Optional title of a job to be found

description

Optional a more detailed information about a job

plan

An optional execution plan offered by the back-end, determining how the job will be executed

budget

An optional budget, which sets the maximum amount of credits to be used by the job

con

connected and authenticated openeo client (optional) otherwise active_connection is used.

...

additional configuration parameter for output generation

Value

the id of the job


flahn/openeo-r-client documentation built on Sept. 18, 2020, 5:16 a.m.