I'm trying to create a simple application using GAE with JDO. My application has a User class, and each user contains list of Events, represented as "List of Keys"
@PersistenceCapable
public class AppUser {
...
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;
...
@Persistent(defaultFetchGroup = "true")
@Element(dependent = "true")
private List<Key> eventKeys = new ArrayList<Key>();
...
}
While creating new Event I'm doing few step. 1. Create event. 2. Add newly created event to user 3. store User.
Something like this:
Transaction tx = pm.currentTransaction();
try {
tx.begin();
Event storedEvent = eventDao.saveEvent(event, pm);
appUser.addEvent(event);
AppUser newUser = userDao.saveUser(appUser, pm);
tx.commit();
...
} finally {
if (tx.isActive()) {
tx.rollback();
}
pm.close();
}
on addEvent method basically almost the same as in the Sticky example in GAE demos.
public void addEvent(Event event) {
final List<Key> keys = new ArrayList<Key>(eventKeys);
keys.add(event.getKey());
setEventKeys(keys);
}
The problem is that events sometimes are adding, sometimes not. So behavior is really unstable. During debug sometimes I can see list of keys before adding new one: [Event(42), Event(43)] After adding new Event it became: [Event(42), Event(44)], so that previous one Event(43) disappears.
I'm using 1.7.3 GAE sdk, and jdo-api 3.0.1
I would appreciate any help.
UPDATE 1: After enabling log in datanucleus I was able to gather next information ordered by time. It is interesting, that some calls are re-ordered. so first call stores User with 2 Events, second one stores user with only one Event.
Nov 23, 2012 5:07:53 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65), Event(66)]], email[test@example.com], activeEventId[65], name[test@example.com], }
Nov 23, 2012 5:07:54 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65)]], email[test@example.com], activeEventId[66], name[test@example.com], }
Nov 23, 2012 5:07:57 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65), Event(67)]], activeEventId[66], email[test@example.com], name[test@example.com], }
Nov 23, 2012 5:08:00 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65), Event(67), Event(68)]], activeEventId[67], email[test@example.com], name[test@example.com], }
Nov 23, 2012 5:08:00 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65), Event(67)]], activeEventId[68], email[test@example.com], name[test@example.com], }
FINE: Connection found in the pool : com.google.appengine.datanucleus.DatastoreConnectionFactoryImpl$DatastoreManagedConnection@4012def for key=org.datanucleus.ObjectManagerImpl@d7b7a9a in factory=ConnectionFactory:tx[com.google.appengine.datanucleus.DatastoreConnectionFactoryImpl@5f54e4dd]
Nov 23, 2012 5:08:04 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65), Event(67), Event(69)]], email[test@example.com], activeEventId[68], name[test@example.com], }
Nov 23, 2012 5:08:04 PM com.google.appengine.datanucleus.EntityUtils putEntitiesIntoDatastore
FINE: Putting entity of kind AppUser with key AppUser(64) as {eventKeys[[Event(65), Event(67), Event(69)]], activeEventId[69], email[test@example.com], name[test@example.com], }
UPDATE 2 I've spend few days using different approach of PersistanceManager usage and transactions. And finally found that if I'm removing transaction on storing event and user:
//Transaction tx = pm.currentTransaction();
//tx.begin();
Event storedEvent = eventDao.saveEvent(event, pm);
appUser.addEvent(event);
userDao.saveUser(appUser, pm);
//tx.commit();
Everything works fine, ones I'm enabling transaction (since I would like to have that consistent. Store event and add that event for user.) app, starting to work unstable. I would appreciate if anyone can explain what I'm missing to understand..