[google-appengine] Blobstore API failing to init blobs in local dev environment

2020-05-09 Thread Shaun Budhram
Hi all, I'm trying to resurrect an older app that is using Python 2.7 and the older Blobstore API to read/write blob data. I have some code that looks like this (not exactly, but should get the point across): from google.appengine.api import files fileName = files.blobstore.create(mime_type='

[google-appengine] Blobstore?

2019-07-12 Thread Jeremy D
Was blobstore removed from the appengine dashboard? We still have some legacy things that use blobstore, and having access to the list of files uploaded to that is extremely useful. Where is it? -- You received this message because you are subscribed to the Google Groups "Google App Engine" gr

[google-appengine] Blobstore completely down for whole day!

2017-06-09 Thread D D Orchards
http://lh3.googleusercontent.com is the url for the blobs. This server has been down for whole day! -- 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 google

[google-appengine] Blobstore upload URLs fail intermittently

2017-05-05 Thread Attila-Mihaly Balazs
Hello all, One of our clients is reporting that the blobstore upload URLs created by create_upload_url is failing intermittently with 500 (but retrying works). I created an issue with more details here: https://issuetracker.google.com/issues/38046584 but I'm wondering if anyone else is seeing

Re: [google-appengine] Blobstore without form.

2015-12-04 Thread 'Alex Martelli' via Google App Engine
On Fri, Dec 4, 2015 at 9:30 AM, Trez Ertzzer wrote: > Hello. > My question is: is it possible to use the blobstore without a form? > > I am asking this question because I want to do the following in a > ionic/cordava App: > > the user take a picture with his phone, click a button upload and the f

[google-appengine] Blobstore without form.

2015-12-04 Thread Trez Ertzzer
Hello. My question is: is it possible to use the blobstore without a form? I am asking this question because I want to do the following in a ionic/cordava App: the user take a picture with his phone, click a button upload and the file gets uploaded to the blobstore. I do not know how to do this

[google-appengine] Blobstore API upload behavior on error

2015-06-01 Thread Jeff Schnitzer
What is the behavior of the blobstore upload API when the callback produces a 500 error? This is not at present documented. I would hope that GAE deletes the blob, otherwise it's going to leak. My application cannot be trusted to detect the 500 error and delete the blob explicitly; after all, the

[google-appengine] Blobstore problem

2014-07-09 Thread Fabien Lenoir
Hello, I am experimenting a problem with the blobstore today. The files I upload from my application are displayed with the correct size in the blob viewer, but when I try to download them from the same view, only empty files are downloaded. It's seems that the application can't access the uplo

Re: [google-appengine] Blobstore returns incorrect url

2014-05-28 Thread Vinny P
On Mon, May 26, 2014 at 10:24 AM, Aidan Mack wrote: > As in deploy it to the web? I dont know. I really need to be able to get > it working locally first anyway. > OK, so let's try something else. The dev appserver is designed to make your application available on localhost, so it sounds like i

Re: [google-appengine] Blobstore returns incorrect url

2014-05-26 Thread Aidan Mack
As in deploy it to the web? I dont know. I really need to be able to get it working locally first anyway. Thanks Aidan On Saturday, 10 May 2014 06:27:59 UTC+1, Vinny P wrote: > > On Fri, May 9, 2014 at 7:45 AM, Aidan Mack > > wrote: > >> Hi im having trouble returning the correct url from blob

Re: [google-appengine] Blobstore returns incorrect url

2014-05-09 Thread Vinny P
On Fri, May 9, 2014 at 7:45 AM, Aidan Mack wrote: > Hi im having trouble returning the correct url from blob store. Could it > be because Im logged in as a admin? ... You must be logged in as admin to > see the page. > If you deploy your application into production App Engine, is the correct bl

[google-appengine] Blobstore returns incorrect url

2014-05-09 Thread Aidan Mack
Hi im having trouble returning the correct url from blob store. Could it be because Im logged in as a admin? ... You must be logged in as admin to see the page. Something like... BlobKey bk = new BlobKey(blobKey); ImagesService services = ImagesServiceFactory.getImagesService(); ServingUrlOpt

Re: [google-appengine] Blobstore Stored Data shows incorrect amount

2014-05-04 Thread Tim Rob
Yes you're right, thanks for the help. Best, Tim On Sunday, May 4, 2014 8:33:15 AM UTC+2, Vinny P wrote: > > On Sat, May 3, 2014 at 5:49 AM, Tim Rob > > wrote: > >> The amount visible on the 'Usage History' page is actually correct >> (showing 0.00 on Blobstore Storage), so it seems to be incorr

Re: [google-appengine] Blobstore Stored Data shows incorrect amount

2014-05-03 Thread Vinny P
On Sat, May 3, 2014 at 5:49 AM, Tim Rob wrote: > The amount visible on the 'Usage History' page is actually correct > (showing 0.00 on Blobstore Storage), so it seems to be incorrect on the > Dashboard only. > Today it somehow changed from 1.5GB to 320MB. I'll ignore the blobstore > value on the

Re: [google-appengine] Blobstore Stored Data shows incorrect amount

2014-05-03 Thread Tim Rob
The amount visible on the 'Usage History' page is actually correct (showing 0.00 on Blobstore Storage), so it seems to be incorrect on the Dashboard only. Today it somehow changed from 1.5GB to 320MB. I'll ignore the blobstore value on the dashboard for now (maybe it will be fixed when the new

Re: [google-appengine] Blobstore Stored Data shows incorrect amount

2014-05-02 Thread Vinny P
On Fri, May 2, 2014 at 9:18 AM, Tim Rob wrote: > The "Blobstore Stored Data" visible on the App Engine dashboard is showing > an incorrect amount. > All of our binary data is stored in Google Cloud Storage, and the > Blobstore is completely empty. > We faced this issue before, filed a bug which w

[google-appengine] Blobstore Stored Data shows incorrect amount

2014-05-02 Thread Tim Rob
The "Blobstore Stored Data" visible on the App Engine dashboard is showing an incorrect amount. All of our binary data is stored in Google Cloud Storage, and the Blobstore is completely empty. We faced this issue before, filed a bug which was fixed by Google: https://code.google.com/p/googleappen

Re: [google-appengine] Blobstore questions

2013-11-22 Thread Vinny P
On Fri, Nov 22, 2013 at 10:23 AM, D X wrote: > 1. Is blobstore getting deprecated? From some discussions online it sounds > like blobstore is getting deprecated in favor of GCS. However, from the > docs, it looks like it's only the file-like API that is getting deprecated. > If I'm just uploading

[google-appengine] Blobstore questions

2013-11-22 Thread D X
Two Blobstore questions: 1. Is blobstore getting deprecated? >From some discussions online it sounds like blobstore is getting deprecated in favor of GCS. However, from the docs, it looks like it's only the file-like API that is getting deprecated. If I'm just uploading files and serving them,

Re: [google-appengine] Blobstore upload stripping mime parts on Production but not Dev?

2013-11-21 Thread Vinny P
On Wed, Nov 20, 2013 at 4:08 AM, Rich wrote: > Note that if I post _directly_ to this servlet, instead of the blobstore > upload URL, everything looks fine: I can read the input stream and it is a > nice, well-formed multipart; and I can access the parts perfectly using > ServletFileUpload. > I

Re: [google-appengine] Blobstore upload stripping mime parts on Production but not Dev?

2013-11-20 Thread Rich
On Wednesday, November 20, 2013 4:15:58 AM UTC+1, Vinny P wrote: > > On Tue, Nov 19, 2013 at 9:40 AM, Rich > > wrote: >> >> This seems to be working fine on the Dev Server but *not* on the live >> AppEngine. >> >> > > Can you use *HttpServletRequest.getHeaders* and inspect the headers > you

Re: [google-appengine] Blobstore upload stripping mime parts on Production but not Dev?

2013-11-19 Thread Vinny P
On Tue, Nov 19, 2013 at 9:40 AM, Rich wrote: > > This seems to be working fine on the Dev Server but *not* on the live > AppEngine. > > Can you use *HttpServletRequest.getHeaders* and inspect the headers you're receiving on your servlet? See http://docs.oracle.com/javaee/6/api/javax/servlet/http/

[google-appengine] Blobstore upload stripping mime parts on Production but not Dev?

2013-11-19 Thread Rich
Hi, I'm trying to include some additional data in a blobstore upload which I can then process with the BlobInfo. According to https://developers.google.com/appengine/docs/java/blobstore/ : *When the Blobstore rewrites the user's request, the MIME parts of the uploaded files have their bodies

[google-appengine] Blobstore service is down?

2013-10-07 Thread Oleg Bashtenko
Hi! I'm experiencing a strange problem with file uploads to Blobstore (runtime: Java). POSTing a request with file data from client's browser to Blobstore service URL (retrieved by a call to createUploadUrl()) causes a status 500 response with no explanation. Request is never redirected to my se

[google-appengine] Blobstore ImageUrls from Google Cloud Storage images pointing to Error 500 pages

2013-09-24 Thread Aritz Uriarte de Alayo
Hi all, Before we start my application ID is: egolikeproduction. We've been having some issues with the ImageUrls generated by the Blobstore from files stored in Google Cloud Storage ever since this past friday. Some of said urls point to Error 500 pages depending on the values used for the r

Re: [google-appengine] blobstore attachments working on localhost only.

2013-08-08 Thread Vinny P
On Wed, Aug 7, 2013 at 7:51 PM, Matt wrote: > I'm using the following code on my local dev server to prompt the user to > save an image that has been uploaded into the blobstore and it's working > fine. > > response.headers['Content-Type'] = 'image/jpeg' > response.headers['Content-Dispositio

[google-appengine] blobstore attachments working on localhost only.

2013-08-07 Thread Matt
Hi there, I'm using the following code on my local dev server to prompt the user to save an image that has been uploaded into the blobstore and it's working fine. response.headers['Content-Type'] = 'image/jpeg' response.headers['Content-Disposition'] = 'attachment; filename="export.jpg"'

[google-appengine] Blobstore file-like API deprecation timeline (Py 2.7 Runtime)

2013-07-29 Thread ruben . orduz
We recently noticed that the file-like API to store and retrieve blobs from the blobstore has been suddenly deprecated. We built quite a bit of our app infrastructure using the file-like API given that it's very elegant, terse and functional. Now we need to migrate all that infrastructure as wel

[google-appengine] Blobstore filename created in MapReduce job too long to create BlobKey

2013-03-01 Thread Jamie Niemasik
I've been receiving intermittent errors from MapReduce jobs. I'm running Python 2.7. The specific error is "BadValueError: name must be under 500 bytes" which is raised when calling datastore.Key.from_path() within blobstore.get_blob_key(); the filename being provided is way too long to make a

[google-appengine] Blobstore Usage Wrong

2013-01-07 Thread James Gilliam
I deleted thousands of blobstore items that I am no longer using and my total Blobstore size increased. Go figure. How often is the Blobstore being used recomputed? They seem to be able to add to the number but subtraction is apparently more difficult. :) -- You received this message because

[google-appengine] Why is the filename incomplete when downloading from Google AppEngine Blobstore in Firefox?

2012-08-02 Thread Drew Spencer
Hi everyone. I posted this question over on stackoverflow but am not having much luck: http://stackoverflow.com/questions/11776563/why-is-the-filename-incomplete-when-downloading-from-google-appengine-blobstore Thought I would post it here to see if anyone could help me out. Thanks, and happy

[google-appengine] Blobstore Stored Data

2012-06-20 Thread Marcin
I have an odd problem: blobstore stored data increased about 20 times in one day. There were no large file uploads, backups take about 400MB, why am I billed for data that is not in my blobstore? Where did it come from? I have checked every page of my blobstore and a rough sum is 20 times sm

[google-appengine] blobstore down

2012-06-18 Thread Kenneth
I'm getting ApiTemporaryUnavailableError on any blobstore operations. Come Google, sort it out. -- 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/-/DI

[google-appengine] Blobstore Upload not working 31st May 2012 10:49am BST

2012-05-31 Thread Amir Shamsuddin
Hi, Blobstore uploads have suddenly stopped working for our (Python) app, the create_upload_url API works, and capabilities indicates that the blobstore is running, but when a user does a form submit, appengine returns an HTTP 503 error. Is anyone else having this problem, and if so is it being i

[google-appengine] BlobStore - Upload Servlet and User Session Variables

2012-05-21 Thread savilak
I use BlobStore to store excel files as per Ikai's sample ( http://ikaisays.com/2010/09/08/gwt-blobstore-the-new-high-performance-image-serving-api-and-cute-dogs-on-office-chairs/#comment-530 ). I use facebook to authenticate my users and I keep the user name at a session variable. The blobstore

[google-appengine] Blobstore Uploads Corrupting Form Fields?

2012-03-30 Thread Revence Kalibwani
Hello; When I upload data along with a file via a URL generated with `blobstore.create_upload_url('/somepath')`, everything works as it should, except that other form fields (to be precise, textarea fields with long text) get to the handling code at /somepath (in the post handler) when th

[google-appengine] Blobstore and AsiHttpRequest in iOs

2012-03-02 Thread Gal Skarishevsky
hi, I'm trying to store a blob with AsiHttpRequest in iOS and something doesn't work well. when I'm asking the blobstoreserivce to produce an upload link it does the job. but when I'm trying to post to this link it gets back wit this error Error 411 (Length Required)!!1 *{

[google-appengine] Blobstore migration tool.

2012-02-13 Thread Vinuth Madinur
When can we expect a blobstore migration tool? The latencies are increasingly getting slower and is killing. Thanks, Vinuth. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroup

[google-appengine] Blobstore Downloads using IE seeing errors connecting to appspot

2011-12-21 Thread Will Reiher
I've heard some support issues come up when some of our customers have tried to download a file from the blobstore using Internet Explorer and get an error. The download dialog comes up and everything seems to be acting property but when the download begins they see some type of cannot connect

Re: [google-appengine] Blobstore outage?

2011-12-08 Thread Amy Unruh
hi, You should not be seeing this any longer-- please post a follow-up if you do. (This was an issue with an experimental API -- so just as a general note, it's advisable not to depend on such features for "mission critical" things). -Amy On Tue, Dec 6, 2011 at 3:18 PM, rasmus wrote: > We h

[google-appengine] Blobstore outage?

2011-12-06 Thread rasmus
We have seen many blobstore errors today: DeadlineExceededError: The API call file.Create() took too long to respond for 2 periods: around 18:15 - 18:30 GMT and briefly around 22:00 GMT. I have been switching between 2 versions to "fix" this: (1) stores 1-3 blobs for *every* request, including

[google-appengine] Blobstore -creation running very slow

2011-11-19 Thread James Gilliam
Any ideas on why Blobstore -creation query runs so slow ... like 20 seconds for 1500 blobs. Doing this query aQuery = blobstore.BlobInfo.all() aQuery.order( '-creation' ) aBlobstore = aQuery.fetch( 5, 0 ) I even tired building an explicit index for creation but got an err

[google-appengine] blobstore file

2011-10-26 Thread Mark Jen
Hi, I've run into a problem using the file API for blobstore (http://code.google.com/appengine/docs/python/blobstore/overview.html#Writing_Files_to_the_Blobstore) on dev_appserver.py with --high_replication. It seems that after files.finalize(file_name) is called, the blob_key is not immediate

[google-appengine] Blobstore OutOfMemoryError

2011-09-20 Thread steflem
Hi, today i ran the blobstore example from http://code.google.com/intl/de-DE/appengine/docs/java/blobstore/overview.html#Complete_Sample_App When i want to upload a large file (~700MB), i get the following error: 20.09.2011 21:30:35 com.google.apphosting.utils.jetty.JettyLogger warn WARNUNG: Er

Re: [google-appengine] Blobstore storage per namespace / tenant

2011-09-12 Thread Jens Stoltenberg
At the moment the best you can do is use a "blob" type column - which is obviously much more restrictive in terms of size. On Mon, Sep 12, 2011 at 12:46 PM, Krishna wrote: > I need to be able to monitor storage per tenant so I can charge accordingly > but it looks like namespaces are not supporte

[google-appengine] Blobstore storage per namespace / tenant

2011-09-12 Thread Krishna
I need to be able to monitor storage per tenant so I can charge accordingly but it looks like namespaces are not supported by the blobstore and this needs to be handled by application code. Has anyone here implemented something like this before? Would appreciate pointers in this regard. Thanks,

[google-appengine] Blobstore uploads with iframe in IE

2011-09-09 Thread Reed
I'm trying to set up blobstore file uploads using a hidden iframe in IE8. The code I have now is working fine in Firefox, Chrome and Safari, but not in IE. After I submit my form to the upload URL I am given from the blobstore, the file will get put in the blobstore successfully. Then the ifram

Re: [google-appengine] Blobstore v.s static file serving

2011-09-09 Thread Barry Hunter
On Fri, Sep 9, 2011 at 4:49 PM, andreas schmid wrote: > that still does not answer why an image retrieved form the blobstore should > be faster than one served as a static file. As aluded to in the original question, the big one is cookieless http://developer.yahoo.com/performance/rules.html#co

Re: [google-appengine] Blobstore v.s static file serving

2011-09-09 Thread andreas schmid
that still does not answer why an image retrieved form the blobstore should be faster than one served as a static file. On Sep 9, 2011, at 5:43 PM, Barry Hunter wrote: > On Fri, Sep 9, 2011 at 4:13 PM, andreas schmid wrote: >> why should the blobstore be faster? > > http://code.google.com/appe

Re: [google-appengine] Blobstore v.s static file serving

2011-09-09 Thread Barry Hunter
On Fri, Sep 9, 2011 at 4:13 PM, andreas schmid wrote: > why should the blobstore be faster? http://code.google.com/appengine/docs/python/images/overview.html#Transforming_Images_from_the_Blobstore and get_serving_url() > On Sep 9, 2011, at 5:02 PM, Ubaldo Huerta wrote: > > I wonder what's the

Re: [google-appengine] Blobstore v.s static file serving

2011-09-09 Thread andreas schmid
why should the blobstore be faster? On Sep 9, 2011, at 5:02 PM, Ubaldo Huerta wrote: > I wonder what's the prescribed way to serve an asset image (say, a site logo) > > 1-The easy way, using static handlers specified in app.yaml > 2-Uploading them via the blobstore api > > I realize that 1 is s

[google-appengine] Blobstore v.s static file serving

2011-09-09 Thread Ubaldo Huerta
I wonder what's the prescribed way to serve an asset image (say, a site logo) 1-The easy way, using static handlers specified in app.yaml 2-Uploading them via the blobstore api I realize that 1 is simpler to do but I wonder if the fact that doing it via blobstore it would be served faster. For

[google-appengine] Blobstore for free custumers

2011-09-05 Thread Dani Shaulov
In the current model blobstore is only on for users with billing turned on, but on this model you could just enable billing but if you stay under the limits it is still free. Can free users access blobstore on the new model or will const 9$ just for the abillity to use it? (even if the app uses

Re: [google-appengine] Blobstore and New Billing

2011-09-02 Thread Sean Lynch
Thanks On Sat, Sep 3, 2011 at 12:30 AM, Gregory D'alesandre wrote: > We will enable blobstore on free apps ahead of time so you won't have to > time this too precisely. We'll announce once this is live. > > Greg > > > On Fri, Sep 2, 2011 at 6:27 AM, Sean Lynch wrote: > >> I was just thinking ab

Re: [google-appengine] Blobstore and New Billing

2011-09-02 Thread Gregory D'alesandre
We will enable blobstore on free apps ahead of time so you won't have to time this too precisely. We'll announce once this is live. Greg On Fri, Sep 2, 2011 at 6:27 AM, Sean Lynch wrote: > I was just thinking about this the other day, and am also interested on how > the transitionwill affect t

Re: [google-appengine] Blobstore and New Billing

2011-09-02 Thread Sean Lynch
I was just thinking about this the other day, and am also interested on how the transitionwill affect the Blobstore API availability. -- 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.

Re: [google-appengine] Blobstore and New Billing

2011-09-02 Thread Joe
With Billing Enabled to make use of the blobstore, if we fail to disable billing, i presume the $9 monthly fee will kick in? So we need to time the disabling of billing very carefully so as to keep the Blobstore API working, but not incur a $9 fee for the first month. Does google have a plan for

Re: [google-appengine] Blobstore and New Billing

2011-08-25 Thread Sean Lynch
Thanks for the reply. -- 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/-/Jy1UVXGHi8IJ. To post to this group, send email to google-appengine@googlegro

Re: [google-appengine] Blobstore and New Billing

2011-08-25 Thread Gregory D'alesandre
Hi Sean, You still need to have billing enabled in order to use blobstore. Once App Engine goes out of preview both free and paid apps will be able to use blobstore. We'll be going out of preview before the end of the year but don't have a specific date to announce just yet. Thanks! Greg On T

[google-appengine] Blobstore and New Billing

2011-08-25 Thread Sean Lynch
Does the Blobstore API still require billing to be enabled to be used? Based on the quota docs, it does: http://code.google.com/appengine/docs/quotas.html#Blobstore But there is no mention of it on the Blobstore pages: http://code.google.com/appengine/docs/python/blobstore/overview.html Also, I

Re: [google-appengine] Blobstore "list index out of range"

2011-08-09 Thread Robert Kluin
Hi, Are you correctly generating an upload url? http://code.google.com/appengine/docs/python/blobstore/overview.html#Uploading_a_Blob Robert On Mon, Aug 8, 2011 at 16:37, misteff25 wrote: > I am trying updload a picture from a Phonegap application to my Python > App Engine projec

[google-appengine] Blobstore "list index out of range"

2011-08-09 Thread misteff25
I am trying updload a picture from a Phonegap application to my Python App Engine project. The phone app trys to upload the file but App engine returns a "list index out of range" error. Most of this code is very similar to some of the sample projects. I have the following code on the App Engine

[google-appengine] Blobstore return 404 on appengine, but works on SDK

2011-07-25 Thread Karamfil
Hello, I'm trying to upload files from a CSV with a python command line tool I wrote. The process for every image is: - get the blobstore url - send a multipart form-data post request to the url - proccess additional data and save it to the datastore Everything works on the SDK but on appengine

[google-appengine] Blobstore FeatureNotEnabledError even though billing has been set up for over a week

2011-07-13 Thread Jason Collins
(app id: microsite-dev) We are getting the following exception for app id "microsite-dev", however, we have billing enabled on this app (for over a week now). We have other similar apps (e.g., microsite-test) that we have set up the same that _are_ working. So something must have happened in this

Re: [google-appengine] Blobstore: how to code the form when there is already one

2011-07-03 Thread Robert Kluin
Hi David, One solution would be to handle the other fields in your upload handler. http://code.google.com/appengine/docs/python/blobstore/overview.html#Complete_Sample_App Robert On Jul 3, 2011 6:34 PM, "David Walt" wrote: -- You received this message because you are subscribed to the Googl

[google-appengine] Blobstore: how to code the form when there is already one

2011-07-03 Thread David Walt
Hi guys, Simple question. To use the blobstore, Google says that you need to write something like: " method="post" enctype="multipart/form-data"> In my case, I already have a form to add an Item like : And of course, more than allowing a user to create an Item with name, price, etc...I

[google-appengine] BlobStore upload swallows cookies?

2011-03-14 Thread anatoliy
I'd like to ask advice on such issue: I use desktop client to upload files to the blobstore. Along with the multipart form it submits access token in the HTTP cookie to the generated upload URL. However, the blobstore handler does not receive it and I get null when doing req.getCookies(). Same res

[google-appengine] Blobstore billing enabled but still get The Blobstore API will be enabled for this application once billing has been enabled in the admin console.

2011-03-09 Thread Tarush
Hi All, I have enabled billing in the appengine console. Although I have only have a maximum billing of $1 a day i do not see why the blobstore api is still not enabled "Billing Status: Enabled (Daily budget: $1.00) - Settings" I am getting this error. " javax.servlet.ServletContext log: Excep

[google-appengine] BlobStore Java

2011-03-07 Thread IvanRdz
Hello world, I have some questions about the image management through bloblstore API. I assume I have to save the image blobkey as string in all the db models that need this image. For example, imagine we have an User which makes comments on different "System Entities". For avoid to get an user pr

[google-appengine] blobstore image.execute_transform returns empty data after resize if image is already at desired size

2011-02-17 Thread cz
I hope this is useful information for someone who has encountered this: If you upload an image via the blobstore that is, say, 1000x800 and then attempt to resize using the following: img = images.Image(blob_key=str(blob_key)) img.resize(1000,1000) image_data =

Re: [google-appengine] Blobstore file upload with other form values

2011-02-12 Thread Robert Kluin
Some thoughts / suggestions: 1) Check your url to handler mappings. Both in app.yaml and in your WSGI app definition. 2) Check the logs to see what urls are actually getting hit. 3) At some point in the Upload handler you do create and put a new Expert entity, right? Robert On Sat, F

[google-appengine] Blobstore file upload with other form values

2011-02-12 Thread theone
Hello, I want to keep user information and files with blobstore but I could not do it. I have a structure like: class Expert(db.Model): N = db.StringProperty(indexed=True, required=True, verbose_name='Name') S = db.StringProperty(indexed=True, required=True, verbose_name='Surname'

[google-appengine] BlobStore - DownloadError: ApplicationError: 2 [Errno 35] Resource temporarily unavailable

2011-02-08 Thread Jawon
In my app, the user uploads one or more files as blobs, then the app takes the blobs, adds BlobReader objects of them to a SOAP request, and sends the request to an external server. I've tested the SOAP request sender outside GAE (using open(filename) instead of BlobReader), and also confirmed that

[google-appengine] Blobstore service

2011-01-26 Thread acellam guy
Can i use the blobstore service for free even if for only two images coz am being told to enable billing in order to use it. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups

[google-appengine] Blobstore uploads throwing errors

2011-01-24 Thread Nickolas Daskalou
I have been getting errors when trying to upload to the Blobstore for over half a day now. The errors are the usual: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the

[google-appengine] Blobstore totally unreliable, redirect to http://temporary-blobstore-error.appspot.com/

2011-01-11 Thread Kenneth
I've been getting reports from some of my customers that they're sometimes having trouble saving on a page goes to the blobstore handler. What happens is the page gets redirected to http://temporary-blobstore-error.appspot.com/ and the page says: Error: Server Error The server encountered an erro

Re: [google-appengine] blobstore vs. text

2010-12-28 Thread Robert Kluin
How do you get the text? What do you need to do with the text once you get it back out? If someone is uploading a file, the BlobStore might work well. BlobStore entities can be up to 2GB, but getting data into the BlobStore is trickier. http://code.google.com/appengine/docs/python/blobstore/o

[google-appengine] blobstore vs. text

2010-12-28 Thread alf
hi, what is the best method in term of performance to store and recover a text/plain aprox 1024kb 1 store text into datastore like string 2 store text into blogstore thanks -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to thi

[google-appengine] Blobstore upload requiring a redirect for no reason?

2010-12-02 Thread Piotr Jaroszyński
Hello, Is there any good reason for: "create_upload_url(success_path) ... The handler at that path can process the rest of the form, and must return a response with an HTTP redirect code (301, 302, 303)." It makes form validation a PITA - in case of invalid input I have to use some kind of stora

[google-appengine] Blobstore upload is failing with mysterious "signature verification failed" redirect

2010-11-13 Thread Michael Bayne
I just added upload support to my app using the BlobStore. Everything works peachily in the dev environment, but now that I'm trying to use the functionality in production, uploads are resulting in a redirect to "http://www.google.com/search?q=signature+verification+failed"; which is rather mysteri

Re: [google-appengine] Blobstore returning 500 on upload, is OAuth to blame?

2010-11-02 Thread A. Stevko
could it be this problem? http://code.google.com/p/googleappengine/issues/detail?id=2771 On Tue, Nov 2, 2010 at 12:17 PM, tempy wrote: > Hello, > I have yet to get the blobstore functioning correctly in my app. My > code works in development, but not in production. > > I use the built-in oauth

[google-appengine] Blobstore returning 500 on upload, is OAuth to blame?

2010-11-02 Thread tempy
Hello, I have yet to get the blobstore functioning correctly in my app. My code works in development, but not in production. I use the built-in oauth support and have an installed app connecting to the GAE app. The installed app requests an upload URL from an endpoint that is secured by oauth, a

[google-appengine] Blobstore Service Problem!

2010-10-19 Thread MasterGaurav
Hi, Not sure if it's an outage / issue with other apps as well. I am unable to upload files to the blobstore since last 1hr or so. On the URL /_ah/upload/, the does get submitted. The servlet's doPost does get invoked. I do get proper Map using getUploadedBlobs but then, I don't see any data in

Re: [google-appengine] Blobstore Billing

2010-10-18 Thread Robert Kluin
Stored data is "cumulative." Stored Data gigabytes per month $0.15 On Sun, Oct 17, 2010 at 03:35, MasterGaurav wrote: > Hi, > > The billing quotas page at > http://code.google.com/appengine/docs/quotas.html#Blobstore > reads that the "Free Default Quota" is 1GB and "Billing Enabl

[google-appengine] Blobstore Billing

2010-10-18 Thread MasterGaurav
Hi, The billing quotas page at http://code.google.com/appengine/docs/quotas.html#Blobstore reads that the "Free Default Quota" is 1GB and "Billing Enabled Default Quota" is 1GB. Is this per-day quota? If so, it should get reset everyday... am I correct in my understanding? Or is the pricing of t

[google-appengine] blobstore image serving giving 500 errors

2010-09-28 Thread Karl R
I started using the blobstore / images.get_serving_url for image hosting on my application, and it worked for the first few hours after I deployed, however recently the image serving url (returned by get_serving_url) are returning 500 errors. for example: http://lh3.ggpht.com/qnHUk4tqGbGTDfFkfkPX

[google-appengine] Blobstore Upload w/Textarea problems

2010-09-20 Thread jorge
I'm performing a POST to a Blobstore URL with a textarea field (and several other fields). The textarea field is getting converted to MIME quoted-printable format. Is there something I am doing wrong or is this an issue with App Engine? I am using multipart/form-data POST as instructed by the do

[google-appengine] Blobstore POSTs just hanging

2010-08-29 Thread chrisfarms
Hi, A few hours ago I started getting complaints from a client that some of their uploads were failing. I'm now seeing that about 1 in 4 POSTs to a blobstore.create_upload_url() will just hang and never return. I noticed that the task queue status is "Elevated", is the blobstore built on the ta

[google-appengine] blobStore item to Google Docs

2010-08-23 Thread hendrix.jason
Using appengine, I have a file stored using the blobstore service. Using the same appengine app, I would like to upload the file directly from the blobstore to Google Docs using something like the sample here: http://code.google.com/apis/documents/docs/3.0/developers_guide_java.html#UploadingDocs

[google-appengine] Blobstore issues?

2010-08-12 Thread Cesar Alaniz
I see this when I run my blobstore handler in google's app engine...Anybody have any idea what it means? Traceback (most recent call last): File "distlib/tipfy/application.py", line 249, in __call__ response = handler.dispatch(method, **self.rule_args) File "distlib/tipfy/application.py",

Re: [google-appengine] Blobstore vs BlobProperty?

2010-08-12 Thread Nick Johnson (Google)
Hi, On Wed, Aug 11, 2010 at 8:49 PM, Backpack wrote: > I am going to store images in my app, so I'd like to know which is the > preferred way both in performance and quota/cost: blobstore or > blobproperty? > Both use equivalent amounts of quota. Blobstore is designed for storing and serving la

[google-appengine] Blobstore vs BlobProperty?

2010-08-11 Thread Backpack
I am going to store images in my app, so I'd like to know which is the preferred way both in performance and quota/cost: blobstore or blobproperty? Size will never be over 1MB and I don't think I'll exceed 1GB per day. - I could use an Image entity to store them all. - I could use a property of a

[google-appengine] Blobstore upload handler is Base64 encoding strings?

2010-07-23 Thread ekampf
I have a form with a file input and a text input field. When users type Hebrew text I get a Base64 encoded string on the server. When typing English I get a non Base64 string. On the development server I get a regular Unicode string (what I'd expect) Cant find any mentions of this in the docs. Wha

Re: [google-appengine] Blobstore - requires billing to be enabled?

2010-07-20 Thread Pieter Coucke
Yes. See http://code.google.com/intl/nl-BE/appengine/docs/quotas.html#Blobstore "The Blobstore API is only available for apps with billing enabled. You still get an amount of quota for free, but billing must be enabled to use it." On Tue, Jul 20, 2010 at 11:38 PM, Mark wrote: > Hi, > > I can

[google-appengine] Blobstore - requires billing to be enabled?

2010-07-20 Thread Mark
Hi, I can't find the doc stat states this, but in order to use the blobstore, we need to enable billing? Thanks -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To uns

[google-appengine] BlobStore Video Streaming

2010-07-08 Thread ar...@gibbutz.com
Hey folks, I can't find too much information about the possibility of serving streaming videos using the blobstore. I'm using Python, and I've managed to setup file upload so far. I also got it to serve a video file (using Chrome) with the filename as part of the URL:( http://localhost:8121/util

[google-appengine] Blobstore upload range

2010-06-01 Thread jcjones1515
Does the blobstore support the HTTP 'Range' request header when uploading data? I see that it supports it for downloading, but it would be helpful to be able to have our client code break up large uploads into several HTTP requests using the Range request header. -- You received this message bec

Re: [google-appengine] Blobstore delete all

2010-05-17 Thread Jaroslav Záruba
Seems basically the same. Just out of curiosity, how many do you delete when you experience hi-CPU? 2010/5/17 Jaroslav Záruba > This is how I do it: > > List blobsToDelete = new LinkedList(); > Iterator iterator = new BlobInfoFactory().queryBlobInfos(); > while(iterator.hasNext()) > blobsToDele

Re: [google-appengine] Blobstore delete all

2010-05-17 Thread Jaroslav Záruba
This is how I do it: List blobsToDelete = new LinkedList(); Iterator iterator = new BlobInfoFactory().queryBlobInfos(); while(iterator.hasNext()) blobsToDelete.add(iterator.next()); BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); for(BlobInfo blobInfo : blobsToD

[google-appengine] Blobstore delete all

2010-05-17 Thread Geoff
Hi, What is the easiest way of deleting all my 'blobstore' data? I have quite a lot of blobs and I'd like to delete them all. I'm currently doing the following: class deleteBlobs(webapp.RequestHandler): def get(self): all = blobstore.BlobInfo.all(); more = (all.count()>0)

  1   2   >