Spring Cloud Stream AWS Kinesis Binder: Difference between revisions
Jump to navigation
Jump to search
Line 20: | Line 20: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=Playground | =<span id='Playground_Example'></span>Playground Examples= | ||
{{External|https://github.com/ovidiuf/playground/tree/master/spring/cloud/spring-cloud-stream/ | {{External|[https://github.com/ovidiuf/playground/tree/master/spring/cloud/spring-cloud-stream/01-kinesis-producer Playground Kinesis Producer]}} | ||
{{External|https://github.com/ovidiuf/playground/tree/master/spring/cloud/spring-cloud-stream/ | {{External|[https://github.com/ovidiuf/playground/tree/master/spring/cloud/spring-cloud-stream/02-kinesis-consumer Playground Kinesis Consumer]}} | ||
=Message Propagation= | =Message Propagation= |
Revision as of 19:31, 18 December 2018
External
- Binder Implementation GitHub https://github.com/spring-cloud/spring-cloud-stream-binder-aws-kinesis
- AWS Kinesis Binder Reference Manual https://github.com/spring-cloud/spring-cloud-stream-binder-aws-kinesis/blob/master/spring-cloud-stream-binder-kinesis-docs/src/main/asciidoc/overview.adoc
- Example GitHub https://github.com/spring-cloud/spring-cloud-stream-samples/tree/master/kinesis-samples
Internal
Overview
Dependencies
dependencies {
implementation('org.springframework.cloud:spring-cloud-stream-binder-kinesis:1.0.0.RELEASE')
}
Playground Examples
Message Propagation
Consumer Group Support
Also see:
Configuration
Stream Auto-Creation
1.0.0 cannot be configured to fail on inexistent stream, instead of creating it. See org.springframework.cloud.stream.binder.kinesis.provisioning.KinesisStreamProvisioner line 135.
Also see