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 7adc322 commit d48ead5
Showing 1 changed file with 39 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,25 @@
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 +44,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 +70,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 d48ead5

Please sign in to comment.