Class SourceMetadata
Metadata about a Source useful for automatically optimizing and tuning the pipeline, etc.
Implements
Inherited Members
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class SourceMetadata : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EstimatedSizeBytes
An estimate of the total size (in bytes) of the data that would be read from this source. This estimate is in terms of external storage size, before any decompression or other processing done by the reader.
Declaration
[JsonProperty("estimatedSizeBytes")]
public virtual long? EstimatedSizeBytes { get; set; }
Property Value
Type | Description |
---|---|
long? |
Infinite
Specifies that the size of this source is known to be infinite (this is a streaming source).
Declaration
[JsonProperty("infinite")]
public virtual bool? Infinite { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ProducesSortedKeys
Whether this source is known to produce key/value pairs with the (encoded) keys in lexicographically sorted order.
Declaration
[JsonProperty("producesSortedKeys")]
public virtual bool? ProducesSortedKeys { get; set; }
Property Value
Type | Description |
---|---|
bool? |