I do have an application which creates entities and save it in BULK.
I tested this locally and it is working fine. However it is failing
consistantly when deployed in Google App Engine. I am trying to save
1000+ entities in one go of same type.
The error I am getting is
"org.datanucleus.exceptions.NucleusUserException: Illegal argument".
I checked the forumns and found that it is related to saving multiple
entities belonging to different entity groups. However in my case I do
have a single entity as below.
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Order {
@PrimaryKey
@Persistent(valueStrategy=IdGeneratorStrategy.IDENTITY)
private String code = null;
private Float closePrice = null;
--------
Can anyone help me out?
As it is working fine when tested using Eclipse, I have no clue how to
troubleshoot this.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en
-~----------~----~----~----~------~----~------~--~---