-
Notifications
You must be signed in to change notification settings - Fork 129
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
NullPointerException occurring in HttpJsonSpannerStub.batchWriteCallable() when handling an error status response. #3640
Comments
This issue can be resolved by passing a
The example parsed the
|
@rahul2393 Does Spanner support httpjson officially? @baeminbo I understand there is a potential issue in Gax, but if Spanner does not support httpjson officially, then it changes the priority as well. |
It appears that httpjson is not officially supported by Spanner library. I'm not aware of any customers using HttpJson for Spanner, so this issue has very low priority. I discovered this while reviewing gapic-generated code for various Cloud services, including GCS, Spanner, and Pub/Sub. There are no known customer issues related to this at this time. |
That's great to know, thanks! If that's the case, do you mind creating a separate issue in sdk-platform-java repo so we can discuss and prioritize without our team? I know there is a similar issue googleapis/sdk-platform-java#2237, but that issue is more focused on how to parse ErrorDetails in exceptions, this issue is more regarding how to parse Any type in httpjson responses. |
I filed googleapis/sdk-platform-java#3652. Thanks! |
I'd like to report a
NullPointerException
inHttpJsonSpannerStub
generated by gapic-generator. I understand the code is not intended for end-user use, but I'm reporting it in case others encounter similar issuesEnvironment details
Steps to reproduce
CREATE TABLE table1 (k STRING(100), v INT64) PRIMARY KEY (k)
.k
as "k1".k
as "k1". This will result in an error status response from Cloud Spanner.An exception with an appropriate error message, such as "Row [k1] in table table1 already exists," is expected. However, a NullPointerException is thrown instead.
Code example
Stack trace
The code was run with the JVM option
-Djava.util.logging.config.file=logging.properties
to enable HTTP transport debug logging. The logging.properties file is here. The output shows that parsingDebugInfo
failed becauseTypedRegistry
wasnull
in some locationThe text was updated successfully, but these errors were encountered: