[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-24 Thread Michael
As far as i can understand, that's not a consistent backup. Can we expect a service for making consistent snapshots of DB? On Dec 16, 1:51 pm, Nick Johnson (Google) nick.john...@google.com wrote: Backup and restore functionality has been present for some time,

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread George Moschovitis
It would be great if we could execute_transforms() directly back to a blob and get a BlobInfo back? +1 nice idea... btw, how can we store the output of an image transform back into blobstore? is there an image api, or do we have to use urlfetch to POST the image into the blobstore? thanks,

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread Nick Johnson (Google)
Hi, On Tue, Dec 15, 2009 at 9:21 PM, yadoo yado...@gmail.com wrote: Excellent job Google... Hopefully, google provides us Backup/Restore tools in the future release Backup and restore functionality has been present for some time, see:

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread Nick Johnson (Google)
Hi, On Wed, Dec 16, 2009 at 4:19 PM, rsft rsft rsft.singap...@gmail.com wrote: Is this feature also available on the Java Google App Engine? Yes, using the Python bulkloader. See here for details: http://blog.notdot.net/2009/9/Advanced-Bulk-Loading-Part-5-Bulk-Loading-for-Java -Nick On

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread Guillaume Laforge
On Wed, Dec 16, 2009 at 17:26, Nick Johnson (Google) nick.john...@google.com wrote: Hi, On Wed, Dec 16, 2009 at 4:19 PM, rsft rsft rsft.singap...@gmail.com wrote: Is this feature also available on the Java Google App Engine? Yes, using the Python bulkloader. See here for details:

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread Nick Johnson (Google)
Hi, On Wed, Dec 16, 2009 at 4:29 PM, Guillaume Laforge glafo...@gmail.comwrote: On Wed, Dec 16, 2009 at 17:26, Nick Johnson (Google) nick.john...@google.com wrote: Hi, On Wed, Dec 16, 2009 at 4:19 PM, rsft rsft rsft.singap...@gmail.com wrote: Is this feature also available on the

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread Guillaume Laforge
On Wed, Dec 16, 2009 at 17:44, Nick Johnson (Google) nick.john...@google.com wrote: [...] Yes, using the Python bulkloader. See here for details: http://blog.notdot.net/2009/9/Advanced-Bulk-Loading-Part-5-Bulk-Loading-for-Java I'm curious to know if there any plans on providing a Java

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread johnP
Is this dump/restore the extent of what Google will provide? Two limitations offhand are: 1. If your application has multiple entity kinds, then you need to download all of them individually. If you have a complex app with lots of entity types, you have to customize the script. 2. If

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread ajaxer
it seems google is not listening on this. On Dec 17, 1:56 am, johnP j...@thinkwave.com wrote: Is this dump/restore the extent of what Google will provide? Two limitations offhand are:  1.  If your application has multiple entity kinds, then you need to download all of them individually.  If

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-16 Thread Tom Wu
Because different db model have different issues to deal. For example, I use ref db.model. The tree relationship is defined by myself. Only I can deal the issue. Maybe Googler can provide full solution in the future. Best Regards Tom Wu 2009/12/17 johnP j...@thinkwave.com Is this

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread ajaxer
my suggestions on appengine: enable entities deleted by one click. cancel the limit on offset index. remain the limit on data fetched. On Dec 15, 12:00 pm, Jason (Google) apija...@google.com wrote: Hi Everyone. We just released version 1.3.0 of the App Engine SDK for both Python and Java. The

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Tim Hoffman
Hi There does not appear to be any provision for creating blobs via remote_api. Any thoughts on this ? T On Dec 15, 12:00 pm, Jason (Google) apija...@google.com wrote: Hi Everyone. We just released version 1.3.0 of the App Engine SDK for both Python and Java. The most notable change is the

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Stephen Mayer
Hi Jason, Looks like an exciting new feature! My concern after looking thru the docs is how we tell what file the user actually uploaded ... was it an image, a video, etc ... for validation and sanity checks? It seems like you could use the fetch api to get the actual file and work on it in

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Barry Hunter
Stephen, have you seen? http://code.google.com/appengine/docs/python/blobstore/blobinfoclass.html looks like you should be able to query that to get the mime-type (admittedly it is the client provided one, not a server-side verified one. ) 2009/12/15 Stephen Mayer stephen.ma...@gmail.com: Hi

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Matthew Blain
While the limit for passing data directly to the Images (or other) APIs has not changed, you can pass a Blob key to the Images API to do exactly what you want: convert a 50MB uploaded image to a smaller image. More information here:

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Dave Peck
Well, that gets us partway there. Looking at the docs, it looks like the output image must still be less than 1MB -- certainly fine for thumbnailing, but possibly for not all types of tasks. Also: right now (unless I've missed an API somewhere) to validate images you must pass them to the Image

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Dave Peck
and see if execute_transforms() succeeds. So if I want to validate a 1++MB image, I still have the issue with the output side of the image. (I realize that, when validating, you can always resize the image so that it's likely to be less than 1MB when finished. I just wish there were a

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread mably
For Backup/Restore tools, please vote for issue http://code.google.com/p/googleappengine/issues/detail?id=776 Already 174 people have starred it. François On 15 déc, 22:21, yadoo yado...@gmail.com wrote: Excellent job Google... Hopefully, google provides us Backup/Restore tools in the future