The Google App Engine datastore provides robust, scalable storage for your web application, with an emphasis on read and query performance.

learn more… | top users | synonyms

0
votes
1answer
54 views

Google App Engine: Storing Data & querying it

I'm wondering what the best way to store data is for my situation. I want to store a list of properties, like phone numbers, for one person. For example: name: John Doe numbers: 0998234, 23443145, ...
0
votes
0answers
47 views

Google app engine python Database losing data

Using the python google app engine datastore on localhost, every now and then all the data will be lost. When it happens, every time my google app engine launcher will freeze and I have to force quit ...
0
votes
1answer
78 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
73 views

Google app engine return entity based on property

I'm trying to return an entity (Room) from Google App Engine datastore, using endpoints. This method (auto-generated) returns all entities in the datastore: @SuppressWarnings({ "unchecked", ...
1
vote
1answer
56 views

Ancestor query parse error

I am trying to get my ancestor query to work but I keep getting this error: BadQueryError: Parse Error: Identifier is a reserved keyword at symbol ANCESTOR at this line: ...
0
votes
3answers
116 views

CSS and Javascript is not applied to a content rendered from h:outputText with escape=“false”

A content rendered from h:outText with escape="false" is not bound to the css or javascript applicable for that page. Actually I am trying to use syntax highlighters to highlight my syntax within a ...
0
votes
0answers
92 views

Retrieving data via cloud endpoints from python created datastore (Google App Engine)

I've wrote a google app engine python scraper to get data from a website & insert it into a google app engine datastore. I want to send a request from my android device to the app engine (a string ...
1
vote
1answer
161 views

Timetable Web Scraping with multiple tables (Python)

I'm just looking for some info regarding python web scraping. I'm trying to get all the data from this timetable and I want to have the class linked to the time its on at. Looking at the html there's ...
1
vote
4answers
105 views

Backup and restore entities from Google App engine

I am looking to implement a way to transfer data from one application to another programmatically in Google app engine. I know there is a way to achieve this with database_admin console but that ...
0
votes
1answer
41 views

How can I find entities which have an empty StringListProperty?

Given this model: class TestModel(db.Model): names = db.StringListProperty(required=False) I want to find entities that have an empty names property, so I tried this: ...
2
votes
2answers
108 views

GAE ndb design, performance and use of repeated properties

Say I have a picture gallery and a picture could potentially have 100k+ fans. Which ndb design is more efficient? class picture(ndb.model): fanIds = ndb.StringProperty(repeated=True) ... ...
0
votes
1answer
47 views

Design Pattern To Implement Bit Data/Operator In NDB

I realize that NDB / Google Datastore does not support bit data type and supporting operators. But does anyone have any suggestions a workaround. My data is a tree of categories and the user can ...
0
votes
0answers
107 views

DynamoDB vs GAE Datastore: Which one is cheaper for json key-value store?

I need to store many sha1 keyed json objects into DB I don't want to admin the DB, so I am considering DynamoDB or GAE Datastore or similar things. Assume performance or other factors can be ...
1
vote
0answers
70 views

GWT + JDO = ClassCastException

I am using GWT + Google App Engine and JDO to store objects in the App Engine datastore. I create the object below on the client-side via web interface and pass it via RemoteProcedureCall to the ...
1
vote
0answers
66 views

GAE : rerun the enhancer and check for errors in the output

I know you must have a question saying its a duplicate question and has been answered. But I tried all the mentioned steps "Remove duplicate datanuc jar file (I never had a duplicate jar file) and ORM ...
0
votes
0answers
64 views

Cannot display image properly in primefaces and datastore

I have stored uploaded image in appengine datastore by converting it into Text. And in a separate page I am retrieving that content from datastore and trying to display in a page but the image is not ...
0
votes
2answers
57 views

GAE Datastore: put into a field using a string as the field reference python

I am reading a CSV file from a web source and would like to store it in my GAE datastore. The CSV data comes with a header row, that with a bit of manipulation will match the fields in my datastore ...
0
votes
0answers
105 views

Deleted entities keep returning using datastore admin

I am trying to copy the datastore from one app to another (live to dev server). I first need to delete all the entities on the dev server (the actual dev app I'm using, not to be confused with the ...
0
votes
1answer
50 views

NOT IN sql-like query google app engine not working [duplicate]

how to turn this: Contact.gql('WHERE email IN :1', emails) emails is a list of emais like: ["foo@example.com", "foo2@example.com"] into this: Contact.gql('WHERE email NOT IN :1', emails) it ...
1
vote
2answers
78 views

When to transition from Datastore to NDB?

From what I have heard, it is better to move to NDB from Datastore. I would be doing that eventually since I hope my website will be performance intensive. The question is when. My project is in its ...
0
votes
2answers
65 views

How can I create an entity in the GAE datastore of a type determined at runtime?

I have a URL route that captures the name of the model for which the entity will be created.(e.g. '/New<model>/') Now, I have the model name as a string. How can I take that string and use it to ...
1
vote
1answer
64 views

Concurrent write-only transactions

The datastore documentation says that: Upon commiting a transaction for the entity groups, App Engine again checks the last update time for the entity groups used in the transaction. If it has ...
0
votes
1answer
38 views

Query Haversine with JDO

I need help to do this query with JDO: SELECT id, ( 3959 * acos( cos( radians(lat_t) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(lng_t) ) + sin( radians(lat_t) ) * sin( radians( lat ...
0
votes
1answer
20 views

GAE datastore query not returning anything - help! error says 'query' object has no attribute (which should not be the case)

Anyone know why my db query for h1 is pooping out? - this is the error I'm getting: THANK YOU ANYONE for any help - I have been looking at this for a while and can't figure it out....!!! File ...
0
votes
1answer
34 views

What to do when a cache and a db index get very different?

I use memcache and datastore indexes with the google search api in gae. A practical problem is how to refresh a datastore index after an entity has been deleted since it appears that the entity is ...
0
votes
1answer
51 views

How to guarantee the uniqueness of gae datastore Name/ID?

class Post(db.Model): user = db.ReferenceProperty(User, collection_name='posts') title = db.StringProperty(required=True) desc = db.TextProperty() def addApplication(self, user, ...
1
vote
3answers
116 views

Google-App-Engine-Like Datastore for Python

Is there any software library that provides an interface for storing and querying data like the Google App Engine Datastore, but uses a local file or service instead of running on App Engine? The ...
0
votes
1answer
89 views

DATE COMPARISON in GOOGLE APP ENGINE DATASTORE / PYTHON

I am trying to fetch records after a certain date. I used the below in code: qstr = "SELECT * FROM Comment where date > '"+str(max_date)+"' order by date desc limit 10" comments = ...
0
votes
1answer
86 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 ...
2
votes
1answer
95 views

GAE: How long to wait for eventual consistency?

I have an app where I am creating a large number of entities. I don't want to put them in the same entity group, because I could be creating a lot of them in a short period of time -- say 1 million ...
0
votes
0answers
20 views

What is Query.CompositeFilterOperator.of for?

It is very clear what the Google App Engine Datastore API's Query.CompositeFilterOperator.and and Query.CompositeFilterOperator.or methods do. But what is Query.CompositeFilterOperator.of used for? ...
0
votes
2answers
77 views

JDO MakePersistent overwrite previous entry

I am using JDO to store objects in GAE for a GWT project. I have a problem with the creation of new objects. It works great the first time I create an object. However the second time, it overwrites ...
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 ...
3
votes
3answers
50 views

db.StringProperty but property is occasionally datastore_types.Text?

Are there any circumstances under which GAE datastore might change a property type from StringProperty to TextProperty (effectively ignoring the model definition)? Consider the following situation ...
2
votes
1answer
67 views

GAE Go — How to use GetMulti with non-existent entity keys?

I've found myself needing to do a GetMulti operation with an array of keys for which some entities exist, but some do not. My current code, below, returns an error (datastore: no such entity). err ...
1
vote
1answer
50 views

FileServiceFactory getBlobKey throws IllegalArgumentException

I am trying to use FileService to create a file on Blobstore. Code look as follows: public static BlobKey save(String mimeType, String value, String filename) throws IOException { FileService ...
0
votes
1answer
46 views

Should the size of entities be as small as possible when I count them by “count()” method?

I'm wondering if I should have a kind only for counting entities. For example There is a model like the following. class Message(db.Model): title = db.StringProperty() message = ...
0
votes
1answer
61 views

How to layout GAE datastore

Introduction I am new to GAE and wrote a little app that unfortunately hits the quota limit of datastore reads per day very rapidly although there is not much data in the datastore. This question ...
0
votes
1answer
53 views

Persist data in google app engine datastore

I try to store data in google app engine datastore with JPA and I have some troubles. My code : try { for (int i = 1; i <= 10; i++) { Employee emp = new Employee(); ...
0
votes
2answers
42 views

GAE — Performance of queries on indexed properties

If I had an entity with an indexed property, say "name," what would the performance of == queries on that property be like? Of course, I understand that no exact answers are possible, but how does ...
0
votes
1answer
54 views

Why does db.Model.get_by_id() return None when no parent is specified?

I'm running the following code in the GAE interactive console (/_ah/admin/interactive), and I do not understand why get_by_id() returns None when the parent is not specified. The docs do not make ...
2
votes
2answers
88 views

What kind of advantages does GeoPtProperty have?

I think I could also store latitude/longitude data in FloatProperty or ListProperty.
1
vote
1answer
87 views

How to use efficiently use GAE datastore for iOS/Android turn based game

I have decided to use the google app engine for my game. I am going to use the python datastore to store information. I need to store information about each user and the games being played. For each ...
0
votes
0answers
114 views

How to Store Large Amounts of Data in Java Google AppEngine Local Datastore

I am having a problem storing a large number of Entities to the Google AppEngine local datastore in Java. It appears the local datastore is running entirely out of memory, and when the total datastore ...
0
votes
4answers
140 views

How to use ndb key with integer_id?

I see the document https://developers.google.com/appengine/docs/python/ndb/keyclass#Key_integer_id Returns the integer id in the last (kind, id) pair, or None if the key has an string id or is ...
2
votes
1answer
87 views

GetAll: keys and entities guaranteed to be in same order?

I've been using this to load entities and still have the keys available: type Post struct { Title string Created time.Time // ... key *datastore.Key } func All(c ...
0
votes
1answer
152 views

ndb get & get_or_insert how to use ? (alway raise Exception)

I write code as below from google.appengine.ext import ndb __metaclass__ = type class UserSession(ndb.Model): session = ndb.BlobProperty() class KV: @staticmethod def get(id): ...
0
votes
1answer
59 views

How can I fetch the lastest entry of a model new put into NDB?

How can I get the latest entry of a model new putted into NDB? 1: If I use a same parent key ? How to ? I see the document write Entities whose keys have the same root form an entity group or ...
0
votes
1answer
25 views

When is the referenced entity retrieved?

At the moment I retrieved an entity which has a ReferenceProperty, has the entity already retrieved the parent entity? Does two reads occur in this case? In the case that I always want the parent key ...
0
votes
1answer
70 views

manual serialization / deserialization of AppEngine Datastore objects

Is it possible to manually define the logic of the serialization used for AppEngine Datastore? I am assuming Google is using reflection to do this in a generic way. This works but proves to be quite ...

1 2 3 4 5 43