Skip to content

pepegar/akka-aws

 
 

Repository files navigation

spray-aws

  • spray based client for aws services
  • uses the marshallers and unmarshallers from the aws-java-sdk
  • excludes the httpclient dep from aws-java-sdk, its only needed as 'provided' to compile this project 1.7 aws sdk kills this :(

serices supported

  • dynamodb
  • kinesis
  • sqs
  • route53
  • s3

usage

The tests in each module show usage of each client.

All are along the lines of

 val system = ActorSystem("test")
 val props = DynamoDBClientProps(sys.env("AWS_ACCESS_KEY_ID"), sys.env("AWS_SECRET_ACCESS_KEY"), Timeout(10 seconds), system, system)
 val client = new DynamoDBClient(props)
 client.sendBatchPutItem(...).onComplete(println)

tuning

For high throughput applications you will most certainly want to increase spray.can.host-connector.max-connections which defaults to only 4. 400 is the default in the akka-persistence-dynamodb journal which uses this library.

contributors

thanks

@justinsb -> spray-kinesis
@petter-fidesmo -> spray-sqs
@slomo -> spray-s3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Scala 100.0%