suneet-s commented on a change in pull request #9098: S3: Improvements to prefix listing (including fix for an infinite loop) URL: https://github.com/apache/druid/pull/9098#discussion_r361689896
########## File path: extensions-core/s3-extensions/src/main/java/org/apache/druid/storage/s3/LazyObjectSummariesIterator.java ########## @@ -0,0 +1,162 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.druid.storage.s3; + +import com.amazonaws.services.s3.model.ListObjectsV2Request; +import com.amazonaws.services.s3.model.ListObjectsV2Result; +import com.amazonaws.services.s3.model.S3ObjectSummary; +import org.apache.druid.java.util.common.RE; + +import java.net.URI; +import java.util.Iterator; +import java.util.NoSuchElementException; + +/** + * Iterator class used by {@link S3Utils#lazyObjectSummaryIterator}. + * + * Walks a set of prefixes, returning all objects underneath them except for directory placeholders. + */ +public class LazyObjectSummariesIterator implements Iterator<S3ObjectSummary> +{ + private final ServerSideEncryptingAmazonS3 s3Client; + private final Iterator<URI> prefixesIterator; + private final int maxListingLength; + + private ListObjectsV2Request request; + private ListObjectsV2Result result; + private Iterator<S3ObjectSummary> objectSummaryIterator; + private S3ObjectSummary currentObjectSummary; + + LazyObjectSummariesIterator( + final ServerSideEncryptingAmazonS3 s3Client, + final Iterable<URI> prefixes, + final int maxListingLength + ) + { + this.s3Client = s3Client; + this.prefixesIterator = prefixes.iterator(); + this.maxListingLength = maxListingLength; + + prepareNextRequest(); + fetchNextBatch(); + advanceObjectSummary(); Review comment: Does it matter if we make the first fetch in the constructor when the class indicates it is lazy? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
