Hello guys,
I would like to ask some questions about the tracking process.
-
After setting up a successful example, I noticed that the engine executes (show_sql = true) intensively Selects and Updates the domain and token tables. Is there any way to schedule the time for this check? I’m a little worried about performance since my application can autoscale automatically.
-
Is there any way I can call this check programmatically? That way, I could provide some API to call at specific times.
-
The monitoring process is only verifying the public scheme. How could I specify the schemas?
I’m using the basic configuratin with Axon 3 and springboot
@Autowired
public void configure(EventHandlingConfiguration config) {
config.registerTrackingProcessor(“MyProcessorName”);
}
Thank you