fog-backblaze icon indicating copy to clipboard operation
fog-backblaze copied to clipboard

Integration library for gem fog and Backblaze B2 Cloud Storage

Results 7 fog-backblaze issues
Sort by recently updated
recently updated
newest added

This is a small change to be in convention with other fog libraries that I hope will work great with Asset Sync. Which is a great tool for synchronizing assets...

``` CarrierWave.configure do |config| config.fog_credentials = { provider: 'backblaze', b2_account_id: ENV['BACKBLAZE_ACCOUNT_ID'], b2_account_token: ENV['BACKBLAZE_ACCOUNT_TOKEN'] } config.fog_public = false end ``` ```ruby # Public fog_public = true object.file.url # https://f001.backblazeb2.com/file/bucket/uploads/file.jpg ``` ```ruby...

Does this gem support files larger than 5GB? (i.e. large_files, https://www.backblaze.com/b2/docs/large_files.html) I've tried uploading files at the 5GB file size and Backblaze server disconnects the connection.

by looking at the source code I saw that this gem read complete file before doing the upload and I'm worried how much memory this will acquire for large files....

Fog::Errors::Error (Failed put_object, status = 503 {"code"=>"service_unavailable", "message"=>"c002_v0001111_t0059 is too busy", "status"=>503}): When user upload any images to b2 bucket, errors occur sometimes. I found this article https://www.backblaze.com/b2/docs/integration_checklist.html But I...