Streaming data from a single Kinesis Stream to multiple tables in Redshift

Viewed 2086

I have data coming into Kinesis streams from different producers. The data needs to be transformed into several different tables depending the the they type of that data. I'm trying to have a Lambda read from Kinesis Streams, transform the data into the different tables and then use Kinesis Firehose to batch and COPY into Redshift.

However since Firehose can only deliver to one Redhsift table at a time, I need to have multiple Firehose instances running equal to the number of tables I will have in my Redshift schema. I see that there is a default cap of 20 Firehose instances per region and I'm wondering if this is an ideal data pipeline for what I am trying to achieve.

1 Answers
Related