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

com.huawei.flowcontrol.common.util.KafkaProducerUtil Maven / Gradle / Ivy

/*
 * Copyright (C) 2022-2022 Huawei Technologies Co., Ltd. All rights reserved.
 *
 * 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 com.huawei.flowcontrol.common.util;

import com.huawei.flowcontrol.common.enums.KafkaProducerEnum;

import com.huaweicloud.sermant.core.common.LoggerFactory;

import org.apache.kafka.clients.producer.Callback;
import org.apache.kafka.clients.producer.KafkaProducer;
import org.apache.kafka.clients.producer.ProducerRecord;
import org.apache.kafka.clients.producer.RecordMetadata;
import org.apache.kafka.common.KafkaException;

import java.util.logging.Logger;

/**
 * kafka消息生产工具类
 *
 * @author zhouss
 * @since 2022-02-10
 */
public class KafkaProducerUtil {
    private static final Logger LOGGER = LoggerFactory.getLogger();

    private KafkaProducerUtil() {
    }

    /**
     * 使用kafka发送流控数据和心跳数据
     *
     * @param topic kafka的topic
     * @param msg 流控和心跳数据
     */
    public static void sendMessage(String topic, String msg) {
        KafkaProducer producer = KafkaProducerEnum.KAFKA_PRODUCER.getKafkaProducer();
        try {
            sendRecord(topic, msg, producer);
        } finally {
            // 此处需要保证数据实时性, 保证心跳正常
            producer.flush();
        }
    }

    private static void sendRecord(final String topic, String msg,
            KafkaProducer producer) {
        ProducerRecord record;
        try {
            record = new ProducerRecord(topic, null, msg);

            // 异步回调通发送数据
            producer.send(record, new Callback() {
                @Override
                public void onCompletion(RecordMetadata metadata, Exception exception) {
                    if (exception != null) {
                        LOGGER.severe("[KafkaProducerUtil] kafka exception in " + topic + exception.getMessage());
                    }
                }
            });
        } catch (KafkaException e) {
            LOGGER.severe("[KafkaProducerUtil] sendMessage() exception " + e);
        }
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy