mutianf commented on code in PR #17823:
URL: https://github.com/apache/beam/pull/17823#discussion_r917007399


##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIO.java:
##########
@@ -1431,4 +1484,30 @@ static void validateTableExists(BigtableConfig config, 
PipelineOptions options)
       }
     }
   }
+
+  interface ResourceStatsSupplier {
+    ResourceLimiterStats getStats();
+  }
+
+  private static class ResourceStatsSupplierImpl implements 
ResourceStatsSupplier, Serializable {
+
+    private final BigtableConfig bigtableConfig;
+
+    ResourceStatsSupplierImpl(BigtableConfig bigtableConfig) {
+      this.bigtableConfig = bigtableConfig;
+    }
+
+    @Override
+    public ResourceLimiterStats getStats() {

Review Comment:
   does this need to be public?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to