Tagged Questions
0
votes
1answer
58 views
Is modeling infinite-scale relationships in NoSQL / BigTable (GAE) possible?
My team is writing an application with GAE (Java) that has led me to question the scalability of entity relationship modeling (specifically many-to-many) in object oriented databases like BigTable.
...
0
votes
1answer
360 views
TypeError: bad operand type for unary -: 'DateTimeProperty'
I am using Google App Engine with python 2.7 and try to reproduce the example given at https://github.com/GoogleCloudPlatform/appengine-paging-python/blob/master/suggest_cursor.py to use paging with ...
0
votes
1answer
43 views
Data modelling Appengine
Currently I have 3 datastore classes
User
Event
Workshop
Each workshop is referenced to an Event and each event only has four workshops
In the user class I have a list property where I reference ...
0
votes
2answers
170 views
Google App Engine GAE JPA ManyToMany relationship
I am trying to model my objects in a way that would work both with hibernate JPA and GAE JPA.
I have a class Item that has a list of properties. I need to find all the items with specific properties. ...
2
votes
2answers
65 views
How to determine the child model of a polymodel entity on GAE?
That's how I query for contacts:
contacts = Contact.all()
Then, how to determine if a Contact is a Person or a Company with the following structure?
class Contact(polymodel.PolyModel):
...
0
votes
1answer
166 views
Python Parent Child Relationships in Google App Engine Datastore
I am trying to model a parent hierarchy relationship in Google App Engine using Python. For example, I would like to model fruit.
So the root would be fruit, then a child of fruit would be ...
0
votes
1answer
308 views
Overwrite in datastore using python for GAE - Guestbook Example
I want to do something very similar to the Guestbook example GAE provides in Python.
But instead allowing one user to sign multiple times, I want each submission to overwrite any preexisting one by ...
2
votes
2answers
306 views
NDB using Users API to form an entity group
I'm trying to wrap my head around what seems to be a very simple use case, but I seem to be failing miserably. The goal of the exercise is to look up a set of records for the user that logs in using ...
0
votes
2answers
282 views
Modeling data in App Engine. Child entities vs. Document-style
Trying to model some highly connected, but also hierarchical data in app engine.
Here is an example:
Person:
Phone Numbers:
Number: 555-555-5555, Ext: 123, Notes: Work
Number: ...
1
vote
2answers
102 views
modelling in google-datastore: use lists or separate entities?
I'm stuck trying to implement a data model for an app to be deployed on AppEngine.
Here's an example of the model:
EntityName
id: 1
author: 'me'
description: 'whatever'
datetime: ...
0
votes
2answers
168 views
de-normalizing data model: django/sql -> app engine
I'm just starting to get my head around non-relational databases, so I'd like to ask some help with converting these traditional SQL/django models into Google App Engine model(s).
The example is for ...
0
votes
1answer
277 views
How to handle “reference data” (static data) in the Google App Engine datastore?
I have an application I am working on where I have a set of data that, while not technically static, will not change very often (say, 3 or 4 times a year on average). However, some of this data is ...
1
vote
0answers
42 views
Views in GAE DataStore
The application is a simple task management system in which an employee can have multiple tasks and a task can be assigned to multiple employees. So the first Model is Employee, which has the ...
13
votes
3answers
4k views
Relational vs Non-Relational Data Modeling - what's the difference
I'm new to databases and I've never worked with any RDBMS. However I get the basic idea of relational databases. At least I think I do ;-)
Let's say I have a user database with the following ...
2
votes
2answers
376 views
Google App Engine using UserProperty to link data
I am writing an application in GAE. In order to link the currently logged in user to data in my application I have been relying on equality between users.get_current_user() and members.user (see ...
1
vote
1answer
124 views
Is there a “children” method in App Engine?
When entities with a parent are created, they can always reference this parent by calling the parent() method in Python.
Does the parent have a corresponding children() method? I didn't see one in ...
5
votes
2answers
474 views
Database design in GAE/J : relational modelling vs entity-attribute-value
Imagine you plan to create a social network running on GAE/Java where each user has a set of properties (i.e. age, current town, interests).
Alternative 1: classical approach - the user_id and every ...
3
votes
3answers
238 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 ...
2
votes
2answers
531 views
Use a ListProperty or custom tuple property in App Engine?
I'm developing an application with Google App Engine and stumbled across the following scenario, which can perhaps be described as "MVP-lite".
When modeling many-to-many relationships, the standard ...
2
votes
1answer
90 views
GAE Datastore: “total” property vs. adding up line items?
This is another Google App Engine Datastore question.
Let’s say my app tracks a bunch of rats and how much cheese they’ve eaten. Each Rat entity has a series of Meal entities -- each tracks when the ...
5
votes
2answers
845 views
How to model entities in Google’s Datastore
The Datastore used by Google’s App Engine, unlike a relational database engine, does not enforce schemas – instead of rows and columns, it stores entities with various properties. Nevertheless, ...
0
votes
1answer
38 views
Archives for Model in python to appengine
I'm a noob in python, and i'm creating a app into appengine with python.
I define class form Model's bug i don't know how order archives, normally, i create diferrent archives with all entities of my ...
1
vote
1answer
405 views
App Engine data modeling problem
I'm kinda new to modeling my data model for efficient querying with
GAE, but have extensive knowledge with RDBMS.
Here's the problem:
I got roughly a million terms (strings) and need to query and ...
0
votes
1answer
102 views
GAE modeling relationship options
I need to model the following situation and I can't seem to find a
consistent example on how to do it "correctly" for the google app
engine.
Suppose I've got a simple situation like the following:
...
2
votes
2answers
561 views
Appengine convert a field of type “String” to “Text” after saving several items?
So Here is the problem, I've created an entity with a field of type "String" made several of those items and now realise I need more room and therefore need to convert that field to "Text". I tried ...
3
votes
1answer
167 views
How to count both sides of many-to-many relationship in Google App Engine
Consider a GAE (python) app that lets users comment on songs. The expected number of users is 1,000,000+. The expected number of songs is 5,000.
The app must be able to:
Give the number of songs ...
2
votes
2answers
315 views
Data modeling advice for a forum application on Google App Engine
I'm writing a simple forum-like application on Google App Engine and trying to avoid scalability issues. I'm new to this non-RBDMS approach, i'd like to avoid pitfalls from the beginning.
The forum ...
2
votes
2answers
2k views
Under some circumstances an App Engine “get_by_key_name” call using an existing key_name returns None
I've run into a strange problem that I haven't seen before making a get_by_key_name call using the App Engine ORM.
Under no circumstances, one would assume, would the following return None:
...
5
votes
4answers
844 views
Thinking in AppEngine
I'm looking for resources to help migrate my design skills from traditional RDBMS data store over to AppEngine DataStore (ie: 'Soft Schema' style). I've seen several presentations and all touch on the ...
0
votes
1answer
116 views
How do I get all the entities of a type with a required property in Google App Engine?
I have a model which has a required string property like the following:
class Jean(db.Model):
sex = db.StringProperty(required=True, choices=set(["male", "female"]))
When I try calling ...
