a couple of thoughts... 1. i don't know for sure about datastore connecting to GCE, but the beta managed VMs project allows you to run a GCE instance with full connection to the app engine datastore (and other services). We have used it well in python for types of processing that we couldn't run on regular app engine instances. 2. i don't know if there are limit on datastore entity kinds per project. 3. i like your approach 1 as it seems much easier to code and use to me.
just my 3 cents... cfh On Sunday, January 31, 2016 at 5:14:28 AM UTC-8, Dhanunjaya Naidu. Yandrapu wrote: > > Hi, > > I am new to Google cloud and have few question. I have few questions. I > would very much appreciate if you could answer them. > > we are planning to use appengine, datastore/cloud storage and golang for > my next project.Here are my questions: > > 1. Currently planning to use appengine but might move to compute > engine at a later point of time. is it possible to move from appengine to > compute engine and seamlessly access datastore and cloud storage from > compute engine(in the same project)? > 2. Are there any limits on datastore entity kinds per project? > 3. I would also like to know your thoughts on the following design > choice for the data model in datastore. We are planning to use name-spaces > for multi-tenancy and we have around 100 entity kinds. I am wondering if > *Approach > 2 *has any advantages over *Approach 1* in terms of query performance > or reducing the query cost or deleting all the entities of a particular > tenant > - *Approach 1*: have 100 entity kinds and use name-spaces for > tenant isolation. So we always have 100 entity kinds regardless of the > number of tenants > - *Approach 2*: use name-spaces for tenant isolation and append > tenant ID for each kind, so if we have 10,000 tenants, we will have 1 > million entity kinds. > > thanks in advance. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/5240eee3-4f6a-4fe0-bea6-0c14aa378a77%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
