-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix][broker] Avoid being stuck when closing the broker with extensib…
…le load manager (#22573)
- Loading branch information
1 parent
3b9602c
commit f411e3c
Showing
4 changed files
with
122 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 107 additions & 0 deletions
107
.../java/org/apache/pulsar/broker/loadbalance/extensions/ExtensibleLoadManagerCloseTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/* | ||
* 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.pulsar.broker.loadbalance.extensions; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.apache.pulsar.broker.PulsarService; | ||
import org.apache.pulsar.broker.ServiceConfiguration; | ||
import org.apache.pulsar.client.admin.PulsarAdmin; | ||
import org.apache.pulsar.client.api.PulsarClient; | ||
import org.apache.pulsar.common.policies.data.ClusterData; | ||
import org.apache.pulsar.common.policies.data.TenantInfo; | ||
import org.apache.pulsar.zookeeper.LocalBookkeeperEnsemble; | ||
import org.testng.Assert; | ||
import org.testng.annotations.AfterClass; | ||
import org.testng.annotations.BeforeClass; | ||
import org.testng.annotations.Test; | ||
|
||
@Slf4j | ||
public class ExtensibleLoadManagerCloseTest { | ||
|
||
private static final String clusterName = "test"; | ||
private final LocalBookkeeperEnsemble bk = new LocalBookkeeperEnsemble(1, 0, () -> 0); | ||
private final List<PulsarService> brokers = new ArrayList<>(); | ||
private PulsarAdmin admin; | ||
|
||
@BeforeClass(alwaysRun = true) | ||
public void setup() throws Exception { | ||
bk.start(); | ||
for (int i = 0; i < 3; i++) { | ||
final var broker = new PulsarService(brokerConfig()); | ||
broker.start(); | ||
brokers.add(broker); | ||
} | ||
admin = brokers.get(0).getAdminClient(); | ||
admin.clusters().createCluster(clusterName, ClusterData.builder().build()); | ||
admin.tenants().createTenant("public", TenantInfo.builder() | ||
.allowedClusters(Collections.singleton(clusterName)).build()); | ||
admin.namespaces().createNamespace("public/default"); | ||
} | ||
|
||
|
||
@AfterClass(alwaysRun = true, timeOut = 30000) | ||
public void cleanup() throws Exception { | ||
bk.stop(); | ||
} | ||
|
||
private ServiceConfiguration brokerConfig() { | ||
final var config = new ServiceConfiguration(); | ||
config.setClusterName(clusterName); | ||
config.setAdvertisedAddress("localhost"); | ||
config.setBrokerServicePort(Optional.of(0)); | ||
config.setWebServicePort(Optional.of(0)); | ||
config.setMetadataStoreUrl("zk:127.0.0.1:" + bk.getZookeeperPort()); | ||
config.setManagedLedgerDefaultWriteQuorum(1); | ||
config.setManagedLedgerDefaultAckQuorum(1); | ||
config.setManagedLedgerDefaultEnsembleSize(1); | ||
config.setDefaultNumberOfNamespaceBundles(16); | ||
config.setLoadBalancerAutoBundleSplitEnabled(false); | ||
config.setLoadManagerClassName(ExtensibleLoadManagerImpl.class.getName()); | ||
config.setLoadBalancerDebugModeEnabled(true); | ||
config.setBrokerShutdownTimeoutMs(100); | ||
return config; | ||
} | ||
|
||
|
||
@Test | ||
public void testCloseAfterLoadingBundles() throws Exception { | ||
final var topic = "test"; | ||
admin.topics().createPartitionedTopic(topic, 20); | ||
admin.lookups().lookupPartitionedTopic(topic); | ||
final var client = PulsarClient.builder().serviceUrl(brokers.get(0).getBrokerServiceUrl()).build(); | ||
final var producer = client.newProducer().topic(topic).create(); | ||
producer.close(); | ||
client.close(); | ||
|
||
final var closeTimeMsList = new ArrayList<Long>(); | ||
for (var broker : brokers) { | ||
final var startTimeMs = System.currentTimeMillis(); | ||
broker.close(); | ||
closeTimeMsList.add(System.currentTimeMillis() - startTimeMs); | ||
} | ||
log.info("Brokers close time: {}", closeTimeMsList); | ||
for (var closeTimeMs : closeTimeMsList) { | ||
Assert.assertTrue(closeTimeMs < 5000L); | ||
} | ||
} | ||
} |