Class ApproximateSplitRequest
A suggestion by the service to the worker to dynamically split the WorkItem.
Implements
Inherited Members
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class ApproximateSplitRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FractionConsumed
A fraction at which to split the work item, from 0.0 (beginning of the input) to 1.0 (end of the input).
Declaration
[JsonProperty("fractionConsumed")]
public virtual double? FractionConsumed { get; set; }
Property Value
Type | Description |
---|---|
double? |
FractionOfRemainder
The fraction of the remainder of work to split the work item at, from 0.0 (split at the current position) to 1.0 (end of the input).
Declaration
[JsonProperty("fractionOfRemainder")]
public virtual double? FractionOfRemainder { get; set; }
Property Value
Type | Description |
---|---|
double? |
Position
A Position at which to split the work item.
Declaration
[JsonProperty("position")]
public virtual Position Position { get; set; }
Property Value
Type | Description |
---|---|
Position |