-
Notifications
You must be signed in to change notification settings - Fork 88
feat: add support for StorageError #1391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
b746ff8
feat: add support for StorageError
stephaniewang526 2acdc53
🦉 Updates from OwlBot
gcf-owl-bot[bot] 472aae6
add license header
stephaniewang526 ab9c38f
Merge remote-tracking branch 'origin/storageError' into storageError
stephaniewang526 5e52f7a
add error parsing in doneCallback
stephaniewang526 a78a524
address feedback
stephaniewang526 bd0b2c0
add test case for onDone
stephaniewang526 2e0a6fe
Merge branch 'main' into storageError
stephaniewang526 f868333
🦉 Updates from OwlBot
gcf-owl-bot[bot] 84d97e8
Merge branch 'storageError' of https://github.com/googleapis/java-big…
gcf-owl-bot[bot] 8a2f95f
refactor code
stephaniewang526 eccee65
Merge remote-tracking branch 'origin/storageError' into storageError
stephaniewang526 2833886
lint
stephaniewang526 d321f17
🦉 Updates from OwlBot
gcf-owl-bot[bot] 89dca1b
Merge branch 'storageError' of https://github.com/googleapis/java-big…
gcf-owl-bot[bot] 436f40b
apply changes from code review
stephaniewang526 c88dad2
add integration test for onDoneCallback
stephaniewang526 4a7c96f
Merge remote-tracking branch 'origin/storageError' into storageError
stephaniewang526 1da0f7a
make error check more vigorous
stephaniewang526 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
149 changes: 149 additions & 0 deletions
149
...-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/Exceptions.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,149 @@ | ||
| /* | ||
| * Copyright 2021 Google LLC | ||
| * | ||
| * 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 | ||
| * | ||
| * https://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.google.cloud.bigquery.storage.v1; | ||
|
|
||
| import com.google.api.gax.grpc.GrpcStatusCode; | ||
| import com.google.common.collect.ImmutableMap; | ||
| import com.google.protobuf.Any; | ||
| import com.google.protobuf.InvalidProtocolBufferException; | ||
| import io.grpc.Status; | ||
| import io.grpc.Status.Code; | ||
| import java.util.regex.Matcher; | ||
| import java.util.regex.Pattern; | ||
| import javax.annotation.Nullable; | ||
|
|
||
| /** Exceptions for Storage Client Libraries. */ | ||
| public final class Exceptions { | ||
| /** Main Storage Exception. Might contain map of streams to errors for that stream. */ | ||
| public static class StorageException extends RuntimeException { | ||
|
|
||
| private final ImmutableMap<String, GrpcStatusCode> errors; | ||
| private final String streamName; | ||
|
|
||
| private StorageException() { | ||
| this(null, null, null, ImmutableMap.of()); | ||
| } | ||
|
|
||
| private StorageException( | ||
| @Nullable String message, | ||
| @Nullable Throwable cause, | ||
| @Nullable String streamName, | ||
| ImmutableMap<String, GrpcStatusCode> errors) { | ||
| super(message, cause); | ||
| this.streamName = streamName; | ||
| this.errors = errors; | ||
| } | ||
|
|
||
| public ImmutableMap<String, GrpcStatusCode> getErrors() { | ||
| return errors; | ||
| } | ||
|
|
||
| public String getStreamName() { | ||
| return streamName; | ||
| } | ||
| } | ||
|
|
||
| /** Stream has already been finalized. */ | ||
| public static final class StreamFinalizedException extends StorageException { | ||
| protected StreamFinalizedException(String name, String message, Throwable cause) { | ||
| super(message, cause, name, ImmutableMap.of()); | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * There was a schema mismatch due to bigquery table with fewer fields than the input message. | ||
| * This can be resolved by updating the table's schema with the message schema. | ||
| */ | ||
| public static final class SchemaMismatchedException extends StorageException { | ||
| protected SchemaMismatchedException(String name, String message, Throwable cause) { | ||
| super(message, cause, name, ImmutableMap.of()); | ||
| } | ||
| } | ||
|
|
||
| private static StorageError toStorageError(com.google.rpc.Status rpcStatus) { | ||
| for (Any detail : rpcStatus.getDetailsList()) { | ||
| if (detail.is(StorageError.class)) { | ||
| try { | ||
| return detail.unpack(StorageError.class); | ||
| } catch (InvalidProtocolBufferException protoException) { | ||
| throw new IllegalStateException(protoException); | ||
| } | ||
| } | ||
| } | ||
| return null; | ||
| } | ||
|
|
||
| /** | ||
| * Converts a c.g.rpc.Status into a StorageException, if possible. Examines the embedded | ||
| * StorageError, and potentially returns a {@link StreamFinalizedException} or {@link | ||
| * SchemaMismatchedException} (both derive from StorageException). If there is no StorageError, or | ||
| * the StorageError is a different error it will return NULL. | ||
| */ | ||
| @Nullable | ||
| public static StorageException toStorageException( | ||
| com.google.rpc.Status rpcStatus, Throwable exception) { | ||
| StorageError error = toStorageError(rpcStatus); | ||
| if (error == null) { | ||
| return null; | ||
| } | ||
| switch (error.getCode()) { | ||
| case STREAM_FINALIZED: | ||
| return new StreamFinalizedException(error.getEntity(), error.getErrorMessage(), exception); | ||
|
|
||
| case SCHEMA_MISMATCH_EXTRA_FIELDS: | ||
| return new SchemaMismatchedException(error.getEntity(), error.getErrorMessage(), exception); | ||
|
|
||
| default: | ||
| return null; | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * Converts a Throwable into a StorageException, if possible. Examines the embedded error message, | ||
| * and potentially returns a {@link StreamFinalizedException} or {@link SchemaMismatchedException} | ||
| * (both derive from StorageException). If there is no StorageError, or the StorageError is a | ||
| * different error it will return NULL. | ||
| */ | ||
| @Nullable | ||
| public static StorageException toStorageException(Throwable exception) { | ||
stephaniewang526 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // TODO: switch to using rpcStatus when cl/408735437 is rolled out | ||
| // com.google.rpc.Status rpcStatus = StatusProto.fromThrowable(exception); | ||
| Status grpcStatus = Status.fromThrowable(exception); | ||
| String message = exception.getMessage(); | ||
| String streamPatternString = "projects/[^/]+/datasets/[^/]+/tables/[^/]+/streams/[^/]+"; | ||
| Pattern streamPattern = Pattern.compile(streamPatternString); | ||
| if (message == null) { | ||
| return null; | ||
| } | ||
| // TODO: SWTICH TO CHECK SCHEMA_MISMATCH_EXTRA_FIELDS IN THE ERROR CODE | ||
| if (grpcStatus.getCode().equals(Code.INVALID_ARGUMENT) | ||
| && message.toLowerCase().contains("input schema has more fields than bigquery schema")) { | ||
| Matcher streamMatcher = streamPattern.matcher(message); | ||
| String entity = streamMatcher.find() ? streamMatcher.group() : "streamName unkown"; | ||
| return new SchemaMismatchedException(entity, message, exception); | ||
| } | ||
| // TODO: SWTICH TO CHECK STREAM_FINALIZED IN THE ERROR CODE | ||
| if (grpcStatus.getCode().equals(Code.INVALID_ARGUMENT) | ||
| && message.toLowerCase().contains("stream has been finalized and cannot be appended")) { | ||
| Matcher streamMatcher = streamPattern.matcher(message); | ||
| String entity = streamMatcher.find() ? streamMatcher.group() : "streamName unkown"; | ||
| return new StreamFinalizedException(entity, message, exception); | ||
| } | ||
| return null; | ||
| } | ||
|
|
||
| private Exceptions() {} | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.