From 90e7e24156c5d1b1e15c4ba2b1e10e5c40d10bc1 Mon Sep 17 00:00:00 2001 From: penghui Date: Thu, 30 Apr 2020 00:29:47 +0800 Subject: [PATCH] Avoid creating partitioned topic for partition name --- .../pulsar/broker/service/BrokerService.java | 1 + .../broker/admin/TopicAutoCreationTest.java | 88 +++++++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 pulsar-broker/src/test/java/org/apache/pulsar/broker/admin/TopicAutoCreationTest.java diff --git a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java index 7f697920fe2e8..ed10e1d68fe64 100644 --- a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java +++ b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java @@ -1882,6 +1882,7 @@ public CompletableFuture fetchPartitionedTopicMetadata // If topic is already exist, creating partitioned topic is not allowed. if (metadata.partitions == 0 && !topicExists + && !topicName.isPartitioned() && pulsar.getBrokerService().isAllowAutoTopicCreation(topicName) && pulsar.getBrokerService().isDefaultTopicTypePartitioned(topicName)) { return pulsar.getBrokerService().createDefaultPartitionedTopicAsync(topicName); diff --git a/pulsar-broker/src/test/java/org/apache/pulsar/broker/admin/TopicAutoCreationTest.java b/pulsar-broker/src/test/java/org/apache/pulsar/broker/admin/TopicAutoCreationTest.java new file mode 100644 index 0000000000000..20675260fdb75 --- /dev/null +++ b/pulsar-broker/src/test/java/org/apache/pulsar/broker/admin/TopicAutoCreationTest.java @@ -0,0 +1,88 @@ +/** + * 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.admin; + +import org.apache.pulsar.client.admin.PulsarAdminException; +import org.apache.pulsar.client.api.Producer; +import org.apache.pulsar.client.api.ProducerConsumerBase; +import org.apache.pulsar.client.api.PulsarClientException; +import org.junit.Assert; +import org.testng.annotations.AfterMethod; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.Test; + +import java.util.List; +import java.util.UUID; + +public class TopicAutoCreationTest extends ProducerConsumerBase { + + @Override + @BeforeMethod + protected void setup() throws Exception { + conf.setAllowAutoTopicCreationType("partitioned"); + conf.setAllowAutoTopicCreation(true); + conf.setDefaultNumPartitions(3); + super.internalSetup(); + super.producerBaseSetup(); + } + + @Override + @AfterMethod + protected void cleanup() throws Exception { + super.internalCleanup(); + } + + @Test + public void testPartitionedTopicAutoCreation() throws PulsarAdminException, PulsarClientException { + final String namespaceName = "my-property/my-ns"; + final String topic = "persistent://" + namespaceName + "/test-partitioned-topi-auto-creation-" + + UUID.randomUUID().toString(); + + Producer producer = pulsarClient.newProducer() + .topic(topic) + .create(); + + List partitionedTopics = admin.topics().getPartitionedTopicList(namespaceName); + List topics = admin.topics().getList(namespaceName); + Assert.assertEquals(partitionedTopics.size(), 1); + Assert.assertEquals(topics.size(), 3); + + producer.close(); + for (String t : topics) { + admin.topics().delete(t); + } + + admin.topics().deletePartitionedTopic(topic); + + + final String partition = "persistent://" + namespaceName + "/test-partitioned-topi-auto-creation-partition-0"; + + producer = pulsarClient.newProducer() + .topic(partition) + .create(); + + partitionedTopics = admin.topics().getPartitionedTopicList(namespaceName); + topics = admin.topics().getList(namespaceName); + Assert.assertEquals(partitionedTopics.size(), 0); + Assert.assertEquals(topics.size(), 1); + + producer.close(); + } +}