Hi, I'm investigating S3's read-after-write consistency model with S3AFileSystem and something is not quite clear to me, so I'm hoping someone more knowledgeable can clarify it for me.
Amazon state ( http://docs.aws.amazon.com/AmazonS3/latest/dev/Introduction.html): * "Amazon S3 provides read-after-write consistency for PUTS of new objects in your S3 bucket in all regions with one caveat. **The caveat is that if you make a HEAD or GET request to the key name (to find if the object exists) before creating the object, Amazon S3 provides eventual consistency for read-after-write".* In S3FileSystem, create -> exists -> getFileStatus -> AmazonS3Client.getObjectMetadata (HEAD). Does this mean that currently, S3AFileSystem cannot take advantage of S3's read-after-write consistency? Thanks - Dave
