Amazon Kinesis Streams: Difference between revisions

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


Set up the [[Setting AWS Credentials|AWS credentials]] and [[Setting AWS Region|region]] first.
Set up the [[Setting AWS Credentials|AWS credentials]] and [[Setting AWS Region|region]] first.
==List Streams==
aws kinesis list-streams


==Put a Record==
==Put a Record==


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

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

Prerequisites

Set up the AWS credentials and region first.

List Streams

aws kinesis list-streams

Put a Record

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