Class BigQueryReadSettings
java.lang.Object
com.google.api.gax.rpc.ClientSettings<BigQueryReadSettings>
com.google.cloud.bigquery.storage.v1beta2.BigQueryReadSettings
@BetaApi
public class BigQueryReadSettings
extends com.google.api.gax.rpc.ClientSettings<BigQueryReadSettings>
Settings class to configure an instance of
BigQueryReadClient.
The default instance has everything set to sensible defaults:
- The default service address (bigquerystorage.googleapis.com) and default port (443) are used.
- Credentials are acquired automatically through Application Default Credentials.
- Retries are configured for idempotent methods but not for non-idempotent methods.
The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.
For example, to set the total timeout of createReadSession to 30 seconds:
BigQueryReadSettings.Builder BigQueryReadSettingsBuilder =
BigQueryReadSettings.newBuilder();
BigQueryReadSettingsBuilder.createReadSessionSettings().getRetrySettings().toBuilder()
.setTotalTimeout(Duration.ofSeconds(30));
BigQueryReadSettings BigQueryReadSettings = BigQueryReadSettingsBuilder.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder for BigQueryReadSettings.static interface -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBigQueryReadSettings(BigQueryReadSettings.Builder settingsBuilder) -
Method Summary
Modifier and TypeMethodDescriptionstatic final BigQueryReadSettingscom.google.api.gax.rpc.UnaryCallSettings<CreateReadSessionRequest,ReadSession> Returns the object with the settings used for calls to createReadSession.static com.google.api.gax.rpc.ApiClientHeaderProvider.Builderstatic com.google.api.gax.core.GoogleCredentialsProvider.BuilderReturns a builder for the default credentials for this service.static com.google.api.gax.core.InstantiatingExecutorProvider.BuilderReturns a builder for the default ExecutorProvider for this service.static com.google.api.gax.grpc.InstantiatingGrpcChannelProvider.BuilderReturns a builder for the default ChannelProvider for this service.static com.google.api.gax.rpc.TransportChannelProviderstatic StringReturns the default service endpoint.Returns the default service scopes.static BigQueryReadSettings.BuilderReturns a new builder for this class.static BigQueryReadSettings.BuildernewBuilder(com.google.api.gax.rpc.ClientContext clientContext) Returns a new builder for this class.com.google.api.gax.rpc.ServerStreamingCallSettings<ReadRowsRequest,ReadRowsResponse> Returns the object with the settings used for calls to readRows.voidsetReadRowsRetryAttemptListener(BigQueryReadSettings.RetryAttemptListener readRowsRetryAttemptListener) If a non null readRowsRetryAttemptListener is provided, client will call onRetryAttempt function before a failed ReadRows request is retried.com.google.api.gax.rpc.UnaryCallSettings<SplitReadStreamRequest,SplitReadStreamResponse> Returns the object with the settings used for calls to splitReadStream.Returns a builder containing all the values of this settings class.Methods inherited from class com.google.api.gax.rpc.ClientSettings
getApiKey, getBackgroundExecutorProvider, getClock, getCredentialsProvider, getEndpoint, getExecutorProvider, getGdchApiAudience, getHeaderProvider, getInternalHeaderProvider, getQuotaProjectId, getStubSettings, getTransportChannelProvider, getUniverseDomain, getWatchdogCheckInterval, getWatchdogCheckIntervalDuration, getWatchdogProvider, toString
-
Constructor Details
-
BigQueryReadSettings
- Throws:
IOException
-
-
Method Details
-
createReadSessionSettings
public com.google.api.gax.rpc.UnaryCallSettings<CreateReadSessionRequest,ReadSession> createReadSessionSettings()Returns the object with the settings used for calls to createReadSession. -
readRowsSettings
public com.google.api.gax.rpc.ServerStreamingCallSettings<ReadRowsRequest,ReadRowsResponse> readRowsSettings()Returns the object with the settings used for calls to readRows. -
setReadRowsRetryAttemptListener
public void setReadRowsRetryAttemptListener(BigQueryReadSettings.RetryAttemptListener readRowsRetryAttemptListener) If a non null readRowsRetryAttemptListener is provided, client will call onRetryAttempt function before a failed ReadRows request is retried. This can be used as negative feedback mechanism for future decision to split read streams because some retried failures are due to resource exhaustion that increased parallelism only makes it worse. -
getReadRowsRetryAttemptListener
-
splitReadStreamSettings
public com.google.api.gax.rpc.UnaryCallSettings<SplitReadStreamRequest,SplitReadStreamResponse> splitReadStreamSettings()Returns the object with the settings used for calls to splitReadStream. -
create
public static final BigQueryReadSettings create(EnhancedBigQueryReadStubSettings stub) throws IOException - Throws:
IOException
-
defaultExecutorProviderBuilder
public static com.google.api.gax.core.InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()Returns a builder for the default ExecutorProvider for this service. -
getDefaultEndpoint
Returns the default service endpoint. -
getDefaultServiceScopes
Returns the default service scopes. -
defaultCredentialsProviderBuilder
public static com.google.api.gax.core.GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()Returns a builder for the default credentials for this service. -
defaultGrpcTransportProviderBuilder
public static com.google.api.gax.grpc.InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()Returns a builder for the default ChannelProvider for this service. -
defaultTransportChannelProvider
public static com.google.api.gax.rpc.TransportChannelProvider defaultTransportChannelProvider() -
defaultApiClientHeaderProviderBuilder
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.") public static com.google.api.gax.rpc.ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() -
newBuilder
Returns a new builder for this class. -
newBuilder
public static BigQueryReadSettings.Builder newBuilder(com.google.api.gax.rpc.ClientContext clientContext) Returns a new builder for this class. -
toBuilder
Returns a builder containing all the values of this settings class.- Specified by:
toBuilderin classcom.google.api.gax.rpc.ClientSettings<BigQueryReadSettings>
-