Class BigtableWriteResult
- java.lang.Object
-
- org.apache.beam.sdk.io.gcp.bigtable.BigtableWriteResult
-
@DefaultCoder(BigtableWriteResultCoder.class) public abstract class BigtableWriteResult extends java.lang.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 singleBigtableWriteResultis emitted.
-
-
Constructor Summary
Constructors Constructor Description BigtableWriteResult()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static BigtableWriteResultcreate(long rowsWritten)abstract longgetRowsWritten()The number of rows written in this batch.
-
-
-
Method Detail
-
create
public static BigtableWriteResult create(long rowsWritten)
-
getRowsWritten
public abstract long getRowsWritten()
The number of rows written in this batch.
-
-