This example application is meant to demonstrate how to consume Amazon Cognito streams and model data in Amazon Redshift.
This sample is designed to be built with Maven. All requisite dependencies are captured in the pom.xml
. Simply use mvn package
to build the war and deploy to Elastic Beanstalk or directly to EC2.
The sample requires the following environment variables be set:
JDBC_CONNECTION_STRING
- This JDBC connection string for your Amazon Redshift cluster.KINESIS_INPUT_STREAM
(orPARAM1
) - The name of the Kinesis stream to look for Amazon Cognito updates.REDSHIFT_USER_NAME
(orPARAM2
) - The master user name for your Amazon Redshift cluster.REDSHIFT_PASSWORD
(orPARAM3
) - The master user password for your Amazon Redshift cluster.S3_BUCKET_NAME
(orPARAM4
) - The name of the S3 bucket to use for intermediate storage of data. This bucket should be configured to delete old data via S3 lifecycle configuration.REGION
(orPARAM5
) - The region of all your resources.
We've included a CloudFormation template for deploying a binary version of this sample. In addition to configuring the above environment variables, it will create the Amazon Redshift cluster and other associated resources. Consider using this to get started and for deploying future updates to this sample.