Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
1k views

Google Storage or Amazon S3 or Google App Engine BlobStore

I am going to build a site using Google App Engine. My public site contains thousands of pictures. I want to store these pictures in the Cloud: Google Storage or Amazon S3 or Google App Engine ...
3
votes
1answer
97 views

How can I read zip files from Google Storage in App Engine?

An application creates a zip file and stores it to Google Storage. I am working on the web server side which is responsible for grabbing the zip file extract the contents etc. The web service is ...
3
votes
2answers
495 views

How can store a file on Google Storage from URL on Google App Engine?

I want to create a service on Google App Engine (Python) that will receive a URL of an image and store it on Google Storage. I managed to upload from a local file using boto or gsutil command line, ...
2
votes
1answer
235 views

Upload a file to Google Storage on GAE Java

Which is the best way to upload a file generated by my Google App Engine app to Google Storage? My GAE app is in java. I tried to use JetS3t but it didn't work on GAE because it use threads.
2
votes
1answer
135 views

'Share Publicly' in Google Storage using SharpGs

Using SharpGs as Google Storage client in .NET, I tried this, but it isn't working: foreach (var o in bucket.Objects) { o.Acl.CleanEntries(); ...
1
vote
2answers
26 views

Restricting files from Google Cloud Storage to the users that have authenticated with my Google App Engine app?

I have a GAE application with a database of users. When one of the user tries to download, say, file myapplication.appspot.com/somefile.jpg, I would: check on the GAE database whether he is ...
1
vote
3answers
94 views

How can I use the OAuth2Decorator with Google Cloud Storage?

I am following this instructions in order to connect my app engine python web service with Google storage and specifically to be able to use files API. I went through the buzz example but doesn't seem ...
1
vote
1answer
87 views

How to configure gsutil?

I followed the Google instructions to set up gsutil. It states that after runnig 'gsutil config' in terminal I should see: This script will create a boto config file at /.boto containing your ...
1
vote
1answer
174 views

Storage Access Credentials for Google Storage for carrierwave gem in a Rails Application

In my rails 3 application, I am using carrierwave gem (version 0.5.6). I would like to use Google Storage for developers for storing the uploaded files. I have created an initalizer which looks like ...
1
vote
2answers
237 views

cloud storage API for streaming data

What are the cloud data storage APIs that accomodate streaming data well? Specifically, a constant data stream that: 1) has no known end and is continually appended to and 2) can be read from at any ...
1
vote
2answers
147 views

Amazon S3 cli tool?

Google Storage has a cli tool called gsutil for uploading and downloading files from Google Storage. I wonder if Amazon S3 also has a such tool.
1
vote
1answer
159 views

How to delete folder with files using Google Storage REST api?

I am trying to delete _$folder$ from Google Storage using their REST api. I have tried so far headerserver.com/testestset/*, headerserver.com/testestset, headerserver.com/testestset_$folder$ but ...
1
vote
0answers
55 views

Query Google storage to get only files in specified path

First of all: yes, I do realize that there is no such thing as folders in the Google Storage system. However, Google Storage has dummy folders suffixed _$folder$. I know that you can define prefix to ...
1
vote
0answers
72 views

google storage acl change on existing object

im having problems understanding how to put all the headers together to change an acl on an exixting object on google storage for developers. i need to do this manually without boto or other helper ...
1
vote
1answer
385 views

Android web server

So for my Android app I need a centralized server so multiple phones can use it. This server is only going to hold text. Just coordinates and a string per request. I looked into Amazon S3 and Google ...
1
vote
0answers
213 views

google storage for developers and temporary serving urls

im wondering if its possible to create a temporary serving url for files on google storage for developers. i have a GAE app and i would like to serve bigger video files over google storage for ...
1
vote
2answers
226 views

How can I store files on Google Storage, but skip the GAE part for fetching them?

I like Google App Engine for the Datastore (and the fact that I can develop in Python) but they have 1MB limits on fetching and uploading files. On the other hand it wasn't made for that I guess. I ...
1
vote
1answer
182 views

Differences between CouchDB and Google storage for storing files?

I want to let my customers upload files in my web app. What are the differences between CouchDB and Google storage for storing files?
1
vote
6answers
1k views

storage service with google app engine

I've been assigned a project to create a file storage service on Google App Engine.But I am really doubtful whether it's possible or not given the 30 sec limit to process the response and moreover its ...
0
votes
2answers
100 views

Google App Engine on Python “ImportError: No module named google.appengine.ext”

I am trying to set up a python source file for a Google Cloud. I have installed a GSUtil on my MAC OS 10.6 and set up the path for files as instructed on the page adding this command (export ...
0
votes
1answer
28 views

Rails - hide file url from users (rails 3.1 + carrierwave + google storage for developers)

I've built an application, deployed on heroku, that uses carrierwave to keep all uploaded files and I've set google storage for developers for keeping those files there. Until here everything is ...
0
votes
3answers
35 views

Google Storage config

I'm trying to configure the gsutil command line tool for Google's Storage API but it doesn't seem to like it: ahmeds:~ ahmed$ gsutil config CommandException: OAuth2 is only supported when running ...
0
votes
0answers
59 views

Google storage for devs 405: The request method `PUT` is inappropriate for the URL

I am trying to send a PUT request via telnet but getting the above error. I am using telnet the following way: telnet designs.commondatastorage.googleapis.com 80 designs is my bucket name. So I ...
0
votes
1answer
72 views

GSUtil vs PHP RESTful class

We all know that working with S3 is a pain: deleting virtual directories requires to delete all the objects from within the path, etc. At least with RESTful API this is the case. I was wondering ...
0
votes
1answer
240 views

Google Storage - POST - Trouble With Generating Security Policy

I am creating the following form for using the POST object with Google Storage to allow a user to upload a document to my bucket. I am getting the following error when I submit the form. I am sure I ...