|
|
|
|
|
by brandur
3651 days ago
|
|
Can anyone with direct and frequent experience with Amazon Drive comment on how well the product's been working out for them overall? I've just been playing with its interface a little bit, and although its interface is unquestionably pretty clunky (both web and desktop app), it does seem like a I could save money by moving to its $60 unlimited plan. I currently use a set of S3 buckets, which is great in that it scales with use, but I'm about to cross the $5/month threshold. Edit: The biggest missing feature so far seems to be something akin to a folder sync. When re-uploading a directory, it seems to be able to skip files that it knows it already has, but I'm not sure if it can delete files that have subsequently been removed locally. |
|
The REST API is dodgy at the best of times. About 1 in 4 requests fail with random errors (Internal Server Error, Timeout, TooManyRequests, Temporarily Unavailable, etc). The API has an aggressive authentication scheme that requires re-auth every 5 minutes or so. Detecting when re-auth is needed is done by waiting for an Unauthorized error on any request. At least, that's what the spec says. What actually happens is that it returns 401 sometimes, and other times it returns a generic 4xx or 5xx class error with the error's message mentioning that the auth token has expired (sometimes the error message even says 401 Unauthorized, even though the actual error code isn't 401).
Upload speed is quite bad, in part due to the constant errors requiring re-tries and backoff, but mostly because the total response round-trip time is slow. This is particularly cumbersome for many small uploads.
Recently I've been getting waves of TooManyRequests errors, where it will only return TooManyRequests for a day, or even a whole week, making the service unavailable to me (currently in contact with them to see if this can get fixed).
So in other words, I've been using the service for about 5 months and managed to upload only ~1TB of data to the drive (on a 20Mb/s up line). From what I hear the official client suffers similar issues in terms of sync-ing speed.
For $60/yr and no real alternative for me, I feel I'm getting what I pay for. I just wish the API wouldn't completely die for days on end.