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
14 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
34 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
48 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
18 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
1answer
27 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
55 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
40 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
26 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
32 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
34 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
35 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
15 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
48 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
46 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
37 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
30 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
28 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
64 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 ...
-1
votes
0answers
23 views
Multilingual taxonomy in in app engine (python) [closed]
Any ideas on how to create a hierarchical multilingual taxonomy (not necessarily in database)?
I use app engine (ndb), python, webapp2 and wtforms, but I guess the problem is not really environment ...
0
votes
0answers
54 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
65 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
27 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
45 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
32 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
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 ...
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 ...
0
votes
2answers
49 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
65 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
37 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
86 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
29 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
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 ...
-1
votes
1answer
43 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
53 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
46 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
39 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
119 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 ...
0
votes
1answer
25 views
How to create a datastore_query.Order object for ndb Query constructor?
I noticed at https://developers.google.com/appengine/docs/python/ndb/queryclass, there is an optional argument for the ndb.Query constructor that allows you to specify order in the query. This ...
0
votes
1answer
61 views
Query filtering on property with validator setted
I have model User and property username with validator which validates username for available chars, non-empty and existence in DB. So, I don't need any other checks when handling registration form ...
5
votes
1answer
60 views
Should I expect stale results after redirect on local environment?
After I post a new entity to the datastore, I redirect the page to a new URL that lists all of the entities in that group. When I redirect, the page shows stale results and I have to reload to see the ...
0
votes
1answer
24 views
App Engine ndb StructuredProperty __get__
OK, I'm stuck. I have a simple StructuredProperty (just one level deep) property on an entity. And at runtime, I want to get the value of one of the "sub-properties" on that StructuredProperty by ...
-2
votes
1answer
30 views
How to reflect changes in data base automatically? [closed]
I have an ndb entry that can be changed by a rpc call to my app engine app.
I also have a python web app creating an html site to show the entry.
How do i show the changes when they happen without ...
1
vote
1answer
39 views
projection query for ndb.Expando (1.7.6)
the following query returns keys only even I want to return the attribute Name which is a ndb.StringProperty of a ndb.Expando entity.
cls.query().order(cls.Name).fetch(100, projection=[cls.Name]) #.. ...
1
vote
1answer
50 views
When does an ndb Model's _post_put_hook have a future different from self?
Google App Engine's ndb provides a _post_put_hook(self, future), documented as follows:
Hook that runs after put()
To understand this hook better, I am wondering when self will differ from the ...
1
vote
1answer
42 views
How to store e-mail attachment to GAE Blobstore?
Let's say the app received a message, which has attachments (mail_message.attachments). Now, I would like to save the message in the datastore. I don't want to store attachment there, so I would like ...
0
votes
1answer
106 views
Image upload not working with App Engine NDB: 405 Method Not Allowed
I followed this tutorial https://developers.google.com/appengine/docs/python/tools/webapp/blobstorehandlers to allow users upload image in my app. It works for my app which uses Python 2.5 environment ...
0
votes
1answer
35 views
Google app engine: Retrieve values from datastore after a particular key value?
I'm newbie to GAP (Python). I'm using NDB to retrieve all the values from datastore which comes after a particular key value.
Thanks in advance if anybody can help me out with this one?
0
votes
2answers
56 views
How to synchronize NDB Search Index with datastore
When I originally wrote the delete method for our data store I messed up and forgot to delete entity ids from the search.Index. Now I'm finding that search results are bring back doc_ids but there is ...
1
vote
1answer
77 views
GAE ndb security issue?
I have two mock users Jo and Sam with the respective ids 117138609372751079516 and 144229817858159123282.
The app has the following entity:
class MockEntity(ndb.Model):
ownerId = ...
0
votes
2answers
52 views
How to correctly use NDB Query AND / OR
I'm not sure if I'm constructing the query with AND and OR properly. When I query to just match tag, I get a handful of matching videos. But when I try the second query, (to make sure that a video ...



