NDB is an App Engine library for accessing the datastore. It provides an improved interface over ext.db, and includes support for parallel processing with coroutines.
0
votes
1answer
9 views
app-engine ndb delete data
I'm new to app-engine [Python 2.7]
I would like to delete elements from my ndb (currently I don't care if it is one by one or all at once since none is working for me).
Version 1 based on this Q:
...
0
votes
0answers
23 views
Is it possible to have an ndb property that contains the key of a python object?
Sorry if this question allready have been answered. I coudn't find it, so please let me know if this thread already exists.
I need to have a ndb property that allows to store python keys. I tried to ...
1
vote
2answers
37 views
Appengine NDB: Putting 880 rows, exceeding datastore write ops quota. Why?
I have an application which imports 880 rows into an NDB datastore, using put_async(). Whenever I run this import it exceeds the daily quota of 50,000 write ops to the datastore.
I'm trying to ...
0
votes
1answer
21 views
ndb is not accepting a monkeypatched datetime.DateTime
When testing, I'd really like to make sure that datetime.datetime.now() returns a certain datetime instance. This is how I've implemented this in a test, using pytest's monkeypatchfunction:
def ...
2
votes
0answers
59 views
Using NDBs ComputedProperty to count another model's objects via ancestor query
I am leveraging NDBs ComputedProperty and an ancestor query to count another model's objects that match a particular filter. The ComputedProperty looks something like this:
class Goal(ndb.Model):
...
1
vote
4answers
91 views
GAE: use static HTML file vs database to serve contents
My new site (to read books) actually uses static content to serve the pages: I have the HTML file saved in a folder and, to serve the page, I read it and pass the content to a jinja2 template, to show ...
0
votes
3answers
60 views
How to cache Google App Engine queries - how to get query string/hash and affected tables?
I want to cache queries in memcache to speed up reading. For this I need some function creating some id for query.
class DeleteMe(db.Model)
pass
query = DeleteMe.all()
# how to get query ...
1
vote
1answer
68 views
ndb to_dict method does not include object's key
I am leveraging ndb's to_dict method to convert an object's properties into a python dict. From everything I can tell, this method does not include the object's key or parent within the dict as per ...
0
votes
1answer
33 views
NDB key vs get_by_id
Just to know if I'm mistaked or not:
get() operations uses NDB cache, so this (Chapter is ndb.Model class):
# Get the entity
chapter_key = ndb.Key('Book', long(bookId), 'Chapter', long(chapterId))
...
1
vote
1answer
40 views
Using Key in NDB to retrieve an entity
I have this structure: Books that have Chapters (ancestor=Book) that have Pages (ancestor=Chapter)
It is clear for me that, to search for a Chapter by ID, I need the book to search by ancestor query. ...
1
vote
1answer
36 views
Working with ancestors in GAE
I only want that someone confirm me that I'm doing things in the right way.
I have this structure: Books that have Chapters (ancestor=Book) that have Pages (ancestor=Chapter)
It is clear for me ...
1
vote
2answers
63 views
db.ReferenceProperty() vs ndb.KeyProperty in App Engine
ReferenceProperty was very helpful in handling references between two modules. Fox example:
class UserProf(db.Model):
name = db.StringProperty(required=True)
class Team(db.Model):
...
0
votes
1answer
46 views
ndb models, decorators, nested functions
I'm looking for some help with my app. Here's sample code first (stripped down from about 2k lines...) and I'll try to explain what I'm looking for later:
from google.appengine.ext import ndb
import ...
2
votes
1answer
46 views
Getting key from the id of the entity using Appengine's NDB
I have a model based on ndb, while saving it, I stored 'id' field with current logged-in user's user id. (Why I am doing this? Actually this model used to be based on db.Model and key_name has this ...
0
votes
1answer
24 views
How to add tagging to a database
Say I am working on a free for all blog where writers are allowed to tag their posts (basically twitter et all). How do I do that so that queries are optimized for speed?
I am thinking of having a ...
0
votes
1answer
45 views
Use of memcache with NDB
I'm going from db to ndb and I have a little doubt.
I've read the Caching docs but I need a clarification or a confirmation: with db I was using memcache to save my "views" and avoid hitting the ...
0
votes
1answer
60 views
GAE: from RDBMS to NDB problems
I'm learning to work in GAE. I've read a lot of papers, all NDB docs from Google and asome questions here. I'm so used to SQL, but transform my way of think the last 20 years to NoSQL is a little hard ...
1
vote
1answer
23 views
Does NDB auto-batching work with caching disabled?
The NDB docs mention auto-batching several times but there isn't a section that describes exactly when and how it works. I'd like to know if auto-batching is dependant on NDB's default enabled ...
0
votes
2answers
36 views
Any way to tell if _pre_put_hook in ndb is saving for the first time?
I want to run some stuff on model creation, but not on model update. I could do this by adding a property, but I'm wondering if there's some kind of built in functionality for targeting specifically ...
0
votes
1answer
64 views
How to delete an entity including all children
I would like to do a cascading delete on an entity in the datastore. By this I mean all children and indirect children will also be deleted. I initially assumed this would be default behavior but ...
1
vote
1answer
48 views
Pickling on GAE ndb
I am trying to pickle and unpickle structured data into an ndb.PickleProperty() property like so:
month = MonthRecord.get_or_insert(month_yr_str, parent=ndb.Key('Type','Grocery'), ...
0
votes
1answer
30 views
creating a compound or composite key on google app engine
I have two models:
Car(ndb.Model) and Branch(ndb.Model) each with a key method.
@classmethod
def car_key(cls, company_name, car_registration_id):
if not (company_name.isalnum() and ...
3
votes
1answer
35 views
GAE model hooks not working on admin server. Why?
I have a _pre_delete_hook that works ok for all of my deletes upon entity keys.
The problem is that when I manually delete an entity from the interactive Datastore Viewer the _pre_delete_hook does ...
0
votes
2answers
39 views
How do I select an ndb property with a string?
With a data model like this
class M(ndb.Model):
p1 = ndb.StringProperty()
p2 = ndb.StringProperty()
p3 = ndb.StringProperty()
I'm trying to set the property values with a loop ...
0
votes
1answer
40 views
NDB Query not returning most recently added object
I have a GAE website. The home page displays a list of project objects and a form for adding more projects. When the submit button is pressed, an ajax request is made which runs the ...
0
votes
1answer
21 views
How to get the dirty factors of an NDB Model in pre_put_hook
Is it possible to figure the dirty factors of an entity in a pre_put_hook?
I want to conditionally execute some callbacks based on what is being put. E.g. if an entity has a particular property ...
0
votes
3answers
68 views
ndb.Key filter for MapReduce input_reader
Playing with new Google App Engine MapReduce library filters for input_reader I would like to know how can I filter by ndb.Key.
I read this post and I've played with datetime, string, int, float, in ...
0
votes
1answer
56 views
Can ndb be used simultaneously with Java datastore access?
We are developing an AppEngine app that is written partly in Java, partly in Python (different versions use different languages).
I am wondering if I can use the ndb database on the Python side, to ...
0
votes
0answers
45 views
Get_Multi vs. query in NDB. I.e. reads versus cache
so in my app i have a graph search problem (see my previous questions). One of the annoying parts of the algorithm i use is that I have to read in my entire ndb database to memory (about 5500 ...
0
votes
0answers
36 views
Update NDB schema on Appengine
While there is an article on updating the Google App Engine schemas on regular DB models, that method doesn't translate exactly over to ndb. As well, it doesn't work for multiple namespaces. I was ...
0
votes
1answer
40 views
ndb returning a StructuredProperty subproperty by querying for a StructuredProperty
Hi I'm confused about how to return a StructuredProperty property (mouthful):
Say I have this example from the ndb tutorial:
class Address(ndb.Model):
type = ndb.StringProperty() # E.g., 'home', ...
0
votes
1answer
102 views
Should I use ndb structured property or a seperate model to limit my GAE queries. Basis data modeling questions.
I'm trying to reformat a previous question I posed in a more meaningful way here. If I'm not asking the correct question, or not providing enough information please let me know.
I have data coming ...
0
votes
0answers
69 views
ndb fetch_page does not return next cursor after delete
I have basic paging implemented for my app where I show 5 items(ndb.Model) at a time. I query them using code below,
fetched_resutls,next_cursor, more = Content.query(Content.user_email == ...
1
vote
0answers
78 views
GAE Blobstore: upload blob along with other text fields
I have a form that includes, between text fields, an element to upload a picture.
I want to store the blob in the blobstore and reference it in my model (ndb.Model) using ndb.BlobKeyProperty().
The ...
1
vote
1answer
28 views
Is it possible to only have a ComputedProperty for certain entities?
In my application I have a model like so:
class MyModel(ndb.Model):
entity_key_list = ndb.KeyProperty('k', repeated=True, indexed=False)
entity_key_num = ndb.ComputedProperty('n', lambda ...
1
vote
0answers
52 views
Is Google App Engine NDB and SQLAlchemy similar? [closed]
I am a big fan of Python. I am learning to write web apps, and I chose GAE to place my app (due to many reasons: free tier, simple-to-start, etc). I am developing based on ...
0
votes
2answers
33 views
NDB .order returns an empty result
I have two entities in my database which are connected. We'll call them A and B. I have an instance of A in memory (we'll call him a), and the following query currently works:
B.query(B.parent == ...
0
votes
0answers
47 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 ...
1
vote
3answers
28 views
Is the following possible with ndb: query(AdModel.daily_used < AdModel.daily_budget)
I am trying to perform a query using ndb in appengine as follows
all_adverts = AdModel.query(AdModel.daily_used < AdModel.daily_budget)
I am trying to query only items that have not used their ...
1
vote
2answers
66 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
2answers
79 views
NDB Modeling One-to-one with KeyProperty
I'm quite new to ndb but I've already understood that I need to rewire a certain area in my brain to create models. I'm trying to create a simple model - just for the sake of understanding how to ...
1
vote
1answer
48 views
App Engine NDB query with multiple inequalities?
The only two answers on here involve essentially restructuring the database to accommodate this limitation, but I am unsure how to do that in my case.
I have a list of thousands of contacts, each ...
2
votes
4answers
97 views
Querying for Percent of Change Over Time in App Engine
My website indexes time series data coming from a feed which is updated continuously. Users of the website should be able to configure alerts which are triggered when the value of a specific attribute ...
0
votes
1answer
38 views
Equivalent of a repeated NDB StructuredProperty in JPA/JDO on Google App Engine
A list of StructuredProperties in NDB is modelled by a number of repeated properties, one repeated property per property of the StructuredProperty's model class. (See here: ...
0
votes
2answers
92 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 ...
-1
votes
1answer
54 views
NDB HRD transactions, which ancestor determines the entity group?
Is it the closest or the most distant parent relative of the entity being written, which determines the entity group? (Question 1) For, if I have,
two simultaneous requests to write two different ...
0
votes
1answer
60 views
Restrict AppEngine (python) NDB to generate 32bit keys only
I am using Python as development script and NDB.
What is the default algorithm that generate automatic numeric id (key)? Is it safe to assume that the key value never exceed in an application if ...
0
votes
1answer
66 views
Get a list of dynamic properties with an NDB Expando Model?
With db it appears it was myexpando.dynamic_properties(), but trying to do that in ndb I get an AttributeError for dynamic_properties.
Can't find anything in the docs about a change to this.
0
votes
1answer
50 views
Performing NDB Query During cronjob
I have a GAE (google app engine) app that is to parse a website at 15 minute intervals. every 15 minutes the cron will check the timestamp on the oldest data (BitData() in this case) to be loaded and ...
0
votes
3answers
141 views
How to define Key Name in Datastore GAE Python?
OS Win7, GAE 1.7.6, Python 2.7.3, still learning GAE..
Working on project, which need to have input form to extend its content(name,email,phone..) with defined Key Name in Datastore, preferably to ...


