Class Base2Exponent
Exponential buckets where the growth factor between buckets is 2**(2**-scale)
. e.g. for scale=1
growth
factor is 2**(2**(-1))=sqrt(2)
. n
buckets will have the following boundaries. - 0th: [0, gf) - i in [1,
n-1]: [gf^(i), gf^(i+1))
Implements
Inherited Members
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class Base2Exponent : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NumberOfBuckets
Must be greater than 0.
Declaration
[JsonProperty("numberOfBuckets")]
public virtual int? NumberOfBuckets { get; set; }
Property Value
Type | Description |
---|---|
int? |
Scale
Must be between -3 and 3. This forces the growth factor of the bucket boundaries to be between 2^(1/8)
and
256
.
Declaration
[JsonProperty("scale")]
public virtual int? Scale { get; set; }
Property Value
Type | Description |
---|---|
int? |