Google Cloud BigQuery C++ Client 2.13.0
A C++ Client Library for Google Cloud BigQuery
Loading...
Searching...
No Matches
Override bigquery_migration_v2::MigrationServiceClient Retry Policies

This shows how to override the retry policies for bigquery_migration_v2::MigrationServiceClient:

auto options =
.set<google::cloud::bigquery_migration_v2::
MigrationServiceConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
MigrationServiceRetryPolicyOption>(
MigrationServiceLimitedErrorCountRetryPolicy(3)
.clone())
MigrationServiceBackoffPolicyOption>(
/*initial_delay=*/std::chrono::milliseconds(200),
/*maximum_delay=*/std::chrono::seconds(45),
/*scaling=*/2.0)
.clone());
auto connection =
options);
// c1 and c2 share the same retry policies
auto c1 =
auto c2 =
// You can override any of the policies in a new client. This new client
// will share the policies from c1 (or c2) *except* from the retry policy.
connection, google::cloud::Options{}
.set<google::cloud::bigquery_migration_v2::
MigrationServiceRetryPolicyOption>(
std::chrono::minutes(5))
.clone()));
// You can also override the policies in a single call:
// c3.SomeRpc(..., google::cloud::Options{}
// .set<google::cloud::bigquery_migration_v2::MigrationServiceRetryPolicyOption>(
// google::cloud::bigquery_migration_v2::MigrationServiceLimitedErrorCountRetryPolicy(10).clone()));
Options & set(ValueTypeT< T > v)
Service to handle EDW migrations.
Definition: migration_client.h:62
Definition: migration_client.h:33
std::shared_ptr< MigrationServiceConnection > MakeMigrationServiceConnection(Options options={})
A factory function to construct an object of type MigrationServiceConnection.
::google::cloud::internal::LimitedTimeRetryPolicy< bigquery_migration_v2_internal::MigrationServiceRetryTraits > MigrationServiceLimitedTimeRetryPolicy
Definition: migration_connection.h:43
google::cloud::internal::ExponentialBackoffPolicy ExponentialBackoffPolicy

Assuming you have created a custom idempotency policy. Such as:

class CustomIdempotencyPolicy
MigrationServiceConnectionIdempotencyPolicy {
public:
~CustomIdempotencyPolicy() override = default;
std::unique_ptr<google::cloud::bigquery_migration_v2::
MigrationServiceConnectionIdempotencyPolicy>
clone() const override {
return std::make_unique<CustomIdempotencyPolicy>(*this);
}
// Override inherited functions to define as needed.
};