I receive the following exception when I try to update multiple objects in one transaction:
java.lang.IllegalArgumentException: can't operate on multiple entity groups in a single transaction.found both Element { type: "Message" id: 51 } and Element { type: "Message" id: 52 }
This is strange because all of the objects in the transaction share a common ancestor.
When I print the list I receive the following:
[ SITE ID:2 MESSAGE ID:50 MESSAGE CREATED BY:north@gmail.com CREATED ON:Fri May 04 05:38:32 UTC 2012, SITE ID:2 MESSAGE ID:51 MESSAGE CREATED BY:north@gmail.com CREATED ON:Fri May 04 05:38:32 UTC 2012, SITE ID:2 MESSAGE ID:52 MESSAGE CREATED BY:north@gmail.com CREATED ON:Fri May 04 05:38:32 UTC 2012 ]
As you can see, all three message records lookup to the same parent site with id of 2. According to the GAE documentation this means the messages are in the same entity group so it seems that I shouldn't be getting this exception.
Any help is greatly appreciated.
Messagepersistent entities (of IDs 51 and 52) are indeed in separate entity groups. – Ian Marshall May 4 '12 at 8:53