Tagged Questions
4
votes
1answer
102 views
Is there a good utility / 3rd party library to manage the AppEngine datastore?
I have been developing an app using appengine. We are likely to be storing a lot of records in the datastore but I find the admin functionality you are given to manage this data lacking.
As an ...
3
votes
2answers
82 views
App Engine: Development datastore cleared each time I turn off my computer. How to avoid this?
I've been using App Engine with Python for a few months. Now that my application has a fair amount of code, I'm trying to solve a problem I've ignored so far:
Each time I turn off my computer, all my ...
3
votes
2answers
136 views
Connecting methods Python
I am currently using Oauth to allow a user to sign in through Foursquare, I then create a new session for this user. If the user is new to the system they are asked to sign in through Hunch, this can ...
3
votes
3answers
174 views
How to scale a lot of Records on Google App Engine
I´m thinking about to write an application will have to store a small amount of records per user (<300) but hopefully will have a lot of users (>>1000).
I did some research for a platform that ...
3
votes
1answer
186 views
Can a GQL query execute an order by over two or more kinds?
I have two entity kinds in my python GAE app - both with similar attributes - and I'd like to query both lists and order the result according to an attribute common to both kinds. So something along ...
2
votes
1answer
47 views
db.get() vs Model.get()
I have started working on the datastore and I found that we can get the instance(s) by this method get() which was available in db and in Model class. But what the difference between them I don't find ...
2
votes
3answers
63 views
Is there a way to cache the fetch output?
I'm working on a closed system running in the cloud.
What I need is a search function that uses user-typed-in regexp to filter the rows in a dataset.
phrase = re.compile(request.get("query"))
data = ...
2
votes
1answer
130 views
Google App Engine Datastore Data Privacy
I'm playing around with the Google App Engine and the Datastore.
Really amazing stuff going on over there.
But I couldn't help and wonder what Google is allowed to do with the data my application is ...
2
votes
3answers
336 views
How best to reduce CPU time used by a datastore put
I have a cron job which I run every three minutes, which pulls some data from a remote API, and then stores it in my local datastore. However, this is taking a huge amount of CPU time (Appstats) in ...
2
votes
2answers
114 views
How to delete a column (attribute) from a GAE datastore?
I have a persistent class stored in a GAE datastore. I have removed one of the attributes from the class. The new records in this table show a value <none> for the removed attribute. But is there a ...
2
votes
1answer
150 views
Google App engine with external app?
Is it possible to use the Google App Engine with datastore only and keep your application on an external traditional server?
I'm interested in the GAE for Business SQL service coming soon but I only ...
2
votes
1answer
109 views
Set a kind name independently of the model name (App Engine datastore)
As a Python programmer, I like my code to be reusable, I'm trying to avoid kind name conflicts in my code (where two different models share the same kind name).
Currently I just prepend some ...
2
votes
2answers
170 views
How to trigger datastore update if condition is met? (Google App Engine - Python)
In my application I have a column display with values y or n. Default value is n and the item is not displayed. When payment is received the value is changed to y and the item is displayed. If the ...
2
votes
2answers
421 views
How to fetch all entities in App engine datastore?
in http://code.google.com/appengine/docs/python/datastore/entities.html#Saving_Getting_and_Deleting_Entities
the batch operation for getting the entity are stated below:
A batch get. ...
2
votes
1answer
459 views
ListProperty vs StringListProperty on Google App Engine
I want to store lists of integers (user ids), should I make them strings and use a StringListProperty, or just use a ListProperty, I'm wondering what is more optimized, the specific StringListProperty ...
1
vote
3answers
51 views
Putting many PropertyList's into Google App Engine datastore (in Go) and loading them again with Query.GetAll
I am putting entities (as a datastore.PropertyList) into the datastore like this:
// save one
var plist datastore.PropertyList = make(datastore.PropertyList, 3)
plist = append(plist, ...
1
vote
1answer
50 views
Aside from RPC calls, what could be taking my App Engine Program so long
I'm trying to performance optimize a page load in GAE, and I'm a bit stumped what is taking so long to serve the page.
When I first got appstats running I found the page was calling about 500-600 RPC ...
1
vote
2answers
33 views
partial and fetches before deletion from the AppEngine datastore
I'd like to delete a bunch of objects from the AppEngine datastore within a transaction:
def F():
items_to_delete = []
for item in db.Query().ancestor(...):
if item.aaa ... item.bbb:
...
1
vote
4answers
376 views
Google app engine excessive small datastore operations
I'm having some trouble with the google app engine datastore. Ever since the new pricing model was introduced, the cost of running my app has increased massively.
The culprit appears to be "Datastore ...
1
vote
1answer
89 views
Using the appengine datastore admin to move data to a new application - how long should this take?
I am moving to the high-replication datastore which is relatively simple when using the AppEngine Datastore Admin feature to copy all data from the old application to the high-replication application.
...
1
vote
2answers
83 views
Check if a field is present in an entity
I have updated my model in Datastore so now it has an additional field. Now I have entities with and without that field but I need to add this field to all entities that don't yet have it. Idea is to ...
1
vote
3answers
113 views
In App Engine for Python, is it possible to persist a class with another object nested inside it?
In App Engine for Python, is there anything like Objectify (Java Library) where I can easily embed a class within another and save it to the datastore?
This class would be modeled like the following ...
1
vote
1answer
128 views
Google App Engine Performance - Checking Existence of an Object
I am coding a system using Google App Engine and I need to put an object in the datastore only if it doesn't exist yet. I would be fine using the datastore.put() method, except I need to know whether ...
1
vote
1answer
157 views
App Engine Datastore join with filter on reference
I'm very new to App Engine Datastore and I could not figure this out.
I have these models:
class SomeUser(User):
name = db.StringProperty()
class Group(db.Model):
title = ...
1
vote
1answer
40 views
google datastore many to one references
So i have two model classes:
class Dog(db.model):
dogName = StringProperty()
dogBreed = StringProperty()
class Cat(db.model):
catName = StringProperty()
catBreed = StringProperty()
and ...
1
vote
2answers
112 views
How to keep version history of datastore entities in Appengine
I'm storing an Entity A in my datastore on appengine. A has an id of type Long. I'd like to keep a history of all changes made to A's fields. What are the best practices to doing this type of version ...
1
vote
1answer
100 views
Problem posting to datastore with deferred.defer tasks
I am trying to do this on Google App Engine in Python:
def add_to_db(person):
a = PersonDb(key_name = person)
# get some data
data1 = a.name
data2 = a.age
a.put()
for person ...
1
vote
1answer
153 views
Reduce datastore_v3.Next calls in Google App Engine when fetching objects (java), possible?
I'm trying to optimize code that reads objects from Google's datastore. Using Java and JDO, here is my code:
List<Article> articles = (List<Article>) query.execute(articleId);
...
1
vote
2answers
69 views
How to get a set of unique random entries from the Datastore
I used a slightly modified solution from this thread to get a set of randomly chosen items from Datastore. I use ProtoRPC, though it doesn't make much difference, just for your information. My code ...
1
vote
2answers
67 views
What is the highest possible key string in a range query on GAE/J?
Out key space on google app engine is structured like
banana-a3fadawsgdg
banana-hrgsgsgsdgs
banana-regsgsdgsgg
tomato-fsfg33424ff
tomato-dsfgsgasdgs
i.e. there is a type and a unique part encoded ...
1
vote
2answers
68 views
query to app engine database coming up blank
i have this issue with app engine's datastore. In interactive console, I always get no entities when i ask if a url already exists in my db. When I execute the following code....
from ...
1
vote
1answer
130 views
file I/O with google app engine
I want to provide a field in my html file so that people can upload their XML files to be imported to the datastore. How can I read and process this file inside the app engine once it is uploaded ? (I ...
1
vote
1answer
169 views
Issue related to Google App Engine query within a date range
I am concerned about querying entities this way
created_start = datetime.today()
created_start = created_start - timedelta(hours=1)
created_end = datetime.now()
a = Message.all()
a.filter('created ...
1
vote
2answers
104 views
Generating id in the low level API
I have to use the low level API to persist an entity of type Value in Google App Engine. I've been searching and I have only found a examples in this way:
DatastoreService datastore = ...
1
vote
1answer
237 views
Using Java in Google App Engine, what's the best way to store and access large, static data?
I have my most of my apps "dynamic" data stored in the datastore.
However, I also have a large collection of static data that would only change with new builds of the app. A series of flat files ...
1
vote
2answers
52 views
Can I specify an Entity as a Datastore property to achieve join-like functionality?
For example, I have the entity Parent and the entity Child. Since the Datastore does not allow joins, I cannot specify parentKey as a property in Child. I mean, I can but that won't do me any good.
...
1
vote
1answer
245 views
How to create a nested dictionary from a datastore model?
I am working on this problem a couple of days, my idea is from this model:
class oceni(db.Model):
user = db.UserProperty()
weight = db.FloatProperty()
item = db.StringProperty()
..to ...
1
vote
1answer
337 views
Creating an xml file w/ google app engine
I m currently using db.Model to store a string (already in xml format) how do I make this xml string publicly accessible (in the form of example.appspot.com/xml_file so firefox will recgonize it as ...
1
vote
1answer
549 views
How to retrieve BlobStore file name from BlobReferenceProperty?
I'm having a hard time understanding how to do something that should be straightforward.
class Spam(db.Model):
egg = blobstore.BlobReferenceProperty(blobstore.BlobKey, required=False)
class ...
1
vote
1answer
49 views
Updating div page coordinates in the datastore
I'm currently making a webapp in App Engine where users can create multiple "boxes" (divs) with text inside of them. These "boxes" can be dragged around the page. I implemented the drag and drop ...
1
vote
4answers
176 views
Appengine Datastore Advantages
I have used sql databases a fair bit and can see a lot of benefit in normalised databases that can be joined and searched and relationships built in them.
What are the advantages to the sort of ...
1
vote
1answer
146 views
GoogleAppEngine data store isn't returning any records
I'm learning how to use the GoogleAppEngine with Python as the language of choice.
Here's my code:
import cgi
from google.appengine.api import users
from google.appengine.ext import webapp
from ...
1
vote
1answer
119 views
I have Data Models…Now What in Google App Engine With Python
I have what I think I need for models in google app engine. I'm building basically a classifieds ad system.
Here's what I have so far:
class Cities(db.Model):
name = db.StringProperty()
...
1
vote
1answer
449 views
How to store a multi dimensional array inside Google App Engine datastore
class Matrix(db.Model):
values = db.ListProperty()
obj = Matrix()
wx = [[1,0],[0,1]]
obj.put()
how to store wx matrix inside datastore ?
1
vote
2answers
402 views
GQL query with multiple condition on one List field
I want to get object, which listfield contains 'foo', 'bar' and 'foobar' strings. Can I do query like this
SELECT * FROM Entity WHERE listfield = 'foo' AND listfield = 'bar' AND listfiled = 'foobar'
...
1
vote
2answers
216 views
How to create dynamic fields in Google App Engine expando class?
I have a db expando class called widget.
I'm passing in a json string and converting it to a dict and then adding it to the datastore.
My question is how can I loop through my dict to create dynamic ...
1
vote
1answer
199 views
Google App Engine RemoteApiServlet/remote_api handler errors
Recently, i have come across an error (quite frequently) with the RemoteApiServlet as well as the remote_api handler.
While bulk loading large amounts of data using the Bulk Loader, i start seeing ...
1
vote
2answers
299 views
Fetch a random entity from the datastore
Pretty simple, in my AppEngine application, I have over 1 million entities of one kind, what is the best way to pick one at random?
1
vote
1answer
691 views
Migrate data from MySQL to Google App Engine (Python) Data Store
I have a legacy website created in PHP and MySQL. I wish to migrate this onto Google App Engine (Python).
Has anybody done this before? Any examples, tips, resources, tools you'd like to share?
I ...
1
vote
1answer
262 views
Most efficient way to iterate through entire datastore and set a default value to a modified schema?
I have an existing schema:
class Example (db.Model) :
row_num = db.IntegerProperty(required=True)
updated = db.IntegerProperty()
...
...
I have now updated this to :
class Example (db.Model) :
...