Skip to content

Commit

Permalink
Bump spanner stale read from 10 to 15 seconds. (#915)
Browse files Browse the repository at this point in the history
At the request of the spanner team.
  • Loading branch information
SurferJeffAtGoogle authored and lesv committed Nov 9, 2017
1 parent 2ff682d commit 5a3c8b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ static void readOnlyTransaction(DatabaseClient dbClient) {
static void readStaleData(DatabaseClient dbClient) {
ResultSet resultSet =
dbClient
.singleUse(TimestampBound.ofExactStaleness(10, TimeUnit.SECONDS))
.singleUse(TimestampBound.ofExactStaleness(15, TimeUnit.SECONDS))
.read("Albums",
KeySet.all(),
Arrays.asList("SingerId", "AlbumId", "MarketingBudget"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public void testSample() throws Exception {
assertThat(out).contains("1 1 Total Junk");
runSample("addmarketingbudget");

// wait for 10 seconds to elapse and then run an update, and query for stale data
// wait for 15 seconds to elapse and then run an update, and query for stale data
lastUpdateDataTimeInMillis = System.currentTimeMillis();
while (System.currentTimeMillis() < lastUpdateDataTimeInMillis + 11000) {
while (System.currentTimeMillis() < lastUpdateDataTimeInMillis + 16000) {
Thread.sleep(1000);
}
runSample("update");
Expand Down

0 comments on commit 5a3c8b6

Please sign in to comment.