The Google App Engine datastore provides robust, scalable storage for your web application, with an emphasis on read and query performance.
0
votes
1answer
87 views
GAE Datastore - query filter on nested class
I'm using Java & GAE datastore to store, manage and retrieve some data for my application.
Basically I have two classes: Customer and Store. The idea is that one customer can have more than one ...
1
vote
3answers
109 views
How to delete multiple entities from GAE datastore by keys
I am using Google App Engine on localhost. I have 2000 entities of kind Book in the Datastore. I want to delete the first 1900 (the keys range from 1 to 1901). How would I do that from the interactive ...
0
votes
1answer
79 views
How can I use the GAE bulkloader to upload data from multiple csv files?
I am developing my first App Engine app. I haven't yet uploaded it to appspot.com -- I am just using the development server at the moment.
I have written some models, my own bulkloader.yaml file, and ...
0
votes
0answers
50 views
GAE structuring models without denormalizing
I'm trying restructure a relational database for Google App Engine and I'm having issues with modeling a set of relationships in a way that will let me query the data I need in an efficient manner.
...
0
votes
2answers
80 views
Create does not work in GAE Datastore viewer
When I try to create some entities I don't see the option to input fields. I just see the SaveEntity button.
However I can view all the existing entities.
What is very strange is - there is ...
2
votes
0answers
96 views
Million User Fanout in Google App Engine using JPA
I'm trying to figure out the million fanout problem for GAE using JPA. If I understand things correctly I should have the following entities for something like Twitter (just an example):
public User ...
0
votes
0answers
34 views
migration of table from google data store
I have one table tblImage in which store pictures as Blob properties. I am not using BlobStore just Blob properties. In this table other attribute too.
Now I want to migrate my app to a different ...
0
votes
1answer
78 views
Google App Engine Datastore - key value passing in HTML to js function
Using Jinja2 GAE Datastore.
In my template html javascript script section - I want to call a function triggered by onclick and pass 2 arguments. The second argument is a GAE key value. It seems the ...
1
vote
1answer
40 views
How to handle different classes of users in GAE?
I plan to use Google Accounts to authenticate users of my GAE app.
As i understand it, all owners of a gmail adress are considered equal and can be authentified.
My app providing a free trial mode ...
0
votes
0answers
36 views
equivalent of ndb ComputedProperty for db?
I'm stuck with some old db classes and need to do something similar to ndb's ComputedProperty. Ie. I have a use case for a derived property that needs to be indexed and queryable.
My current thinking ...
0
votes
1answer
77 views
Most cost-effective GAE app settings?
A GAE python webapp I got splits its cost about evenly into 1) front instances and 2) data reads. What I can think of reducing the costs for data reads is store more items with memcache. But I don't ...
0
votes
1answer
78 views
Get datastore entity's parent key
I am trying to get the parent key from a certain entity.
I have 2 classes, Album and Photo. Album is a parent to photo, so when I upload a photo I assign the key of that certain album it belongs to as ...
1
vote
1answer
73 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 ...
0
votes
0answers
30 views
Deleting an Entity from Datastore in Java
Im trying to the simplest thing as deleting an entity from the datastore.
I first get the key by creating it with key factory
Key aEliminar=KeyFactory.createKey(kind,id);
datastore.delete(kDelete);
...
0
votes
0answers
46 views
GAE: Datastore writeback extremely delayed
In the last 12 hours, we noticed two instances of severe delays in writeback to our HRD datastore:
(1) A new entity was saved on Feb-4-2013 9:58 PM EST (its ID was written to our server logs), but a ...
1
vote
1answer
48 views
GAE Python Data Moddeling/querying: property of referenced entity
I have a scenario simmilar to this and I'm trying to find the best/most common solution:
class Car(db.Model):
peopleCapacity = db.IntegerProperty()
class Wheel(db.Model):
car = ...
3
votes
2answers
70 views
Google App Engine datastore 'distinct' not working in dev server or production
Following code runs fine on production and dev server:
outstanding_qs = models.SitePerformanceTrackingAnswers.all().run(projection=('questionnaire',))
However, after adding the distinct parameter ...
2
votes
1answer
95 views
Best implementation of turn-based access on App Engine?
I am trying to implement a 2-player turn-based game with a GAE backend. The first thing this game requires is a very simple match making system that operates like this:
User A asks the backend for ...
1
vote
1answer
124 views
GAE NDB performance of ComputedProperty versus on-demand lookup of related-model count
Using Google App Engine, I am just curious if anyone can illuminate the performance characteristics (reading & writing) of using a ComputedProperty versus calculating-on-demand a count of a ...
0
votes
1answer
47 views
Owned one-to-many field can't be modified all of a sudden - ClassCastException in DatastoreRelationFieldManager.checkForParentSwitch
My web app suddenly won't allow people to buy our products. I don't know what to do.
Last night one of our engineers accidentally removed the @Persistent tag from an owned one-to-many field (in the ...
0
votes
1answer
151 views
POSTing protos to GAE Datastore
Python/Development newbie here.
My computer is collecting data, which it then stores in google protocol buffers (protos). I want to POST these protos to my google app engine account's data store, so ...
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 ...
0
votes
0answers
41 views
Datastore Projection Queries on key/id in
I have a model, say,
class MainModel {
@Id String id;
String p1;
String p2;
int p3;
/... some 10-15 fields
}
In a query, all I want is values of p1 for some ids. So, basically,
...
0
votes
1answer
29 views
How to get an entity's key on google datastore
I'm new to the Google App Engine Datastore and I'm having trouble understanding the entity keys. I have been letting the datastore automatically assign a key to entities. What I want to do is ...
0
votes
0answers
72 views
What's causing excessive Datastore Write Operations (even whan they're disabled!)?
I have a (wicket-based) webapp that has an auto-refreshing panel (it refreshes once in 5 seconds). My Datastore Write Operations count was rising about 5% a hour (so ~2500 ops/hour). However Appstat ...
1
vote
0answers
82 views
GAE: port_sqlite fails on local dev server
On my OS X local dev server, when I try to port an existing datastore to sqllite using port_sqlite (in combination wit use_sqlite), I get this error:
...
1
vote
0answers
107 views
Google App Engine Datastore Periodically Wiped
I'm seeing some really odd behavior in one of my GAE apps where periodically (every few days or so), the entire datastore just seems to get wiped and it restarts fresh. I've searched high and low for ...
0
votes
0answers
90 views
How to get rid of _BaseValue
I'm using my own subclasses of ndb properties so I can add my own properties to them.
When I retrieve data stored in the ndb, I often (not always) retrieve the data in a _BaseValue wrapper. How can I ...
0
votes
1answer
59 views
Google AppEngine - How To Perform a Partial Datastore Download
I have a running GAE app that has been collecting data for a while. I am now at the point where I need to run some basic reports on this data and would like to download a subset of the live data to ...
0
votes
1answer
78 views
Getting a pull task queue to work with cron
I'm new to python and GAE and I've been trying to learn how to work with tasks queues, cron, and datastore for my own project through examples but haven't had much luck at all. I trying to modify the ...
2
votes
1answer
59 views
App Engine Datastore Indexes: Entry Count blank?
In the Google App Engine Admin Console, under Datastore Indexes, all of my indexes are listed as Serving. However, a lot of them are blank in the Index Entry Count and Index Storage columns. And yet ...
0
votes
1answer
154 views
GAE update multiple records from localhost:8080/_ah/admin/interactive
I am using Google App Engine on localhost. I have a datastore about Books with a summary text field. Many of the summary entries have the following two lines which I want to change to the succeeding ...
0
votes
1answer
54 views
GAE Python: Using filter and cursor with memcache
Say you have a list of posts with 5 categories.
When you do memcache, how should you filter out the categories?
class Post(db.Model):
title = db.StringProperty(required=True)
category = ...
1
vote
1answer
52 views
GAE/P: Dealing with eventual consistency
In may app, I have the following process:
Get a very long list of people
Create an entity for each person
Send an email to each person (step 2 must be completed before step 3 starts)
Because the ...
0
votes
1answer
21 views
App Engine emulated datastore - strange observation
I was experimenting with 'datastore' on my machine. Using this code.
Key parentKey = KeyFactory.createKey("parent", "parentId");
try {
// Entity parent = new ...
0
votes
0answers
29 views
GAE/P: Migrating to polymodel
I'd like to change my database entities to be based on a polymodel instead of the plain old model. This seems easy to screw up, so I'm looking for advice on how to do this cleanly.
My current ...
0
votes
2answers
60 views
How to get the last of each entity in the GAE datastore that starts with 'A', that starts with 'B', etc
I have a GAE datastore with 303 Game() entities.
class Game(db.Model):
title = db.StringProperty(required = True)
slug = db.StringProperty(required = True)
category = ...
0
votes
1answer
98 views
Why am I hitting the datastore read operation quota?
I was in a place without Internet access for 3 weeks and just came back to find out that one of my apps since January 18 started to reach a quota limit (Datastore Read Operations) after around the 18 ...
1
vote
2answers
164 views
Is it possible to store List<Key> as property of a Entity in Google App Engine (GAE)?
List<Key> items = new ArrayList<Key>();
user.setProperty("ItemsList", items);
The code given above does not work. What are the ways in which this can be achieved using Java ...
0
votes
1answer
46 views
Storing entity as property of another entity in GAE (Google App Engine)?
static void editItem(Entity item,Entity user)
{
item.setProperty("Owner",user);
}
Is doing the above thing of setting one entities property as another entity not a bad thing or I ...
1
vote
2answers
235 views
Google App Engine NDB: How to store document structure?
From App Engine NDB documentation:
The NDB API provides persistent storage in a schemaless object
datastore. It supports automatic caching, sophisticated queries, and
atomic transactions. NDB ...
0
votes
1answer
43 views
AppEngine Datastore - Does updating entity delete child entities?
The official documentation https://developers.google.com/appengine/docs/java/datastore/entities is not clear on the parent relationship of the Datastore: "The Datastore API does not distinguish ...
0
votes
0answers
91 views
Transactional Task Enqueueing vs. task queue vs. deferred?
I'm a newbie to python and GAE and haven't been able to find a clear explanation or example of all these three options.
I found a threading example here ...
2
votes
2answers
72 views
Reduce GAE hrd(db) read operation counts
To reduce GAE Python usage cost, I want to optimize DB read operation. Do you have any suggestions?
I can't understand why GAE shows quite a lot DB read operation than I thought. If you can give ...
0
votes
1answer
86 views
Displaying Comments Jinja2-Python
I'm writing a blog in Google App Engine using Python and Jinja2. I have a GQL Table for my blogposts and one for all the comments. Each record in the common table has a blogpost_id column so that I ...
1
vote
1answer
139 views
no new content displayed at web application after submitting form using GAE
I have a web application running on GAE for Java and using the app engine Datastore and Objectify 4.
When a user submit a form with several fields from the web, the application's logic is supposed to ...
1
vote
1answer
25 views
Datasore Admin: Entity Deletion Not Finishing
I started an appengine delete operation for seven entity kinds. Total size is about 6Mb. For more than 2 hours now, it still shows me "1 completed, 6 active". Of course this is not the first time I ...
0
votes
1answer
50 views
Storing Data - Big list into entity properties
I run a crawler back-end in my application that everyday mines some websites for data.
For every website I crawl I create an entity, stores a big list of String id's.
Approximation is around ...
0
votes
2answers
83 views
what is class refers to in python gae?
I have seen this in one the facebook.py User file.
class User(db.Model):
username = db.StringProperty(required=True)
password = db.StringProperty(required=True)
@classmethod
def ...
1
vote
1answer
61 views
Querying Multiple Entity Groups
I have entities of kind Users. Each user entity belongs to a different
entity group. Is it possible to perform a query by Kind with equality
filters on certain properties e.g date_of _birth and ...


