-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instrument RetryingTransactionHelper #106
Comments
Seems like our only option is AOP to intercept the method calls, then override the bean globally. |
Please notice that in a lot of cases, a (new) instance of a |
@AFaust pointed out that since the |
One of the most annoying edge cases @AFaust comes across is the transaction rollback without logging an exception. This information could also be instrumented, to know for which exceptions the transaction has been rolled back (and e.g. how many transaction rollbacks were there). |
Minor note on the "most annoying edge cases": In that case no exception actually reaches the |
RetryingTransactionHelper can be used to hide many underlying concurrency issues.
We would like to instrument it to get more insights on:
https://github.com/Alfresco/alfresco-repository/blob/master/src/main/java/org/alfresco/repo/transaction/RetryingTransactionHelper.java
The text was updated successfully, but these errors were encountered: