On Mon, Oct 1, 2012 at 4:21 AM, Takashi Matsuo <[email protected]> wrote: > > Hi Eugene, > > The first option comes to mind is the Remote API. > For more details, please read: > https://developers.google.com/appengine/docs/python/tools/remoteapi > > > Re: using PyMongo on App Engine > I don't think you can use the current PyMongo module because it includes > some c code. With the python2.7 runtime, we only provide limited set of > modules with c code as described bellow: > https://developers.google.com/appengine/docs/python/tools/libraries27 > > However, in the future, it might be possible for you to use MongoDB directly > from App Engine with a use of the socket API, if we provide PyMongo module. > So maybe you want to file a feature request to provide PyMongo module with > the Python2.7 runtime.
Apparently PyMongo could also work in Pure Python mode (the C extensions are optional), so you can definitely give it a try with the Socket API (signup here https://docs.google.com/a/google.com/spreadsheet/viewform?formkey=dF9QR3pnQ2pNa0dqalViSTZoenVkcHc6MQ#gid=0). You should also be able to query it over http using the simple rest interface: http://www.mongodb.org/display/DOCS/Http+Interface/#HttpInterface-SimpleRESTInterface > > For the socket API, now we're accepting trusted tester for the socket API. > Please see this thread: > https://groups.google.com/d/msg/google-appengine/m1x6sDhqx1o/XC2e_kcR_VUJ > > Thanks, > > -- Takashi > > > On Sat, Sep 29, 2012 at 8:14 PM, Eugene Y.E <[email protected]> wrote: >> >> Hi all , >> >> I was wondering if any one have experience in transferring data from >> mongodb to google app engine? >> Either google's data store, the new NDB or Cloud SQL is fine with me. >> >> My MongoDB is set up on Amazon EC2 micro instance, and I use PyMongo to >> access the data. >> >> I was wondering if i can install PyMongo on google app engine and access >> my data on Amazon EC2 >> so that I can save it directly to google app engine? >> >> Any suggestions are more than welcomed! >> >> Thanks! >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Google App Engine" group. >> To view this discussion on the web visit >> https://groups.google.com/d/msg/google-appengine/-/8gv1vLLggF8J. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/google-appengine?hl=en. > > > > > -- > Takashi Matsuo | Developers Advocate | [email protected] > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. -- Johan Euphrosine (proppy) Developer Programs Engineer Google Developer Relations -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
