partitionCount property

  1. @TagNumber(3)
Int64 get partitionCount

The desired maximum number of partition points. The partitions may be returned across multiple pages of results. The number must be positive. The actual number of partitions returned may be fewer.

For example, this may be set to one fewer than the number of parallel queries to be run, or in running a data pipeline job, one fewer than the number of workers or compute instances available.

Implementation

@$pb.TagNumber(3)
$fixnum.Int64 get partitionCount => $_getI64(2);
  1. @TagNumber(3)
set partitionCount (Int64 v)

Implementation

@$pb.TagNumber(3)
set partitionCount($fixnum.Int64 v) {
  $_setInt64(2, v);
}