SpiritBob
SpiritBob

Reputation: 2702

Using Google Drive's Resumable Upload REST API to upload file into parallel chunks does not work?

Resumable Upload Documentation

If I change my code to send the chunks sequentially, i.e not issue the HTTP PUT requests in parallel with other HTTP PUT requests, everything works as expected.

When parallel execution is introduced though, a lot of the HTTP requests that were made return with a status code of 503 - Service Unavailable.

The same code I'm using is used for many different cloud providers, such as Dropbox for instance, so I don't think it's an issue of code, especially when sequentially everything works. (I've made sure parallel execution does not share any "mutable" state).

Why does Google not allow this?

Upvotes: 0

Views: 194

Answers (1)

Gabriel Carballo
Gabriel Carballo

Reputation: 1333

Looks like this would be a feature request as it's currently not possible, you can star this Issuetracker as someone has already requested this and provided reasons about why it would be useful.

Upvotes: 1

Related Questions