Search in sources :

Example 1 with CrtS3RuntimeException

use of software.amazon.awssdk.crt.s3.CrtS3RuntimeException in project aws-crt-java by awslabs.

the class S3NativeClient method getObject.

public CompletableFuture<GetObjectOutput> getObject(GetObjectRequest request, final ResponseDataConsumer<GetObjectOutput> dataHandler) {
    final CompletableFuture<GetObjectOutput> resultFuture = new CompletableFuture<>();
    final GetObjectOutput.Builder resultBuilder = GetObjectOutput.builder();
    final S3MetaRequestResponseHandler responseHandler = new S3MetaRequestResponseHandler() {

        private GetObjectOutput getObjectOutput;

        @Override
        public void onResponseHeaders(final int statusCode, final HttpHeader[] headers) {
            for (int headerIndex = 0; headerIndex < headers.length; ++headerIndex) {
                try {
                    populateGetObjectOutputHeader(resultBuilder, headers[headerIndex]);
                } catch (Exception e) {
                    resultFuture.completeExceptionally(new RuntimeException(String.format("Could not process response header {%s}: " + headers[headerIndex].getName()), e));
                }
            }
            populateGetObjectOutputUserMetadata(resultBuilder, headers);
            dataHandler.onResponseHeaders(statusCode, headers);
            getObjectOutput = resultBuilder.build();
            dataHandler.onResponse(getObjectOutput);
        }

        @Override
        public int onResponseBody(ByteBuffer bodyBytesIn, long objectRangeStart, long objectRangeEnd) {
            dataHandler.onResponseData(bodyBytesIn);
            return 0;
        }

        @Override
        public void onFinished(int errorCode, int responseStatus, byte[] errorPayload) {
            CrtS3RuntimeException ex = null;
            try {
                if (errorCode != CRT.AWS_CRT_SUCCESS) {
                    ex = new CrtS3RuntimeException(errorCode, responseStatus, errorPayload);
                    dataHandler.onException(ex);
                } else {
                    dataHandler.onFinished();
                }
            } catch (Exception e) {
            /* ignore user callback exception */
            } finally {
                if (ex != null) {
                    resultFuture.completeExceptionally(ex);
                } else {
                    resultFuture.complete(getObjectOutput);
                }
            }
        }
    };
    List<HttpHeader> headers = new LinkedList<>();
    // TODO: additional logic needed for *special* partitions
    headers.add(new HttpHeader("Host", request.bucket() + ".s3." + signingRegion + ".amazonaws.com"));
    populateGetObjectRequestHeaders(header -> headers.add(header), request);
    addCustomHeaders(headers, request.customHeaders());
    String getObjectRequestQueryParameters = getGetObjectRequestQueryParameters(request);
    String encodedPath = getEncodedPath(request.key(), getObjectRequestQueryParameters);
    HttpRequest httpRequest = new HttpRequest("GET", encodedPath, headers.toArray(new HttpHeader[0]), null);
    S3MetaRequestOptions metaRequestOptions = new S3MetaRequestOptions().withMetaRequestType(S3MetaRequestOptions.MetaRequestType.GET_OBJECT).withHttpRequest(httpRequest).withResponseHandler(responseHandler);
    try (final S3MetaRequest metaRequest = s3Client.makeMetaRequest(metaRequestOptions)) {
        addCancelCheckToFuture(resultFuture, metaRequest);
        return resultFuture;
    }
}
Also used : HttpRequest(software.amazon.awssdk.crt.http.HttpRequest) CrtS3RuntimeException(software.amazon.awssdk.crt.s3.CrtS3RuntimeException) String(java.lang.String) ByteBuffer(java.nio.ByteBuffer) CrtS3RuntimeException(software.amazon.awssdk.crt.s3.CrtS3RuntimeException) UnsupportedEncodingException(java.io.UnsupportedEncodingException) CrtS3RuntimeException(software.amazon.awssdk.crt.s3.CrtS3RuntimeException) HttpHeader(software.amazon.awssdk.crt.http.HttpHeader)

Example 2 with CrtS3RuntimeException

use of software.amazon.awssdk.crt.s3.CrtS3RuntimeException in project aws-crt-java by awslabs.

the class S3NativeClient method putObject.

public CompletableFuture<PutObjectOutput> putObject(PutObjectRequest request, final RequestDataSupplier requestDataSupplier) {
    final CompletableFuture<PutObjectOutput> resultFuture = new CompletableFuture<>();
    final PutObjectOutput.Builder resultBuilder = PutObjectOutput.builder();
    HttpRequestBodyStream payloadStream = new HttpRequestBodyStream() {

        @Override
        public boolean sendRequestBody(final ByteBuffer outBuffer) {
            try {
                return requestDataSupplier.getRequestBytes(outBuffer);
            } catch (Exception e) {
                resultFuture.completeExceptionally(e);
                return true;
            }
        }

        @Override
        public boolean resetPosition() {
            try {
                return requestDataSupplier.resetPosition();
            } catch (Exception e) {
                return false;
            }
        }

        @Override
        public long getLength() {
            return request.contentLength();
        }
    };
    final List<HttpHeader> headers = new LinkedList<>();
    // TODO: additional logic needed for *special* partitions
    headers.add(new HttpHeader("Host", request.bucket() + ".s3." + signingRegion + ".amazonaws.com"));
    populatePutObjectRequestHeaders(header -> headers.add(header), request);
    addCustomHeaders(headers, request.customHeaders());
    String encodedPath = getEncodedPath(request.key(), request.customQueryParameters());
    HttpRequest httpRequest = new HttpRequest("PUT", encodedPath, headers.toArray(new HttpHeader[0]), payloadStream);
    final S3MetaRequestResponseHandler responseHandler = new S3MetaRequestResponseHandler() {

        @Override
        public void onResponseHeaders(final int statusCode, final HttpHeader[] headers) {
            for (int headerIndex = 0; headerIndex < headers.length; ++headerIndex) {
                try {
                    populatePutObjectOutputHeader(resultBuilder, headers[headerIndex]);
                } catch (Exception e) {
                    resultFuture.completeExceptionally(new RuntimeException(String.format("Could not process response header {%s}: " + headers[headerIndex].getName()), e));
                }
            }
            requestDataSupplier.onResponseHeaders(statusCode, headers);
        }

        @Override
        public int onResponseBody(ByteBuffer bodyBytesIn, long objectRangeStart, long objectRangeEnd) {
            return 0;
        }

        @Override
        public void onFinished(int errorCode, int responseStatus, byte[] errorPayload) {
            CrtS3RuntimeException ex = null;
            try {
                if (errorCode != CRT.AWS_CRT_SUCCESS) {
                    ex = new CrtS3RuntimeException(errorCode, responseStatus, errorPayload);
                    requestDataSupplier.onException(ex);
                } else {
                    requestDataSupplier.onFinished();
                }
            } catch (Exception e) {
            /* ignore user callback exception */
            } finally {
                if (ex != null) {
                    resultFuture.completeExceptionally(ex);
                } else {
                    resultFuture.complete(resultBuilder.build());
                }
            }
        }
    };
    S3MetaRequestOptions metaRequestOptions = new S3MetaRequestOptions().withMetaRequestType(S3MetaRequestOptions.MetaRequestType.PUT_OBJECT).withHttpRequest(httpRequest).withResponseHandler(responseHandler);
    try (final S3MetaRequest metaRequest = s3Client.makeMetaRequest(metaRequestOptions)) {
        addCancelCheckToFuture(resultFuture, metaRequest);
        return resultFuture;
    }
}
Also used : HttpRequest(software.amazon.awssdk.crt.http.HttpRequest) HttpRequestBodyStream(software.amazon.awssdk.crt.http.HttpRequestBodyStream) CrtS3RuntimeException(software.amazon.awssdk.crt.s3.CrtS3RuntimeException) String(java.lang.String) ByteBuffer(java.nio.ByteBuffer) CrtS3RuntimeException(software.amazon.awssdk.crt.s3.CrtS3RuntimeException) UnsupportedEncodingException(java.io.UnsupportedEncodingException) HttpHeader(software.amazon.awssdk.crt.http.HttpHeader) CrtS3RuntimeException(software.amazon.awssdk.crt.s3.CrtS3RuntimeException)

Example 3 with CrtS3RuntimeException

use of software.amazon.awssdk.crt.s3.CrtS3RuntimeException in project aws-crt-java by awslabs.

the class S3ClientTest method benchmarkS3Get.

@Test
public void benchmarkS3Get() {
    skipIfNetworkUnavailable();
    Assume.assumeTrue(hasAwsCredentials());
    Assume.assumeNotNull(System.getProperty("aws.crt.s3.benchmark"));
    // Log.initLoggingToStdout(LogLevel.Trace);
    // Override defaults with values from system properties, via -D on mvn
    // commandline
    final int threadCount = Integer.parseInt(System.getProperty("aws.crt.s3.benchmark.threads", "0"));
    final String region = System.getProperty("aws.crt.s3.benchmark.region", "us-west-2");
    final String bucket = System.getProperty("aws.crt.s3.benchmark.bucket", (region == "us-west-2") ? "aws-crt-canary-bucket" : String.format("aws-crt-canary-bucket-%s", region));
    final String endpoint = System.getProperty("aws.crt.s3.benchmark.endpoint", String.format("%s.s3.%s.amazonaws.com", bucket, region));
    final String objectName = System.getProperty("aws.crt.s3.benchmark.object", "crt-canary-obj-single-part-9223372036854775807");
    final boolean useTls = Boolean.parseBoolean(System.getProperty("aws.crt.s3.benchmark.tls", "false"));
    final double expectedGbps = Double.parseDouble(System.getProperty("aws.crt.s3.benchmark.gbps", "10"));
    final int numTransfers = Integer.parseInt(System.getProperty("aws.crt.s3.benchmark.transfers", "16"));
    final int concurrentTransfers = Integer.parseInt(System.getProperty("aws.crt.s3.benchmark.concurrent", "16"));
    /* should be 1.6 * expectedGbps */
    // avg of .3Gbps per connection, 32 connections per vip, 5 seconds per vip
    // resolution
    final int vipsNeeded = (int) Math.ceil(expectedGbps / 0.5 / 10);
    final int sampleDelay = Integer.parseInt(System.getProperty("aws.crt.s3.benchmark.warmup", new Integer((int) Math.ceil(vipsNeeded / 5)).toString()));
    System.out.println(String.format("REGION=%s, WARMUP=%s", region, sampleDelay));
    // Ignore stats during warm up time, they skew results
    TransferStats.global.withSampleDelay(Duration.ofSeconds(sampleDelay));
    try (TlsContext tlsCtx = createTlsContextOptions(getContext().trustStore)) {
        S3ClientOptions clientOptions = new S3ClientOptions().withRegion(region).withEndpoint(endpoint).withThroughputTargetGbps(expectedGbps).withTlsContext(useTls ? tlsCtx : null);
        try (S3Client client = createS3Client(clientOptions, threadCount)) {
            HttpHeader[] headers = { new HttpHeader("Host", endpoint) };
            HttpRequest httpRequest = new HttpRequest("GET", String.format("/%s", objectName), headers, null);
            List<CompletableFuture<TransferStats>> requestFutures = new LinkedList<>();
            // Each meta request will acquire a slot, and release it when it's done
            Semaphore concurrentSlots = new Semaphore(concurrentTransfers);
            for (int transferIdx = 0; transferIdx < numTransfers; ++transferIdx) {
                try {
                    concurrentSlots.acquire();
                } catch (InterruptedException ex) {
                    Assert.fail(ex.toString());
                }
                final int myIdx = transferIdx;
                CompletableFuture<TransferStats> onFinishedFuture = new CompletableFuture<>();
                requestFutures.add(onFinishedFuture);
                S3MetaRequestResponseHandler responseHandler = new S3MetaRequestResponseHandler() {

                    TransferStats stats = new TransferStats();

                    @Override
                    public int onResponseBody(ByteBuffer bodyBytesIn, long objectRangeStart, long objectRangeEnd) {
                        stats.recordRead(bodyBytesIn.remaining());
                        return 0;
                    }

                    @Override
                    public void onFinished(int errorCode, int responseStatus, byte[] errorPayload) {
                        // release the slot first
                        concurrentSlots.release();
                        if (errorCode != 0) {
                            onFinishedFuture.completeExceptionally(new CrtS3RuntimeException(errorCode, responseStatus, errorPayload));
                            return;
                        }
                        synchronized (System.out) {
                            System.out.println(String.format("Transfer %d:  Avg: %.3f Gbps Peak: %.3f Gbps First Byte: %dms", myIdx + 1, stats.avgGbps(), stats.peakGbps(), stats.latency()));
                        }
                        onFinishedFuture.complete(stats);
                    }
                };
                S3MetaRequestOptions metaRequestOptions = new S3MetaRequestOptions().withMetaRequestType(MetaRequestType.GET_OBJECT).withHttpRequest(httpRequest).withResponseHandler(responseHandler);
                try (S3MetaRequest metaRequest = client.makeMetaRequest(metaRequestOptions)) {
                }
            }
            // Finish each future, and deduct failures from completedTransfers
            int completedTransfers = numTransfers;
            double totalGbps = 0;
            for (CompletableFuture<TransferStats> request : requestFutures) {
                try {
                    request.join();
                    totalGbps += request.get().avgGbps();
                } catch (CompletionException | InterruptedException | ExecutionException ex) {
                    System.out.println(ex.toString());
                    Throwable cause = ex.getCause();
                    if (cause != ex && cause != null) {
                        System.out.println(cause.toString());
                    }
                    cause = cause.getCause();
                    if (cause != null && cause != ex) {
                        System.out.println(cause.toString());
                    }
                    --completedTransfers;
                }
            }
            // Dump overall stats
            TransferStats overall = TransferStats.global;
            System.out.println(String.format("%d/%d successful transfers", completedTransfers, numTransfers));
            System.out.println(String.format("Avg: %.3f Gbps", overall.avgGbps()));
            System.out.println(String.format("Peak: %.3f Gbps", overall.peakGbps()));
            System.out.println(String.format("P90: %.3f Gbps (stddev: %.3f)", overall.p90Gbps(), overall.stddev()));
            System.out.println(String.format("Avg Latency: %dms", overall.latency()));
            System.out.flush();
            try {
                File csvFile = new File("samples.csv");
                try (PrintWriter writer = new PrintWriter(csvFile)) {
                    writer.println("seconds,gbps");
                    AtomicInteger idx = new AtomicInteger(0);
                    overall.allSamples().mapToObj((gbps) -> {
                        return String.format("%d,%.3f", idx.getAndIncrement(), gbps);
                    }).forEach(writer::println);
                }
            } catch (FileNotFoundException ex) {
                System.err.println(ex.getMessage());
            }
        }
    }
}
Also used : software.amazon.awssdk.crt.io(software.amazon.awssdk.crt.io) Arrays(java.util.Arrays) BufferOverflowException(java.nio.BufferOverflowException) MetaRequestType(software.amazon.awssdk.crt.s3.S3MetaRequestOptions.MetaRequestType) HttpRequest(software.amazon.awssdk.crt.http.HttpRequest) software.amazon.awssdk.crt.s3(software.amazon.awssdk.crt.s3) AtomicReference(java.util.concurrent.atomic.AtomicReference) ByteBuffer(java.nio.ByteBuffer) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) HttpRequestBodyStream(software.amazon.awssdk.crt.http.HttpRequestBodyStream) Duration(java.time.Duration) Assume(org.junit.Assume) CredentialsProvider(software.amazon.awssdk.crt.auth.credentials.CredentialsProvider) URI(java.net.URI) LinkedList(java.util.LinkedList) HttpHeader(software.amazon.awssdk.crt.http.HttpHeader) PrintWriter(java.io.PrintWriter) java.util.concurrent(java.util.concurrent) StaticCredentialsProvider(software.amazon.awssdk.crt.auth.credentials.StaticCredentialsProvider) Test(org.junit.Test) Instant(java.time.Instant) File(java.io.File) FileNotFoundException(java.io.FileNotFoundException) StandardCharsets(java.nio.charset.StandardCharsets) DoubleStream(java.util.stream.DoubleStream) AtomicLong(java.util.concurrent.atomic.AtomicLong) List(java.util.List) ChronoUnit(java.time.temporal.ChronoUnit) DefaultChainCredentialsProvider(software.amazon.awssdk.crt.auth.credentials.DefaultChainCredentialsProvider) Assert(org.junit.Assert) Log(software.amazon.awssdk.crt.Log) ByteBufferUtils(software.amazon.awssdk.crt.utils.ByteBufferUtils) FileNotFoundException(java.io.FileNotFoundException) HttpHeader(software.amazon.awssdk.crt.http.HttpHeader) PrintWriter(java.io.PrintWriter) HttpRequest(software.amazon.awssdk.crt.http.HttpRequest) ByteBuffer(java.nio.ByteBuffer) LinkedList(java.util.LinkedList) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) File(java.io.File) Test(org.junit.Test)

Aggregations

ByteBuffer (java.nio.ByteBuffer)3 HttpHeader (software.amazon.awssdk.crt.http.HttpHeader)3 HttpRequest (software.amazon.awssdk.crt.http.HttpRequest)3 UnsupportedEncodingException (java.io.UnsupportedEncodingException)2 String (java.lang.String)2 HttpRequestBodyStream (software.amazon.awssdk.crt.http.HttpRequestBodyStream)2 CrtS3RuntimeException (software.amazon.awssdk.crt.s3.CrtS3RuntimeException)2 File (java.io.File)1 FileNotFoundException (java.io.FileNotFoundException)1 PrintWriter (java.io.PrintWriter)1 URI (java.net.URI)1 BufferOverflowException (java.nio.BufferOverflowException)1 StandardCharsets (java.nio.charset.StandardCharsets)1 Duration (java.time.Duration)1 Instant (java.time.Instant)1 ChronoUnit (java.time.temporal.ChronoUnit)1 Arrays (java.util.Arrays)1 LinkedList (java.util.LinkedList)1 List (java.util.List)1 java.util.concurrent (java.util.concurrent)1