English 中文(简体)
app engine big table
原标题:

what is bigtable. Is any authentication require to create table in bigtable.where the data will be store. it is possible to view the table. we can view all the tables in bigtable, which was created by others.

问题回答

I ll take your several questions one at a time: Bigtable is the system on which AppEngine s datastore is built. It is effectively a distributed hashtable.

Authentication is required in that you must have a Google Account; you must have signed up for AppEngine; you must have created an application within AppEngine. You application will be able to access the datastore, and if you are logged in to your application s Admin Console, you can use the Datastore Viewer to inspect the contents of your application s datastore.

The data will be stored on Google Servers.

There are no tables, per se, but you can use the Datastore Viewer to view entities that reside in your application s Datastore.

No, you can not ever view the Datastore s contents that were created by other applications. Each application s view of the Datastore is completely siloed and has no connection to that of other AppEngine applications.





相关问题
How to make logging.debug work on Appengine?

I m having a tough time getting the logging on Appengine working. the statement import logging is flagged as an unrecognized import in my PyDev Appengine project. I suspected that this was just an ...

gqlQuery returns object, want list of keys

Is there a way to convert the GqlQuery object to an array of keys, or is there a way to force the query to return an array of keys? For example: items = db.GqlQuery("SELECT __key__ FROM Items") ...

Integrating Google AppEngine with a Thick Client

I want to make a multi-user client-server solution with Java Swing thick client as a front-end and Google AppEngine (Java one) as a back-end. The problem is that GAE provides only web-based forms for ...

sorl.thumbnail : thumbnail is not a valid tag library?

I am trying to install sorl.thumbnail but am getting the following error message: thumbnail is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module ...

热门标签