Skip to content

Commit 636251a

Browse files
Merge branch 'main' into compute_consistency_group_clone
2 parents 11ea034 + 7070190 commit 636251a

File tree

57 files changed

+1750
-1790
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1750
-1790
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
# DEE Platform Ops (DEEPO)
5050
/errorreporting @GoogleCloudPlatform/java-samples-reviewers @yoshi-approver @GoogleCloudPlatform/cloud-samples-reviewers
5151
/monitoring @GoogleCloudPlatform/java-samples-reviewers @yoshi-approver @GoogleCloudPlatform/cloud-samples-reviewers
52-
/opencensus @GoogleCloudPlatform/java-samples-reviewers @yoshi-approver @GoogleCloudPlatform/cloud-samples-reviewers
53-
/trace @GoogleCloudPlatform/java-samples-reviewers @yoshi-approver @GoogleCloudPlatform/cloud-samples-reviewers
5452

5553
# Cloud SDK Databases & Data Analytics teams
5654
# ---* Cloud Native DB

automl/src/main/java/com/google/cloud/vision/samples/automl/ClassificationDeployModel.java

Lines changed: 0 additions & 60 deletions
This file was deleted.

automl/src/test/java/com/google/cloud/vision/samples/automl/ClassificationDeployModelIT.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,6 @@ public void tearDown() {
4545
System.setOut(null);
4646
}
4747

48-
@Test
49-
public void testClassificationDeployModelApi() {
50-
// As model deployment can take a long time, instead try to deploy a
51-
// nonexistent model and confirm that the model was not found, but other
52-
// elements of the request were valid.
53-
try {
54-
ClassificationDeployModel.classificationDeployModel(PROJECT_ID, MODEL_ID);
55-
String got = bout.toString();
56-
assertThat(got).contains("The model does not exist");
57-
} catch (IOException | ExecutionException | InterruptedException e) {
58-
assertThat(e.getMessage()).contains("The model does not exist");
59-
}
60-
}
61-
6248
@Test
6349
public void testClassificationDeployModelNodeCountApi() {
6450
// As model deployment can take a long time, instead try to deploy a

bigtable/bigtable-proxy/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ in a project your choosing. The metrics will be published under the namespace
4545
Cloud Bigtable service.
4646
* `bigtableproxy.client.gfe.duration_missing.count` Count of calls missing gfe response headers
4747
* `bigtableproxy.client.call.duration` Total duration of how long the outbound call took
48+
* `bigtableproxy.server.write_wait.duration` Total amount of time spent waiting for the downstream
49+
client to be ready for data.
4850
* `bigtableproxy.client.channel.count` Number of open channels
51+
* `bigtableproxy.client.channel_change_count` Number of channel transitions by previous and next
52+
states.
4953
* `bigtableproxy.client.call.max_outstanding_count` Maximum number of concurrent RPCs in a single
5054
minute window
5155
* `bigtableproxy.presence` Counts number of proxy processes (emit 1 per process).

bigtable/bigtable-proxy/src/main/java/com/google/cloud/bigtable/examples/proxy/channelpool/ChannelPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* A {@link ManagedChannel} that will send requests round-robin via a set of channels.
4848
*
4949
* <p>In addition to spreading requests over a set of child connections, the pool will also actively
50-
* manage the lifecycle of the channels. Currently lifecycle management is limited to pre-emptively
50+
* manage the lifecycle of the channels. Currently, lifecycle management is limited to pre-emptively
5151
* replacing channels every hour. In the future it will dynamically size the pool based on number of
5252
* outstanding requests.
5353
*

0 commit comments

Comments
 (0)