schedulingPolicy property

String? schedulingPolicy
getter/setter pair

Scheduling policy for Tasks in the TaskGroup.

The default value is AS_SOON_AS_POSSIBLE. Possible string values are:

  • "SCHEDULING_POLICY_UNSPECIFIED" : Unspecified.
  • "AS_SOON_AS_POSSIBLE" : Run Tasks as soon as resources are available. Tasks might be executed in parallel depending on parallelism and task_count values.
  • "IN_ORDER" : Run Tasks sequentially with increased task index.

Implementation

core.String? schedulingPolicy;