Files
spring-cloud-stream-samples/kinesis-samples/kinesis-produce-consume
Soby Chacko 24997117d4 Spring Boot and Cloud updates
Update samples to use Boot 2.4.4
Spring Cloud is updated to 2020.0.2

Remove empty integration tests
2021-03-24 22:47:17 -04:00
..
2018-03-09 10:47:22 -05:00
2019-03-21 15:21:19 -04:00
2019-03-21 15:21:19 -04:00
2021-03-24 22:47:17 -04:00

Spring Cloud Stream Kinesis Sample
=============================

In this *Spring Cloud Stream* sample, a Controller exists which can receive POST requests containing Order objects.
These Orders are added to a Kinesis Stream.
The sample application consumes the Orders from the stream.

## Requirements

To run this sample, you will need to have installed:

* Java 8 or Above

This example requires and AWS account, it will create a Kinesis stream which will be chargeable.
The AWS credentials will be obtained using the default credential provider chain.

## Code Tour

This sample is a Spring Boot application that uses Spring Cloud Stream to produce and consume data to a Kinesis Stream.
The sample has the following components:

* KinesisApplication - The Spring Boot Main Application
* OrderController - The Controller exposing POST and GET endpoints
* OrderRepository - An in memory database for storing Order objects
* OrderSource - The class that produces records for the stream
* OrderStreamConfiguration - Listens to the Kinesis stream and logs receiving records from the stream

## Building with Maven

Build the sample by executing:

	kinesis-produce-consume>$ mvn clean package

## Running the Sample

This sample can be used to demonstrate passing data between applications over a Kinesis stream.

Start the Producer using:

`kinesis-produce-consume>$ java -jar target/spring-cloud-stream-sample-kinesis-0.0.1.BUILD-SNAPSHOT.jar --originator=KinesisProducer --server.port=64398`


Start the Consumer using:

`kinesis-produce-consume>$ java -jar target/spring-cloud-stream-sample-kinesis-0.0.1.BUILD-SNAPSHOT.jar --originator=KinesisConsumer --server.port=64399`

The originator is a key added to messages to tell the receiving application who sent the message.
If the consumer sent the message nothing is done, if the producer sent the message, then it is saved to an in memory database.



To use the sample POST a message to the Producer

`curl -X POST
http://localhost:64398/
-H 'authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
-H 'cache-control: no-cache'
-H 'content-type: application/json'
-d '{"name":"pen"}'`

Note: Match the authorization with the password in application.properties

Observe the logs and the AWS Kinesis Stream to see the produce and consume of that message.

* A log of placing a message on the stream
`2017-09-13 13:26:31.851  INFO 2807 --- [io-64398-exec-1] demo.stream.OrdersSource: Event sent: Event [id=null, subject=Order [id=c2d15e39-bbfa-4966-bd55-6a114045f18c, name=pencil], type=ORDER, originator=KinesisProducer]`

* A log of consuming a message from the stream
`2017-09-13 13:26:43.059  INFO 2807 --- [esis-consumer-1] uration$$EnhancerBySpringCGLIB$$15bce6e7: An order has been placed from this service Event [id=null, subject=Order [id=c2d15e39-bbfa-4966-bd55-6a114045f18c, name=pencil], type=ORDER, originator=KinesisProducer]`



Then run a GET request against the Consumer

`curl -X GET \
  http://localhost:64399/orders \
  -H 'authorization: Basic xxxxxxxxxxxxxxxxxxxxxx \
  -H 'cache-control: no-cache' \
`


The returned Order should match the Order that was POSTed to the Producer.

`[
    {
        "id": "c2d15e39-bbfa-4966-bd55-6a114045f18c",
        "name": "pencil"
    }
]`