Hi,
I'm using Axon 3.3.5 with spring-boot and I'm trying to replay events in order to get databases sync. What I did was deleting my query db to get all the events from command db again.
My query side is configured with:
axon:
serializer:
general: XSTREAM
eventhandling:
processors:
"[bankevents]":
source: kafkaMessageSource
mode: TRACKING
kafka:
default-topic: "events"
consumer:
group-id: "bank-group"
bootstrap-servers:
- localhost:9092
I tried to reset token in order to get it working, but nothing happens:
config.eventProcessorByProcessingGroup("bankevents", TrackingEventProcessor.class)
.ifPresent(trackingEventProcessor -> {
trackingEventProcessor.shutDown();
trackingEventProcessor.resetTokens();
trackingEventProcessor.start();
});
Any advice?