aws-sdk

Reactiverse AWS SDK v2 with Vert.x

License

License

Categories

Categories

AWS Container PaaS Providers React User Interface Web Frameworks
GroupId

GroupId

io.reactiverse
ArtifactId

ArtifactId

aws-sdk
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

aws-sdk
Reactiverse AWS SDK v2 with Vert.x
Project URL

Project URL

https://github.com/reactiverse/aws-sdk
Source Code Management

Source Code Management

https://github.com/reactiverse/aws-sdk

Download aws-sdk

How to add to project

<!-- https://jarcasting.com/artifacts/io.reactiverse/aws-sdk/ -->
<dependency>
    <groupId>io.reactiverse</groupId>
    <artifactId>aws-sdk</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/io.reactiverse/aws-sdk/
implementation 'io.reactiverse:aws-sdk:1.0.0'
// https://jarcasting.com/artifacts/io.reactiverse/aws-sdk/
implementation ("io.reactiverse:aws-sdk:1.0.0")
'io.reactiverse:aws-sdk:jar:1.0.0'
<dependency org="io.reactiverse" name="aws-sdk" rev="1.0.0">
  <artifact name="aws-sdk" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.reactiverse', module='aws-sdk', version='1.0.0')
)
libraryDependencies += "io.reactiverse" % "aws-sdk" % "1.0.0"
[io.reactiverse/aws-sdk "1.0.0"]

Dependencies

compile (2)

Group / Artifact Type Version
io.vertx : vertx-core jar 4.0.0
software.amazon.awssdk : aws-core jar 2.15.45

Project Modules

There are no modules declared in this project.

Use AWS SDK v2 with Vert.x

Build Status

This project provides a VertxNioAsyncHttpClient and a VertxExecutor so that you can use AWS SDK v2 in a Vert.x context.

Coordinates

Artifacts are published here

Version compatibility matrix

Project Vert.x AWS sdk
1.0.0 4.0.0 2.15.45
0.7.0 3.9.4 2.15.23
0.6.0 3.9.2 2.14.7
0.5.1 3.9.2 2.13.6
0.5.0 3.9.0 2.12.0
0.4.0 3.8.3 2.10.16
0.3.0 3.8.1 2.7.8

Documentation

See this page

Motivations

AWS SDK v1 => blocking IOs

As you know, Vert.x uses non-blocking IO. This means, among other stuff, that you should never ever block the event-loop. AWS SDK v1 implementation relies on blocking IOs. This means you cannot use it together with Vert.x in a straightforward way. You would end up blocking the event-loop, hence killing your application's scalability. The only option would be to wrap your synchronous calls to AWS SDK v1 within executeBlocking or use a worker thread.

Even though some methods of the AWS SDK are indicated as "async" (DynamoAsyncClient for instance), it internally uses a thread pool whose size is configurable. Those threads can be a bottleneck in your application

You cannot really use AWS SDK v1 together with Vert.x in a non-blocking scalable way.

Embrace AWS SDK v2

Since 2018, AWS has published the version 2 of its SDK, embracing non-blocking IO model.

Now you can use V2 together with Vert.x using this project.

  • using Vert.x's HTTP client
  • CompletableFuture<?>'s are executed in the same Vert.x context that the one that made the request

Contributing

Tests placed under the io.vertx.ext.awssdk.integration package are using localstack: a huge set of utilities (docker images) emulating AWS Services (DynamoDB, Kinesis, S3, etc.).

In order to do so, they require a local docker daemon running on the machine.

They will download docker images from the docker hub, run the appropriate service as a docker container, then test the code against this local docker container.

They'll only be executed if the system property tests.integration is set to localstack. They'll be ignored otherwise.

Documentation

Documentation is docs/README.md and visible at https://github.com/reactiverse/aws-sdk/tree/master/docs or https://reactiverse.io/aws-sdk/

Javadoc can be produced (with Java 11 otherwise it does not link Vert.x API docs)

> ./gradlew javadocToDocsFolder

This will update the docs/javadoc with latest javadocs

io.reactiverse

Reactiverse

Versions

Version
1.0.0
0.7.0
0.6.0
0.5.1
0.5.0
0.4.0