OCFL / ocfl-java

A Java OCFL implementation
MIT License
16 stars 12 forks source link

s3 batch delete fails when more than 1K objects are deleted #95

Closed pwinckles closed 5 months ago

pwinckles commented 1 year ago

The batch delete api supports deleting a maximum of 1,000 objects per request: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjects.html

Currently, ocfl-java does not take this into account, and will happily create a single request to delete any number of object.s

pwinckles commented 5 months ago

resolved by https://github.com/OCFL/ocfl-java/pull/109