如何无限制地汇总交易所

时间:2014-05-12 12:41:15

标签: apache-camel restrictions aggregator filesplitting

我们有现状。我使用Apache Camel,拆分大文件进行小型交换(使用拆分器,见下文)并验证它们。然后我需要聚合消息,但我使用聚合器,它需要设置complition大小或其他。我可以在不设置限制的情况下从当前文档中删除所有交换吗?

我的路线:

 from("file:data?noop=true?move={{package.success}}&moveFailed={{package.failed}}")
                .transacted()
                .split(ExpressionBuilder.beanExpression(new InvoiceIteratorFactory(), "createIterator"))
                .streaming()
                .process(new ValidatorProcessor())
                .choice()
                .when(new Predicate() {
                    @Override
                    public boolean matches(Exchange exchange) {
                        return exchange.getContext().getProperty(ValidatorProcessor.STATE_PROPERTY).equals(ValidatorProcessor.STATE_SUCCESS);
                    }
                })
                .to("jpa:/...")
                .otherwise()
                .aggregate(body(String.class), new MyAggregationStrategy()).completionSize(????)
                .to("smtps://smtp.gmail.com?username={{remote.e-mail}}&password={{remote.password}}");

设置聚合器我用来设置交换次数或时间,但我不知道会有多少次交换。

1 个答案:

答案 0 :(得分:1)

因此,Camel中的拆分器EIP每次完成拆分交换时都会生成一个名为CamelSplitComplete的标头。这个标头是一个布尔值。

我要做的是在聚合器中使用completionPredicate()而不是completionSize()。因此,只要该标头为真,它就会完成聚合:

from("file:data?noop=true?move={{package.success}}&moveFailed={{package.failed}}")
    .transacted()
    .split(ExpressionBuilder.beanExpression(new InvoiceIteratorFactory(), "createIterator"))
    .streaming()
    .process(new ValidatorProcessor())
    .choice()
    .when(new Predicate() {
                @Override
                public boolean matches(Exchange exchange) {
                    return exchange.getContext().getProperty(ValidatorProcessor.STATE_PROPERTY).equals(ValidatorProcessor.STATE_SUCCESS);
                }
            })
     .to("jpa:/...")
     .otherwise()
     .aggregate(body(String.class), new MyAggregationStrategy()).completionPredicate(header("CamelSplitComplete") == true)
     .to("smtps://smtp.gmail.com?username={{remote.e-mail}}&password={{remote.password}}");

我希望这就是你要找的东西。