This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/branch-3.2 by this push:
     new 70f6ec868cc [improve][broker] GetPartitionMetadata fail also can 
produce messages (#23050)
70f6ec868cc is described below

commit 70f6ec868cc7220a9784086af3f45889e668a117
Author: congbo <39078850+congbobo...@users.noreply.github.com>
AuthorDate: Mon Jul 22 16:43:38 2024 +0800

    [improve][broker] GetPartitionMetadata fail also can produce messages 
(#23050)
    
    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
    
    GetPartitionMetadata return MetadataError when throw MetadataStoreException
    
    (cherry picked from commit 6fa3bcfe082e6662733928aa49bee1fcce217c80)
---
 .../apache/pulsar/broker/service/ServerCnx.java    |  9 ++-
 .../pulsar/broker/zookeeper/ZKReconnectTest.java   | 87 ++++++++++++++++++++++
 2 files changed, 93 insertions(+), 3 deletions(-)

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 59a0b3deeff..c0b17a3f3b3 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
@@ -172,6 +172,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;
@@ -627,11 +628,13 @@ 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()){
+                                            if (responseCode == 
NOT_FOUND.getStatusCode()) {
                                                 error = 
ServerError.TopicNotFound;
-                                            } else if (responseCode < 
INTERNAL_SERVER_ERROR.getStatusCode()){
+                                            } else if (responseCode < 
INTERNAL_SERVER_ERROR.getStatusCode()) {
                                                 error = 
ServerError.MetadataError;
                                             }
                                         }
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();
+    }
+}

Reply via email to