Java Code Examples for com.alibaba.rocketmq.common.protocol.RequestCode#GET_CONSUMER_RUNNING_INFO

The following examples show how to use com.alibaba.rocketmq.common.protocol.RequestCode#GET_CONSUMER_RUNNING_INFO . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClientRemotingProcessor.java    From reading-and-annotate-rocketmq-3.4.6 with GNU General Public License v3.0 6 votes vote down vote up
@Override
public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException {
    switch (request.getCode()) {
    case RequestCode.CHECK_TRANSACTION_STATE:
        return this.checkTransactionState(ctx, request);
    case RequestCode.NOTIFY_CONSUMER_IDS_CHANGED:
        return this.notifyConsumerIdsChanged(ctx, request);
    case RequestCode.RESET_CONSUMER_CLIENT_OFFSET:
        return this.resetOffset(ctx, request);
    case RequestCode.GET_CONSUMER_STATUS_FROM_CLIENT:
        return this.getConsumeStatus(ctx, request);

    case RequestCode.GET_CONSUMER_RUNNING_INFO:
        return this.getConsumerRunningInfo(ctx, request);

    case RequestCode.CONSUME_MESSAGE_DIRECTLY:
        return this.consumeMessageDirectly(ctx, request);
    default:
        break;
    }
    return null;
}
 
Example 2
Source File: ClientRemotingProcessor.java    From rocketmq with Apache License 2.0 6 votes vote down vote up
@Override
public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException {
    switch (request.getCode()) {
        case RequestCode.CHECK_TRANSACTION_STATE:
            return this.checkTransactionState(ctx, request);
        case RequestCode.NOTIFY_CONSUMER_IDS_CHANGED:
            return this.notifyConsumerIdsChanged(ctx, request);
        case RequestCode.RESET_CONSUMER_CLIENT_OFFSET:
            return this.resetOffset(ctx, request);
        case RequestCode.GET_CONSUMER_STATUS_FROM_CLIENT:
            return this.getConsumeStatus(ctx, request);

        case RequestCode.GET_CONSUMER_RUNNING_INFO:
            return this.getConsumerRunningInfo(ctx, request);

        case RequestCode.CONSUME_MESSAGE_DIRECTLY:
            return this.consumeMessageDirectly(ctx, request);
        default:
            break;
    }
    return null;
}
 
Example 3
Source File: ClientRemotingProcessor.java    From RocketMQ-Master-analyze with Apache License 2.0 6 votes vote down vote up
@Override
public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request)
        throws RemotingCommandException {
    switch (request.getCode()) {
    case RequestCode.CHECK_TRANSACTION_STATE:
        return this.checkTransactionState(ctx, request);
    case RequestCode.NOTIFY_CONSUMER_IDS_CHANGED:
        return this.notifyConsumerIdsChanged(ctx, request);
    case RequestCode.RESET_CONSUMER_CLIENT_OFFSET:
        return this.resetOffset(ctx, request);
    case RequestCode.GET_CONSUMER_STATUS_FROM_CLIENT:
        return this.getConsumeStatus(ctx, request);

    case RequestCode.GET_CONSUMER_RUNNING_INFO:
        return this.getConsumerRunningInfo(ctx, request);

    case RequestCode.CONSUME_MESSAGE_DIRECTLY:
        return this.consumeMessageDirectly(ctx, request);
    default:
        break;
    }
    return null;
}
 
Example 4
Source File: AdminBrokerProcessor.java    From reading-and-annotate-rocketmq-3.4.6 with GNU General Public License v3.0 4 votes vote down vote up
@Override //AdminBrokerProcessor.processRequest
public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException {
    switch (request.getCode()) {
    case RequestCode.UPDATE_AND_CREATE_TOPIC:
        return this.updateAndCreateTopic(ctx, request);
    case RequestCode.DELETE_TOPIC_IN_BROKER:
        return this.deleteTopic(ctx, request);
    case RequestCode.GET_ALL_TOPIC_CONFIG:
        return this.getAllTopicConfig(ctx, request);
    case RequestCode.UPDATE_BROKER_CONFIG:
        return this.updateBrokerConfig(ctx, request);
    case RequestCode.GET_BROKER_CONFIG:
        return this.getBrokerConfig(ctx, request);
    case RequestCode.SEARCH_OFFSET_BY_TIMESTAMP:
        return this.searchOffsetByTimestamp(ctx, request);
    case RequestCode.GET_MAX_OFFSET:
        return this.getMaxOffset(ctx, request);
    case RequestCode.GET_MIN_OFFSET:
        return this.getMinOffset(ctx, request);
    case RequestCode.GET_EARLIEST_MSG_STORETIME:
        return this.getEarliestMsgStoretime(ctx, request);
    case RequestCode.GET_BROKER_RUNTIME_INFO:
        return this.getBrokerRuntimeInfo(ctx, request);
    case RequestCode.LOCK_BATCH_MQ:
        return this.lockBatchMQ(ctx, request);
    case RequestCode.UNLOCK_BATCH_MQ:
        return this.unlockBatchMQ(ctx, request);
    case RequestCode.UPDATE_AND_CREATE_SUBSCRIPTIONGROUP:
        return this.updateAndCreateSubscriptionGroup(ctx, request);
    case RequestCode.GET_ALL_SUBSCRIPTIONGROUP_CONFIG:
        return this.getAllSubscriptionGroup(ctx, request);
    case RequestCode.DELETE_SUBSCRIPTIONGROUP:
        return this.deleteSubscriptionGroup(ctx, request);
    case RequestCode.GET_TOPIC_STATS_INFO:
        return this.getTopicStatsInfo(ctx, request);
    case RequestCode.GET_CONSUMER_CONNECTION_LIST:
        return this.getConsumerConnectionList(ctx, request);
    case RequestCode.GET_PRODUCER_CONNECTION_LIST:
        return this.getProducerConnectionList(ctx, request);
    case RequestCode.GET_CONSUME_STATS: //sh mqadmin consumerStatus
        return this.getConsumeStats(ctx, request);
    case RequestCode.GET_ALL_CONSUMER_OFFSET:
        return this.getAllConsumerOffset(ctx, request);
    case RequestCode.GET_ALL_DELAY_OFFSET:
        return this.getAllDelayOffset(ctx, request);
    case RequestCode.INVOKE_BROKER_TO_RESET_OFFSET:
        return this.resetOffset(ctx, request);
    case RequestCode.INVOKE_BROKER_TO_GET_CONSUMER_STATUS:
        return this.getConsumerStatus(ctx, request);
    case RequestCode.QUERY_TOPIC_CONSUME_BY_WHO: //sh mqadmin statsAll -n xxx   一个topic一个topic的获取信息
        return this.queryTopicConsumeByWho(ctx, request);
    case RequestCode.REGISTER_FILTER_SERVER:
        return this.registerFilterServer(ctx, request);
    case RequestCode.QUERY_CONSUME_TIME_SPAN:
        return this.queryConsumeTimeSpan(ctx, request);
    case RequestCode.GET_SYSTEM_TOPIC_LIST_FROM_BROKER:
        return this.getSystemTopicListFromBroker(ctx, request);
    case RequestCode.CLEAN_EXPIRED_CONSUMEQUEUE:
        return this.cleanExpiredConsumeQueue();
    case RequestCode.CLEAN_UNUSED_TOPIC:
        return this.cleanUnusedTopic();
    case RequestCode.GET_CONSUMER_RUNNING_INFO:
        return this.getConsumerRunningInfo(ctx, request);
    case RequestCode.QUERY_CORRECTION_OFFSET:
        return this.queryCorrectionOffset(ctx, request);
    case RequestCode.CONSUME_MESSAGE_DIRECTLY:
        return this.consumeMessageDirectly(ctx, request);
    case RequestCode.CLONE_GROUP_OFFSET:
        return this.cloneGroupOffset(ctx, request);
    case RequestCode.VIEW_BROKER_STATS_DATA://sh mqadmin statsAll -获取 #InTPS     #OutTPS   #InMsg24Hour  #OutMsg24Hour信息
        return ViewBrokerStatsData(ctx, request);
    case RequestCode.GET_BROKER_CONSUME_STATS:
        return fetchAllConsumeStatsInBroker(ctx, request);
    default:
        break;
    }

    return null;
}