curcur commented on code in PR #17229:
URL: https://github.com/apache/flink/pull/17229#discussion_r952426157


##########
flink-dstl/flink-dstl-dfs/src/main/java/org/apache/flink/changelog/fs/UploadThrottle.java:
##########
@@ -0,0 +1,91 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
+ *
+ *    http://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 org.apache.flink.changelog.fs;
+
+import org.apache.flink.runtime.io.AvailabilityProvider;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import javax.annotation.concurrent.GuardedBy;
+import javax.annotation.concurrent.ThreadSafe;
+
+import java.util.concurrent.CompletableFuture;
+
+/** Helper class to throttle upload requests when the in-flight data size 
limit is exceeded. */
+@ThreadSafe
+class UploadThrottle implements AvailabilityProvider {
+    private static final Logger LOG = 
LoggerFactory.getLogger(UploadThrottle.class);
+
+    private final Object lock = new Object();
+    private final long maxBytesInFlight;
+
+    @GuardedBy("lock")
+    private long inFlightBytesCounter = 0;
+
+    @GuardedBy("lock")
+    private CompletableFuture<?> availabilityFuture = 
AvailabilityProvider.AVAILABLE;
+
+    UploadThrottle(long maxBytesInFlight) {
+        this.maxBytesInFlight = maxBytesInFlight;
+    }
+
+    /**
+     * Seize <b>bytes</b> capacity, waiting if needed. Called by the Task 
thread.
+     *
+     * @throws InterruptedException
+     */
+    public void seizeCapacity(long bytes) throws InterruptedException {
+        synchronized (lock) {
+            while (!hasCapacity()) {
+                LOG.info("In flight data size threshold exceeded: {}", 
maxBytesInFlight);
+                lock.wait();
+            }

Review Comment:
   here `waiting` means blocking-waiting.
   - blocking waiting is reported as busy
   - non-blocking waiting is reported ?? (follow-up)



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to