nipunbatra8 commented on code in PR #14964:
URL: https://github.com/apache/lucene/pull/14964#discussion_r2308567962


##########
lucene/sandbox/src/java/org/apache/lucene/sandbox/index/BandwidthCappedMergeScheduler.java:
##########
@@ -0,0 +1,185 @@
+/*
+ * 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.lucene.sandbox.index;
+
+import java.io.IOException;
+import org.apache.lucene.index.ConcurrentMergeScheduler;
+import org.apache.lucene.index.MergePolicy.OneMerge;
+import org.apache.lucene.index.MergeScheduler;
+
+/**
+ * A {@link MergeScheduler} that caps total IO write bandwidth across all 
running merges to a
+ * specified max MB/sec bandwidth.
+ *
+ * @lucene.experimental
+ */
+public class BandwidthCappedMergeScheduler extends ConcurrentMergeScheduler {
+
+  /** Global bandwidth cap in MB/s. Mutable so that updates are applied live. 
*/
+  private double bandwidthMbPerSec;
+
+  /** Create a scheduler with a required global bandwidth cap in MB/s. */
+  public BandwidthCappedMergeScheduler(double bandwidthMbPerSec) {
+    if (!(bandwidthMbPerSec > 0.0)
+        || Double.isNaN(bandwidthMbPerSec)
+        || Double.isInfinite(bandwidthMbPerSec)) {
+      throw new IllegalArgumentException("bandwidthMbPerSec must be a finite 
positive value");
+    }
+    this.bandwidthMbPerSec = bandwidthMbPerSec;
+  }
+
+  /**
+   * Auto IO throttling is managed by this scheduler's bandwidth cap. Enabling 
parent CMS IO
+   * throttling is ignored.
+   */
+  @Override
+  public synchronized void enableAutoIOThrottle() {
+    if (verbose()) {
+      message("Ignoring enableAutoIOThrottle; using bandwidth cap instead");
+    }
+    // Intentionally no-op
+  }
+
+  /** Ensure auto IO throttling remains disabled. */
+  @Override
+  public synchronized void disableAutoIOThrottle() {
+    // Make sure parent state is disabled if it was somehow enabled earlier
+    super.disableAutoIOThrottle();
+  }
+
+  /** Always returns false since CMS auto IO throttling is disabled for this 
scheduler. */
+  @Override
+  public synchronized boolean getAutoIOThrottle() {
+    return false;
+  }
+
+  /** Get the global bandwidth cap in MB/s */
+  public double getMaxMbPerSec() {
+    return bandwidthMbPerSec;
+  }
+
+  /**
+   * Set the global bandwidth cap in MB/s.
+   *
+   * <p>This setting is live: merges that are already running will be adjusted 
to the new per-merge
+   * rate derived from this cap, without requiring a restart.
+   *
+   * @param bandwidthMbPerSec the new global bandwidth cap in MB/s; must be 
finite and > 0
+   */
+  public synchronized void setMaxMbPerSec(double bandwidthMbPerSec) {
+    if (!(bandwidthMbPerSec > 0.0)

Review Comment:
   Good idea, makes it more readable too



-- 
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...@lucene.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to