All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.streamnative.pulsar.handlers.kop.utils.MetadataUtils Maven / Gradle / Ivy

There is a newer version: 3.3.1.5
Show newest version
/**
 * Licensed 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 io.streamnative.pulsar.handlers.kop.utils;

import com.google.common.collect.Sets;
import io.streamnative.pulsar.handlers.kop.KafkaServiceConfiguration;
import io.streamnative.pulsar.handlers.kop.format.EntryFormatterFactory;
import io.streamnative.pulsar.handlers.kop.storage.PartitionLog;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
import lombok.extern.slf4j.Slf4j;
import org.apache.kafka.common.internals.Topic;
import org.apache.pulsar.client.admin.Clusters;
import org.apache.pulsar.client.admin.Namespaces;
import org.apache.pulsar.client.admin.PulsarAdmin;
import org.apache.pulsar.client.admin.PulsarAdminException;
import org.apache.pulsar.client.admin.PulsarAdminException.ConflictException;
import org.apache.pulsar.client.admin.Tenants;
import org.apache.pulsar.common.naming.TopicName;
import org.apache.pulsar.common.policies.data.ClusterData;
import org.apache.pulsar.common.policies.data.RetentionPolicies;
import org.apache.pulsar.common.policies.data.TenantInfo;

/**
 * Utils for KoP Metadata.
 */
@Slf4j
public class MetadataUtils {
    // trigger compaction when the offset backlog reaches 100MB
    public static final int MAX_COMPACTION_THRESHOLD = 100 * 1024 * 1024;

    public static String constructOffsetsTopicBaseName(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaMetadataNamespace()
                + "/" + Topic.GROUP_METADATA_TOPIC_NAME;
    }

    public static String constructTxnLogTopicBaseName(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaMetadataNamespace()
                + "/" + Topic.TRANSACTION_STATE_TOPIC_NAME;
    }

    public static String constructTxProducerStateTopicBaseName(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaMetadataNamespace()
                + "/__transaction_producer_state";
    }

    public static String constructTxnProducerIdTopicBaseName(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaMetadataNamespace()
                + "/__transaction_producerid_generator";
    }

    public static String constructSchemaRegistryTopicName(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKopSchemaRegistryNamespace()
                + "/" + conf.getKopSchemaRegistryTopicName();
    }

    public static String constructMetadataNamespace(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaMetadataNamespace();
    }

    public static String constructProducerIdTopicNamespace(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaMetadataNamespace();
    }

    public static String constructUserTopicsNamespace(String tenant, KafkaServiceConfiguration conf) {
        return tenant + "/" + conf.getKafkaNamespace();
    }

    public static void createOffsetMetadataIfMissing(String tenant, PulsarAdmin pulsarAdmin,
                                                     ClusterData clusterData,
                                                     KafkaServiceConfiguration conf) {
        KopTopic kopTopic = new KopTopic(constructOffsetsTopicBaseName(tenant, conf),
                constructMetadataNamespace(tenant, conf));
        createKafkaMetadataIfMissing(tenant, conf.getKafkaMetadataNamespace(), pulsarAdmin, clusterData, conf, kopTopic,
                conf.getOffsetsTopicNumPartitions(), false);
    }

    public static void createTxnMetadataIfMissing(String tenant,
                                                  PulsarAdmin pulsarAdmin,
                                                  ClusterData clusterData,
                                                  KafkaServiceConfiguration conf) {
        KopTopic kopTopic = new KopTopic(constructTxnLogTopicBaseName(tenant, conf),
                constructMetadataNamespace(tenant, conf));
        createKafkaMetadataIfMissing(tenant, conf.getKafkaMetadataNamespace(), pulsarAdmin, clusterData, conf, kopTopic,
                conf.getKafkaTxnLogTopicNumPartitions(), false);
        KopTopic kopTopicProducerState = new KopTopic(constructTxProducerStateTopicBaseName(tenant, conf),
                constructMetadataNamespace(tenant, conf));
        createKafkaMetadataIfMissing(tenant, conf.getKafkaMetadataNamespace(), pulsarAdmin, clusterData, conf,
                kopTopicProducerState, conf.getKafkaTxnProducerStateTopicNumPartitions(), false);
        if (conf.isKafkaTransactionProducerIdsStoredOnPulsar()) {
            KopTopic producerIdKopTopic = new KopTopic(constructTxnProducerIdTopicBaseName(tenant, conf),
                    constructProducerIdTopicNamespace(tenant, conf));
            createKafkaMetadataIfMissing(tenant, conf.getKafkaMetadataNamespace(),
                    pulsarAdmin, clusterData, conf, producerIdKopTopic,
                    conf.getKafkaTxnLogTopicNumPartitions(), true);
        }
    }

    /**
     * This method creates the Kafka metadata tenant and namespace if they are not currently present.
     * 
    *
  • If the cluster does not exist this method will throw a PulsarServerException.NotFoundException
  • *
  • If the tenant does not exist it will be created
  • *
  • If the tenant exists but the allowedClusters list does not include the cluster this method will * add the cluster to the allowedClusters list
  • *
  • If the namespace does not exist it will be created
  • *
  • If the namespace exists but the replicationClusters list does not include the cluster this method * will add the cluster to the replicationClusters list
  • *
  • If the offset topic does not exist it will be created
  • *
  • If the offset topic exists but some partitions are missing, the missing partitions will be created
  • *
*/ private static void createKafkaMetadataIfMissing(String tenant, String namespace, PulsarAdmin pulsarAdmin, ClusterData clusterData, KafkaServiceConfiguration conf, KopTopic kopTopic, int partitionNum, boolean infiniteRetention) { if (!conf.isKafkaManageSystemNamespaces()) { log.info("Skipping initialization of topic {} for tenant {}", kopTopic.getFullName(), tenant); return; } log.info("Try create metadata if missing namespace: {}/{}, topic: {}, numPartitions: {}" + ", infiniteRetention: {}", tenant, namespace, kopTopic.getFullName(), partitionNum, infiniteRetention); String kafkaMetadataNamespace = tenant + "/" + namespace; String cluster = conf.getClusterName(); boolean clusterExists = false; boolean tenantExists = false; boolean namespaceExists = false; boolean offsetsTopicExists = false; try { Clusters clusters = pulsarAdmin.clusters(); if (!clusters.getClusters().contains(cluster)) { try { pulsarAdmin.clusters().createCluster(cluster, clusterData); } catch (PulsarAdminException e) { if (e instanceof ConflictException) { log.info("Attempted to create cluster {} however it was created concurrently.", cluster); } else { // Re-throw all other exceptions throw e; } } } else { ClusterData configuredClusterData = clusters.getCluster(cluster); log.info("Cluster {} found: {}", cluster, configuredClusterData); } clusterExists = true; // Check if the metadata tenant exists and create it if not Tenants tenants = pulsarAdmin.tenants(); createTenantIfMissing(tenant, conf, cluster, tenants); tenantExists = true; // Check if the metadata namespace exists and create it if not Namespaces namespaces = pulsarAdmin.namespaces(); createNamespaceIfMissing(tenant, conf, cluster, kafkaMetadataNamespace, namespaces, infiniteRetention, true); namespaceExists = true; // Check if the offsets topic exists and create it if not createTopicIfNotExist(pulsarAdmin, kopTopic.getFullName(), partitionNum); offsetsTopicExists = true; } catch (PulsarAdminException e) { if (e instanceof ConflictException) { log.info("Resources concurrent creating and cause e: ", e); return; } log.error("Failed to initialize Kafka Metadata {}: {}", kafkaMetadataNamespace, e.getMessage()); } finally { log.info("Current state of kafka metadata, cluster: {} exists: {}, tenant: {} exists: {}," + " namespace: {} exists: {}, topic: {} exists: {}", cluster, clusterExists, tenant, tenantExists, kafkaMetadataNamespace, namespaceExists, kopTopic.getOriginalName(), offsetsTopicExists); } } private static void createTenantIfMissing(String tenant, KafkaServiceConfiguration conf, String cluster, Tenants tenants) throws PulsarAdminException { if (!tenants.getTenants().contains(tenant)) { log.info("Tenant: {} does not exist, creating it ...", tenant); tenants.createTenant(tenant, TenantInfo.builder() .adminRoles(conf.getSuperUserRoles()) .allowedClusters(Collections.singleton(cluster)) .build()); } else { TenantInfo kafkaMetadataTenantInfo = tenants.getTenantInfo(tenant); Set allowedClusters = kafkaMetadataTenantInfo.getAllowedClusters(); if (!allowedClusters.contains(cluster)) { log.info("Tenant: {} exists but cluster: {} is not in the allowedClusters list, updating it ...", tenant, cluster); allowedClusters.add(cluster); tenants.updateTenant(tenant, kafkaMetadataTenantInfo); } } } private static void createNamespaceIfMissing(String tenant, KafkaServiceConfiguration conf, String cluster, String kafkaNamespace, Namespaces namespaces, boolean infiniteRetention, boolean isMetadataNamespace) throws PulsarAdminException { if (!namespaces.getNamespaces(tenant).contains(kafkaNamespace)) { log.info("Namespaces: {} does not exist in tenant: {}, creating it ...", kafkaNamespace, tenant); Set replicationClusters = Sets.newHashSet(cluster); namespaces.createNamespace(kafkaNamespace, replicationClusters); namespaces.setNamespaceReplicationClusters(kafkaNamespace, replicationClusters); // set namespace config only when offset metadata namespace first create if (isMetadataNamespace) { if (infiniteRetention) { log.info("Namespaces: {}, setting infinite retention", kafkaNamespace, tenant); namespaces.setRetention(kafkaNamespace, new RetentionPolicies(-1, -1) ); } else { namespaces.setRetention(kafkaNamespace, new RetentionPolicies( (int) conf.getOffsetsRetentionMinutes(), conf.getSystemTopicRetentionSizeInMB()) ); namespaces.setNamespaceMessageTTL(kafkaNamespace, conf.getOffsetsMessageTTL()); } namespaces.setCompactionThreshold(kafkaNamespace, MAX_COMPACTION_THRESHOLD); } } else { List replicationClusters = namespaces.getNamespaceReplicationClusters(kafkaNamespace); if (!replicationClusters.contains(cluster)) { log.info("Namespace: {} exists but cluster: {} is not in the replicationClusters list," + "updating it ...", kafkaNamespace, cluster); Set newReplicationClusters = Sets.newHashSet(replicationClusters); newReplicationClusters.add(cluster); namespaces.setNamespaceReplicationClusters(kafkaNamespace, newReplicationClusters); } } } /** * This method creates the Kafka tenant and namespace if they are not currently present. *
    *
  • If the cluster does not exist this method will throw a PulsarServerException.NotFoundException
  • *
  • If the tenant does not exist it will be created
  • *
  • If the tenant exists but the allowedClusters list does not include the cluster this method will * add the cluster to the allowedClusters list
  • *
  • If the namespace does not exist it will be created
  • *
  • If the namespace exists but the replicationClusters list does not include the cluster this method * will add the cluster to the replicationClusters list
  • *
  • If the offset topic does not exist it will be created
  • *
  • If the offset topic exists but some partitions are missing, the missing partitions will be created
  • *
*/ public static void createKafkaNamespaceIfMissing(PulsarAdmin pulsarAdmin, ClusterData clusterData, KafkaServiceConfiguration conf) throws PulsarAdminException { String cluster = conf.getClusterName(); String tenant = conf.getKafkaTenant(); String kafkaNamespace = constructUserTopicsNamespace(tenant, conf); boolean clusterExists = false; boolean tenantExists = false; boolean namespaceExists = false; try { Clusters clusters = pulsarAdmin.clusters(); if (!clusters.getClusters().contains(cluster)) { try { pulsarAdmin.clusters().createCluster(cluster, clusterData); } catch (PulsarAdminException e) { if (e instanceof ConflictException) { log.info("Attempted to create cluster {} however it was created concurrently.", cluster); } else { // Re-throw all other exceptions throw e; } } } else { ClusterData configuredClusterData = clusters.getCluster(cluster); log.info("Cluster {} found: {}", cluster, configuredClusterData); } clusterExists = true; // Check if the kafka tenant exists and create it if not Tenants tenants = pulsarAdmin.tenants(); createTenantIfMissing(tenant, conf, cluster, tenants); tenantExists = true; Namespaces namespaces = pulsarAdmin.namespaces(); // Check if the kafka namespace exists and create it if not createNamespaceIfMissing(tenant, conf, cluster, kafkaNamespace, namespaces, false, false); namespaceExists = true; } catch (PulsarAdminException e) { if (e instanceof ConflictException) { log.info("Resources concurrent creating and cause e: ", e); return; } log.error("Failed to successfully initialize Kafka Metadata {}", kafkaNamespace, e); throw e; } finally { log.info("Current state of kafka metadata, cluster: {} exists: {}, tenant: {} exists: {}," + " namespace: {} exists: {}", cluster, clusterExists, tenant, tenantExists, kafkaNamespace, namespaceExists); } } private static void createTopicIfNotExist(final PulsarAdmin admin, final String topic, final int numPartitions) throws PulsarAdminException { Map properties = Map.of( PartitionLog.KAFKA_ENTRY_FORMATTER_PROPERTY_NAME, EntryFormatterFactory.EntryFormat.PULSAR.name()); try { admin.topics().getPartitionedTopicMetadata(topic); } catch (PulsarAdminException.NotFoundException e) { if (numPartitions > 0) { log.info("Creating partitioned topic {} (with {} partitions) if it does not exist", topic, numPartitions); admin.topics().createPartitionedTopic(topic, numPartitions); } else { log.info("Creating non-partitioned topic {} if it does not exist", topic); admin.topics().createNonPartitionedTopic(topic, properties); } } } public static void createSchemaRegistryMetadataIfMissing(String tenant, PulsarAdmin pulsarAdmin, ClusterData clusterData, KafkaServiceConfiguration conf) { KopTopic kopTopic = new KopTopic(constructSchemaRegistryTopicName(tenant, conf), constructMetadataNamespace(tenant, conf)); createKafkaMetadataIfMissing(tenant, conf.getKopSchemaRegistryNamespace(), pulsarAdmin, clusterData, conf, kopTopic, 1, true); } public static boolean isSystemTopic(final org.apache.pulsar.broker.service.Topic topic, final KafkaServiceConfiguration kafkaConfig) { final TopicName topicName = TopicName.get(topic.getName()); return topicName.getNamespacePortion().equals(kafkaConfig.getKafkaMetadataNamespace()) || topicName.getNamespacePortion().equals(kafkaConfig.getKopSchemaRegistryNamespace()) || topic.isSystemTopic(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy