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

1
vote
1answer
54 views

Play video in html video tag that is stored in the GAE blobstore python

I have a simple video sharing website that can upload videos and store them in the datastore as a blobReferenceProperty(). Now I am querying the datastore for that video and trying to imbed/play it in ...
1
vote
1answer
40 views

key of child datastore entity returns as null

I have a typical Person-Address entity relationship. After I query the datastore for Person, I then query Person for the key of address. The key (i.e. addrKey, see below) always returns as null. But I ...
1
vote
3answers
61 views

Serving Images with Google app engine

I'm trying to make it so that when someone uploads a picture(successfully), its redirected to a permalink with the uploaded image showing. Here is what I've tried so far. import webapp2 import os ...
2
votes
0answers
31 views

Values in dropdown menu created using ReferencePropertyField() are not proper

I am using Flask on App Engine. Here is the code: models.py: class Client(db.Model): name = db.StringProperty(required=True) def __repr__(self): return unicode(self.name) class ...
0
votes
1answer
32 views

Field with ListProperty(db.Key) is skipping in form created using wtforms.ext.appengine.db import model_form?

I am using model_form to create form automatically from the App Engine model. It works fine, but the created form doesn't include ListProperty() field. Code snippet: In models.py: class ...
0
votes
1answer
30 views

GAE: planning for exportability and relational databases

I'm building a web app in GAE that needs to make use of some simple relationships between the datastore entities. Additionally, I want to do what I can from the outset to make import and exportability ...
0
votes
1answer
26 views

How to stop CapeDwarf JBoss AS7 from storing logs in datastore?

I am using CapeDwarf JBoss AS7 to host classic GAE+GWT application. On server side, I am logging directly to java.util.Logger framework. The application works fine, the logs print nice to the console ...
0
votes
1answer
26 views

GAE Datastore Text messes up JSON representation

The following code excerpt builds a Google App Engine Datastore Entity from a Java Map. Short strings (less than 450 characters) are stored directly, long strings are converted to Text objects. for ...
1
vote
1answer
40 views

Storing and Retrieving Multi-Valued properties in Datastore

Can anyone tell me how can i store Multiple values for an property in Google App Engine DataStore. I'am trying to do this in Java. I have an property named tag and i want this property to contain ...
0
votes
1answer
20 views

Datastore parent child of the same entity

I would like to have a datastore entity with a reference property back to the same entity. For example: class Person(db.Model): name = db.StringProperty(), parent = ...
0
votes
0answers
42 views

Index cost on OR AND operations in datastore query [closed]

I wanted to know what is the indexing cost for an query which involves OR or AND operations in an composite filter. How many indexes would be required for such queries. Suppose i have a property on ...
0
votes
2answers
42 views

Google App Engine - Deleted Entity is not deleted

I'm trying to delete an entity in google datastore String keyValue = "someValue"; Key tweetKey = KeyFactory.createKey("tweetKey", keyValue); Entity someEntity = new Entity(tweetKey); Entity ...
0
votes
1answer
23 views

Should I use ReferenceProperty Prefetching or Duplicate the Referenced Entity's Column?

I want to understand how to use ReferenceProperty for common usage scenarios. In a typical application, we always display Referenced Entity's columns. For example, consider a Purchase Order ...
0
votes
1answer
28 views

DatastoreNeedIndexException even after defining the index

I am baffled with a problem with my DataStore query on GAE java -- it always complain that I don't have a matching index, even though I have the exact index they suggested in my datastore-indexes.xml ...
0
votes
1answer
19 views

Persisting Collection<T> using Objectify4 on GAE

I have been having issues with persisting a generic Collection on Google datastore using Objectify4. E.g. @Entity class AnimalInfo { @Id String id; Collection<Animal> animals; } ...
0
votes
1answer
27 views

In gae datastore, are all entities in a namespace are stored in same part of distributed network?

Referring to gae docs: https://developers.google.com/appengine/docs/java/datastore/transactions It says: Entity group relationships tell App Engine to store several entities in the same part of the ...
0
votes
1answer
32 views

Adding extra properties to the User class in App Engine datastore?

I am working on an App using Flask and App Engine, which requires extra information to be stored in User Object apart from nickname, email and user_id. Is it possible to extend User class in ...
1
vote
0answers
43 views

Many different sharded counters in single transaction

I have to increment three different counters in a single transaction. Beside that I have to manipulate three other entities as well. I get too many entity groups in a single transaction I've used ...
0
votes
0answers
29 views

Not able to persist entity using JDO in a GWT - App engine project

I am trying to persist a Poll entity which has a one to many relationship with User entity. But except other entities Poll entity is not getting persisted. Poll entity: package ...
0
votes
1answer
34 views

Differentiating logged-in users as admin and normal user in Google App Engine?

I am developing an app in GAE. Application provides different view depending upon whether logged-in user is admin or normal user. I want to use 'Google Apps domain' as Authentication Type. So that all ...
0
votes
0answers
29 views

one-to-one and many-to-many relationship in datastore?

I have User and Project Model as shown below. class User(db.Model): first_name = db.StringProperty(required=True) last_name = db.StringProperty(required=True) email_address = ...
0
votes
0answers
42 views

Google App Engine JPA multi level parent child relationship

I am using GAE JPA. The relationship I have is as below: DummyParent has n users and each user has n items. DummyParent --> User --> Item When persisting DummyParent only with user and without item ...
1
vote
3answers
120 views

Change google app engine name (100 bounty)

i cloned a working google app engine repo into my local env and got it to work. Later i decided i wanted to deploy to my own GAE app so i changed the name in app.yaml to the one in my newly created ...
0
votes
1answer
22 views

One to many relationship in JDO

In one-to-many relationship in JDO between two objects A and B, should the object B be added to the collection of B's in A separately , when only B is persisted? or does this happen automatically? ...
0
votes
0answers
41 views

Less costly /neatest way to use selectfield properties as key relationships for ndb

I'm having trouble modeling key/parents for the last two (sensors/readings). I'd like to keep the ancestor path for each. The problem is I only have access to the last id in the hierarchy. Does this ...
0
votes
1answer
27 views

Why can't I add an attribute to a datastore object (dynamically) and store it in session?

I am not able to retrieve attributes in session that have been added dynamically to a datastore object. Here's a (simplified) example... To save time on suggestions, I do not want to actually hard ...
0
votes
0answers
31 views

I am getting an error when trying to load an entity from the datastore using objectify

The code I am using to load is Objectify ofy = getService(); UserCredentials cred = ofy.load().type(UserCredentials.class).id(userId).get(); and the error is Uncaught exception from servlet ...
1
vote
2answers
35 views

Deleting entity. GET or POST?

Im trying to delete an entity, should I do it in a GET or Post? I think both are correct, but wich one is better?
0
votes
2answers
47 views

How to fix index error when querying GAE datastore?

When I try to run a query on the datastore ordered by date I get the following error: NeedIndexError: no matching index found. The suggested index for this query is: - kind: Message properties: ...
0
votes
1answer
68 views

NDB/DB NoSQL Injection Google Datastore

Is there any SQL injection equivalents, or other vulnerabilities I should be aware of when using NoSQL? I'm using Google App Engine DB in Python2.7, and noticed there is not much documentation from ...
0
votes
1answer
59 views

GAE - Storing multiple OAuth access token

For a project I am working on I need to store the user access token (and auth code and refresh token I assume). I am using GAE for this and I have difficulties to design the model, which is quite ...
1
vote
1answer
95 views

How to save unicode string into datastore google appengine using java

I'm working Google App Engine using Java, i receive data from form fields and save into datastore. I receive Unicode string from HttpServletRequest like this: ...
0
votes
1answer
48 views

Iterate over GQL query fields

I am trying to implement an 'Edit' function for entities in a google app engine datastore. So if a key is specified for an datastore entity I would like to fill a form with values associated with this ...
0
votes
2answers
39 views

Trying to increase the performance of my GAE app

I am trying to use memcache to improve the performance. Here is my model: class ABC(db.Model): some_property = db.StringProperty() # more properties class XYZ(db.Model): another_property = ...
0
votes
1answer
55 views

GAE datastore: Entity deleted only after multiple calls to delete()

I'm playing with the GAE datastore on a local machine with Eclipse. I've created two servlets - AddMovie and DeleteMovie: AddMovie Entity movie = new Entity("movie",System.currentTimeMillis()); ...
0
votes
0answers
17 views

Appengine datastore raising badValueErro on datetime, might be caused by monkeypatch

I'm getting the following error message: BadValueError: Expected datetime, got datetime.datetime(2013, 4, 19, 19, 48, 2, 566558) The error is raised in ndb's model.py line 1190, here's a snippet of ...
1
vote
1answer
23 views

GAE - Is there a setParameters counterpart to declareParameters for Datastore queries?

In the Datastore Queries documentation an example can be seen of the query being set using the Query object method calls: Query q = pm.newQuery(Person.class); q.setFilter("lastName == ...
0
votes
0answers
37 views

GAE+JPA: Transaction not working on Production

i got strange thing here. I use JPA for CRUD process in datastore Google App Engine. i use transaction for edit and deleting some entity, but it works well on my development machine but its not ...
0
votes
1answer
74 views

What is the fastest way to get scraped data from so many web pages?

I need to scrap about 40 random webpages at the same time.These pages vary on each request. I have used rpcs in python to fetch the urls and scraped the data using BeautifulSoup. It takes about 25 ...
-1
votes
1answer
96 views

Populate text area when dropdown item is selected [closed]

I am quite new in coding. Let me come directly to the question. I have a dropdown in my jsp which gets populated with the entity kinds from the datastore(JDO) when the page is loaded. This is what I ...
2
votes
3answers
45 views

GAE - get() entity by property?

How would I go about getting a Datastore entity based on an entity of the property? Do I have to go through a multi-step filter() get() process? Or can I accomplish this through a 1 piece get()? For ...
0
votes
1answer
71 views

Google app engine JPA onetomany relationship add fail with IllegalArgumentException: String over 500 charcters

It was a old project on GAE one year ago. It works pretty well at that time. Recently I tried to work on this project again, but it doesn't work well now. I figured out what the problem is, but I ...
0
votes
2answers
56 views

Unable to use app engine datastore

I have used the getting started guide of app engine.But I am unable to use the datastore. While running the simple code provided in the guide, i am getting "cannot access apps data" error. my code : ...
1
vote
1answer
35 views

How to store text as UTF-8 in GAE Text.Property field?

I know GAE is storing db.TextProperty by default as ASCII. How do I store utf-encoded text in a textField? I tried db.Text(txt, encoding='utf_8') but couldn't get it working. Using the interactive ...
0
votes
1answer
33 views

Best way to check if a set ok keys exist

What's the best way to check withs keys exist from a set of Keys using Objectify? Currently I'm using: List<T> list2LookFor= ...; Map<Key<T>,T> objects = ...
0
votes
0answers
63 views

Understanding ndb key class vs KeyProperty

I've looked through the documentation, the docs and SO questions and answers and am still struggling with understanding a small piece of this. Which should you choose and when? This is what I've read ...
0
votes
1answer
50 views

How to inject Google App Engine datastore with Guice?

I'm trying to inject Google App Engine's datastore via Guice into my service: public class FooServiceImpl implements FooService { private final DatastoreService datastoreService; @Inject ...
0
votes
0answers
27 views

Can I use @Transactional from Guice with Google App Engine's Datastore?

Can I do something like this? Would it still be a transaction even though I did not use ds.get(tx, key) and ds.put(tx, key)? public class MyClass { private final DatastoreService ds; ...
0
votes
1answer
35 views

How to get length of (or count) of datastore entities through a reference collection definition in google datastore from client side

I have 1 to many datastore relationship between 2 Entities (google datastore) --- i.e. an instance in the Restaurant_Table can have many reviews from the Review_Table - as labeled by collection ...
0
votes
2answers
29 views

How to implement EndCursors in GAE/J - JDO

I have a GAE/J app using JDO on top of the Datastore and I've been able to paginate query results using cursors. The default implementation is something we call startCursor in my team (i.e give me ...

1 2 3 4 5 44