restartable
- type:
boolean
- example:
config restartable : true;
- description:
- The operator instance can be restarted, for example after a
user-requested stopPE completes or after a partition crashes due to a runtime
error. The
restartable
config is implied by therelocatable
config. Furthermore, if an operatorA
is restartable and operatorB
is not, thenA
andB
are partition-exlocated (cannot be in the same partition). Remember from the language specification that a local config overrides a globalconfig;
similarly, a local inferred config overrides a globalconfig
even if that globalconfig
is explicit. - default:
true
- where:
- Any operator invocation or composite
operator. Tip: You can set
config restartable
on a main composite to make all enclosed PEs restartable.