Amazon Kinesis Streams: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:
==Put a Record==
==Put a Record==


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

Revision as of 20:17, 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

AWS CLI Operations

Prerequisite

Set up the AWS credentials and region first.

Put a Record

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