Comparing Blobstore and Google Cloud Storage
Asked Answered
S

1

6

For a GAE application, what are the tradeoffs between using the Blobstore and GCS?

  • as of Aug 2015, the price of blobstore and GCS are the same ($0.312 per GB year)
  • GCS has a nicer code interface (data referenced by things that look like file paths)
  • GCS has console commands and a web UI for uploading/accessing data

Are there some kind of advantages to Blobstore that I'm missing?

Serigraph answered 23/4, 2013 at 17:27 Comment(2)
possible duplicate of Google Blobstore versus Google cloud storageLoriannlorianna
Note: as of Aug 2015 the price of blobstore and GCS are the same: $0.026 GB/month.Syphon
M
1

Right now with my startup we are using the Blobstore service and we are planning to move to GCS. The only "drawback" I see is that you will not be able anymore to resize and crop images directly from the path (Transforming_Images_from_the_Blobstore) .

In order to not brake all the client-side code we are thinking about an internal servlet that resize on-the-fly with a CDN in front of that in order to cache the most recent jobs.

Mady answered 28/4, 2013 at 17:26 Comment(4)
Python version support loading Image from GCS (including get_serving_url) developers.google.com/appengine/docs/python/images/…Aleksandropol
Why are you moving from blobstore to GCS? Any technical reason behind it?Ripping
The three reason listed in the question are our main concerns. Moreover in the last months Java supports servingUrl for GCS, so the request doesn't pass anymore from our instances! In the end I have the feeling that Blobstore is something that is not anymore improved so it will be deprecated soonMady
@MicheleOrsi is GCS.servingUrl the same as Blobstore.createUploadUrl? I have been using createUploadUrl alot and it is my main reason for not changing from Blobstore to GCS yet. Especially the multiform feature, where I can upload multiple files to Blobstore and then get notified in AppEngine when they have been uploaded. Is that feature available in GCS?Suu

© 2022 - 2024 — McMap. All rights reserved.