Class BigtableWriteResult
java.lang.Object
org.apache.beam.sdk.io.gcp.bigtable.BigtableWriteResult
@DefaultCoder(BigtableWriteResultCoder.class)
public abstract class BigtableWriteResult
extends Object
The result of writing a batch of rows to Bigtable. Rows are written to bigtable in batches (based
on the runner-chosen bundle size). Once each batch finishes, a single
BigtableWriteResult
is emitted.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BigtableWriteResult
create
(long rowsWritten) abstract long
The number of rows written in this batch.
-
Constructor Details
-
BigtableWriteResult
public BigtableWriteResult()
-
-
Method Details
-
create
-
getRowsWritten
public abstract long getRowsWritten()The number of rows written in this batch.
-