You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
I found this repo to be very good, useful, and I would like to ask how I can handle writing errors from Apache Beam BigtableIO.
My dataflow is reading from Pubsub subscription, does some data cleansing/processing, then use BigtableIO to write to Bigtable table.
The writing code is:
translatedMessages.apply(
"Writing to BT",
org.apache.beam.sdk.io.gcp.bigtable.BigtableIO.write().withProjectId("my-project").withInstanceId("my-instance").withTableId("my-table")
asPTransform<inPCollection<KV<ByteString, java.lang.Iterable<Mutation>>>, PDone>
)
How can I handle the error from this writing step?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Hi there,
I found this repo to be very good, useful, and I would like to ask how I can handle writing errors from Apache Beam BigtableIO.
My dataflow is reading from Pubsub subscription, does some data cleansing/processing, then use BigtableIO to write to Bigtable table.
The writing code is:
How can I handle the error from this writing step?
Thanks in advance.
The text was updated successfully, but these errors were encountered: