Labels
api: spannerIssues related to the Spanner API. priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release. type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.
Comments
Found in PR #2563 |
@olavloite, would you please be able to take a look? Thanks very much. |
I've seen similar flakes in other test cases as well, and the team developing the CPP client for Spanner is also running into a similar issue. The problem is that the I'll have a look and see if we can try to fix this in the client library by using approximately the following logic:
|
olavloite added a commit to googleapis/java-spanner that referenced this issue Apr 7, 2020
RPCs returning a long-running operation, such as CreateDatabase, CreateBackup and RestoreDatabase, are non-idempotent and cannot be retried automatically by gax. This means that these RPCs sometimes fail with transient errors, such as UNAVAILABLE or DEADLINE_EXCEEDED. This change introduces automatic retries of these RPCs using the following logic: 1. Execute the RPC and wait for the operation to be returned. 2. If a transient error occurs while waiting for the operation, the client library queries the backend for the corresponding operation. If the operation is found, the resumes the tracking of the existing operation and returns that to the user. 3. If no corresponding operation is found in step 2, the client library retries the RPC from step 1. Fixes GoogleCloudPlatform/java-docs-samples#2571
olavloite added a commit to googleapis/java-spanner that referenced this issue Apr 10, 2020
RPCs returning a long-running operation, such as CreateDatabase, CreateBackup and RestoreDatabase, are non-idempotent and cannot be retried automatically by gax. This means that these RPCs sometimes fail with transient errors, such as UNAVAILABLE or DEADLINE_EXCEEDED. This change introduces automatic retries of these RPCs using the following logic: 1. Execute the RPC and wait for the operation to be returned. 2. If a transient error occurs while waiting for the operation, the client library queries the backend for the corresponding operation. If the operation is found, the resumes the tracking of the existing operation and returns that to the user. 3. If no corresponding operation is found in step 2, the client library retries the RPC from step 1. Fixes GoogleCloudPlatform/java-docs-samples#2571
olavloite added a commit to googleapis/java-spanner that referenced this issue Apr 13, 2020
RPCs returning a long-running operation, such as CreateDatabase, CreateBackup and RestoreDatabase, are non-idempotent and cannot be retried automatically by gax. This means that these RPCs sometimes fail with transient errors, such as UNAVAILABLE or DEADLINE_EXCEEDED. This change introduces automatic retries of these RPCs using the following logic: 1. Execute the RPC and wait for the operation to be returned. 2. If a transient error occurs while waiting for the operation, the client library queries the backend for the corresponding operation. If the operation is found, the resumes the tracking of the existing operation and returns that to the user. 3. If no corresponding operation is found in step 2, the client library retries the RPC from step 1. Fixes GoogleCloudPlatform/java-docs-samples#2571
Sign up for free to join this conversation on . Already have an account? Sign in to comment
api: spannerIssues related to the Spanner API. priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release. type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.
The text was updated successfully, but these errors were encountered: