maxExecutorsCount property

  1. @TagNumber.new(2)
int get maxExecutorsCount

Optional. Max configurable executors. If max_executors_count > executors_count, then auto-scaling is enabled. Max Executor Count should be between 2 and 1000. Default=1000

Implementation

@$pb.TagNumber(2)
$core.int get maxExecutorsCount => $_getIZ(1);
  1. @TagNumber.new(2)
set maxExecutorsCount (int v)

Implementation

@$pb.TagNumber(2)
set maxExecutorsCount($core.int v) {
  $_setSignedInt32(1, v);
}