in src/main/java/com/epam/digital/data/platform/integration/ceph/service/impl/CephServiceS3Impl.java [153:160]
public Boolean exist(String cephBucketName, Set<String> keys) {
log.info("Checking if all files with keys {} exist in ceph bucket {}", keys, cephBucketName);
assertBucketExists(cephAmazonS3, cephBucketName);
var result = execute(
() -> keys.stream().allMatch(k -> cephAmazonS3.doesObjectExist(cephBucketName, k)));
log.info("All files {} existing in ceph bucket {} - {}", keys, cephBucketName, result);
return result;
}