Skip to content

Commit

Permalink
[Issue apache#337] Enhance Http Demo Subscriber by using ExecutorServ…
Browse files Browse the repository at this point in the history
…ice, CountDownLatch and PreDestroy hook
  • Loading branch information
jinrongluo committed May 11, 2021
1 parent a3afff3 commit 50f959d
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public class AsyncPublishInstance {

public static Logger logger = LoggerFactory.getLogger(AsyncPublishInstance.class);

// This messageSize is also used in SubService.java (Subscriber)
public static int messageSize = 5;

public static void main(String[] args) throws Exception {
Properties properties = Utils.readPropertiesFile("application.properties");
final String eventMeshIp = properties.getProperty("eventmesh.ip");
Expand Down Expand Up @@ -62,7 +65,7 @@ public static void main(String[] args) throws Exception {

liteProducer = new LiteProducer(eventMeshClientConfig);
liteProducer.start();
for (int i = 0; i < 5; i++) {
for (int i = 0; i < messageSize; i++) {
LiteMessage liteMessage = new LiteMessage();
liteMessage.setBizSeqNo(RandomStringUtils.randomNumeric(30))
// .setContent("contentStr with special protocal")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@

import com.alibaba.fastjson.JSONObject;

import org.apache.eventmesh.http.demo.sub.service.SubService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
Expand All @@ -33,12 +35,17 @@ public class SubController {

public static Logger logger = LoggerFactory.getLogger(SubController.class);

@Autowired
private SubService subService;

@RequestMapping(value = "/test", method = RequestMethod.POST)
public String subTest(@RequestBody String message) {
logger.info("=======receive message======= {}", JSONObject.toJSONString(message));
JSONObject result = new JSONObject();
result.put("retCode", 1);
return result.toJSONString();
String strResult = result.toJSONString();
subService.consumeMessage(strResult);
return strResult;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,22 @@
import java.util.Arrays;
import java.util.List;
import java.util.Properties;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import org.apache.commons.lang3.StringUtils;
import org.apache.eventmesh.client.http.conf.LiteClientConfig;
import org.apache.eventmesh.client.http.consumer.LiteConsumer;
import org.apache.eventmesh.common.EventMeshException;
import org.apache.eventmesh.common.IPUtil;
import org.apache.eventmesh.common.ThreadUtil;
import org.apache.eventmesh.http.demo.AsyncPublishInstance;
import org.apache.eventmesh.util.Utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component;
import javax.annotation.PreDestroy;

@Component
public class SubService implements InitializingBean {
Expand All @@ -38,6 +42,11 @@ public class SubService implements InitializingBean {
final String dcn = "FT0";
final String subsys = "1234";

// CountDownLatch size is the same as messageSize in AsyncPublishInstance.java (Publisher)
private CountDownLatch countDownLatch = new CountDownLatch(AsyncPublishInstance.messageSize);

private ExecutorService executorService = Executors.newFixedThreadPool(5);

@Override
public void afterPropertiesSet() throws Exception {

Expand All @@ -59,31 +68,41 @@ public void afterPropertiesSet() throws Exception {
liteConsumer.heartBeat(topicList, url);
liteConsumer.subscribe(topicList, url);

Runtime.getRuntime().addShutdownHook(new Thread(() -> {
logger.info("start destory ....");
try {
liteConsumer.unsubscribe(topicList, url);
} catch (EventMeshException e) {
e.printStackTrace();
}
// Wait for all messaged to be consumed
executorService.submit(() ->{
try {
liteConsumer.shutdown();
} catch (Exception e) {
e.printStackTrace();
}
logger.info("end destory.");
}));

Thread stopThread = new Thread(() -> {
try {
Thread.sleep(5 * 60 * 1000);
countDownLatch.await();
} catch (InterruptedException e) {
e.printStackTrace();
}
logger.info("stopThread start....");
System.exit(0);
});
}

@PreDestroy
public void cleanup() {
logger.info("start destory ....");
try {
liteConsumer.unsubscribe(topicList, url);
} catch (EventMeshException e) {
e.printStackTrace();
}
try {
liteConsumer.shutdown();
} catch (Exception e) {
e.printStackTrace();
}
executorService.shutdown();
logger.info("end destory.");
}

stopThread.start();
/**
* Count the message already consumed
*/
public void consumeMessage(String msg) {
logger.info("consume message {}", msg);
countDownLatch.countDown();
logger.info("remaining number of messages to be consumed {}", countDownLatch.getCount());
}
}

0 comments on commit 50f959d

Please sign in to comment.