suneet-s commented on a change in pull request #9306: implement Azure InputSource reader and deprecate Azure FireHose URL: https://github.com/apache/druid/pull/9306#discussion_r376535243
########## File path: extensions-contrib/azure-extensions/src/main/java/org/apache/druid/data/input/azure/AzureInputSource.java ########## @@ -0,0 +1,119 @@ +/* + * 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.data.input.azure; + +import com.fasterxml.jackson.annotation.JacksonInject; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.google.common.base.Preconditions; +import com.google.common.collect.ImmutableList; +import org.apache.druid.data.input.InputSplit; +import org.apache.druid.data.input.impl.CloudObjectInputSource; +import org.apache.druid.data.input.impl.CloudObjectLocation; +import org.apache.druid.data.input.impl.SplittableInputSource; +import org.apache.druid.storage.azure.AzureCloudBlobHolderToCloudObjectLocationConverter; +import org.apache.druid.storage.azure.AzureCloudBlobIterableFactory; +import org.apache.druid.storage.azure.AzureStorage; +import org.apache.druid.storage.azure.CloudBlobHolder; + +import javax.annotation.Nullable; +import java.net.URI; +import java.util.List; +import java.util.stream.Stream; +import java.util.stream.StreamSupport; + +/** + * Abstracts the Azure storage system where input data is stored. Allows users to retrieve entities in + * the storage system that match either a particular uri, prefix, or object. + */ +public class AzureInputSource extends CloudObjectInputSource<AzureEntity> +{ + static final int MAX_LISTING_LENGTH = 1024; + public static final String SCHEME = "azure"; + + private final AzureStorage storage; + private final AzureEntityFactory entityFactory; + private final AzureCloudBlobIterableFactory azureCloudBlobIterableFactory; + private final AzureCloudBlobHolderToCloudObjectLocationConverter azureCloudBlobToLocationConverter; + + @JsonCreator + public AzureInputSource( + @JacksonInject AzureStorage storage, + @JacksonInject AzureEntityFactory entityFactory, + @JacksonInject AzureCloudBlobIterableFactory azureCloudBlobIterableFactory, + @JacksonInject AzureCloudBlobHolderToCloudObjectLocationConverter azureCloudBlobToLocationConverter, + @JsonProperty("uris") @Nullable List<URI> uris, + @JsonProperty("prefixes") @Nullable List<URI> prefixes, + @JsonProperty("objects") @Nullable List<CloudObjectLocation> objects + ) + { + super(SCHEME, uris, prefixes, objects); + this.storage = Preconditions.checkNotNull(storage, "AzureStorage"); + this.entityFactory = Preconditions.checkNotNull(entityFactory, "AzureEntityFactory"); + this.azureCloudBlobIterableFactory = Preconditions.checkNotNull( + azureCloudBlobIterableFactory, + "AzureCloudBlobIterableFactory" + ); + this.azureCloudBlobToLocationConverter = Preconditions.checkNotNull(azureCloudBlobToLocationConverter, "AzureCloudBlobToLocationConverter"); + } + + @Override + public SplittableInputSource<CloudObjectLocation> withSplit(InputSplit<CloudObjectLocation> split) + { + return new AzureInputSource( + storage, + entityFactory, + azureCloudBlobIterableFactory, + azureCloudBlobToLocationConverter, + null, + null, + ImmutableList.of(split.get()) + ); + } + + @Override + public String toString() + { + return "AzureInputSource{" + + "uris=" + getUris() + + ", prefixes=" + getPrefixes() + + ", objects=" + getObjects() + + '}'; + } + Review comment: I can't tell if equals/ hashCode is broken for this class. It looks like all the implementations just care about the class being the same an the uris/ prefixes/ objects to match. But can we ever have a situation where AzureStorage is different but the uris are the same? My guess is no, but if that ever changes in the future it would be really tough to debug this. Unclear to me what the correct behavior is here. What do you think? ---------------------------------------------------------------- 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]
