Skip to content

Commit

Permalink
samples: docs: add sample for setting timeout and retry settings (#3445)
Browse files Browse the repository at this point in the history
* docs: add sample for setting timeout and retry settings

* fix: move start tag

* docs: explain why retry settings use a separate chain
  • Loading branch information
olavloite authored and thiagotnunes committed Oct 6, 2020
1 parent 9d91154 commit f928fd5
Show file tree
Hide file tree
Showing 2 changed files with 194 additions and 0 deletions.
@@ -0,0 +1,88 @@
/*
* Copyright 2020 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.example.spanner;

//[START spanner_set_custom_timeout_and_retry]
import com.google.api.gax.retrying.RetrySettings;
import com.google.api.gax.rpc.StatusCode.Code;
import com.google.cloud.spanner.DatabaseClient;
import com.google.cloud.spanner.DatabaseId;
import com.google.cloud.spanner.Spanner;
import com.google.cloud.spanner.SpannerOptions;
import com.google.cloud.spanner.Statement;
import com.google.cloud.spanner.TransactionContext;
import com.google.cloud.spanner.TransactionRunner.TransactionCallable;
import org.threeten.bp.Duration;

class CustomTimeoutAndRetrySettingsExample {

static void executeSqlWithCustomTimeoutAndRetrySettings() {
// TODO(developer): Replace these variables before running the sample.
String projectId = "my-project";
String instanceId = "my-instance";
String databaseId = "my-database";

executeSqlWithCustomTimeoutAndRetrySettings(projectId, instanceId, databaseId);
}

// Create a Spanner client with custom ExecuteSql timeout and retry settings.
static void executeSqlWithCustomTimeoutAndRetrySettings(
String projectId, String instanceId, String databaseId) {
SpannerOptions.Builder builder = SpannerOptions.newBuilder().setProjectId(projectId);
// Set custom timeout and retry settings for the ExecuteSql RPC.
// This must be done in a separate chain as the setRetryableCodes and setRetrySettings methods
// return a UnaryCallSettings.Builder instead of a SpannerOptions.Builder.
builder
.getSpannerStubSettingsBuilder()
.executeSqlSettings()
// Configure which errors should be retried.
.setRetryableCodes(Code.DEADLINE_EXCEEDED, Code.UNAVAILABLE)
.setRetrySettings(
RetrySettings.newBuilder()
// Configure retry delay settings.
.setInitialRetryDelay(Duration.ofMillis(500))
.setMaxRetryDelay(Duration.ofSeconds(64))
.setRetryDelayMultiplier(1.5)

// Configure RPC and total timeout settings.
.setInitialRpcTimeout(Duration.ofSeconds(60))
.setMaxRpcTimeout(Duration.ofSeconds(60))
.setRpcTimeoutMultiplier(1.0)
.setTotalTimeout(Duration.ofSeconds(60))
.build());
// Create a Spanner client using the custom retry and timeout settings.
try (Spanner spanner = builder.build().getService()) {
DatabaseClient client =
spanner.getDatabaseClient(DatabaseId.of(projectId, instanceId, databaseId));
client
.readWriteTransaction()
.run(
new TransactionCallable<Void>() {
@Override
public Void run(TransactionContext transaction) throws Exception {
String sql =
"INSERT Singers (SingerId, FirstName, LastName)\n"
+ "VALUES (20, 'George', 'Washington')";
long rowCount = transaction.executeUpdate(Statement.of(sql));
System.out.printf("%d record inserted.%n", rowCount);
return null;
}
});
}
}
}
// [END spanner_set_custom_timeout_and_retry]
@@ -0,0 +1,106 @@
/*
* Copyright 2020 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.example.spanner;

import static com.google.common.truth.Truth.assertThat;

import com.google.cloud.spanner.DatabaseAdminClient;
import com.google.cloud.spanner.DatabaseId;
import com.google.cloud.spanner.Instance;
import com.google.cloud.spanner.Spanner;
import com.google.cloud.spanner.SpannerOptions;
import com.google.common.collect.ImmutableList;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.util.Iterator;
import java.util.UUID;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/** Integration tests for Cloud Spanner cloud client examples. */
@RunWith(JUnit4.class)
public class SpannerStandaloneExamplesIT {
// The instance needs to exist for tests to pass.
private static String instanceId = System.getProperty("spanner.test.instance");
private static String databaseId =
formatForTest(System.getProperty("spanner.sample.database", "mysample"));
private static DatabaseId dbId;
private static DatabaseAdminClient dbClient;
private static Spanner spanner;

private String runExample(Runnable example) {
PrintStream stdOut = System.out;
ByteArrayOutputStream bout = new ByteArrayOutputStream();
PrintStream out = new PrintStream(bout);
System.setOut(out);
example.run();
System.setOut(stdOut);
return bout.toString();
}

@BeforeClass
public static void createTestDatabase() throws Exception {
SpannerOptions options = SpannerOptions.newBuilder().build();
spanner = options.getService();
dbClient = spanner.getDatabaseAdminClient();
if (instanceId == null) {
Iterator<Instance> iterator =
spanner.getInstanceAdminClient().listInstances().iterateAll().iterator();
if (iterator.hasNext()) {
instanceId = iterator.next().getId().getInstance();
}
}
dbId = DatabaseId.of(options.getProjectId(), instanceId, databaseId);
dbClient.dropDatabase(dbId.getInstanceId().getInstance(), dbId.getDatabase());
dbClient
.createDatabase(
instanceId,
databaseId,
ImmutableList.of(
"CREATE TABLE Singers ("
+ " SingerId INT64 NOT NULL,"
+ " FirstName STRING(1024),"
+ " LastName STRING(1024),"
+ " SingerInfo BYTES(MAX)"
+ ") PRIMARY KEY (SingerId)"))
.get();
}

@AfterClass
public static void dropTestDatabase() throws Exception {
dbClient.dropDatabase(dbId.getInstanceId().getInstance(), dbId.getDatabase());
spanner.close();
}

@Test
public void executeSqlWithCustomTimeoutAndRetrySettings_shouldWriteData() {
String projectId = spanner.getOptions().getProjectId();
String out =
runExample(
() ->
CustomTimeoutAndRetrySettingsExample.executeSqlWithCustomTimeoutAndRetrySettings(
projectId, instanceId, databaseId));
assertThat(out).contains("1 record inserted.");
}

static String formatForTest(String name) {
return name + "-" + UUID.randomUUID().toString().substring(0, 20);
}
}

0 comments on commit f928fd5

Please sign in to comment.