Class BytesThroughputEstimator<T>
java.lang.Object
org.apache.beam.sdk.io.gcp.bigtable.changestreams.estimator.BytesThroughputEstimator<T>
An estimator to provide an estimate on the byte throughput of the outputted elements.
This estimator will keep track of the bytes of reported records within a sliding window. The
window consists of the configured number of seconds and each record's bytes will fall into
exactly one given second bucket. When more than window size seconds have passed from the current
time, the bytes reported for the seconds that fall outside of the window will not be considered
anymore. The bytes of the records will be estimated using the configured Coder
.
The estimator will sample only 2% of records to save the cost of doing sizeEstimation for every element
-
Constructor Summary
ConstructorsConstructorDescriptionBytesThroughputEstimator
(SizeEstimator<T> sizeEstimator, int sampleRate, Instant startTimestamp) BytesThroughputEstimator
(SizeEstimator<T> sizeEstimator, @Nullable Instant lastRunTimestamp) -
Method Summary
Modifier and TypeMethodDescriptionget()
Returns the estimated throughput bytes for this run.void
Updates the estimator with the bytes of records if it is selected to be sampled.
-
Constructor Details
-
BytesThroughputEstimator
-
BytesThroughputEstimator
public BytesThroughputEstimator(SizeEstimator<T> sizeEstimator, int sampleRate, Instant startTimestamp)
-
-
Method Details
-
update
Updates the estimator with the bytes of records if it is selected to be sampled.- Parameters:
timeOfRecords
- the committed timestamp of the recordselement
- the element to estimate the byte size of
-
get
Returns the estimated throughput bytes for this run.
-