Tagged Questions
0
votes
0answers
14 views
Reducing memory usage for batch JDO inserts
We have a Java web app using Data Nucleus 1.1.4 / JDO 2.3 for persistence.
There's a batch import operation that persists a large number of JDO objects in one shot. We've had some situations where ...
0
votes
1answer
31 views
Unable to read Inherited class instances with DataNucles JDO
I was unable to read the full inherited class instances as described in following URL
http://www.datanucleus.org/products/datanucleus/jdo/orm/inheritance.html
Following describes the mapping of ...
0
votes
0answers
38 views
App Engine JDO contains on Set property
I have the following class:
@PersistenceCapable
public class User implements Serializable {
@PrimaryKey
private long userId;
@Persistent(defaultFetchGroup = "true")
private Set<String> ...
0
votes
0answers
35 views
Child entity not retrieved in JDO
I am not able to load the list of child entities (options) for following Poll entity even that I have specified the field to be in default fetch group and even touched it in findPoll() method. Poll ...
1
vote
1answer
32 views
JDO query a list using a list
I am using JDO to query my database. The entity class looks kind of like this:
class Entity
{
// other members of the class
List<String> stuff;
// members and methods
}
I am writing a ...
1
vote
0answers
47 views
JDO - java.lang.NoClassDefFoundError in Google Web Application
Im trying to make a Google Web Application in Java. I got a servlet named Get.java, a EMF.java that is taking care of the storage and a javabean, Person.java.
Get.java:
package no.nordnes;
import ...
0
votes
1answer
62 views
AppEngine JDO query is not working as expected
I'm working with AppEngine and I want to query data entity with:
Bool data 'optional' is False.
ascending order for Date 'registrationTimestamp'.
My code:
Query query = ...
0
votes
1answer
25 views
JDO - Querying/linking child by parent (Google App Engine)?
I've been trying to get JDO working with parent/child relationships, but I'm not having much success. Using the relationship setup as seen here and queries as seen here, I want to be able to link a ...
1
vote
1answer
74 views
Google App Engine Datastore too slow persistence
I'm developing a GAE/J app using JDO to manage the Datastore. It offers a number of Endpoints to interact with the data and so on. I'm also developing a Javascript client for those endpoints.
...
0
votes
1answer
34 views
String concatenation in jdo query
I am trying to do a query that does a like search on concatenated results.
In sql it would look like this:
WHERE firstname + ' ' + lastname LIKE '%namesearch%'
When trying this in jdo I do this:
...
1
vote
2answers
65 views
GAE datastore will not persist owned 1:1 relationship within embedded JDO class
I have three @PC classes:
@PersistenceCapable
class A {
@PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
@Extension(vendorName = "datanucleus", key = "gae.encoded-pk", value ...
0
votes
2answers
46 views
Persistence Manager not saving all data
I have the following issue with the database in my project, and I have no idea what is causing it:
There is the following class hierarchy:
Class A - has an embedded instance of class B
Class B - has ...
-3
votes
0answers
25 views
Query against enum [closed]
I need some Java code example showing how to query and order by an enum field using JDO. Could not find any doc on this. Could perhaps Datanucleus provide an example ?
For now I can persist my ...
0
votes
0answers
25 views
JDO not fetching text field
I have an Employee class
@PersistenceCapable(table = "employee")
@PrimaryKey(name = "PK_employee")
public class Employee{
@PrimaryKey
@Persistent(primaryKey = "true", valueStrategy = ...
1
vote
1answer
45 views
GAE persisted value not updating in deployed app but locally
Currently I'm working on a small project which involves GAE using JDO, however I seem to have a problem persisting the updated data - the strange thing is it works locally but not in the deployed ...
0
votes
1answer
44 views
javax.jdo.JDOException: Unexpected error during precommit
Today i introduced some new fields into my data model and pushed it online and i started seeing this exception. Does anyone have an idea when this happens?
org.datanucleus.ObjectManagerImpl ...
0
votes
0answers
43 views
Unable to map 1:N Unidirectional relation using JDO
I need to map 1:N Unidirectional relation using JDO Annotation (DataNuecles). I'm having a pre-defined database.
Relation is, 'User' can have a Set of 'UserDescriptions'. I already having two tables ...
0
votes
2answers
30 views
How to implement EndCursors in GAE/J - JDO
I have a GAE/J app using JDO on top of the Datastore and I've been able to paginate query results using cursors. The default implementation is something we call startCursor in my team (i.e give me ...
0
votes
1answer
48 views
Create new object from two tables JDO DataNucleus
I am attempting to create a DTO object by persisting two classes using DataNucleus.
The DTO I wish to create:
@PersistenceAware
DtoObject{
Protected String Id; //populated by Order class
...
0
votes
1answer
98 views
Query two entities in Google App Engine JDO
Am new to google appengine and jdo. I do not know how to write a query in JDO with two entities. I have UserProfile and UserFeed entity like as below.
@PersistenceCapable
public class UserProfile {
...
0
votes
1answer
60 views
Jdo (datanucleus) integer_idx column and databinding
I've been trying to do a simple one to many object binding in DataNucleus JDO. It's just two classes (i stripped a simple fields):
@PersistenceCapable(table="ORDER",schema="mgr")
public class Order {
...
0
votes
0answers
30 views
JDO - List property ordering
I am experimenting with JDO against a legacy database schema, and I am trying to understand how to map various scenarios to my objects.
For example say I have an object called "Country" and another ...
0
votes
1answer
65 views
JPA, complex object graphs and Serialisation
I have a "Project" entity/class that includes a number of "complex" fields, eg referenced as interfaces with many various possible implementations. To give an example: an interface Property, with T ...
1
vote
1answer
39 views
PersistenceManager.getObjectById with ancestor key
I'm creating a Java GAE app using JDO for the Datastore.
I have these 2 classes User and Folder.
@PersistenceCapable
public class User {
@PrimaryKey
@Persistent(valueStrategy = ...
2
votes
1answer
55 views
Java equivalent for Python app-engine model/entity representation and operation
Consider the following app-engine models in python.
class Account(ndb.Model):
email = ndb.StringProperty()
nickname = ndb.StringProperty()
phone = ndb.IntegerProperty()
date = ...
1
vote
1answer
78 views
Get DB object from JDO/DataNucleus and MongoDB with a String _id
I am using JDO and DataNucleus to persist runtime-generated objects into MongoDB. The database objects have their own unique identifier, a string, which I put into Mongo's _id field. This works fine ...
1
vote
1answer
46 views
Retrieving an object from Datastore by an attribute in its child object
I'm creating a Java web app in Google App Engine with JDO.
I have a class User that has an attribute SessionToken. Both classes are persistent with an owned one-to-one relationship.
...
0
votes
1answer
89 views
Error creating an entity in Google Datastore with JDO
I'm creating a web application in Google App Engine with JDO and I get a JDOFatalUserException:
javax.jdo.JDOFatalUserException: Detected attempt to establish User(15) as the
parent of ...
0
votes
1answer
41 views
Fetching data from jdo datastore
I have created two classes on client-side and they are stored using GWT JDO.
The parent class looks like:
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Park implements ...
0
votes
3answers
144 views
Using one-to-many owned relationship in JDO - AppEngine
I'm new to JDO and its concept. I worked with ORMLite before which is very simple, and I can't figure out how should I do in JDO what I did in ORMLite.
I have 2 entities, Broadcast and Movie. Every ...
0
votes
1answer
88 views
Google App Engine (Java) - JDO PersistenceManager makePersistentAll Slowing Down
I have an application that is a mini-CRM. I am trying to add functionality to allow for bulk user imports. The upload handler reads the data from a CSV file and then calls my CustomerService class to ...
0
votes
0answers
71 views
How to use JDO in appengine to query datastore that has been populated?
I've populated an AppEngine datastore with Entities of Kind "A". I want to leverage JDO so that I can get a list of objects back from my query. My JDO object is "com.example.Person". How can I create ...
0
votes
0answers
59 views
kodo/jdo query with Date, casting issue
i have the following issue.
I use kodo-jdo 3.4.1 library to perform the following query
filter="creationDate >= "+QueryUtil.VAR_DATE_1+" && creationDate < "+QueryUtil.VAR_DATE_2+"
...
1
vote
2answers
188 views
Unable to get ID of newly-created JDO persistent entity using GAE/J DataNucleus plug-in version 2.1.2
My problem
I am porting my application from version 1.x to 2.0 of the DataNucleus plug-in for GAE/J using the new 1.7.5 GAE/J SDK. This changes my JDO version from 2.3 to 3.0.1. My persistent entity ...
2
votes
1answer
162 views
Generate Automatic Id IdGeneratorStrategy
I'm using Goole App Engine to Build my REST API, I've already marked my class as PersistenceCapable and also i got defined my @PrimaryKey and also marked as @Persistent(valueStrategy = ...
0
votes
0answers
63 views
The most efficient way of performing key-only queries in JDO on AppEngine
I have a persistence capable class
ActivityIndex {
@PrimaryKey
Long id;
@Persistent
Activity activity;
//other stuff
}
and another
Activity {
@PrimaryKey
...
2
votes
2answers
108 views
How to connect to a remote RDBMS on Google App Engine
I understand that GAE uses its own NoSQL Big Table Datastore for persistence. But I'm wondering if it's possible to connect to an external/remote/non-GAE DB.
I see JDBC is not supported, at least as ...
2
votes
1answer
186 views
How do I enable High Replication Datastore on local dev_appserver?
I am using latest Java SDK 1.7.4, and the following command to start dev server:
%java.home%\bin\java -Ddatastore.default_high_rep_job_policy_unapplied_job_pct=20 -cp ...
5
votes
1answer
84 views
Unsure if I understand TransactionAwarePersistenceManagerFactoryProxy
I am trying to use the org.springframework.orm.jdo.TransactionAwarePersistenceManagerFactoryProxy in my Spring project, but I am not sure how to use it or whether it's exactly what I am looking for. I ...
2
votes
1answer
51 views
JDOPersistenceManagerFactory is taking forever to create PersistencManager
I've created an app on appengine, but am running into an issue. It seems to me that the PersistenceManagerFactory is creating a new connection to the datastore on each request. It is common for my ...
0
votes
1answer
181 views
DataNucleus Class not Persistable Exception
I was trying to made some basic persistent classes with datanucleus jdo(and neodatis as datastore).
I have the following three classes(copied fom the tutorial)
inventory.java
@PersistenceCapable
...
0
votes
1answer
62 views
Unable to use JDO in a GAE background thread
I have created a background thread on a Runnable object in Google App Engine like this:
BackendService s = new BackendService();
thread = ThreadManager.createBackgroundThread(s);
thread.start();
...
0
votes
1answer
212 views
Google App Engine JDO enhancement is failing
I am trying to build my first Google App Engine WAR and am setting up my own external (outside of Eclipse) Ant build to be executed from the terminal. I'm trying to get the <enhance_war/> Ant ...
0
votes
1answer
89 views
How do I ensure a new JDO Entity in Google AppEngine does not exist before creating it?
I have a JDO Card entity with an externally generated Key (read from a physical card). This links to a User entity, which is created at the same time as the Card entity. When I read the card and call ...
5
votes
2answers
335 views
How can I reduce Google App Engine datastore latency?
Through appstats, I can see that my datastore queries are taking about 125ms (api and cpu combined), but often there are long latencies (e.g. upto 12000ms) before the queries are executed.
I can see ...
0
votes
0answers
91 views
NPE when using setter on List in DataNucleus-AppEngine
I have entities A, B, C where:
- A has a list of owned Bs
- B has a list of unowned Cs
- C has a list of unowned Bs
I'm running into a problem when setting a list of C's on a B object, in JDO. When I ...
0
votes
1answer
163 views
GAE + Spring + JDO - PersistenceManagerFactory initialization error
I have a standard PMF class:
public class PMF {
private static final PersistenceManagerFactory persistenceManagerFactory = JDOHelper
...
0
votes
1answer
39 views
On Google App Engine is it possible JDOQL Date without using a parameterised query?
Is it possible to do a date query in JDOQL without using a parameterrised query on Google App Engine.
I am trying to write some generic code that looks something like this, where criteria is just a ...
0
votes
3answers
128 views
What is the difference between javax.persistence.metamodel.Map and java.util.Map?
I am trying to write a JDO annotated class in GAE and I want to persist a map. The map is supposed to be an entity field that is a collection of entities hashed by Date. (I am not even sure if this is ...
0
votes
1answer
61 views
“Object of type PictureBook and identity yyy was not detached correctly” on live appengine
I have an object PictureBook that contains a List< Picture> that's anotated with persistent.
@PersistenceCapable(identityType = IdentityType.APPLICATION,
detachable = "true")
public class ...






