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

65
votes
9answers
16k views

Google App Engine: Is it possible to do a Gql LIKE query?

Simple one really. In SQL, if I want to search a text field for a couple of characters, I can do: SELECT blah FROM blah WHERE blah LIKE '%text%' The documentation for App Engine makes no mention ...
24
votes
5answers
7k views

Webservice credentials - OpenID/Android AccountManager?

I'm building a webservice and would like to use the user's google account credentials. The service runs on GAE and will have a web client and an Android native client. This is my first attempt of ...
109
votes
7answers
9k views

How to think in data stores instead of databases?

As an example, Google App Engine uses data stores, not a database, to store data. Does anybody have any tips for using data stores instead of databases? It seems I've trained my mind to think 100% ...
36
votes
15answers
19k views

Google AppEngine: How to fetch more than 1000?

First: I'm a beginner in python. How can I fetch more than 1000 record from data store and put all in one single list to pass to django?
66
votes
19answers
38k views

How to delete all datastore in Google App Engine?

Does anyone know how to delete all datastore in Google App Engine?
9
votes
2answers
2k views

Fetching a random record from the Google App Engine Datastore?

I have a datastore with around 1,000,000 entities in a model. I want to fetch 10 random entities from this. I am not sure how to do this? can someone help?
24
votes
5answers
2k views

Copy an entity in Google App Engine datastore in Python without knowing property names at 'compile' time

In a Python Google App Engine app I'm writing, I have an entity stored in the datastore that I need to retrieve, make an exact copy of it (with the exception of the key), and then put this entity back ...
10
votes
5answers
3k views

how does one get a count of rows in a datastore model in google appengine?

I need to get a count of records for a particular Model on app engine. How does one do it? I bulk uploaded more than 4000 records but modelname.count() only shows me 1000.
164
votes
6answers
99k views

What database does Google use?

Is it Oracle or MySQL or something they have built themselves?
10
votes
3answers
5k views

Google App Engine: Memcache or Static variable?

Well, I think I have a very basic doubt here: I'm developing an app on GAE (Java) and performing a query to the datastore that returns a lot of entities, so I need to cache it. I was using memcache ...
12
votes
2answers
4k views

Filtering by entity key name in Google App Engine on Python

On Google App Engine to query the data store with Python, one can use GQL or Entity.all() and then filter it. So for example these are equivalent gql = "SELECT * FROM User WHERE age >= 18" ...
9
votes
1answer
2k views

Store Photos in Blobstore or as Blobs in Datastore - Which is better/more efficient /cheaper?

Ive got an app where each DataStore Entity of a specific kind can have a number of photos associated with it. (imagine a car sales website - one Car has multiple photos) Originally since all the data ...
20
votes
6answers
5k views

Looking for opinions on using Objectify-appengine instead of JDO in GAE-J

I've been slowly and a bit painfully working my way up the datastore/JDO learning curve in GAE. Recently I've found a framework called Objectify that is supposed to be somewhere between the ...
6
votes
6answers
10k views

GWT with JDO problem

I just start playing with GWT I'm having a really hard time to make GWT + JAVA + JDO + Google AppEngine working with DataStore. I was trying to follow different tutorial but had no luck. For example I ...
14
votes
2answers
3k views

AppEngine: Query datastore for records with <missing> value

I created a new property for my db model in the Google App Engine Datastore. Old: class Logo(db.Model): name = db.StringProperty() image = db.BlobProperty() New: class Logo(db.Model): name ...
3
votes
1answer
765 views

App Engine BadValueError On Bulk Data Upload - TextProperty being construed as StringProperty

bulkoader.yaml: transformers: - kind: ExampleModel connector: csv property_map: - property: __key__ external_name: key export_transform: ...
8
votes
2answers
2k views

How to make case insensitive filter queries with Google App Engine?

I am working on a GAE Django Project where I have to implementing the search functionality, I have written a query and it fetches the data according to the search keyword. portfolio = ...
22
votes
2answers
4k views

How would you design an AppEngine datastore for a social site like Twitter?

I'm wondering what would be the best way to design a social application where members make activities and follow other member's activities using Google AppEngine. To be more specific lets assume we ...
16
votes
11answers
19k views

Google Web Toolkit (GWT) + Google App Engine (GAE) + Detached Data Persistence

I would like to develop a web-app requiring data persistence using GWT and GAE. As I understand it, my only (or at least by far the most convenient) option for data persistence is GAE's Datastore, ...
14
votes
3answers
4k views

Storing hierarchical data in Google App Engine Datastore?

Can someone illustrate how I can store and easily query hierarchical data in google app engine datastore?
8
votes
6answers
4k views

Querying for N random records on Appengine datastore

I'm trying to write a GQL query that returns N random records of a specific kind. My current implementation works but requires N calls to the datastore. I'd like to make it 1 call to the datastore if ...
12
votes
6answers
4k views

Is there any tool to backup/restore Google Datastore entities?

I've playing around with Google App Engine and Google Datastore for a while now and I am facing the need to take regular backups of my stuff up on the cloud. Is there any sort of general purpose tool ...
3
votes
2answers
349 views

options for restoring appengine datastore data?

A user of our application has accidently deleted data. They'd like this to be restored. We have no special logic or datastore entities that can do this. However, we do daily backups of our entire ...
3
votes
3answers
313 views

Modeling Votes on GAE

I'm trying to determine the most efficient way to create a votable entity on GAE's datastore. I would like to show the user a control to vote for this entity or an icon indicating that they have ...
1
vote
7answers
3k views

App Engine datastore does not support operator OR

I am trying to query the google datastore for something like (with pm --> persistanceManager): String filters = "( field == 'value' || field == 'anotherValue' )"; Query query = ...
5
votes
2answers
1k views

How to get the distinct value of one of my models in Google App Engine

I have a model, below, and I would like to get all the distinct area values. The SQL equivalent is select distinct area from tutorials class Tutorials(db.Model): path = db.StringProperty() ...
5
votes
4answers
665 views

App Engine - why are there PhoneNumber, Link, Rating etc classes?

I haven't found any reason for the existence of a few of the App Engine classes. There's a PhoneNumber, a Link, a PostalAddress, a GeoPt, a Rating, etc. Why are these given special treatment? They ...
3
votes
1answer
1k views

App Engine local datastore content does not persist

I'm running some basic test code, with web.py and GAE (Windows 7, Python27). The form enables messages to be posted to the datastore. When I stop the app and run it again, any data posted previously ...
0
votes
1answer
131 views

How to query GAE datastore to render a template (newbie level)

I'm new to programming and I'm trying to grasp the concept of the GAE datastore. I'm trying to build an app to make it easy write contracts (http://contractpy.appspot.com). In the moment, I'm passing ...
59
votes
5answers
25k views

How to browse local Java App Engine datastore?

It seems there is no equivalent of Python App Engine's _ah/admin for the Java implementation of Google App Engine. Is there a manual way I can browse the datastore? Where are the files to be found on ...
13
votes
4answers
2k views

GAE - How to live with no joins?

Example Problem: Entities: User contains name and a list of friends (User references) Blog Post contains title, content, date and Writer (User) Requirement: I want a page that displays the title ...
16
votes
2answers
722 views

What is the best way to profile/optimize google app engine application?

Currently I am working on new App Engine application. Unfortunately it seems that my application uses to lot of resources even for relatively small user number. So I need to determine its bottle ...
18
votes
10answers
11k views

App Engine: How to “reset” the datastore?

Whell, I'm developing in app engine (java) and after a lot of tries and deployments, I need to "reset" the datastore. There is a lot of random data I added to test performance, and besides that the ...
7
votes
2answers
2k views

How to create local copy of GAE datastore?

I want to make client version of GAE app that store exact data of online version.(myapp.appspot.com) If i can use sdk instead, is any library or tools to sync online and sdk version? I try using ...
9
votes
2answers
960 views

What's the max length of a ListProperty?

How many items can be stored in a ListProperty? Is there a limit?
7
votes
2answers
480 views

Accessing related object key without fetching object in App Engine

In general, it's better to do a single query vs. many queries for a given object. Let's say I have a bunch of 'son' objects each with a 'father'. I get all the 'son' objects: sons = Son.all() Then, ...
4
votes
2answers
1k views

Implementing “Starts with” and “Ends with” queries with Google App Engine

Am wondering if anyone can provide some guidance on how I might implement a starts with or ends with query against a Datastore model using Python? In pseudo code, it would work something like... ...
3
votes
4answers
1k views

Dynamically loading Python application code from database under Google App Engine

I need to store python code in a database and load it in some kind of bootstrap.py application for execution. I cannot use filesystem because I'm using GAE, so this is my only choice. However I'm not ...
2
votes
1answer
1k views

Trying to store Utf-8 data in datastore getting UnicodeEncodeError

Trying to store utf-8 into datastore and getting error : Traceback (most recent call last): File "/sinfo/google_appengine/google/appengine/ext/webapp/__init__.py", line 511, in __call__ ...
8
votes
1answer
2k views

What does Google classify as a datastore write operation in Google App Engine?

Since GAE went to the pricing model at the start of last week I have been wrestling with exceeding my quota of Datastore read and write operations. I'm not sure whether Google counts all updates for ...
6
votes
1answer
526 views

Appengine: put_async doesn't work (at least in the development server)?

NOTE: IT DOES WORK IN PRODUCTION. I MEAN, WHEN I UPLOAD THE APPLICATION IT JUST WORKS FINE. THE PROBLEM IS IN THE DEVELOPMENT SERVER. Here is some code that can show you what i'm trying to do: e = ...
5
votes
2answers
2k views

How to download all datastore entities on Google App Engine?

I've read the GAE docs, and I can't seem to figure out how to download all my entity data. What I'd love to do is download the whole thing as a big TSV file (or something I can easily munge into ...
3
votes
2answers
254 views

How to structure movies database and user choices?

I would like to create movies database, where user will be able to mark movies he/she watched and liked: class Movies(ndb.Model): watched = ndb.UserProperty() liked = ndb.UserProperty() ...
3
votes
4answers
1k views

Change IntegerProperty to FloatProperty of existing AppEngine DataStore

I built an appengine application (python) which need to convert existing datastore entities in integer value (100) to float value (100.00) for currency conversion issue. How's the right way doing ...
2
votes
4answers
625 views

Query with paging by cursor causes error because of limitations for “IN filter” in cursor() method… What should be the alternative?

I am developing a twitter like microblogging system by using the following models: class Member(db.Model): user = db.UserProperty(required=True) follower_count = ...
2
votes
2answers
2k views

How do you use list properties in Google App Engine datastore in Java?

An object to be placed in the datastore will have a set of tags. public class Model { List<String> tagList ... } In Python, the Google App Engine has the notion of list properties. ...
2
votes
3answers
1k views

How to upload multiple files to BlobStore?

I'm trying to upload multiple files in a form to the BlobStore. Form: <form action="{{upload_url}}" method="POST" enctype="multipart/form-data"> <label>Key Name</label><input ...
2
votes
1answer
309 views

Google App Engine - About how much quota does a single datastore put use?

The latency for a datastore put is about 150ms - http://code.google.com/status/appengine/detail/datastore/2010/03/11#ae-trust-detail-datastore-put-latency. About how much CPUTime is used by a single ...
1
vote
1answer
189 views

Creating an asynchronous method with Google App Engine's NDB

I want to make sure I got down how to create tasklets and asyncrounous methods. What I have is a method that returns a list. I want it to be called from somewhere, and immediatly allow other calls to ...
1
vote
2answers
2k views

GAE DataStore vs Google Cloud SQL for Enterprise Managment Systems

I am building an application that is an enterprise management system using gae. I have built several applications using gae and the datastore, but never one that will require a high volume of users ...

1 2 3 4 5