The Google App Engine datastore provides robust, scalable storage for your web application, with an emphasis on read and query performance.
1
vote
1answer
16 views
Write back strategy for Memcache on GAE
My App Engine (Java) application is planned to work on a data structure that needs frequent updates on many items. The amount of data is not planned to exceed 1000 records (per client) but the amount ...
0
votes
0answers
10 views
Assertionerror with remote API - what does it mean?
I'm trying to access my datastore with remote APi but I'm getting an error that I can't interpret:
s~montaoproject> ads = Ad.all().count(limit=40000)
Traceback (most recent call last):
File ...
1
vote
0answers
14 views
Google App Engine Datastore Query: addSort is resulting in 500 Internal Server Error when any method is invoked on the List of results
I have:
Query q = new Query("Kind", key).addSort("DateTime", SortDirection.DESCENDING);
List<Entity> results = datastore.prepare(q).asList(FetchOptions.Builder.withLimit(30));
While I don't ...
-1
votes
0answers
22 views
NDB query based on Model's KeyProperty instance value
I have two models:
class Project:
name = ndb.StringProperty(required=True)
status = ndb.StringProperty()
== Other fields ==
class Task:
name = ndb.StringProperty(required=True)
...
1
vote
0answers
14 views
AppEngine Gateway Timeout
I am trying to write 25,200 entries to my appengine (in go). My appengine account is "pcsotinoodcom".
What I did was upload a gzip text file having a JSON encoded arrays of size 25,200. Then ...
1
vote
1answer
19 views
Is possible to get random model in Google App Engine with some criteria or without?
I want to get some random model with some criteria added into query?
Is it possible without implementation of random index?
For example my query:
myChoice = DeleteMe.all().filter('gender', ...
2
votes
0answers
55 views
What is the best way of storing date?
I am a new to storing dates based on time zones.
Need to know the standard way to store the date in the datastore.
My requirements are
Easy to query the date based on the date range.
show the ...
1
vote
2answers
27 views
BadKeyError: Invalid string key
I'm getting this error when trying to create a script that would serve images from GAE Datastore.
File ...
0
votes
1answer
17 views
How do I get a Datastore Entity by its unique ID if I know the ID?
This is how I created the entities
Key reviewsKey = KeyFactory.createKey("Reviews", "Reviews");
Entity reviewEntity = new Entity("aReview", reviewsKey);
....
This is how I am trying to get ...
0
votes
0answers
32 views
Giving and Receiving access to a Google App Engine App/Datastore
I want my GAE app's main page to take another app's url, and then have access to it's datastore or some variable it is just holding. I have seen the article and doc for Remote API. But it requires my ...
1
vote
0answers
16 views
.filter() a datastore query for one parameter with multiple values
so i have list of users
user_list = [user_object_1,user_object_2,user_object_3]
users created artifacts and ownership was assigned like this user = db.ReferenceProperty(Users, ...
0
votes
1answer
21 views
Charset/Encoding error while Inserting to Google Datastore
I know this question is an exact duplicate of at least a dozen other questions. But I posted this question helplessly only after being convinced that those questions seldom solved my problem.
...
0
votes
0answers
38 views
Google Appengine Java - getServingUrl from CloudStorage
i'm trying to get a servingUrl from a file store in GCS. Here is the code to generate the BlobKey from the cloudStorage data
public BlobKey getCloudStorageBlobKey(String bucket_name, String ...
0
votes
1answer
64 views
+100
GAE Datastore: Normalization?
Normalization not in a general relational database sense, in this context.
I have received reports from a User. The data in these reports was generated roughly at the same time, making the timestamp ...
1
vote
2answers
37 views
Appengine NDB: Putting 880 rows, exceeding datastore write ops quota. Why?
I have an application which imports 880 rows into an NDB datastore, using put_async(). Whenever I run this import it exceeds the daily quota of 50,000 write ops to the datastore.
I'm trying to ...
0
votes
2answers
21 views
appengine - query datastore filtering objects by local time
I have a lot of data in the data store and I need to filter it by a date field using some day as parameter.
ie, I need all the objects saved with date 01/01/13 from 0:00 to 23:59.
The problem is if ...
2
votes
3answers
53 views
How can I create a list from two dictionaries?
I'm trying to write to a model in the GAE datastore that will have three fields: date, integer, integer.
class fusSent(db.Model):
""" Models a list of the follow-ups due and follow-ups sent """
...
2
votes
2answers
44 views
Understanding datastore Query object
When looking at debug view of a com.google.appengine.api.datastore.Query object, here is a sample of what I can see:
SELECT * FROM Greetings WHERE greeting = good morning
Is this standard SQL or ...
0
votes
0answers
27 views
JDO and inheritance in Google App Engine: how to query entities with “complete-table” strategy?
I'm developing an application using Java Runtime and JDO/Datastore for persistence on Google App Engine. I've created a hierarchy of model classes using the "complete-table" strategy, like this:
...
5
votes
3answers
69 views
Is it possible for a transactional db.get() to return a stale result if a recent transaction raised a “special” exception?
This is in the appengine transaction docs...
Note: If your application receives an exception when committing a transaction, it does not always mean that the transaction failed. You can receive ...
0
votes
0answers
26 views
Can someone explain the difference between this two ahstats generated timeline
I am running the same app using two different application. One application is using the old datastore db and the other is uding ndb.
For a request I am fetching 10 records from both the application ...
1
vote
1answer
42 views
What have I done wrong or how do I correct the output from my datastore key in html? datastore.Encode()?
I believe my ability and expertise to program is in its infancy. I apologize ... Please do not hesitate to ask questions, correct my style, crudeness, etc. I am going to start from the end. I might ...
1
vote
1answer
85 views
What is the python for Java's BigDecimal?
In Java, when we program money it is recommended to use the class BigDecimal for money. Is there something similar in python? I would like something object-oriented that can have a currency and an ...
2
votes
0answers
44 views
App Engine query in admin datastore viewer returning different results than programmatic query
I'm flummoxed.
I noticed today that some data I thought should be present in my production appengine app wasn't showing up. I connected to the app via the remote console and ran the queries ...
2
votes
1answer
44 views
What's the difference between entity.put() and entity.save()?
I see in the gae manpages that entity.save() is not very documented but still it can be used. What is the difference between entity.put() and entity.save()? Should save() never be used and only put() ...
1
vote
1answer
26 views
GAE Datastore - most efficient way to pull stats on large volumes of data
What is the most efficient way, in terms of cost and scalability, to pull stats on large volumes of data?
Let's take a concrete example, there are 1000 companies, each with 10000+ customers.
These ...
0
votes
1answer
21 views
Entities not found in App Engine Datastore
I`m working with App Engine and create Entities with the following code:
DatastoreService service;
service = DatastoreServiceFactory.getDatastoreService();
String kind = ...
0
votes
1answer
34 views
Using Try / Except to determine if Model id exists in app engine datastore
I'm trying to determine if a model by entity id exists in the datastore; I'm protecting against a user manipulating the parameter /page?page_id=12345 etc.
try:
page = ...
0
votes
0answers
25 views
Store a python collections.Counter as PickleProperty in App Engine
I am able to store a collections.Counter into the app engine data store, however when I retrieve it and try to parse it, I get the following error:
for word in counter:
TypeError: 'NoneType' object ...
0
votes
1answer
45 views
How do I create a dynamic list of variables for a GAE datastore query?
I'm using the GAE datastore to handle email jobs for a study with rolling enrollment. Each row (in emailJobs) represents a participant. There are 12 variables I want to query. Each one represents a ...
1
vote
2answers
35 views
What can cause “BadRequestError” while uploading CSV data to datastore using appcfg.py?
I am trying to use appcfg.py to upload CSV data to an initially empty datastore. Running appcfg.py in "dry_run" mode works fine,
but running it with remote_api, gives me the following error message: ...
0
votes
0answers
139 views
How to prevent datastore auto ids to be negative numbers
Google announced "In the upcoming Google App Engine 1.8.1 release, the Datastore default auto ID policy in production will switch to scattered IDs to improve performance. "
"These IDs are large, ...
0
votes
1answer
34 views
Using Objectify to concurrently write data on GAE
Let's for example say I have the following objectify model:
@Cache
@Entity
public class CompanyViews implements Serializable, Persistence {
@Id
private Long id;
private Date created;
...
0
votes
0answers
33 views
put() throwing error while unit testing NDB based Flask app in GAE
I am creating user profile in unit test case and trying to save it. Here is the code:
def create_user(self, email, user_id, is_admin=False):
self.testbed.setup_env(
USER_EMAIL = email,
...
0
votes
1answer
27 views
How to retrieve data from gae datastore with a query applying condition
Here is my problem. SInce I am using JDO, the data is saved in the datastore backend. Now I want to retrieve data with a query with a condition. For example,
public List<Query> ...
1
vote
1answer
24 views
Getting weird error on datastore.Query.Run(c).Next(x)
I have not run into this particular error before, and when I Google it I can't find anything at all out there that even mentions it. I am using Go language, performing a standard datastore query like ...
0
votes
2answers
43 views
Two pages, same database query, different results
Help me please.
I'm writing my student project on Python 2.7 + Google Application Engine.
I have next pages:
/ - main page where I have list of uploaded files
/delete/file_blob_key - handler to ...
0
votes
1answer
27 views
Python Appengine timeframe on datastore request
I'm working on a site which has a graph in it, however, I don't want to load the entire graph, I only want to load a small timeframe (eg: 1 hour or 1 day)
This is my dbModel for the graph data:
...
0
votes
0answers
39 views
query datastore entity by list property in java
I have a data model where one of the properties is a List<String> called tags.
For context:
Say I am working on a free for all blog where writers are allowed to tag their posts (basically ...
0
votes
3answers
60 views
How to cache Google App Engine queries - how to get query string/hash and affected tables?
I want to cache queries in memcache to speed up reading. For this I need some function creating some id for query.
class DeleteMe(db.Model)
pass
query = DeleteMe.all()
# how to get query ...
0
votes
0answers
45 views
Google App Engine Datastore Entity Update
If have a bit of problem and I can't understand why.
I am tyring to update a Google App Engine Datastore Entity with the following code:
public void markTaskDone(long task) {
log.info("User ...
0
votes
0answers
34 views
Algorithm to merge two immutable Query objects
I'm working on a project called Mungo, a document mapping API to the GAE Datastore.
I'm having some problems with the code below, where goal is to build a datastore Query object out of the given ...
0
votes
1answer
40 views
Read-only python shelve to store {key->value} on google-app-engine?
I'm implementing morphology module for my app on google-app-engine. To do this I need a key-value database that stores a lot of small objects. I also need to perform huge amount of queries. So, I ...
0
votes
0answers
12 views
Google Eclipse Plugin does not like FetchOptions
For some reason whenever I use FetchOptions in my code, eclipse underlines it in red and tells me to remove the FetchOptions so that for example,
Iterable fans = ...
0
votes
2answers
40 views
datastore count query fetchOptions
I want to do the following:
PreparedQuery pq = datastore.prepare(q);
int count = pq.countEntities(FetchOptions.ALL);
But there is no ALL option. So how do I do it?
For context, say I want to count ...
0
votes
1answer
44 views
StackOverFlowError while doing a One-To-One relationship in GAE Datastore using JPA 2.0
I have two tables Folder & VirtualSystemEntry I tried to follow this Dataneclous Turorial but it always results with StackOverFlowException here what I tried so far
Folder.java
@Entity
public ...
0
votes
1answer
23 views
How to check in app engine if code is executed in transaction?
Simple questions
1. How to check that some of code is executed in transaction?
2. How to get transaction information if it possible?
def someCode():
class DeleteMe(db.Model):
pass
...
0
votes
1answer
24 views
google datastore aggregate query
I have been reading a lot on ways to do aggregate queries on the datastore (thru stackoverflow and elsewhere). The preponderance of answers is that it cannot be done in a pleasant way. But then those ...
0
votes
0answers
31 views
datastore auto-generated key not working
I am using jpa with datastore. I want to have my keys auto-generated. So I have the lines
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Key key;
But when I look in the datastore, ...
1
vote
2answers
63 views
db.ReferenceProperty() vs ndb.KeyProperty in App Engine
ReferenceProperty was very helpful in handling references between two modules. Fox example:
class UserProf(db.Model):
name = db.StringProperty(required=True)
class Team(db.Model):
...






