Tagged Questions
1
vote
1answer
22 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
41 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
37 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
22 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
62 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
21 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
47 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
58 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
20 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
54 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"
...
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
84 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
54 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
62 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
74 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
91 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
43 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
61 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
49 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
61 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
75 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
55 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
70 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
87 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
50 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
32 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
59 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
106 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
40 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
28 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
29 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
67 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
132 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
98 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
39 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
120 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
89 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
95 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
63 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
vote
1answer
109 views
app-engine server to retrieve image from blobstore
In the following snippets, is resource the blob key?
from google.appengine.ext import blobstore
from google.appengine.ext.webapp import blobstore_handlers
class ...
3
votes
1answer
211 views
serving blobstore image through app-engine endpoints api
I am building an app-engine endpoint api that takes picture from a user (android app) and saves it to blobstore programmatically. Then I save the blob_key in my datastore. The code goes like this:
...
3
votes
2answers
166 views
ndb.BlobProperty vs BlobStore: which is more private and more secure
I have been reading all over stackoverflow concerning datastore vs blobstore for storing and retrieving image files. Everything is pointing towards blobstore except one: privacy and security.
In the ...
2
votes
1answer
49 views
appengine unnamed files in blob viewer
I'm creating files using the appengine files service. Those files don't have a filename. They show up as "(unnamed)" in the Blob Viewer. Is there a way to set a name so I can easily keep track of my ...
0
votes
1answer
161 views
Google AppEngine Blobstore Video Streaming in Html Template
i managed to get the code from the following link to work. https://developers.google.com/appengine/docs/python/blobstore/overview#Complete_Sample_App
When I upload a video I managed to get the video ...
0
votes
1answer
49 views
Getting error: Could not find session for *blob_key*
Im trying to make a form where users can upload a file. And I have a form that takes the users arguments and posts them to the UploadHandler that is mapped to the url that is passed as parameter to ...
0
votes
1answer
59 views
given BlobstoreService served HttpServletResponse, how to fetch the served blob?
Here is my Serve.java, which is my Serve servlet.
public class Serve extends HttpServlet {
private BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService();
public void ...