Amazon Kinesis Streams: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 16: Line 16:


{{Internal|Spring Cloud Stream AWS Kinesis Binder|Spring Cloud Stream AWS Kinesis Binder}}
{{Internal|Spring Cloud Stream AWS Kinesis Binder|Spring Cloud Stream AWS Kinesis Binder}}
==Prerequisite==
Set up the AWS credentials and region first.
==Put a Record==
aws kinesis put-record --stream-name my-stream --partition-key 123 --data testdata


=AWS CLI Operations=
=AWS CLI Operations=


* https://docs.aws.amazon.com/streams/latest/dev/fundamental-stream.html
* https://docs.aws.amazon.com/streams/latest/dev/fundamental-stream.html

Revision as of 19:59, 24 October 2018

External

Internal

Overview

Kinesis Streams is aimed at users who want to build custom applications to process or analyze streaming data.

Amazon Kinesis Stream Access with Spring Data Cloud

Spring Cloud Stream AWS Kinesis Binder

Prerequisite

Set up the AWS credentials and region first.

Put a Record

aws kinesis put-record --stream-name my-stream --partition-key 123 --data testdata

AWS CLI Operations