在生产发布的最后一分钟,我发现了 Java Spring Batch 的一个奇怪问题。它进入无限循环。
这是我的配置:
<batch:job id="dbasJob" restartable="true">
<batch:step id="dbasStep" next="webService">
<tasklet>
<chunk reader="campaignReader" processor="campaignProcessor" writer="campaignWriter" commit-interval="1"
skip-limit="50">
<skippable-exception-classes>
<include class="java.lang.Exception" />
</skippable-exception-classes>
<listeners>
<listener ref="campaignProcessListener" />
<listener ref="campaignSkipListener" />
</listeners>
</chunk>
</tasklet>
<batch:listeners>
<batch:listener ref="promotionListener" />
</batch:listeners>
</batch:step>
记录总数为 10。因此,提交发生在处理完每条记录之后。我正在将结果写入 Writer 中的数据库。
我从阅读器中一一获取项目,处理并写入数据库。
public Campaign read()
{
return campaignList.isEmpty() ? null : campaignList.remove(0);
}
public Campaign process(Campaign campaign) throws UnexpectedInputException, ParseException, Exception {
try
public void write(List<? extends Campaign> campaignList) throws Exception
{//...Writing to DB...
它不断地运行并将数据无限地插入到表中。
观察是:Commit-Interval < TotalRecords and Skip-Limit > Commit-Interval。
如果有人提出一些解决方案/解决方法,那么在因为这个问题而举行生产发布的时间点对我有最大的帮助。
非常感谢。