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
23 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
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
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
54 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 ...
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
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); ...
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
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 ...
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
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. ...
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
229 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 ...
1
vote
1answer
151 views

Why can't GWT deserialize the native datastore key any more?

I've only started to have this problem having upgraded all of my libraries: I was using GWT 2.4, App Engine 1.6.3 and Objectify 3.0. I upgraded to GWT 2.5, App Engine 1.7.4 and Objectify 4.0b1. ...
0
votes
1answer
120 views

How to enable Objectify XA transaction?

I'm implementing friendship functionality between entities of same type Profile. This entity kind is root (non parent) entity. A Profile has a Set<Ref<Profile>> field named friends and ...
1
vote
1answer
71 views

Can a Google App-Engine Objectify entity have multiple @Id fields?

I wonder if an Objectify entity have multiple IDs. I don't fully know how an @Index works, but I suppose it's also used for sorting purposes. I have an entity with two fields that it has unique ...
1
vote
1answer
72 views

Objects not saving using Objectify and GAE

I'm trying to save an object and verify that it is saved right after, and it doesn't seem to be working. Here is my object import com.googlecode.objectify.annotation.Entity; import ...
0
votes
1answer
33 views

The id of root entities of the same kind

The auto generated @Id Long id is said to be unique within specific parent. Does this mean that it is a possible for root entities of the same kind to have them same id. If this is true how do I ...
0
votes
2answers
137 views

Why do I get Only ancestor queries are allowed inside transactions error

boolean r = ofy().transact(new Work<Boolean>() { @Override public Boolean run() { Visit visit = ofy().load().type(Visit.class) ...
1
vote
1answer
151 views

Are there any caveats in using Objectify with Google Cloud Endpoints on App Engine Java?

I'm developing an app on Appengine & Android, and am planning to use Google Cloud Endpoints for the API and GCM for the communications between the cloud and mobile. I had intended to use Objectify ...
1
vote
1answer
83 views

Getting cursor with Objectify without iterating through items

I want to execute a query, get the results and then get the cursor to the next item if there is any. The only relevant post I found was: Objectify paging with Cursors Is there a way of doing this ...
1
vote
1answer
64 views

Objectify - fetching next and previous records

I'm developing an application which is hosted on Google AppEngine. I'm using Objectify for the data operations. Consider an example Kind Kind: Person ID Name 100 Santhosh 101 Upendar 102 Suresh ...
0
votes
1answer
65 views

Cannot associate an entity obtained from a transaction to another entity in Objectify

I have some issues with Entity relationships in Objectify. My application is an event application where events have tickets of different categories; each ticket is owned by a user. I have a ...
2
votes
0answers
165 views

development appengine (HRD) instance throws EOFException when loading from backing store (local_db.bin)

Since I have upgraded my GAE application to the HRD datastore, it does not work properly in my local development environment. It is possible to import data into the local backing store, and ...
0
votes
1answer
48 views

Should I use Objectify Annotated Objects in the Android App part of an Android-AppEngine system?

Related to this question on JPA and Android, but looking for design guidance. I have some data which will be persisted with Objectify on AppEngine. These objects also need to be interacted with on an ...
0
votes
1answer
93 views

How to start using Objectify v4?

This looks like an absurd question but I am having problem with starting to code with Objectify v4 in appengine. The introduction on objectify page says that you should use ofy to do all the ...
0
votes
1answer
79 views

Is it possible to get all Namespaces from the DataStore with objectify

How can I get a list of all namespaces from the GAE datastore using objectify? I have found the implementation by google in here: import com.google.appengine.api.datastore.DatastoreService; import ...

1 2 3 4 5 6