Imagine I have a spring boot application using axon with jpa store and embedded busses/gateways (supposibly with aggregate storage, not ES, but maybe that is not relevant).
I now run two nodes of the same app against the same DB.
Will an aggregate that command is handled on node 1 lock the aggregate, so I cannot handle a command for the same aggregate on node 2, or will they both handle and thus may produce locking exceptions?
Thanks
Jan