kafka消费完消息自动关闭Demo

public class ConsumerTest {
    public static volatile boolean isRunning = true;
    public static KafkaConsumer<Integer, String> consumer;
    public static HashMap<String, HashMap<String, Integer>> eventDateMap = new HashMap<>();
    public static ArrayList<String> userList = new ArrayList<>();

    public static void main(String[] args) {
        Properties props = new Properties();
        props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");
        props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "172:9092");
        props.put(ConsumerConfig.GROUP_ID_CONFIG, "All03");
        props.put(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, "false");
        props.put(ConsumerConfig.MAX_POLL_RECORDS_CONFIG, "10000");
        props.put(ConsumerConfig.AUTO_COMMIT_INTERVAL_MS_CONFIG, "1000");
        props.put(ConsumerConfig.SESSION_TIMEOUT_MS_CONFIG, "30000");
        props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class.getName());
        props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class.getName());
        consumer = new KafkaConsumer<>(props);
        String topic = "hndj";

        consumer.subscribe(Collections.singletonList(topic));
        try {
            while (isRunning) {
                ConsumerRecords<Integer, String> records = consumer.poll(Duration.ofSeconds(10));
                if (!records.isEmpty()) {
                    for (ConsumerRecord<Integer, String> record : records) {
                        String value = record.value();
                        JSONObject jsonObject = JSONObject.parseObject(value);
                        String data = jsonObject.getString("data");
                        if (!StringUtils.isEmpty(data) && data.startsWith("[")) {
                            JSONArray objects = JSONArray.parseArray(data);
                            for (int i = 0; i < objects.size(); i++) {

                                JSONObject object = objects.getJSONObject(i);
                                String type = object.getString("type");

                                if (type.contains("track")) {
                                    // 转换日期
                                    Long time = object.getLong("time");
                                    String date = new SimpleDateFormat("yyyy-MM-dd").format(new Date(time));

                                    String eventName = object.getString("event");
                                    HashMap<String, Integer> eventMap = eventDateMap.get(date);
                                    if (eventDateMap.containsKey(date)) {
                                        if (eventMap != null && eventMap.containsKey(eventName)) {
                                            Integer ad = eventMap.get(eventName);
                                            ad++;
                                            eventMap.put(eventName, ad);
                                        } else {
                                            assert eventMap != null;
                                            eventMap.put(eventName, 1);
                                        }
                                    } else {
                                        eventMap = new HashMap<>(4);
                                        eventMap.put(eventName, 1);
                                        eventDateMap.put(date, eventMap);
                                    }
                                } else {
                                    String userId = object.getString("distinct_id");
                                    if (!StringUtils.isEmpty(userId)){
                                        userList.add(userId);
                                    }
                                }
                                object = null;
                            }
                        }
                    }
                } else {
                    close();
                }
            }
        } finally {
            close();
        }
        // 计算日期下每个事件的总数
        if (eventDateMap != null) {
            for (Map.Entry<String, HashMap<String, Integer>> mapEntry : eventDateMap.entrySet()) {
                HashMap<String, Integer> map = mapEntry.getValue();
                if (map != null) {
                    for (Map.Entry<String, Integer> entry : map.entrySet()) {
                        log.info("日期:{}--eventName:{}--eventCount:{}", mapEntry.getKey(), entry.getKey(), entry.getValue());
                    }

                }
            }
        }
        // 计算日期对应的总数
        if (eventDateMap != null) {
            for (Map.Entry<String, HashMap<String, Integer>> mapEntry : eventDateMap.entrySet()) {
                Integer eventCount = 0;
                HashMap<String, Integer> map = mapEntry.getValue();
                if (map != null) {
                    for (Map.Entry<String, Integer> entry : map.entrySet()) {
                        eventCount += entry.getValue();
                    }
                    log.info("日期:{}--event总数:{}", mapEntry.getKey(), eventCount);
                }
            }
        }
        log.info("user数据总数:{}", userList.size());
    }

    private static void close() {
        isRunning = false;
        if (consumer != null) {
            consumer.close();
        }
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值