Tagged Questions
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
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
2answers
84 views
Google App Engine Datastore Modeling
General question on how to model a Google App Engine datastore. I'm confused about the entity groups part. Lets take for instance a Facebook example where there are 3 entities: Users, Posts, and ...
1
vote
3answers
118 views
Google-App-Engine-Like Datastore for Python
Is there any software library that provides an interface for storing and querying data like the Google App Engine Datastore, but uses a local file or service instead of running on App Engine?
The ...
1
vote
1answer
89 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
257 views
Google App Engine Datastore / NoSQL example with ancestor queries
I'm very used to SQL, and not the NoSQL paradigm of App Engine Datastore, so I had to write a piece of example code to understand how to do ancestor queries correctly. Thought I'd share it with you ...
0
votes
3answers
99 views
AppEngine Filter Inequality with list alternatives
Currently, I have the following model structure for an AppEngine application using the DataStore (abbreviated for clarity):
class User(db.Model):
name = db.StringProperty()
class Game(db.Model):
...
1
vote
1answer
110 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, ...
8
votes
1answer
723 views
Most Efficient One-To-Many Relationships in Google App Engine Datastore?
Sorry if this question is too simple; I'm only entering 9th grade.
I'm trying to learn about NoSQL database design. I want to design a Google Datastore model that minimizes the number of ...
0
votes
0answers
109 views
Hbase and GAE DataStore compatibility
How compatible are Hbase and DataSore in terms of design and API. That is, if I convert my GAE app to run completely in a local (non GAE) setup, how much effort it takes to migrate the data into ...
1
vote
2answers
105 views
Dynamic property vs. fixed property query speeds on Google App Engine
I'm designing datastore models and trying to decide the best approach when thinking about how the query filters are going to work.
Best if I just write out two examples. The first example is if I ...
0
votes
1answer
190 views
Avoiding datastore contention
I have a design problem, my app has a grows up traffic and I have a lot a "Transaction collision. Retrying...". I don't know how avoiding them.
Introduction:
Each Actor in this app can visit an ...
4
votes
2answers
196 views
Organisation of entity groups on Google App Engine for writing
I'm a little confused about 'Entity Groups' on the Google App Engine High Replication Datastore (HRD). The Google documentation mentions that HRD only allows 1 write per second per entity group.
...
6
votes
1answer
478 views
Cassandra Client API Most Similar to App Engine Datastore API?
With the announcement of the Google App Engine's new pricing model, I've realized my application will not be able to sustain itself due to the extremely high price of Google Datastore interactions. ...
2
votes
2answers
125 views
Logger Entity in App engine
Is it viable to have a logger entity in app engine for writing logs? I'll have an app with ~1500req/sec and am thinking about doing it with a taskqueue. Whenever I receive a request, I would create a ...
9
votes
2answers
2k views
Tree structures in a nosql database
I'm developing an application for Google App Engine which uses BigTable for its datastore.
It's an application about writing a story collaboratively. It's a very simple hobby project that I'm working ...
6
votes
1answer
1k views
Schema-less design guidelines for Google App Engine Datastore and other NoSQL DBs
Coming from a relational database background, as I'm sure many others are, I'm looking for some solid guidelines for setting up / designing my datastore on Google App Engine. Are there any good rules ...
3
votes
3answers
836 views
Is there a nosql store that also allows for relationships between stored entities?
I am looking for nosql key value stores that also provide for storing/maintaining relationships between stored entities. I know Google App Engine's datastore allows for owned and unowned relationships ...