This is an automated email from the ASF dual-hosted git repository.
technoboy pushed a commit to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/branch-3.3 by this push:
new 8be87b76eaf [improve][broker] GetPartitionMetadata fail also can
produce messages (#23050)
8be87b76eaf is described below
commit 8be87b76eaf2f71cf4d42a093b9c6503c98a974c
Author: congbo <[email protected]>
AuthorDate: Mon Jul 22 16:43:38 2024 +0800
[improve][broker] GetPartitionMetadata fail also can produce messages
(#23050)
### Motivation
GetPartitionMetadata fail also can produce messages
- 'autoUpdatePartitionsInterval' will get partition metadata and will
regularly detect partition changes
- if GetPartitionMetadata will return ServiceNotReady, client receive
ServiceNotReady will close cnx
- if close the current cnx, all producers and consumers witch use this cnx
will close and reconnect
(https://github.com/apache/pulsar/blob/5c6602cbb3660a696bf960f2847aac1a2ae037d2/pulsar-client/src/main/java/org/apache/pulsar/client/impl/ClientCnx.java#L323-L345)
- this will influence a lot of producers and consumers and if current time
the zk not available and bundle cache not exist the topic's bundle metadata,
the client can't send messages to broker because the producer lookup will fail
### Modifications
GetPartitionMetadata return MetadataError when throw MetadataStoreException
---
.../apache/pulsar/broker/service/ServerCnx.java | 5 +-
.../pulsar/broker/zookeeper/ZKReconnectTest.java | 87 ++++++++++++++++++++++
2 files changed, 91 insertions(+), 1 deletion(-)
diff --git
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
index 401f44586fc..1160f7b7002 100644
---
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
+++
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
@@ -175,6 +175,7 @@ import
org.apache.pulsar.common.util.collections.ConcurrentLongHashMap;
import org.apache.pulsar.common.util.netty.NettyChannelUtil;
import org.apache.pulsar.common.util.netty.NettyFutureUtil;
import org.apache.pulsar.functions.utils.Exceptions;
+import org.apache.pulsar.metadata.api.MetadataStoreException;
import org.apache.pulsar.transaction.coordinator.TransactionCoordinatorID;
import
org.apache.pulsar.transaction.coordinator.exceptions.CoordinatorException;
import
org.apache.pulsar.transaction.coordinator.impl.MLTransactionMetadataStore;
@@ -662,7 +663,9 @@ public class ServerCnx extends PulsarHandler implements
TransportCnx {
log.warn("Failed to get
Partitioned Metadata [{}] {}: {}", remoteAddress,
topicName,
ex.getMessage(), ex);
ServerError error =
ServerError.ServiceNotReady;
- if (ex instanceof RestException
restException){
+ if (ex instanceof
MetadataStoreException) {
+ error =
ServerError.MetadataError;
+ } else if (ex instanceof
RestException restException){
int responseCode =
restException.getResponse().getStatus();
if (responseCode ==
NOT_FOUND.getStatusCode()){
error =
ServerError.TopicNotFound;
diff --git
a/pulsar-broker/src/test/java/org/apache/pulsar/broker/zookeeper/ZKReconnectTest.java
b/pulsar-broker/src/test/java/org/apache/pulsar/broker/zookeeper/ZKReconnectTest.java
new file mode 100644
index 00000000000..7b9e4beec6b
--- /dev/null
+++
b/pulsar-broker/src/test/java/org/apache/pulsar/broker/zookeeper/ZKReconnectTest.java
@@ -0,0 +1,87 @@
+/*
+ * 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.zookeeper;
+
+import com.google.common.collect.Sets;
+import org.apache.pulsar.broker.MetadataSessionExpiredPolicy;
+import org.apache.pulsar.broker.auth.MockedPulsarServiceBaseTest;
+import org.apache.pulsar.client.api.Producer;
+import org.apache.pulsar.client.api.PulsarClient;
+import org.apache.pulsar.common.policies.data.ClusterData;
+import org.apache.pulsar.common.policies.data.TenantInfoImpl;
+import org.apache.zookeeper.KeeperException;
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+import java.util.concurrent.TimeUnit;
+
+
+@Test
+public class ZKReconnectTest extends MockedPulsarServiceBaseTest {
+
+ @BeforeMethod(alwaysRun = true)
+ @Override
+ protected void setup() throws Exception {
+
this.conf.setZookeeperSessionExpiredPolicy(MetadataSessionExpiredPolicy.reconnect);
+ this.internalSetup();
+ admin.clusters().createCluster("test",
ClusterData.builder().serviceUrl(pulsar.getWebServiceAddress()).build());
+ admin.tenants().createTenant("public",
+ new TenantInfoImpl(Sets.newHashSet("appid1", "appid2"),
Sets.newHashSet("test")));
+ admin.namespaces().createNamespace("public/default");
+ admin.namespaces().setNamespaceReplicationClusters("public/default",
Sets.newHashSet("test"));
+ }
+
+ @Test
+ public void testGetPartitionMetadataFailAlsoCanProduceMessage() throws
Exception {
+
+ pulsarClient = PulsarClient.builder().
+ serviceUrl(pulsar.getBrokerServiceUrl())
+ .build();
+
+ String topic = "testGetPartitionMetadataFailAlsoCanProduceMessage";
+ admin.topics().createPartitionedTopic(topic, 5);
+ Producer<byte[]> producer = pulsarClient.newProducer()
+ .autoUpdatePartitionsInterval(1,
TimeUnit.SECONDS).topic(topic).create();
+
+ this.mockZooKeeper.setAlwaysFail(KeeperException.Code.SESSIONEXPIRED);
+
+ // clear cache
+
pulsar.getPulsarResources().getNamespaceResources().getPartitionedTopicResources()
+
.getCache().delete("/admin/partitioned-topics/public/default/persistent"
+ +
"/testGetPartitionMetadataFailAlsoCanProduceMessage");
+
pulsar.getNamespaceService().getOwnershipCache().invalidateLocalOwnerCache();
+
+ // autoUpdatePartitions 1 second
+ TimeUnit.SECONDS.sleep(3);
+
+ // also can send message
+ producer.send("test".getBytes());
+ this.mockZooKeeper.unsetAlwaysFail();
+ producer.send("test".getBytes());
+ producer.close();
+ }
+
+
+ @AfterMethod(alwaysRun = true)
+ @Override
+ protected void cleanup() throws Exception {
+ this.internalCleanup();
+ }
+}