Spring batch 与Spring批处理管理项目中的作业队列相关的查询

Spring batch 与Spring批处理管理项目中的作业队列相关的查询,spring-batch,job-scheduling,Spring Batch,Job Scheduling,我正在从事一个基于spring batch admin的项目。我使用spring集成的 它从队列中拾取消息并将它们推送到调用服务激活器的通道中。然后,服务激活器调用批处理作业 spring batch admin在内部使用一个taskExecutor,其池大小在spring-batch-admin-manager-1.2.2-release.jar中可用。此任务执行器的rejectionPolicy配置为ABORT,即,如果作业请求超过6个,则中止其他作业请求。但是当我运行超过100个请求的项目

我正在从事一个基于spring batch admin的项目。我使用spring集成的 它从队列中拾取消息并将它们推送到调用服务激活器的通道中。然后,服务激活器调用批处理作业

spring batch admin在内部使用一个taskExecutor,其池大小在spring-batch-admin-manager-1.2.2-release.jar中可用。此任务执行器的rejectionPolicy配置为ABORT,即,如果作业请求超过6个,则中止其他作业请求。但是当我运行超过100个请求的项目时,我在SpringBatch管理控制台中看到它们的状态为Start,尽管一次只处理6个作业请求

我不明白剩余的工作请求在哪里排队。如果有人能给我解释一下或者给我一些建议,我将不胜感激

配置:

<int-jms:message-driven-channel-adapter id="jmsIn" 
    connection-factory="connectionFactory"  
    destination-name="${JMS.SERVER.QUEUE}" channel="jmsInChannel"  
    extract-payload="false" send-timeout="20000"/>
<integration:service-activator id="serviceAct" input-channel="jmsInChannel" output-channel="fileNamesChannel" 
                                ref="handler" method="process" />   

<bean id="handler" class="com.mycompany.integration.AnalysisMessageProcessor">
    <property name="jobHashTable" ref="jobsMapping" />
</bean> 
 <batch:job id="fullRebalanceJob" incrementer="jobIdIncrementer">
    <batch:step id="stepGeneral">
        <batch:tasklet>
            <bean class="com.mycompany.batch.tasklet.DoGeneralTasklet" scope="step">
                <property name="resultId" value="#{jobParameters[resultId]}" />
            </bean>
        </batch:tasklet>
        <batch:next on="REC-SELLS" to="stepRecordSells"/>

        <batch:fail on="FAILED" />
        <batch:listeners>
            <batch:listener ref="stepListener" />
        </batch:listeners>          
    </batch:step>
    <batch:step id="stepDoNext">
        <batch:tasklet ref="dcnNext" />

    </batch:step>
   </batch:job>
提前谢谢。如果需要更多细节,请告诉我