Class ReportedParallelism
Represents the level of parallelism in a WorkItem's input, reported by the worker.
Implements
Inherited Members
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class ReportedParallelism : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
IsInfinite
Specifies whether the parallelism is infinite. If true, "value" is ignored. Infinite parallelism means the service will assume that the work item can always be split into more non-empty work items by dynamic splitting. This is a work-around for lack of support for infinity by the current JSON-based Java RPC stack.
Declaration
[JsonProperty("isInfinite")]
public virtual bool? IsInfinite { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Value
Specifies the level of parallelism in case it is finite.
Declaration
[JsonProperty("value")]
public virtual double? Value { get; set; }
Property Value
Type | Description |
---|---|
double? |