Objectify-Appengine is a thin data access layer over Google App Engine-Java's low-level datastore API's
0
votes
0answers
18 views
Unable to get saved entity using objectify
I am unable to get my saved entity reliably using Objectify.
It looks like the cache is getting corrupted. The strange thing is - I can see the saved entity correctly though admin console datastore ...
1
vote
1answer
26 views
Does order of the filter matter in AppEngine datastore?
I was wondering, does the order of the filter matters in appengine datastore?
Example, say if we have two filter: isDeleted and startDate. Does changing the order of these
two filter property ...
0
votes
1answer
20 views
Objectify: bulk delete taking way longer than save
Batch deleting of 28,000 entities takes 154 seconds but saving the same entities takes 22 seconds. The entities have an @Id and a few @Index but are otherwise unremarkable POJOs. It's pretty much ...
0
votes
1answer
22 views
Key.create vs. ofy().load()
I want to get the key to an entity (I don't need the actual entity. I need the key just to get a child entity).
So I know there are two ways of doing it:
// 1.
Key<Thing> tKey = ...
1
vote
1answer
31 views
GWT Error: RequestFactory ValidationTool must be run
Everytime I launch my app I get the "RequestFactory Validation Tool must be run..." error even if listEmptyBoxes() is not executed. I already have file requestfactory-apt-2.5.0-rc1.jar on the ...
1
vote
1answer
18 views
HRD with no unapplied jobs on GAE Java Dev Server
For testing purposes I would need to run a local App Engine Java development server with the high-replication datastore (HRD), but with no unapplied jobs. I would like to have the same effect that I ...
0
votes
1answer
18 views
Persisting Collection<T> using Objectify4 on GAE
I have been having issues with persisting a generic Collection on Google datastore using Objectify4. E.g.
@Entity
class AnimalInfo
{
@Id
String id;
Collection<Animal> animals;
}
...
0
votes
0answers
29 views
I am getting an error when trying to load an entity from the datastore using objectify
The code I am using to load is
Objectify ofy = getService();
UserCredentials cred = ofy.load().type(UserCredentials.class).id(userId).get();
and the error is
Uncaught exception from servlet
...
1
vote
1answer
34 views
Removing field indexes safely
I'm moving the data model of an app engine app to Objectify, and I've noticed that Objectify for it's entities specifies all properties of an entity as unindexed by default, which makes sense to me as ...
0
votes
1answer
23 views
java.lang.IllegalArgumentException: can't accept class com.veersoft.gwt.shared.trailbalance.TrailBalanceClassResult as a memcache entity
Inorder to make my application faster, I'm using the MemcacheService. Now while I'm trying to put an object into the MemcacheService, I'm getting the following error:
...
0
votes
0answers
53 views
Unable to build my project
About my project: I use GWT and objectify with In the google appengine server. I've transferred my project from SVN client to Git client. Now after doing the clone, some how I'm unable to build my ...
1
vote
0answers
28 views
Objectify generics compile time error with incompatible objects in Java 7
In java 6 the following line compiles however in Java 7 I get an incompatible type error (See below). Any ideas what is going on here?
Player player = new FPlayer();
player.setId("SomeString");
...
0
votes
1answer
32 views
Best way to check if a set ok keys exist
What's the best way to check withs keys exist from a set of Keys using Objectify?
Currently I'm using:
List<T> list2LookFor= ...;
Map<Key<T>,T> objects = ...
1
vote
2answers
54 views
periodically delete entries in objectify
I'm using Google App Engine with Objectify and would like to delete some entries in the db every 5 minutes. What would be the best way to accomplish this? Should I use Google App Engine's ...
2
votes
1answer
95 views
Objectify and TimerTask: No API environment is registered for this thread
I'm trying to get a TimerTask set up to remove entries from Google App Engine's dataStore periodically. So I set up a ServletContextListener with a Timer.
Inside the contextInitialized, I have ...
2
votes
1answer
52 views
Birthday query in Google App Engine
I want to have a list of contact that celebrates their birthday disregarding the year, but I can't seem to disregard the year when I do gql.
The closest that I get is the code
SELECT * FROM Contact ...
0
votes
1answer
33 views
Objectify - does transaction throw ConcurrentModException in case of simultaneous creation of an entity?
Does Objectify throw a ConcurrentModificationException in case an entity with the same key (without a parent) is created at the same time (when before it did not exist) in two different transactions? ...
0
votes
1answer
46 views
How to design an “event or calendar” related database (I am trying to invent a design system tied to keys)
Technologies that I will use are : GAE Datastore and Objectify. My database is related to events and places (maybe some experts that has already designed a database similar to google calendar, or ...
0
votes
0answers
64 views
Full text seach api not working with objectify java : index.put() throwing nosuchmethod
This is simple code for search api java , creating only one document and adding into an Index
we are using app engine java sdk 1.7.6 and objectify4.0 beta 1
the same code works when deployed online ...
0
votes
1answer
50 views
Google App Engine projection query returns 0 results
I am trying to perform a projection query in order to fetch several properties from each entity in my datastore of over ten thousand entities. I have read and followed the documentation, but my query ...
0
votes
2answers
39 views
Cannot delete Object from local AppEngine datastore
Hi I am using Objectify to manage the AppEngine Datastore. I have following object:
public class Config implements Serializable{ @Id Long id ;}
I also have a repository which uses ofy().get() and ...
0
votes
1answer
58 views
Objectify Filter by Ref
I have a m-n relationship with Objectify, and I want to get 1 side of the relation.
I was trying to solve it with this query:
Query query = ofy().load().type(Person.class);
...
0
votes
2answers
21 views
How to stop Objectify from returning cached values?
I'm saving an object with Objectify like this:
Thing th = new Thing();
th.identifier = thingId;
th.name = thingName;
th.json = thingData;
ofy().save().entity(thing);
pResponse.setStatus(200);
...
1
vote
2answers
57 views
Why does a GAE entity name have to be unique regardless of hierarchy?
I am on Google App Engine, using Objectify. Consider the following simplified setup:
@Entity
public class UserGroup
{
@Id
private String identifier;
}
@Entity
public class User
{
@Id
...
0
votes
1answer
60 views
NoSuchMethodError: com.google.appengine.api.memcache.ErrorHandlers.getConsistentLogAndContinue
Why do I get this error when I try to access a "resource" in my web service:
java.lang.NoSuchMethodError: ...
0
votes
0answers
26 views
objectify + Gson - IllegalStateException on custom serialize method
I'm trying to serialize to JSON an entity with properties that hold a Ref to another entity. So I'm overriding the serialize method so that only relevant data will be outputted. BUT - in the custom ...
0
votes
2answers
35 views
Migrating JDO based App Engine app to Objectify
I would like to migrate my JDO based App Engine app to objectify. But It would be quite a lot of work to do this as there are a lot of queries.
Is it possible to use JDO and Objectify side by side, ...
5
votes
1answer
138 views
GeoSpatial Radius Search Using Objectify
I am developing an application using GeoModel. I need to perform search in a particular radius based on the given latitude and longitude. I am able to generate the GeoCells in the datastore using ...
0
votes
0answers
49 views
Behavior of of serialized Ref<?> in objectify
I need to serialize a (java)collection that holds Refs<>(hashmap,long>) .
Now, had I not serialized it I would have to explicitly load the Ref objects after loading the parent object(i`m not using ...
1
vote
1answer
78 views
Reindex task/mapper/job for AppEngine Java
Does anybody know of a library or good code sample that could be used to re-index all/some entities in all/some namespaces ?
If I implement this on my own, is MapReduce what I should consider ?
"I ...
1
vote
1answer
76 views
Moving to ZIG ZAG merge versus optimal indexes
My application currently defines all optimal indexes needed. But slowly I start suffering from the exploding indexes problem, so I want to switch my strategy and start using "zig-zag" merge as ...
-2
votes
5answers
105 views
My AppEngine Application is too slow, how to speedup the application?
I am developing an AppEngine application with GWT framework using Java. Objectify as back-end(storage purpose). Application has around 30 modules. Whenever I open any page in my web application, it is ...
1
vote
1answer
68 views
Google App Engine: Fastest way to get a large collection of objects from Keys using objectify
I have a large (about 20000) objects that I want to retrieve based on user IDs contained in AlertSubscription. This takes 20+ seconds on GAE and I wonder if it is possible to get this faster? I have ...
0
votes
0answers
32 views
Updating embedded classes in objectify
I've come across a problem when updating embedded entities. I have entity classes structured as:
@Entity
public class Reminder {
private Long id;
private Date startDate;
@Embed
private ...
0
votes
0answers
75 views
Google app engine OR QUERY ids with Objectify
Hello I am using objectify with google app engine.
I've seen that I can do something like this one
List<Car> cars = ofy().load().type(Car.class).filter("year in", yearList).list();
Which ...
0
votes
1answer
29 views
Is My Query correct?
I am trying to query using objectify to display a list of <Fight> with eventEid = 111. Is the below call correct? I ran it and it returns 0... but its strange because it looks right
Please note ...
1
vote
1answer
34 views
Objectify Ofy() is not finding the “query” method
I am new to objectify, and reading a tutorial on how to query. For some reason when I type the following code:
Query q = ofy().query(UserChoice.class).filter("email", email);
My Eclipse gives me a ...
1
vote
1answer
79 views
Objectify - send autogenerated key into GWT client-side
How to reflect auto-generated key on server side into Entity in client side of GWT application?
Suppose I have new objectify entity with key field @Id Long id;
Before saving, value of id is null. ...
0
votes
1answer
36 views
Objectify error despite all the instructions
I get this ...[ERROR] Unable to find 'com/googlecode/objectify/Objectify.gwt.xml'...
When I am trying to run the GWT application using objectify.
The app itself runs, up until I insert
then it ...
0
votes
1answer
54 views
How to avoid inconsistent state entities in the Objectify cache?
In my models, I have a few methods which are more complex and can throw exceptions. When these exceptions occur, they can leave the model in an inconsistent state. This situation has never been a ...
0
votes
1answer
22 views
How do i ensure that an async objectify API call like “delete” completed successfully?
How do i ensure that an async objectify API call like "delete" completed successfully?
So, will "ofy().delete" throw some exception if it does not complete successfully?
0
votes
1answer
38 views
How to initialize a Ref<?> field in objectify to a dummy value
I have a collection(arraylist) of Ref `s ,the objectify documentation says that I need to initialize collections for them to be persisted and hence modified in the future.....
Now , Ref points to an ...
0
votes
1answer
89 views
Exception in using objectify in GAE
I am writing a GAE program which use objectify. I download objectify-4.0b1.jar form here and add modify WEB-INF/web.xml according to this. However, when I run my program, I got the following warnings. ...
1
vote
1answer
25 views
How to use Objectify's annotation when sharing common abstract models through inheritance?
Currently, I have some abstract model classes which have common behaviours for other concrete models. For instance, an abstract SearchableModel.class might be inherited by other concrete models.
...
0
votes
1answer
25 views
How to query a particular object without it's embedded objects or collections?
I have a class, lets say Blarkar. Blarkar has an embed class kar. Sometimes when I query for an instance of Blarkar I want the complete object, but other times I don't need all its embed objects and ...
0
votes
2answers
227 views
Android app > Restlet + Objectify > Google App Engine = Unsupported Media Type (415) - Unsupported Media Type
-Hello, I followed this tutorial and I managed to store data in Google App Engine via a Restlet Webservice (using Objectify) called from an Android App :
...
0
votes
2answers
44 views
How to save/load/delete an entity from a particular namespace using Objectify?
Can anyone point me to Objectify sample code to save/load/delete an entity that belongs to a particular namespace ?
Regards,
Sathya
0
votes
1answer
75 views
Query filter into List<String> with Objectify 3.1
I have the class :
public class GuideStore {
...
private List<String> privileges;
...
}
And I make the filter with objectify like:
Query<GuideStore> query = ...
0
votes
2answers
100 views
Objectify embedded array inside an embedded array can't persist
My Class heirarchy is as follows
School - contains list of Employees - which contains list of qualifications
Employees is an Embedded list in School. I can persist a School with it's employees no ...
0
votes
1answer
152 views
Restlet Invalid type signature for com.google.appengine.api.datastore.GeoPt
Good day. I have been using restlet 2.1.1 for a while in this application in combination with objectify-appengine. Ever since a upgrade to the objectify side (3.1 to 4.0b) I have had issues with ...




