Merge pull request #17 from rkfg/patch-1

Support intelligent tiering
This commit is contained in:
Michael Kaye 2019-06-10 12:14:41 +01:00 committed by GitHub
commit d42a38dea9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,8 @@ logger = logging.getLogger("synapse.s3")
# The list of valid AWS storage class names
_VALID_STORAGE_CLASSES = ('STANDARD', 'REDUCED_REDUNDANCY', 'STANDARD_IA')
_VALID_STORAGE_CLASSES = ('STANDARD', 'REDUCED_REDUNDANCY',
'STANDARD_IA', 'INTELLIGENT_TIERING')
# Chunk size to use when reading from s3 connection in bytes
READ_CHUNK_SIZE = 16 * 1024