具有分布式查询模型的Axon Register Tracking Processor

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了具有分布式查询模型的Axon Register Tracking Processor相关的知识,希望对你有一定的参考价值。

我使用axon和spring-boot实现了CQRS + ES应用程序。我使用单独的查询模型和命令模型应用程序。我使用rabbitmq从命令模式发布事件。它的工作正确。但跟踪处理器实现在我的应用程序中不起作用。

这是我的查询模型

@SpringBootApplication
public class SeatQueryPart1Application {
    public static void main(String[] args) {
        SpringApplication.run(SeatQueryPart1Application.class, args);
    }

    @Bean
    public SpringAMQPMessageSource statisticsQueue(Serializer serializer) {
        return new SpringAMQPMessageSource(new DefaultAMQPMessageConverter(serializer)) {
            @RabbitListener(exclusive = false, bindings = @QueueBinding(value = @Queue, exchange = @Exchange(value = "ExchangeTypesTests.FanoutExchange", type = ExchangeTypes.FANOUT), key = "orderRoutingKey"))
            @Override
            public void onMessage(Message arg0, Channel arg1) throws Exception {
                super.onMessage(arg0, arg1);
            }
        };
    }

    @Autowired
    public void conf(EventHandlingConfiguration configuration) {
        configuration.registerTrackingProcessor("statistics");
    }

}

这是一个事件处理程序类

@ProcessingGroup("statistics")
@Component
public class EventLoggingHandler {


    private SeatReservationRepository seatReservationRepo;
    public EventLoggingHandler(final SeatReservationRepository e) {
        this.seatReservationRepo = e;
    }

    @EventHandler
    protected void on(SeatResurvationCreateEvent event) {
        Timestamp timestamp = new Timestamp(System.currentTimeMillis());
        Seat seat=new Seat(event.getId(), event.getSeatId(), event.getDate(),timestamp ,true);
        seatReservationRepo.save(seat);
    }

}

这是yml配置

axon:
  eventhandling:
    processors:
      statistics.source: statisticsQueue

我该怎么做才对。 (任何人都可以建议教程或代码示例)

答案

SpringAMQPMessageSource是一个SubscribableMessageSource。这意味着您无法使用跟踪事件处理器来处理消息。它仅与Subscribable Event Processor兼容。

删除configuration.registerTrackingProcessor("statistics");并将其保留为默认值(订阅)应该可以解决问题。

以上是关于具有分布式查询模型的Axon Register Tracking Processor的主要内容,如果未能解决你的问题,请参考以下文章

如何在具有使用@tf.keras.utils.register_keras_serializable 注册的自定义函数的 Tensorflow Serving 中提供模型?

DDD随笔-Axon

thinkphp5关联查询主表的每条数据在附表关联表中的最新的那条数据(因为附表里面关联的字段数据有多条)

Sails.js - 如何对具有数组类型属性的模型进行本机查询?

Rails 查询具有 has_many 和 belongs_to 关系的模型

can't infer register for "EN2" because its behavior does not match any supported regis