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 time.
Due to the nature of distributed access, the big cloud storage options like Amazon S3, Google Storage for Developers, and Windows Azure Blobs do not seem to support streaming data.
Current beliefs:
1) Amazon S3 does not allow append operations to objects (only replace). The multipart upload API allows a "streaming" upload, but it requires to be "finalized" once completely written.
2) Google Storage objects are immutable, so same thing.
3) Windows Azure blog storage has has block storage, but like Amazon S3 multipart upload, requires the blocks to be "finalized" so an open-ended stream is not possible.
Any ideas?