Skip to content
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

GPAUDITLOGGING-4: Audit Logging Causes Rollback To Fail #88

Open
robertoschwald opened this issue Jun 23, 2015 · 4 comments
Open

GPAUDITLOGGING-4: Audit Logging Causes Rollback To Fail #88

robertoschwald opened this issue Jun 23, 2015 · 4 comments
Labels

Comments

@robertoschwald
Copy link
Member

Original Reporter: bdrhoa
Environment: MySQL (Innodb), Grails 1.3.7
Migrated From: http://jira.grails.org/browse/GPAUDITLOGGING-4

If auditable = true then the insert into the audit log ends up creating a commit when a roleback is supposed to take place.

Example scenario:

Customer has a Person:owner
Person hasMany Authorities
Authority hasMany People

Given a Person who has Authority records and is in use as an owner of a Customer.
In a transaction:

  1. Delete his Authority records
  2. Try to delete the Person record

This will cause a Referential Integrity Constraint error and should rollback the delete to the Authority records. However, the insert into the audit log and a commit get's sent to the DB, before the rollback from the error.

See the SQL log that illustrates the problem.

Setting transactional = true in config.groovy has no effect. The only current solution is to use static auditable = [handlersOnly:true].

@robertoschwald
Copy link
Member Author

robertoschwald said:

Maybe we should switch to withNewTransaction to decouple audit logging from the main transaction.

@robertoschwald
Copy link
Member Author

bdrhoa said:

If I understand what you're saying correctly, then we would in fact have two separate transactions, one for the application transaction and one to create the audit record.
If that's the case, then wouldn't a rollback of the application transaction end up with the original transaction left in the log? That would be OK as long as the rollback created an offsetting log entry too.

@robertoschwald
Copy link
Member Author

longwa said:

The 'transactional' flag is a bit confusing to me. I would think you want one of two behaviors:

  1. Audit logging becomes part of any current transaction so that the logging and the db operation are atomic and either succeed or fail together (this should be the default IMO).
  2. Audit logging is always in a new transaction and is persisted regardless of the outcome of the enclosing transaction.

Right now, the code doesn't handle the second case and even the first case is a bit dicey.

For example, the actual save() of the audit log can be inside of a withTransaction() if using transactional= true, but since it's only wrapping the individual save(), it's not really doing much.

At a minimum, I would think ALL of the audit rows for a single operation should be within a transaction together so you don't ever risk getting a partial log (especially true when verboseLog is enabled).

@vidass
Copy link

vidass commented Nov 19, 2015

is it fixed in new 1.1.0 release ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants