I am using Atomikos Transaction Manager to manage distributed Transactions in a Spring-Boot standalone app to integrate ActiveMQ queues and a postgresql DB (JPA via Hibernate5), using Apache Camel. My issue is that there are lots of messages like the below printed in my logs.
Purging orphaned entry from log: CoordinatorLogEntry [id=myapp148991647253713828, wasCommitted=true, state=COMMITTING]
Any ideas?
It was really simple really.
When messing with the configuration I mistakenly enabled the com.atomikos.icatch.forget_orphaned_log_entries_delay
and changed the default value of 86400000 (1 day)
to 30000 (30 sec)
. For now, I just rolled back to default value.