mutianf commented on code in PR #37586:
URL: https://github.com/apache/beam/pull/37586#discussion_r2805145680
##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableServiceFactory.java:
##########
@@ -133,7 +135,10 @@ BigtableServiceEntry getServiceForReading(
BigtableDataSettings.enableBuiltinMetrics();
}
- BigtableService service = new BigtableServiceImpl(settings);
+ boolean skipLargeRows =
+ ExperimentalOptions.hasExperiment(pipelineOptions,
BIGTABLE_ENABLE_SKIP_LARGE_ROWS);
Review Comment:
This is not the eventual state we want the connector to be in. Ideally, we
want to extract the large row keys and do segmented read on these keys. However
that requires a lot of work, so this is just a temporary workaround to stop
dataflow jobs from failing with large row key errors.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]