Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » EclipseLink » em.merge(treeOfEntities) impossible with optimistic locking(It is impossible to merge a tree of entities when using optimistic locking in leaf entities)
icon4.gif  em.merge(treeOfEntities) impossible with optimistic locking [message #1043287] Wed, 17 April 2013 14:07 Go to next message
Markus KARG is currently offline Markus KARGFriend
Messages: 28
Registered: June 2011
Junior Member
We never thought too much about it, but today we noticed a Situation which is really bad, and we'd like to discuss how to most simply work around it! Smile

Situation:

There is a tree of entities, where root node A and leaf nodes B and C all use optimistic locking (integer version).

Initial Tree:

A (v1)
!
+-- B (v1)
!
+-- C (v1)

As it is a "parent-child" kind of relation, all operations on A are cascaded to B and C.

Now, two processes concurrently perform different transactions on separate leafs of the tree:

TX 1:

em.detach(A)
B.setX(...)
em.merge(A) // Works well

A (v1)
!
+-- B' (v2)
!
+-- C (v1)

At the same time, process 2 does this:

TX 2:

em.detach(A)
C.setX(...)
em.merge(A) // Throws OptimisticLockException!

A (v1)
!
+-- B (v1)
!
+-- C' (v2)

The result of TX 2 is OptimisticLockException, as EclipseLink assumes that B1 shall be nodified back to v1 again -- what actually is not wanted by the user. In fact, B was neither touched by TX 2, nor A was!

Expected result from a user's point of view instead shall be:

A (v1)
!
+-- B' (v2)
!
+-- C' (v2)

What we are desperately seeking is a solution how to tell EclipseLink that TX 2 actually is NOT wanting to restore B back to v1, but that B shall simply get ignored, as it was not touched at all!

Any help appreciated! Smile

Thanks!
-Markus
Re: em.merge(treeOfEntities) impossible with optimistic locking [message #1044706 is a reply to message #1043287] Fri, 19 April 2013 08:28 Go to previous messageGo to next message
Markus KARG is currently offline Markus KARGFriend
Messages: 28
Registered: June 2011
Junior Member
As Oracle's Tom WARE told me, this is definitively not a bug in EclipseLink, but it is in fact impossible for any JPA Provider to guess whether B(v1) sent together with the second merge is meant as a replacement ("undo") for the previously merged B'(v2), or whether it is simply untouched. Sounds reasonable, unfortunately. While SVN or GIT have a history to decide this, JPA has not. Sad

So the question is: How to work around this?

One idea would be to store a dirty flag with A, B and C if changed, and then just before the merge happens, replace B(v1) by em.find(B.class, B.id). I assume this will work as it effectively leads to the fact that EclipseLink now knows that B is simply untouched. But on the other hand that means that the client must track changes, which I hoped he wouldn't. Think of People using a text editor to modify XML. This idea would impose the burden to manually tell each changed node. While technically reasonable, it will sound ridiculous to the user.

Any other ideas appreciated! Smile

Regards
-Markus
Re: em.merge(treeOfEntities) impossible with optimistic locking [message #1047679 is a reply to message #1044706] Tue, 23 April 2013 14:09 Go to previous messageGo to next message
James Sutherland is currently offline James SutherlandFriend
Messages: 1939
Registered: July 2009
Location: Ottawa, Canada
Senior Member

Yes, if you call merge() on an object, it will be merged, not just changes (which are not known).

If you have a stateful model, you can create your EntityManager at the start of the user's interaction, such that you query the original through the EntityManager and return it to the user. Then when you merge the object back from the user, the persistence context will have the original object and only merge and update what was changed.


James : Wiki : Book : Blog : Twitter
Re: em.merge(treeOfEntities) impossible with optimistic locking [message #1047705 is a reply to message #1047679] Tue, 23 April 2013 14:45 Go to previous message
Markus KARG is currently offline Markus KARGFriend
Messages: 28
Registered: June 2011
Junior Member
Unfortunately the server is stateless, which shall not (and cannot) be changed (REST principle). But besides that, I see the problem that in the case you describe, the optimistic locking will not work. Does it?
Previous Topic:How to use EclipseLink 2.4.1 in GlassFish 3.1.1?
Next Topic:Eclipse Link insert/update performance issue
Goto Forum:
  


Current Time: Tue Apr 23 07:03:35 GMT 2024

Powered by FUDForum. Page generated in 0.03225 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top