amazon s3 - paginating unlimited S3 size with filters -
in bucket, s3 has unlimited number of objects names epoch value in created. (e.g. "1503379525") lambda function should concatenate contents of files between specific time range (last 15 minutes).
my solution use:
- pagination list of objects
- page_iterator.search("contents[?key >
epoch-for-last-15-min
][]")
i need consider memory limit of lambda , need make sure paginator works fine in bucket unlimited number of files. feasible solution?
wiki
Comments
Post a Comment