-
Notifications
You must be signed in to change notification settings - Fork 136
feat: TPC support #4055
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
feat: TPC support #4055
Conversation
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerCloudMonitoringExporter.java
Outdated
Show resolved
Hide resolved
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java
Outdated
Show resolved
Hide resolved
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java
Outdated
Show resolved
Hide resolved
...le-cloud-spanner/src/main/java/com/google/cloud/spanner/connection/ConnectionProperties.java
Outdated
Show resolved
Hide resolved
...e-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/ConnectionOptionsTest.java
Outdated
Show resolved
Hide resolved
486b063 to
a160c95
Compare
810aaec to
3656932
Compare
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerCloudMonitoringExporter.java
Outdated
Show resolved
Hide resolved
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java
Outdated
Show resolved
Hide resolved
google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java
Outdated
Show resolved
Hide resolved
1ed1feb to
b3ff22d
Compare
b3ff22d to
1c1756f
Compare
| if (monitoringHost != null) { | ||
| settingsBuilder.setEndpoint(monitoringHost); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If monitoring host is marked as deprecated, we could remove this and have an alternate option for setting a system property to set monitoring host for testing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Deprecated annotation means it will not remove the functionality. That's why I intend to keep this. Will remove it as part of removal.
Description:
This PR adds the support for configuring Partner Universe(TPU) in Java Spanner Client Library.
setMonitoringHostmethod which is no longer needed. TPC is not live yet so this functionality was not used.