kafka+java

写在前面

在之前的两篇文章中,我们介绍了log->logstash->kafka的流程连通,以及相关的环境搭建,现在准备工作都做好了,我们开始从kafka接收错误日志来发送邮件吧。

工程准备

这里我们搭建两个应用:

  • kafka-spring :用来监听kafka服务,判断错误系统,发送邮件给对应系统的负责人。
  • MessageDispatcher :用来发送消息,目前只只支持MAIL,后面会陆续加入SMS等。

kaka-spring

1.工程目录结构

kaka-spring.png

2.重要文件

重点看下applicationContext-consumer.xml和KafkaConsumerService这两个文件

  • applicationContext-consumer.xml
    这个文件用来连接kafka和spring,看下具体内容
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:int="http://www.springframework.org/schema/integration"
       xmlns:int-kafka="http://www.springframework.org/schema/integration/kafka"
       xmlns:task="http://www.springframework.org/schema/task"
       xsi:schemaLocation="http://www.springframework.org/schema/integration/kafka http://www.springframework.org/schema/integration/kafka/spring-integration-kafka.xsd
      http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
      http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
      http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd">
    <int:channel id="inputFromKafka">
        <int:queue/>
    </int:channel>

    <!--<int:service-activator auto-startup="true"-->
    <!--input-channel="inputFromKafka" ref="kafkaConsumerService" method="receiveMessage">-->
    <!--</int:service-activator>-->
    <!-- 上下两种方式都可以 -->
    <!-- 使用kafkaConsumerService来接收kafka消息 -->
    <int:outbound-channel-adapter channel="inputFromKafka"
                                  ref="kafkaConsumerService" method="receiveMessage" auto-startup="true"/>

    <int:poller default="true" id="default" fixed-rate="5"
                time-unit="MILLISECONDS" max-messages-per-poll="5">
    </int:poller>
    <int-kafka:inbound-channel-adapter
            kafka-consumer-context-ref="consumerContext" channel="inputFromKafka">
    </int-kafka:inbound-channel-adapter>
    <bean id="consumerProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
        <property name="properties">
            <props>
                <prop key="auto.offset.reset">smallest</prop>
                <prop key="socket.receive.buffer.bytes">10485760</prop>
                <!-- 10M -->
                <prop key="fetch.message.max.bytes">5242880</prop>
                <prop key="auto.commit.interval.ms">1000</prop>
            </props>
        </property>
    </bean>
    <int-kafka:consumer-context id="consumerContext"
                                consumer-timeout="4000" zookeeper-connect="zookeeperConnect"
                                consumer-properties="consumerProperties">
        <int-kafka:consumer-configurations>
            <int-kafka:consumer-configuration
                    group-id="mygroup" max-messages="5000">
                <!-- 这里的topic就是我们再kafka中创建的那个 -->
                <int-kafka:topic id="kafkatopic" streams="4"/>
            </int-kafka:consumer-configuration>
        </int-kafka:consumer-configurations>
    </int-kafka:consumer-context>
    <!-- zookeeper地址按照自己的地址配置 -->
    <int-kafka:zookeeper-connect id="zookeeperConnect"
                                 zk-connect="192.168.1.120:2181" zk-connection-timeout="6000"
                                 zk-session-timeout="400" zk-sync-time="200"/>
</beans>
  • KafkaConsumerService.java
    好,我们再来看下kafkaConsumerService中的receiveMessage方法是如何实现的。
public void receiveMessage(HashMap map)
    {
        logger.info("received Messages from kafka ================" + map.size());
        Set<Map.Entry> set = map.entrySet();

        for (Map.Entry entry : set)
        {
            String topic = (String) entry.getKey();
            logger.info("Topic:" + topic);
            ConcurrentHashMap<Integer, List<byte[]>> messages = (ConcurrentHashMap<Integer, List<byte[]>>) entry
                    .getValue();
            Collection<List<byte[]>> values = messages.values();

            for (Iterator<List<byte[]>> iterator = values.iterator(); iterator.hasNext(); )
            {
                List<byte[]> list = iterator.next();
                for (byte[] object : list)
                {
                    String message = new String(object);
                    Message msg = JSON.parseObject(message.replace("@", ""), Message.class);
                    String address = addressStore.pick(msg);
                    Map<String, String> request = new HashMap<String, String>();
                    request.put("messageType", Constants.MESSAGE_TYPE_MAIL);
                    request.put("address", address);
                    request.put("content", msg.toString());

                    try
                    {
                        //httpclient调用发送邮件
                        HttpClientUtil.postParameters(postUrl, request);
                    }
                    catch (Exception e)
                    {
                        logger.error("HttpClientUtil postParameters exception :" + e.getMessage());
                    }
                }
            }
        }
    }

3.重要的依赖

使用spring-integration项目中的kafka连接器

<dependency>
      <groupId>org.springframework.integration</groupId>
      <artifactId>spring-integration-kafka</artifactId>
      <version>1.1.0.RELEASE</version>
</dependency>

其他的依赖就不一一写啦,相信大家都能搞定~以上就是kafka-spring的接收kafka消息的配置和java代码,其他的功能就在这个基础上加上去就可以了。

MessageDispatcher

1.目录结构

MessageDispatcher.png

典型的spring mvc项目,用作消息的分发。

2.重要文件

消息发送顶层接口MessageSender,不同的消息类型按照自己的要求实现接口的sendMessage方法即可。

package com.allinpay.message;

/**
 * 消息发送接口
 * Created by gejunqing on 16/9/8.
 */
public interface MessageSender
{
    void sendMessage(String address, String content);
}

再看看mvc的入口MessageController

package com.allinpay.mvc;

import com.allinpay.base.Constants;
import com.allinpay.base.MessageRequest;
import com.allinpay.base.SpringContextHolder;
import com.allinpay.message.MessageSender;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.view.json.MappingJackson2JsonView;

import java.util.HashMap;
import java.util.Map;

@Controller
@RequestMapping("/api")
public class MessageController
{
    private Logger logger = LoggerFactory.getLogger(MessageController.class);


    @RequestMapping(value = "/sendMessage", method = RequestMethod.POST)
    public ModelAndView sendMessage(@ModelAttribute("request") MessageRequest request, ModelMap model)
    {
        logger.info("sendMessage {}", request);
        Map<String, String> result = new HashMap<String, String>();
        try
        {
            MessageSender sender = SpringContextHolder.getBean(request.getMessageType());
            sender.sendMessage(request.getAddress(), request.getContent());
            result.put("retCode", Constants.RET_CODE_SUCCESS);
        }
        catch (Exception e)
        {
            logger.error(e.getMessage());
            result.put("retCode", Constants.RET_CODE_SYTEMERROR);
            result.put("retMsg", e.getMessage());
        }
        return new ModelAndView(new MappingJackson2JsonView(), result);
    }
}

其他系统通过http post方式请求/api/sendMessage方式即可调用发送消息功能。

总结

至此,我们整个监控日志,发送邮件的流程已经全部结束。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容