How should records be formatted for AWS Kinesis Firehose to Redshift?
问题 Consider the following: A table in Redshift called 'people' that has fields id, name and age A kinesis firehose stream called 'people' that is configured to write to the 'people' table and the value for 'Redshift table columns' is 'id,name,age' It's not clear how to format the 'Data' blob. Here's an example of what the code looks like with the data separated by tabs: let AWS = require('aws-sdk'); let firehose = new AWS.Firehose(); let params = { DeliveryStreamName: 'people', // id,name,age