chia7712 commented on code in PR #19807:
URL: https://github.com/apache/kafka/pull/19807#discussion_r2152573554


##########
server/src/main/java/org/apache/kafka/server/PermissiveControllerMutationQuota.java:
##########
@@ -0,0 +1,59 @@
+/*
+ * 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.kafka.server;
+
+import org.apache.kafka.common.metrics.QuotaViolationException;
+import org.apache.kafka.common.metrics.Sensor;
+import org.apache.kafka.common.utils.Time;
+
+import java.util.Objects;
+
+/**
+ * The PermissiveControllerMutationQuota defines a permissive quota for a 
given user/clientId pair.
+ * The quota is permissive meaning that 1) it does accept any mutations even 
if the quota is
+ * exhausted; and 2) it does throttle as soon as the quota is exhausted.
+ */
+public class PermissiveControllerMutationQuota extends 
AbstractControllerMutationQuota {
+    private final Sensor quotaSensor;
+
+    /**
+     * Creates a new PermissiveControllerMutationQuota with the specified time 
source and quota sensor.
+     *
+     * @param time the Time object used for time-based calculations and quota 
tracking
+     * @param quotaSensor the Sensor object that tracks quota usage for a 
specific user/clientId pair
+     * @throws IllegalArgumentException if time or quotaSensor is null
+     */
+    public PermissiveControllerMutationQuota(Time time, Sensor quotaSensor) {
+        super(Objects.requireNonNull(time, "time cannot be null"));

Review Comment:
   @YutaLin Could you please address this comment?



##########
server/src/main/java/org/apache/kafka/server/ClientQuotaManager.java:
##########
@@ -0,0 +1,883 @@
+/*
+ * 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.kafka.server;
+
+import org.apache.kafka.common.Cluster;
+import org.apache.kafka.common.MetricName;
+import org.apache.kafka.common.internals.Plugin;
+import org.apache.kafka.common.metrics.KafkaMetric;
+import org.apache.kafka.common.metrics.MetricConfig;
+import org.apache.kafka.common.metrics.Metrics;
+import org.apache.kafka.common.metrics.Quota;
+import org.apache.kafka.common.metrics.QuotaViolationException;
+import org.apache.kafka.common.metrics.Sensor;
+import org.apache.kafka.common.metrics.stats.Avg;
+import org.apache.kafka.common.metrics.stats.CumulativeSum;
+import org.apache.kafka.common.metrics.stats.Rate;
+import org.apache.kafka.common.security.auth.KafkaPrincipal;
+import org.apache.kafka.common.utils.Sanitizer;
+import org.apache.kafka.common.utils.Time;
+import org.apache.kafka.network.Session;
+import org.apache.kafka.server.config.ClientQuotaManagerConfig;
+import org.apache.kafka.server.quota.ClientQuotaCallback;
+import org.apache.kafka.server.quota.ClientQuotaEntity;
+import org.apache.kafka.server.quota.ClientQuotaType;
+import org.apache.kafka.server.quota.QuotaType;
+import org.apache.kafka.server.quota.QuotaUtils;
+import org.apache.kafka.server.quota.SensorAccess;
+import org.apache.kafka.server.quota.ThrottleCallback;
+import org.apache.kafka.server.quota.ThrottledChannel;
+import org.apache.kafka.server.util.ShutdownableThread;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Optional;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.DelayQueue;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.locks.ReentrantReadWriteLock;
+import java.util.function.Consumer;
+
+public class ClientQuotaManager {
+
+    static final class QuotaTypes {
+        static final int NO_QUOTAS = 0;
+        static final int CLIENT_ID_QUOTA_ENABLED = 1;
+        static final int USER_QUOTA_ENABLED = 2;
+        static final int USER_CLIENT_ID_QUOTA_ENABLED = 4;
+        static final int CUSTOM_QUOTAS = 8; // No metric update optimizations 
are used with custom quotas
+    }
+
+    private static final Logger LOG = 
LoggerFactory.getLogger(ClientQuotaManager.class);
+
+    // Purge sensors after 1 hour of inactivity
+    private static final int INACTIVE_SENSOR_EXPIRATION_TIME_SECONDS = 3600;
+    private static final String DEFAULT_NAME = "<default>";
+
+    public static final KafkaQuotaEntity DEFAULT_CLIENT_ID_QUOTA_ENTITY =
+            new KafkaQuotaEntity(null, DefaultClientIdEntity.INSTANCE);
+    public static final KafkaQuotaEntity DEFAULT_USER_QUOTA_ENTITY =
+            new KafkaQuotaEntity(DefaultUserEntity.INSTANCE, null);
+    public static final KafkaQuotaEntity DEFAULT_USER_CLIENT_ID_QUOTA_ENTITY =
+            new KafkaQuotaEntity(DefaultUserEntity.INSTANCE, 
DefaultClientIdEntity.INSTANCE);
+
+    public record UserEntity(String sanitizedUser) implements 
ClientQuotaEntity.ConfigEntity {
+
+        @Override
+        public ClientQuotaEntity.ConfigEntityType entityType() {
+            return ClientQuotaEntity.ConfigEntityType.USER;
+        }
+
+        @Override
+        public String name() {
+            return Sanitizer.desanitize(sanitizedUser);
+        }
+
+        @Override
+        public String toString() {
+            return "user " + sanitizedUser;
+        }
+    }
+
+    // Convert to record - this is a simple data holder
+    public record ClientIdEntity(String clientId) implements 
ClientQuotaEntity.ConfigEntity {
+
+        @Override
+        public ClientQuotaEntity.ConfigEntityType entityType() {
+            return ClientQuotaEntity.ConfigEntityType.CLIENT_ID;
+        }
+
+        @Override
+        public String name() {
+            return clientId;
+        }
+
+        @Override
+        public String toString() {
+            return "client-id " + clientId;
+        }
+    }
+
+    // Keep as a class-uses a singleton pattern which doesn't work well with 
records
+    public static class DefaultUserEntity implements 
ClientQuotaEntity.ConfigEntity {

Review Comment:
   any update?



-- 
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: jira-unsubscr...@kafka.apache.org

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

Reply via email to