ahuang98 commented on code in PR #19784: URL: https://github.com/apache/kafka/pull/19784#discussion_r2102871908
########## raft/src/main/java/org/apache/kafka/raft/RaftUtil.java: ########## @@ -762,4 +763,18 @@ static boolean hasValidTopicPartition(DescribeQuorumRequestData data, TopicParti data.topics().get(0).partitions().size() == 1 && data.topics().get(0).partitions().get(0).partitionIndex() == topicPartition.partition(); } + + static int binaryExponentialElectionBackoffMs(int backoffMaxMs, int backoffBaseMs, int retries, Random random) { + if (retries <= 0) { + throw new IllegalArgumentException("Retries " + retries + " should be larger than zero"); + } + // Takes minimum of the following: + // 1. exponential backoff calculation (maxes out at 102.4 seconds) Review Comment: nit: `(maxes out at 102.5 seconds with backoffBaseMs of 50ms)` ########## raft/src/test/java/org/apache/kafka/raft/RaftUtilTest.java: ########## @@ -0,0 +1,86 @@ +/* + * 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.raft; + +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.mockito.ArgumentCaptor; +import org.mockito.Mockito; + +import java.util.List; +import java.util.Random; + +import static org.apache.kafka.raft.KafkaRaftClient.RETRY_BACKOFF_BASE_MS; +import static org.apache.kafka.raft.RaftUtil.binaryExponentialElectionBackoffMs; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class RaftUtilTest { + @ParameterizedTest + @ValueSource(ints = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}) + public void testExponentialBoundOfExponentialElectionBackoffMs(int retries) { + Random mockedRandom = Mockito.mock(Random.class); + int electionBackoffMaxMs = 1000; + + // test the bound of the method's first call to random.nextInt + binaryExponentialElectionBackoffMs(electionBackoffMaxMs, RETRY_BACKOFF_BASE_MS, retries, mockedRandom); + ArgumentCaptor<Integer> nextIntCaptor = ArgumentCaptor.forClass(Integer.class); + Mockito.verify(mockedRandom, Mockito.times(2)).nextInt(nextIntCaptor.capture()); + List<Integer> allCapturedBounds = nextIntCaptor.getAllValues(); + int actualBound = allCapturedBounds.get(0); + int expectedBound = (int) (2 * Math.pow(2, retries - 1)); + // after the 10th retry, the bound of the first call to random.nextInt will remain capped to + // (RETRY_BACKOFF_BASE_MS * 2 << 10)=2048 to prevent overflow + if (retries > 10) { + expectedBound = 2048; + } + assertEquals(expectedBound, actualBound, "Incorrect bound for retries=" + retries); + } + + // test that the return value of the method is capped to QUORUM_ELECTION_BACKOFF_MAX_MS_CONFIG + jitter + // any exponential >= (1000 + jitter)/(RETRY_BACKOFF_BASE_MS)=21 will result in this cap Review Comment: nit: `any exponential >= (1000 + jitter)/(RETRY_BACKOFF_BASE_MS) - 1 =20 will result in this cap` -- 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