Tagged Questions
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
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
1answer
37 views
Lazily loaded embedded objects are not fetched completely GAE datastore
I am facing weird problem with Embedded entity inside my parent entity.
Following is the code
Below is my child entity.
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class ...
0
votes
1answer
30 views
Trouble Downloading Data from GAE Datastore
I'm having issues downloading the deployed datastore down to my local directory.
The documentation seemed pretty straightforward
...
0
votes
1answer
58 views
Read from datastore not consistent
I am new to Google App engine, i was trying some sample code and i am stuck :(
Below is the code:
datastore = DatastoreServiceFactory.getDatastoreService();
Transaction txn = ...
0
votes
3answers
59 views
Should the size of entities be as small as possible when I count them by “count()” method?
I'm wondering if I should have a kind only for counting entities.
For example
There is a model like the following.
class Message(db.Model):
title = db.StringProperty()
message = ...
2
votes
2answers
102 views
What kind of advantages does GeoPtProperty have?
I think I could also store latitude/longitude data in FloatProperty or ListProperty.
1
vote
1answer
98 views
How to use efficiently use GAE datastore for iOS/Android turn based game
I have decided to use the google app engine for my game. I am going to use the python datastore to store information.
I need to store information about each user and the games being played. For each ...
0
votes
1answer
25 views
When is the referenced entity retrieved?
At the moment I retrieved an entity which has a ReferenceProperty, has the entity already retrieved the parent entity?
Does two reads occur in this case?
In the case that I always want the parent key ...
1
vote
1answer
32 views
What is the data type of ID? long?
ID of the entity which is generated automatically when you create an entity.
What is the data type of it?
I want to know the maximum actually.
0
votes
1answer
70 views
How the performance of datastore batch gets compares to ancestor-only queries?
I would expect batch gets to be one of the fastest ways to retrieve data from the datastore. How does it compare to a query to get all the entities of a kind that are below an ancestor? Of course, ...
1
vote
0answers
54 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,
...
1
vote
2answers
195 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
51 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 ...
2
votes
2answers
173 views
Recipe Needed to Upload Data to Google App Engine Datastore
While I've been busy finishing my Google App Engine solution during the last several months, I now find Google has me painted me into a corner due to changes and differences between the local ...
1
vote
1answer
170 views
Objectify - how efficient is a key-only query filtered by ancestor?
I am trying to get all the children of a given parent entity efficiently. The only way to do that now is to use a query in objectify, which is not efficient because it bypasses the cache. Objectify-4 ...
2
votes
2answers
158 views
Duplicating key names and parent as properties in Google App Engine (GAE) Datastore?
After reading about the GAE Datastore API, I am still unsure if I need to duplicate key names and parents as properties for an entity.
Let's say there are two kinds of entities: Employee and ...
1
vote
1answer
111 views
What is the best practice to store multi valued/repeated data in google datastore?
I have a simple scenario where I have 4 entities.
Destination : name, location, tags (multi valued), created, last modified, created by, last modified by
Trip : contains multiple Destinations, name, ...
0
votes
1answer
117 views
How to search Entities effectively in google datastore
I am using Datastore low level APIs for an application (Internal job portal).
I have an entity called Candidate with following properties
Entity cadidate=new Entity("Candidate",getEmpNum());
...
4
votes
1answer
173 views
Accessing DataStore from ComputeEngine [closed]
When do you think Google will let ComputeEngine VM talk to DataStore?
ComputeEngine instance is so much cheaper compared to AppEngine backend. Maybe this is the reason why they don't want to support ...
0
votes
1answer
92 views
google app engine data store working strange
i am trying to store the data in the google app engine data store after checking the mobile number exists or not but the code always shows "failure" even the mobile number is in data base or not . It ...
0
votes
1answer
374 views
Querying datastore: 'NoneType' object has no attribute
When I run this if block:
first_query = db.GqlQuery("SELECT * FROM Contract ORDER BY date DESC").get()
if first_query == None:
numBook = 42
numInitialPage = 42
...
0
votes
1answer
205 views
How much does it cost to use GAE data source for some website like a business directory?
I am going to create a web site or you may call it a web application as it is going to and I attempt to use GAE data store. However this website would be used by many people to search for companies, ...
4
votes
1answer
183 views
Inconsistent Transaction behavior in Appengine Local Datastore?
The Appengine docs say this about Transactions in the Datastore:
http://code.google.com/appengine/docs/java/datastore/transactions.html#Isolation_and_Consistency
In a transaction, all reads reflect ...
7
votes
3answers
617 views
looking for ideas/alternatives to providing a page/item count/navigation of items matching a GAE datastore query
I like the datastore simplicity, scalability and ease of use; and the enhancements found in the new ndb library are fabulous.
As I understand datastore best practices, one should not write code to ...
3
votes
3answers
540 views
Can I access Datastore entities of my other Google App Engine Applications
As we know in Google App engine, for each registered email account , we are allowed to make 10 application. Now, I need to share entities among the applications. Is this possible ? If yes, how is it ...
1
vote
0answers
99 views
on appengine datastore I am getting exception errors but the transaction worked. so what is wrong?
class registerPage(webapp2.RequestHandler):
def post(self):
deviceID = cgi.escape(self.request.get('deviceID'))
PNID = cgi.escape(self.request.get('PNID'))
try:
...
1
vote
2answers
160 views
How can I set a key attribute?
I have this class in python google app engine:
class Book(db.Model):
name = db.StringProperty()
belongsTo = db.Key()
My question is, how do I create a key object, for example I want to say ...
68
votes
18answers
39k views
How to delete all datastore in Google App Engine?
Does anyone know how to delete all datastore in Google App Engine?
