All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.druid.storage.s3.S3Utils Maven / Gradle / Ivy

There is a newer version: 0.12.3
Show newest version
/*
 * Licensed to Metamarkets Group Inc. (Metamarkets) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Metamarkets 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 io.druid.storage.s3;

import com.google.common.base.Joiner;
import com.google.common.base.Predicate;
import com.google.common.base.Throwables;

import io.druid.java.util.common.RetryUtils;
import org.jets3t.service.ServiceException;
import org.jets3t.service.StorageObjectsChunk;
import org.jets3t.service.impl.rest.httpclient.RestS3Service;
import org.jets3t.service.model.S3Object;
import org.jets3t.service.model.StorageObject;

import java.io.IOException;
import java.util.Iterator;
import java.util.concurrent.Callable;

/**
 *
 */
public class S3Utils
{
  private static final Joiner JOINER = Joiner.on("/").skipNulls();

  public static void closeStreamsQuietly(S3Object s3Obj)
  {
    if (s3Obj == null) {
      return;
    }

    try {
      s3Obj.closeDataInputStream();
    }
    catch (IOException e) {

    }
  }

  public static boolean isServiceExceptionRecoverable(ServiceException ex)
  {
    final boolean isIOException = ex.getCause() instanceof IOException;
    final boolean isTimeout = "RequestTimeout".equals(((ServiceException) ex).getErrorCode());
    return isIOException || isTimeout;
  }

  public static final Predicate S3RETRY = new Predicate()
  {
    @Override
    public boolean apply(Throwable e)
    {
      if (e == null) {
        return false;
      } else if (e instanceof IOException) {
        return true;
      } else if (e instanceof ServiceException) {
        return isServiceExceptionRecoverable((ServiceException) e);
      } else {
        return apply(e.getCause());
      }
    }
  };

  /**
   * Retries S3 operations that fail due to io-related exceptions. Service-level exceptions (access denied, file not
   * found, etc) are not retried.
   */
  public static  T retryS3Operation(Callable f) throws Exception
  {
    final int maxTries = 10;
    return RetryUtils.retry(f, S3RETRY, maxTries);
  }

  public static boolean isObjectInBucket(RestS3Service s3Client, String bucketName, String objectKey)
      throws ServiceException
  {
    try {
      s3Client.getObjectDetails(bucketName, objectKey);
    }
    catch (ServiceException e) {
      if (404 == e.getResponseCode()
          || "NoSuchKey".equals(e.getErrorCode())
          || "NoSuchBucket".equals(e.getErrorCode())) {
        return false;
      }
      if ("AccessDenied".equals(e.getErrorCode())) {
        // Object is inaccessible to current user, but does exist.
        return true;
      }
      // Something else has gone wrong
      throw e;
    }
    return true;
  }

  public static Iterator storageObjectsIterator(
      final RestS3Service s3Client,
      final String bucket,
      final String prefix,
      final long maxListingLength
  )
  {
    return new Iterator()
    {
      private StorageObjectsChunk objectsChunk;
      private int objectsChunkOffset;

      @Override
      public boolean hasNext()
      {
        if (objectsChunk == null) {
          objectsChunk = listObjectsChunkedAfter("");
          objectsChunkOffset = 0;
        }

        if (objectsChunk.getObjects().length <= objectsChunkOffset) {
          if (objectsChunk.isListingComplete()) {
            return false;
          } else {
            objectsChunk = listObjectsChunkedAfter(objectsChunk.getPriorLastKey());
            objectsChunkOffset = 0;
          }
        }

        return true;
      }

      private StorageObjectsChunk listObjectsChunkedAfter(final String priorLastKey)
      {
        try {
          return retryS3Operation(
              new Callable()
              {
                @Override
                public StorageObjectsChunk call() throws Exception
                {
                  return s3Client.listObjectsChunked(
                      bucket, prefix, null, maxListingLength, priorLastKey);
                }
              }
          );
        }
        catch (Exception e) {
          throw Throwables.propagate(e);
        }
      }

      @Override
      public StorageObject next()
      {
        if (!hasNext()) {
          throw new IllegalStateException();
        }
        StorageObject storageObject = objectsChunk.getObjects()[objectsChunkOffset];
        objectsChunkOffset++;

        return storageObject;
      }

      @Override
      public void remove()
      {
        throw new UnsupportedOperationException();
      }


    };
  }

  public static String constructSegmentPath(String baseKey, String storageDir)
  {
    return JOINER.join(
        baseKey.isEmpty() ? null : baseKey,
        storageDir
    ) + "/index.zip";
  }

  public static String descriptorPathForSegmentPath(String s3Path)
  {
    return s3Path.substring(0, s3Path.lastIndexOf("/")) + "/descriptor.json";
  }

  public static String indexZipForSegmentPath(String s3Path)
  {
    return s3Path.substring(0, s3Path.lastIndexOf("/")) + "/index.zip";
  }

  public static String toFilename(String key)
  {
    return toFilename(key, "");
  }

  public static String toFilename(String key, final String suffix)
  {
    String filename = key.substring(key.lastIndexOf("/") + 1); // characters after last '/'
    filename = filename.substring(0, filename.length() - suffix.length()); // remove the suffix from the end
    return filename;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy