|
|
package com.tianbo.messagebus.service;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.tianbo.messagebus.config.KafkaConsumerConfig;
|
|
|
import com.tianbo.messagebus.controller.response.ResultJson;
|
|
|
import com.tianbo.messagebus.kafka.ConsumersCache;
|
|
|
import com.tianbo.messagebus.model.HEADER;
|
|
|
import com.tianbo.messagebus.model.MSG;
|
|
|
import com.tianbo.messagebus.model.MSGS;
|
|
|
import com.tianbo.messagebus.myinterface.KafkaSendApi;
|
|
|
import feign.FeignException;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.apache.kafka.clients.consumer.ConsumerConfig;
|
...
|
...
|
@@ -17,6 +15,8 @@ import org.apache.kafka.clients.consumer.ConsumerRecords; |
|
|
import org.apache.kafka.clients.consumer.KafkaConsumer;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
...
|
...
|
@@ -26,6 +26,7 @@ import java.util.Map; |
|
|
|
|
|
@Service
|
|
|
@Slf4j
|
|
|
@EnableAsync
|
|
|
public class KafkaReadProcessor {
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -42,12 +43,20 @@ public class KafkaReadProcessor { |
|
|
|
|
|
@Value("${kafka.bootstrap-servers}")
|
|
|
private String servers;
|
|
|
|
|
|
@Value("${kafka.max-poll-records}")
|
|
|
private String maxPollRecords;
|
|
|
/**
|
|
|
* 失败重发请求次数
|
|
|
*/
|
|
|
private static final int RETRY_TIMES= 10;
|
|
|
|
|
|
@Scheduled(fixedRate = 6000)
|
|
|
/**
|
|
|
* 多线程中consumer锁
|
|
|
*/
|
|
|
|
|
|
@Async
|
|
|
@Scheduled(fixedRate = 3000)
|
|
|
public void msgProcess(){
|
|
|
try{
|
|
|
if (StringUtils.isNotEmpty(userName) && StringUtils.isNotEmpty(groupName)){
|
...
|
...
|
@@ -55,12 +64,25 @@ public class KafkaReadProcessor { |
|
|
Map<String, Object> map=new KafkaConsumerConfig().consumerConfigs();
|
|
|
map.put(ConsumerConfig.GROUP_ID_CONFIG, groupName);
|
|
|
map.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG,servers);
|
|
|
map.put(ConsumerConfig.MAX_POLL_RECORDS_CONFIG,maxPollRecords);
|
|
|
log.info("----2.消费者组为:{}----",groupName);
|
|
|
|
|
|
//针对三个partition创建三个消费者,并缓存
|
|
|
for (int i = 1; i <=3 ; i++) {
|
|
|
KafkaConsumer<String, String> consumer;
|
|
|
String consumerName = userName+"-"+i;
|
|
|
|
|
|
//消费锁判定
|
|
|
Map map_lock = ConsumersCache.getConsumerLock();
|
|
|
if (map_lock.containsKey(consumerName) && ConsumersCache.getLockState(consumerName)){
|
|
|
log.info("[CONSUMER-LOCK-{}] 消费状态为锁定,正在消费",consumerName);
|
|
|
return;
|
|
|
}else {
|
|
|
log.info("[CONSUMER-LOCK-{}] 消费状态为正常,可以消费",consumerName);
|
|
|
ConsumersCache.lock(consumerName);
|
|
|
}
|
|
|
|
|
|
|
|
|
if (ConsumersCache.getConsumerMap().containsKey(consumerName)){
|
|
|
consumer = ConsumersCache.consumerMap.get(consumerName);
|
|
|
log.info("[loop-start]3.从缓存中获取到消费者:{}的消费者信息[{}]。",consumerName,consumer);
|
...
|
...
|
@@ -68,12 +90,12 @@ public class KafkaReadProcessor { |
|
|
map.put(ConsumerConfig.CLIENT_ID_CONFIG,consumerName);
|
|
|
consumer =new KafkaConsumer<String, String>(map);
|
|
|
ConsumersCache.consumerMap.put(consumerName,consumer);
|
|
|
log.info("3.缓存中没有消费者{}的信息,创建新的消费者信息",consumerName);
|
|
|
log.info("[CONSUMER] 3.缓存中没有消费者{}的信息,创建新的消费者信息",consumerName);
|
|
|
}
|
|
|
|
|
|
consumer.subscribe(Arrays.asList(userName));
|
|
|
ConsumerRecords<String, String> records = consumer.poll(Duration.ofSeconds(3));
|
|
|
log.info("----4.消费者:{}此次成功消费数据{}条----",consumerName,records.count());
|
|
|
log.info("----[CONSUMER] 4.消费者:{}此次成功消费数据{}条----",consumerName,records.count());
|
|
|
|
|
|
if(!records.isEmpty()){
|
|
|
for (ConsumerRecord<String, String> record : records) {
|
...
|
...
|
@@ -87,65 +109,80 @@ public class KafkaReadProcessor { |
|
|
//todo:消息备份或者重发?
|
|
|
reTrySend(msgs);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
consumer.commitSync();
|
|
|
log.info("5.消费者{}-{}消费提交成功",consumerName,groupName);
|
|
|
log.info("[CONSUMER] 消费者{}-{}消费提交成功",consumerName,groupName);
|
|
|
|
|
|
}else {
|
|
|
log.info("----[END]5.消费者的TOPIC没有新的消费数据即将返回----");
|
|
|
}
|
|
|
ConsumersCache.unlock(consumerName);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
log.info("转发出错,{}",e.toString());
|
|
|
log.error("转发出错,{}",e.toString());
|
|
|
ConsumersCache.unlock(userName+"-"+1);
|
|
|
ConsumersCache.unlock(userName+"-"+2);
|
|
|
ConsumersCache.unlock(userName+"-"+3);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
public MSGS transMsg(String msg){
|
|
|
JSONObject rootJson = JSON.parseObject(msg);
|
|
|
JSONObject msgJson = rootJson.getJSONObject("MSG");
|
|
|
JSONObject body = msgJson.getJSONObject("BODY");
|
|
|
|
|
|
HEADER msgHeader = msgJson.getObject("HEADER",HEADER.class);
|
|
|
msgHeader.setSNDR(userName);
|
|
|
|
|
|
MSG transMsg= new MSG();
|
|
|
String transBody = body.toJSONString();
|
|
|
transMsg.setHEADER(msgHeader);
|
|
|
transMsg.setBODY(transBody);
|
|
|
|
|
|
MSGS msgs = new MSGS();
|
|
|
msgs.setMSG(transMsg);
|
|
|
return msgs;
|
|
|
MSGS rootJson = JSON.parseObject(msg,MSGS.class);
|
|
|
rootJson.getMSG().getHEADER().setSNDR(userName);
|
|
|
// JSONObject msgJson = rootJson.getJSONObject("MSG");
|
|
|
// JSONObject body = msgJson.getJSONObject("BODY");
|
|
|
//
|
|
|
// HEADER msgHeader = msgJson.getObject("HEADER",HEADER.class);
|
|
|
// msgHeader.setSNDR(userName);
|
|
|
//
|
|
|
// MSG transMsg= new MSG();
|
|
|
// transMsg.setHEADER(msgHeader);
|
|
|
// transMsg.setBODY(body);
|
|
|
//
|
|
|
// MSGS msgs = new MSGS();
|
|
|
// msgs.setMSG(transMsg);
|
|
|
return rootJson;
|
|
|
}
|
|
|
|
|
|
public boolean sendmsg(MSGS msgs){
|
|
|
ResultJson response = kafkaSendApi.send(msgs);
|
|
|
try {
|
|
|
ResultJson response = kafkaSendApi.send(msgs);
|
|
|
|
|
|
if ("200".equals(response.getCode())){
|
|
|
log.info("………………6-消息发送成功{}………………",response.toString());
|
|
|
return true;
|
|
|
if ("200".equals(response.getCode())){
|
|
|
log.info("[SEND-PRODUCT]………………消息发送成功{}………………",response.toString());
|
|
|
return true;
|
|
|
}
|
|
|
log.info("[SEND-PRODUCT]400-消息发送失败->{}",response.toString());
|
|
|
}catch (FeignException ex){
|
|
|
log.error("[SEND-PRODUCT] 发送服务调用失败-->>{}",ex.toString());
|
|
|
}
|
|
|
log.info("400-消息发送失败->{}",response.toString());
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* feign重发消息
|
|
|
*/
|
|
|
public void reTrySend(MSGS msgs){
|
|
|
public boolean reTrySend(MSGS msgs) throws InterruptedException {
|
|
|
log.error("***进入重发***");
|
|
|
for (int i = 0; i < RETRY_TIMES; i++) {
|
|
|
boolean flag = false;
|
|
|
int i = 0;
|
|
|
while (true){
|
|
|
Thread.sleep(1000);
|
|
|
i++;
|
|
|
boolean sendResult = sendmsg(msgs);
|
|
|
if (sendResult){
|
|
|
log.error("***重发成功***");
|
|
|
log.error("[RESEND-PRODUCT]***重发成功,重发次数({})***",i);
|
|
|
log.info("[RESEND-PRODUCT]***重发成功,重发次数({})***",i);
|
|
|
flag = true;
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
log.error("***已尝试重发>>>{}<<<次,重发失败***",RETRY_TIMES);
|
|
|
return flag;
|
|
|
}
|
|
|
} |
...
|
...
|
|