spring-cloud-aws
spring-cloud-aws copied to clipboard
All development has moved to https://github.com/awspring/spring-cloud-aws Integration for Amazon Web Services APIs with Spring
Super janky minimal implementation of an AWS Cloud Map based Service Discovery client (#398). Currently meant as more of a conversation starter than something ready for a full review. Note...
Summary: Adds support for AWS EventBridge to the `spring-cloud-aws-messaging`. EventBridge is service launched in August 2019. EventBridge allows to decouple the service applications by publishing events, to which application/services can...
See issue for background. Fixes gh-379
AWS currently in the process or releasing SDK 2.0. It would be good to start integrating it into the project as it progresses to GA.
**Type**: Bug **Component**: SQS **Describe the bug** - According to javadoc of PollableChannel, MessageChannel.INDEFINITE_TIMEOUT should be used to represent indefinite timeout (instead of 0). - The timeout parameter of PollableChannel.receive()...
**Type**: Bug **Component**: All **Steps to Reproduce** 1. Visit https://spring.io/projects/spring-cloud-aws#learn 2. Try clicking on the "Reference Documentation" links for either of the most recent releases. Specifically, https://docs.spring.io/spring-cloud-aws/docs/current/reference/html/ and https://cloud.spring.io/spring-cloud-static/spring-cloud-aws/2.1.4.RELEASE/ 3....
Spring Cloud AWS has been a community project since its initial commit 11e8821afb85205398288ed728bbdee4872ec0ab on 2011-02-10 and when it joined spring cloud on [2014-10-25](https://github.com/spring-cloud/spring-cloud-aws/commits/1.0.x?after=5f933c9e679149efa319b07de32b68a7b646e8a8+279). The project has lacked a community lead...
The current CloudWatchExportAutoConfiguration file is using io.micrometer.cloudwatch, which was deprecated in favor of io.micrometer.cloudwatch2. if you use io.micrometer.cloudwatch2 on your project, CloudWatchExportAutoConfiguration does not work. So far, besides building my...
After picking messages off an SQS queue using `@SqsListener`, it seems that the listener will wait for all message processing worker threads to finish before fetching more messages off the...
In spring boot I configure database name to have dbname?rewriteBatchedStatements=true on the end. This should append rewriteBatchedStatements=true after the database name for the postgres connection URL. When I debug it...