A storage API used for binary data storage, eg. Google App Engine blobstore service.

learn more… | top users | synonyms

0
votes
1answer
16 views

GAE + Spring MVC : Saving image file to BlobStore

i succesfully save an image to Blob in Datastore with this code : @RequestMapping(value = "/add", method = RequestMethod.POST) public String add(ModelMap model, Product form, HttpServletRequest ...
0
votes
1answer
18 views

GAE: how can I combine a BlobstoreUploadHandler and a RequestHandler in 1 webpage

I am making a mailing app in Python on the Google App Engine. I want to enable an attachment upload (which posts to a BlobstoreUploadHandler) in a 'normal' webpage (posting to a RequestHandler). ...
0
votes
0answers
25 views

blobstore fetch multiple items

class ViewPhotoHandler(blobstore_handlers.BlobstoreDownloadHandler): def get(self, photo_key): profile_id = string.strip( string_after( self.request.path,"/view_photo/") ) ...
0
votes
0answers
18 views

GAE Blobstore File Upload with additional form fields - Slim3

Using Google's Slim3 and Blobstore, I can successfully upload files to blobstore using the: blobstore.createUploadUrl("myUrlToReturnTo") AppEngine successfully redirects back to the url I specify ...
0
votes
0answers
4 views

How to get Blob Key of file to be downloaded from BlobStore in Java?

I have uploaded a file,say a.txt to the Google BlobStore. Using a separate java program, I need to download / write to a.txt. How do I get the BlobKey of a.txt in this second java file so that I can ...
1
vote
1answer
25 views

I can not download a blob from GAE BlobStore

What is wrong with this code? I can not download a blob following the download url sent as response of the UploadHandler. I am getting a 404 response from the server. I have doubts about how to send ...
1
vote
1answer
57 views

Multi-part Form with File Input JQuery Mobile

I'm trying to create a JQuery Mobile page that uploads a video to the Google App Engine Blobstore along with associated title, description, etc. Here's the HTML of the form. <form ...
0
votes
1answer
23 views

detect AppEngine vs basic server

I am developing a web app to run on either Google's AppEngine or a basic server with file storage (it may not stay that way but that's the current status). How do I detect whether the AppEngine ...
1
vote
1answer
51 views

Is it possible to create a google app engine end point which can upload a photo in a blobstore?

I would like to know if is it possible to upload a photo in a appengine blobstore by using an end point ? If yes, please tell how or redirect to any available resource. If not, can you please expose ...
0
votes
1answer
25 views

storing static images in the blobstore

Normally to host a website on app-engine, I can put all my image files in a static directory, say img, and then in the yaml file have url: /img static_dir: img Such a usage makes sense when the ...
4
votes
1answer
68 views

How to read large files from google drive into gae blobstore

This is the code that I'm currently using to read files from google drive into the blobstore of google app engine. private BlobKey getBlobKey(File f, DriveObject driveObject) throws ...
0
votes
1answer
22 views

serving blobs from GAE blobstore in flask

I'm trying to serve big files saved in the blobstore using Flask. For smaller files I can simply do: def download_blob(blob_key): blob_info = blobstore.get(blob_key) response = ...
1
vote
1answer
41 views

display a photo on jsp file using a url

I'm trying to display a photo on my jsp file. a photo that is inside my images photos works fine but when i'm trying to retrieve a photo using a url from the internet it doesnt work. my url is a link ...
1
vote
1answer
52 views

Play video in html video tag that is stored in the GAE blobstore python

I have a simple video sharing website that can upload videos and store them in the datastore as a blobReferenceProperty(). Now I am querying the datastore for that video and trying to imbed/play it in ...
1
vote
1answer
59 views

getting 500 from Blobstore

Here is a bulleted list of events: My android app sends blobs to Blobstore. From app-engine console, I can see my blobs in Blob Viewer so I know my blobs got saved But Blobstore does not invoke ...
1
vote
1answer
21 views

full path of Blobstore callback url

Does anyone know the full path of the callback url that the blobstore uses? Say I specify upload in blobstoreService.createUploadUrl("/upload") as the callback. Does the blobstore call ...
4
votes
0answers
55 views

combining blob servlet with endpoint api

Here is my web.xml <?xml version="1.0" encoding="utf-8" standalone="no"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" ...
1
vote
0answers
25 views

relationship between image pixel dimension and byte array length

If I know the pixel height and width of an image, can I calculate the size of the byte array? Or would the information be insufficient? The reason I need this is to get image from blobstore using ...
5
votes
3answers
75 views

What is the best way make a copy of a blobstore entity on app engine in Java?

Here is our simple usecase: user2 sees user1's large document/image/file and wants to copy it into his or her own repository within our application. Should be simple, right? All we need to do is ...
5
votes
1answer
86 views

convert servlet schema to app-engine endpoint schema

Would the following conversion hold for converting from Java servlet to google app-engine cloud endpoint? FROM public void doPost(HttpServletRequest req, HttpServletResponse res) throws ...
5
votes
1answer
57 views

Why does blobstore upload code have redirect url

I imagine the process of using the blobstore to store images ends in saving the blob key in the datastore. So in the following code, which is supposed to be in my backend, why do I need a redirect URL ...
1
vote
0answers
63 views

GAE Blobstore: upload blob along with other text fields

I have a form that includes, between text fields, an element to upload a picture. I want to store the blob in the blobstore and reference it in my model (ndb.Model) using ndb.BlobKeyProperty(). The ...
1
vote
0answers
37 views

App engine blobstore data quota not reset

My app has reached the 5gb quota in blobstore storage for free apps. I've deleted all the blobstore data but still have an error when try creating the new blobs. After the daily quota has been reset ...
4
votes
2answers
81 views

How would I use blobstore to process android images

Can someone please clarify this for me. I am reading the developer page about the blobstore at https://developers.google.com/appengine/docs/java/blobstore/overview. I can't seem to wrap my head around ...
10
votes
0answers
101 views

using blobstore with google cloud endpoint and android

I am developing an app-engine connected android project using the eclipse plugin. One aspect of the app is to allow user Alpha to send pictures to user Bravo. To do that I have the following setup: ...
0
votes
1answer
48 views

Django's FileField (or ImageField) on Google App Engine

GAE doesn't allow read/write to file system, which is what Django's FileField (or ImageField) is using (via the FileSystemStorage class). I was thinking implementing a custom Django storage, but the ...
1
vote
0answers
62 views

Plupload fails to upload large files to AppEngine Blobstore

I'm writing an application that uses AppEngine's Blobstore API to store files that the user uploads. On the client-side, I use Plupload. It works fine for files up to about 1.5 GB, but around 3 GB or ...
2
votes
0answers
51 views

blobstore.ParseUpload acts differently in dev server and deployment

I'm trying to send a multipart/form with both a file and an access token, it works fine with the dev server, but the exact same post to AppEngine deployment result in a different received token string ...
2
votes
1answer
62 views

Retrieving .txt file contents in Google AppEngine

I'm trying to Upload a text file using : <input type="file" name="file"> and this file is retrieved using: class UploadHandler(webapp2.RequestHandler): def post(self): ...
5
votes
1answer
79 views

Comparing Blobstore and Google Cloud Storage

For a GAE application, what are the tradeoffs between using the Blobstore and GCS? GCS is cheaper (currently $1.02 versus $1.57 per GB year) GCS has a nicer code interface (data referenced by things ...
1
vote
1answer
56 views

how to serve large zip files of Blobstorage images?

I want to serve a dynamic zip file with multiple user uploaded images that are stored in blobstorage I'm successfuly doing it with the following code, but I encounter a problem where the Appengine ...
-6
votes
0answers
75 views

Download a file from stored in blobstore in google app engine [closed]

I have code to upload my files on GAE blobstore. But i don't know how to download files from GAE blobstore if i just give the name of the file. I need to know how to call my download_sevlet(also send ...
1
vote
1answer
93 views

BlobStore vs Cloud Storage for storing user uploaded images

I'm new to AppEngine and I'm building an app that accept user image uploads from Android devices. I built it with Cloud Storage but then I realized that I have problems uploading large files (maybe ...
0
votes
1answer
57 views

Some clarification of GAE Blobstore's create_upload_url()

I am using the GAE Blobstore to upload and serve images for my Django app. For admin users maintenance is available by wrapping the image in a Django model Image and supplying the standard admin ...
0
votes
2answers
56 views

Handling .txt files in AppEngine Blobstore

Refering to the example in the link: https://developers.google.com/appengine/docs/python/blobstore/overview In the example above, a Model named _BlobInfo_ is created to store the blob. Is there a ...
0
votes
0answers
34 views

Failing for Larger Input Files Only: FileServiceFactory getBlobKey throws IllegalArgumentException

I have a Google App Engine App that converts CSV to XML files. It works fine for small XML inputs, but refuses to finalize the file for larger inputed XML. The XML is read from, and the resulting ...
1
vote
0answers
66 views

Blobstore createUploadUrl() returning a non-verifiable URL to Android

My App Engine instance suddenly started playing funny once I upgraded the SDK and re-ran generation of the endpoints. createUploadUrl() is returning a URL in the format ...
1
vote
1answer
110 views

Send large files to GAE Blobstore via API (from S3)

I'm trying to send large files (50MB-2GB) that I have stored in S3 using filepicker.io to the Google App Engine Blobstore (in Python). I would like this to happen without going through a form on the ...
2
votes
1answer
41 views

Fetching blob from Google Blobstore without knowing size before hand

I need to fetch a blob from the Blobstore programmatically, without knowing the size before hand. Does anyone know how to do that? I have tried using BlobstoreService blobStoreService = ...
0
votes
0answers
29 views

How to store blobs from multiple tables in Blobstore

As I understand (and I could be wrong) blobs residing in different tables all end up in one Blobstore. If that is the case, I was going to have a crossreference table, so I can purge orphan blobs. ...
0
votes
1answer
30 views

Deleting Used Blob in AppEngine DevServer

I am using GAE BlobStore to store avatars for user profiles. Users have the option to upload avatars, and if they are uploading an avatar while they already have one, the old avatar blob is deleted ...
0
votes
2answers
68 views

How to update/write to a text file stored in blobstore 2

I need to do 10,000 times datastore read and 3000 times of datastore write everyday, which costs me some money. My current solution is just to upload a text file to GAE and read the text file in ...
2
votes
0answers
136 views

Why doesn't chrome cache google app engine blobstore

I'm using blobstore to serve audio files embedded in HTML5 audio element. Because I have a blobkey as a part of url I can assume that for any given url its content will never change. That looks like a ...
1
vote
2answers
100 views

Is it possible to store zip file in Google app engine blob store and download it In android application

Hi I am new to use Google App Engine.My requirement is store Large Zip file in a Blob Store and retrieve to my android application when user click a download option It is possible?Can some one Give ...
1
vote
1answer
40 views

How to store e-mail attachment to GAE Blobstore?

Let's say the app received a message, which has attachments (mail_message.attachments). Now, I would like to save the message in the datastore. I don't want to store attachment there, so I would like ...
0
votes
1answer
123 views

Google App Engine Use Blobkey

Hi there i am trying to make a servlet that allows admins to upload images and any google users to view these images, so far im working off the program available at ...
1
vote
1answer
90 views

Google App Engine blobstore error: BlobNotFoundError

I use the Google App Engine blobstore to hold a blob of user data -- anywhere from a few hundred bytes up to a few hundred KB in size. The blob_info is saved as a property on a datastore entity. ...
0
votes
1answer
96 views

How to serve multiple blobstore files at a time in google app engine?

I know how to serve a single blobstore file, I used below code snippet: BlobKey blobKey = new BlobKey(key); response.setContentType("mime"); response.setHeader("Content-Disposition", ...
0
votes
2answers
66 views

GAE Python - Task to save CSV to same Blobstore element daily

I've been reading through some similar questions but wasn't able to find an answer that I can implement. I am using Google App Engine and doing a simple CSV export using unicodecsv, which works fine. ...
0
votes
0answers
37 views

python multiprocessing or thread for invoking BlobReader

I have the following setup: def alpha(self, blah, blah): image = self.get_image(blob_key) # do more stuff here def get_image(self, blob_key): blob_reader = blobstore.BlobReader(blob_key) ...

1 2 3 4 5 9