前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >聊聊cheddar的MessageHandlerExecutor

聊聊cheddar的MessageHandlerExecutor

作者头像
code4it
发布2021-04-16 14:12:40
2340
发布2021-04-16 14:12:40
举报
文章被收录于专栏:码匠的流水账码匠的流水账

本文主要研究一下cheddar的MessageHandlerExecutor

MessageHandlerExecutor

Cheddar/cheddar/cheddar-messaging/src/main/java/com/clicktravel/cheddar/infrastructure/messaging/pooled/listener/MessageHandlerExecutor.java

代码语言:javascript
复制
public class MessageHandlerExecutor extends ThreadPoolExecutor {

    public MessageHandlerExecutor(final String queueName, final int numThreads) {
        super(numThreads, numThreads, 0L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(),
                new MessageHandlerWorkerThreadFactory(queueName));
    }

}

MessageHandlerExecutor继承了ThreadPoolExecutor,其使用的queue为LinkedBlockingQueue;threadFactory为MessageHandlerWorkerThreadFactory

MessageHandlerWorkerThreadFactory

Cheddar/cheddar/cheddar-messaging/src/main/java/com/clicktravel/cheddar/infrastructure/messaging/pooled/listener/MessageHandlerWorkerThreadFactory.java

代码语言:javascript
复制
public class MessageHandlerWorkerThreadFactory implements ThreadFactory {

    private final AtomicInteger threadSequenceNumber = new AtomicInteger();
    private final String queueName;

    public MessageHandlerWorkerThreadFactory(final String queueName) {
        this.queueName = queueName;
    }

    @Override
    public Thread newThread(final Runnable r) {
        final int seq = threadSequenceNumber.incrementAndGet();
        return new Thread(r, "MessageHandler:" + queueName + ":" + seq);
    }
}

MessageHandlerWorkerThreadFactory实现了ThreadFactory接口,其newThread方法使用queueName及threadSequenceNumber来命名thread

MessageHandlerWorker

Cheddar/cheddar/cheddar-messaging/src/main/java/com/clicktravel/cheddar/infrastructure/messaging/pooled/listener/MessageHandlerWorker.java

代码语言:javascript
复制
public class MessageHandlerWorker<T extends Message> implements Runnable {

    private final Logger logger = LoggerFactory.getLogger(getClass());
    private final T message;
    private final MessageHandler<T> messageHandler;
    private final PooledMessageListener<T> pooledMessageListener;

    public MessageHandlerWorker(final PooledMessageListener<T> pooledMessageListener, final T message,
            final MessageHandler<T> messageHandler) {
        this.message = message;
        this.messageHandler = messageHandler;
        this.pooledMessageListener = pooledMessageListener;
    }

    @Override
    public void run() {
        try {
            messageHandler.handle(message);
        } catch (final Exception e) {
            logger.error("Error handling message: " + message, e);
        } finally {
            try {
                pooledMessageListener.completeMessageProcessing(message);
            } catch (final InterruptedException e) {
                Thread.currentThread().interrupt();
            }
        }
    }

}

MessageHandlerWorker实现了Runnable接口,其run方法执行messageHandler.handle方法,最后执行pooledMessageListener.completeMessageProcessing(message)

PooledMessageListener

Cheddar/cheddar/cheddar-messaging/src/main/java/com/clicktravel/cheddar/infrastructure/messaging/pooled/listener/PooledMessageListener.java

代码语言:javascript
复制
public abstract class PooledMessageListener<T extends Message> implements MessageListener, Runnable {

    /**
     * Maximum number of messages to receive from the queue at a time. Using larger numbers decreases the number of
     * calls to receive and thus increases throughput, at the possible expense of latency.
     */
    protected static final int DEFAULT_MAX_RECEIVED_MESSAGES = 10;

    /**
     * Controls when messages are received from the queue by setting an ideal minimum number of runnable tasks for each
     * thread. This minimum includes the currently executing tasks and those on the thread pool work queue. When the
     * number of runnable tasks dips below the ideal, more messages are received.
     */
    protected static final int IDEAL_RUNNABLES_PER_THREAD = 2; // Each thread has 1 executing + 1 queued runnable

    /**
     * The default number of worker threads to use in a fixed size thread pool
     */
    protected static final int DEFAULT_NUM_WORKER_THREADS = 10;

    /**
     * Maximum duration (in seconds) to wait for messages on the queue during normal processing. If there is at least
     * one message on the queue, the actual duration will be shorter.
     */
    private static final int LONG_POLL_DURATION_SECONDS = 20;

    /**
     * Maximum duration (in seconds) to wait for messages on the queue during handing over to a new application instance
     * in a blue-green deployment. This is shorter to enable prompt termination of this message processor.
     */
    private static final int SHORT_POLL_DURATION_SECONDS = 2;

    /**
     * Time (in milliseconds) to pause when receive message request returns an error
     */
    private static final long RECEIVE_MESSAGE_ERROR_PAUSE_MILLIS = 500;

    /**
     * Maximum number of attempts to delete message from queue
     */
    private static final int MAX_DELETE_MESSAGE_ATTEMPTS = 5;

    /**
     * Time (in milliseconds) to pause when delete message request returns an error
     */
    private static final long DELETE_MESSAGE_ERROR_PAUSE_MILLIS = 1500;

    private final Logger logger = LoggerFactory.getLogger(getClass());
    private final MessageQueue<T> messageQueue;
    private final ThreadPoolExecutor threadPoolExecutor;
    private final RateLimiter rateLimiter;
    private final Semaphore semaphore;
    private final int maxReceivedMessages;
    private volatile boolean started;
    private volatile boolean shutdownRequested;
    private volatile boolean shutdownRequestImminent;

    public PooledMessageListener(final MessageQueue<T> messageQueue, final RateLimiter rateLimiter,
            final ThreadPoolExecutor threadPoolExecutor, final Semaphore semaphore, final int maxReceivedMessages) {
        this.messageQueue = messageQueue;
        this.rateLimiter = rateLimiter;
        this.threadPoolExecutor = threadPoolExecutor;
        this.semaphore = semaphore;
        this.maxReceivedMessages = maxReceivedMessages;
    }

    protected abstract MessageHandler<T> getHandlerForMessage(T message);

    protected abstract void listenerStarted();

    @Override
    public void start() {
        new Thread(this).start();
    }

    @Override
    public void run() {
        try {
            started = true;
            listenerStarted();
            final String limiterSummary = rateLimiter != null ? ("using " + rateLimiter.toString())
                    : "not rate limited";
            logger.debug(String.format("Listener for queue [%s] has pool of %d threads and is %s", queueName(),
                    threadPoolExecutor.getMaximumPoolSize(), limiterSummary));
            processMessagesUntilShutdownRequested();
        } catch (final InterruptedException e) {
            Thread.currentThread().interrupt();
        } catch (final Throwable e) {
            logger.error(e.getMessage(), e);
            throw e;
        } finally {
            logger.debug(String.format(
                    "Message listener for queue [%s] has stopped receiving messages. Initiating shutdown of task executor",
                    queueName()));
            threadPoolExecutor.shutdown();
        }
    }

    private void processMessagesUntilShutdownRequested() throws InterruptedException {
        while (!shutdownRequested) {
            // Block until there is capacity to handle up to maxReceivedMessages
            semaphore.acquire(maxReceivedMessages);
            List<T> messages = Collections.emptyList();
            try {
                if (!shutdownRequested) {
                    final int pollSeconds = shutdownRequestImminent ? SHORT_POLL_DURATION_SECONDS
                            : LONG_POLL_DURATION_SECONDS;
                    try {
                        messages = messageQueue.receive(pollSeconds, maxReceivedMessages);
                    } catch (final MessageReceiveException e) {
                        logger.warn("Error receiving messages on queue:[" + queueName() + "]", e);
                        Thread.sleep(RECEIVE_MESSAGE_ERROR_PAUSE_MILLIS);
                    }
                }
            } finally {
                // Release over-allocated permits
                semaphore.release(maxReceivedMessages - messages.size());
            }
            for (final T message : messages) {
                processMessage(message); // Must complete processing each message to release permit
            }
        }
    }

    /**
     * Processes a message by getting the appropriate message handler and scheduling a task to execute the handler. In
     * case of problems (e.g. the message cannot be parsed), the message processing is completed to ensure the message
     * is deleted from the queue and the associated permit is released.
     * @param message {@link Message} to process
     */
    private void processMessage(final T message) throws InterruptedException {
        boolean workerAssigned = false;
        try {
            final MessageHandler<T> messageHandler = getHandlerForMessage(message);
            if (messageHandler != null) {
                applyRateLimiter();
                threadPoolExecutor.execute(new MessageHandlerWorker<T>(this, message, messageHandler));
                workerAssigned = true;
            }
        } catch (final Exception e) {
            logger.error("Unable to process received message", e);
        }

        if (!workerAssigned) {
            completeMessageProcessing(message);
        }
    }

    /**
     * Completes message processing by deleting it from the queue and releasing the associated permit.
     * @param message {@link Message} to complete processing
     */
    public void completeMessageProcessing(final T message) throws InterruptedException {
        deleteMessage(message);
        semaphore.release();
    }

    private void deleteMessage(final T message) throws InterruptedException {
        for (int attempts = 0; attempts < MAX_DELETE_MESSAGE_ATTEMPTS; attempts++) {
            try {
                messageQueue.delete(message);
                return;
            } catch (final MessageDeleteException e) {
                logger.warn(String.format("Failed attempt to delete message with id [%s] from queue [%s]",
                        message.getMessageId(), queueName()), e);
                Thread.sleep(DELETE_MESSAGE_ERROR_PAUSE_MILLIS);
            }
        }
        logger.error(String.format("Failed all attempts to delete message with id [%s] from queue [%s]",
                message.getMessageId(), queueName()));
    }

    private void applyRateLimiter() {
        if (rateLimiter != null) {
            try {
                rateLimiter.takeToken();
            } catch (final InterruptedException e) {
                Thread.currentThread().interrupt();
            }
        }
    }

    protected String queueName() {
        return messageQueue.getName();
    }

    @Override
    public void prepareForShutdown() {
        logger.debug(String.format(
                "Message listener for queue [%s] is preparing for imminent shutdown. Reducing queue poll time.",
                queueName()));
        shutdownRequestImminent = true;
    }

    @Override
    public void shutdownListener() {
        logger.debug(String.format("Message listener for queue [%s] is shutting down", queueName()));
        shutdownRequested = true;
        if (!started) {
            threadPoolExecutor.shutdown();
        }
    }

    @Override
    public boolean awaitShutdownComplete(final long timeoutMillis) {
        boolean terminated = false;
        try {
            terminated = threadPoolExecutor.awaitTermination(timeoutMillis, TimeUnit.MILLISECONDS);
            if (terminated) {
                logger.debug(String.format("Message listener for queue [%s] shutdown has completed", queueName()));
            } else {
                logger.warn(String.format(
                        "Message listener for queue [%s] has not shutdown as message handler worker threads have not completed",
                        queueName()));
            }
        } catch (final InterruptedException e) {
            Thread.currentThread().interrupt();
        }
        return terminated;
    }
}

PooledMessageListener的run方法先标记started为true,然后执行processMessagesUntilShutdownRequested;processMessagesUntilShutdownRequested方法循环messageQueue.receive(pollSeconds, maxReceivedMessages)拉取消息;然后遍历执行processMessage;processMessage方法先获取messageHandler,然后创建MessageHandlerWorker放到线程池执行

小结

cheddar的MessageHandlerExecutor继承了ThreadPoolExecutor,其使用的queue为LinkedBlockingQueue;threadFactory为MessageHandlerWorkerThreadFactory;MessageHandlerWorker实现了Runnable接口,其run方法执行messageHandler.handle方法,最后执行pooledMessageListener.completeMessageProcessing(message)。

doc

  • Cheddar
本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2021-03-29,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 码匠的流水账 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • MessageHandlerExecutor
  • MessageHandlerWorkerThreadFactory
  • MessageHandlerWorker
  • PooledMessageListener
  • 小结
  • doc
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档