Abacn commented on code in PR #28778: URL: https://github.com/apache/beam/pull/28778#discussion_r1504857991
########## sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryOptions.java: ########## @@ -165,10 +165,10 @@ public interface BigQueryOptions void setStorageWriteApiMaxRequestSize(Long value); @Description( - "If set, BigQueryIO.Read will use the StreamBundle based" - + "implementation of the Read API Source") + "If set, BigQueryIO.Read will rely on the Read API backends to surface the appropriate" + + " number of streams for read") @Default.Boolean(false) - Boolean getEnableBundling(); + Boolean getEnableStorageReadApiV2(); - void setEnableBundling(Boolean value); + void setEnableStorageReadApiV2(Boolean value); Review Comment: The effect of this option is to set the number of stream requested to 0 so the server will decide an appropriate number of read streams (which is Read API source v2). It is preserved for now. -- 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]
