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='
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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,
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
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
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/
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
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
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
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
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"'
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
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
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
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
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
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
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
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
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
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
*{
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
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
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
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
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
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
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
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
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,
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
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
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
(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
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
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
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
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
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
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 =
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
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'
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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",
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
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
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
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
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
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
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
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
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
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 - 100 of 131 matches
Mail list logo