| @Autowired | |
| public void configure(EventHandlingConfiguration config) { | |
| config.registerTrackingProcessor("MyProcessorName"); | |
| } |
@Autowired
public TrackingProcessorConfig(EventHandlingConfiguration eventHandlingConfiguration) {
eventHandlingConfiguration.registerTrackingProcessor("JpaCreateServiceTypeHandler");
}
Cheers,Allard
3) The monitoring process is only verifying the public scheme. How could I specify the schemas?
--this is my challenge now.
You received this message because you are subscribed to the Google Groups "Axon Framework Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to axonframewor...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
@Autowired
public void configure(EventHandlingConfiguration config, EventStore eventStore) {
// config.usingTrackingProcessors();
config.registerTrackingProcessor(TRACKING_PROCESSO_LOTTO);
}
And, most important, is order to use the "replay" do I have to configure a tracking processor in advance?I mean, what happens if I put the app in production without the tracking processor and later I need to replay the events that populate a specific table/projection?Kind regards,Giancarlo
The SQL activity you are seeing is intended behavior.The TrackingEventProcessor will try to retrieve a token often, to ensure it is up to date with the event store.
It is not required to specify an Event Processing Group as tracking up front.You can change this later on if you want that.It however means that when you start up the application with your 'fresh', now tracking event processing group, that the Token starts at 'globalIndex' 0.It would thus start replaying immediately, since the TrackingEventProcessor thinks it has not handled any events from the event store yet.
The be able to retrieve a Event Processing Group by it's name to call the pause/resume functionality, Allard's made a change in the EventHandlingConfiguration allowing you to retrieve a list of the processing groups.
This is scheduled for 3.0.4., which should be released today.
Hoping to be of help!So, stay tuned :)
Also I'm still having problems with multitenancy, another subject.
--
You received this message because you are subscribed to a topic in the Google Groups "Axon Framework Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/axonframework/ukaLZha63lk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to axonframework+unsubscribe@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to axonframewor...@googlegroups.com.
--Mike Shigueru Matsumoto
--
You received this message because you are subscribed to the Google Groups "Axon Framework Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to axonframewor...@googlegroups.com.