Reputation: 2438
I try to have a Kinesis Firehose pushing data in a Redshift table.
The firehose stream is working and putting data in S3.
But nothing arrive in the destination table in Redshift.
How can I troubleshoot this ?
Upvotes: 21
Views: 13249
Reputation: 1
If there are multiple sources streaming data into the same firehose and if you are testing through test data then the json text of your demo data may get modified and it will not match the redshift table schema so it will not load data into the redshift table.
Upvotes: 0
Reputation: 2438
In the end, I made it work by deleting and re-creating the Firehose stream :-/ Probably the repeated edits via the web console made the thing unstable.
But here are troubleshooting guidelines :
At this point, you should be able to see the connection attempts in Redshift logs :
select * from stl_connection_log where remotehost like '52%' order by recordtime desc;
Check that the Redshift user used by Firehose has enough privileges on the target table :
select tablename,
HAS_TABLE_PRIVILEGE(tablename, 'select') as select,
HAS_TABLE_PRIVILEGE(tablename, 'insert') as insert,
HAS_TABLE_PRIVILEGE(tablename, 'update') as update,
HAS_TABLE_PRIVILEGE(tablename, 'delete') as delete,
HAS_TABLE_PRIVILEGE(tablename, 'references') as references
from pg_tables where schemaname='public' order by tablename;
Then you can check if the COPY command is run :
select * from stl_query order by endtime desc limit 10;
Then check load errors, or server errors :
select * from stl_load_errors order by starttime desc;
select * from stl_error where userid!=0 order by recordtime desc;
If you have format problems in your data, or in the COPY options, or a mismatch between your data and the target columns, you should at least see the COPY attempts, and some load errors.
If you're still stuck, with nothing appearing in those log tables, try deleting and recreating the whole firehose stream, as there may be some bugs related to the web console. (This step worked for me)
Upvotes: 45
Reputation: 520
Wanted to post my case for anyone who's lost here.
We were enforcing server-side encryption calls to our S3 bucket via the directions posted here: http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html
The problem with using this policy on a bucket that Firehose uses is that Firehose creates unencrypted manifest files as well as encrypted data files. If this policy is in place, the manifest files will not be created on S3 and thus, will not trigger the Redshift loads. So our behavior showed data arriving to the bucket, but no manifest files, ergo no data loads.
Upvotes: 6
Reputation: 161
Go to the IAM role(firehose_delivery_role
) auto-created during the Kinesis Firehose setup and make sure that the following roles are attached:
AmazonS3FullAccess
AmazonRedshiftFullAccess
AmazonKinesisFullAccess
AmazonKinesisFirehoseFullAccess
There is a bug that omits the S3 credentials in IAM, leaving the Kinesis setup unable to work.
Also verify that you in fact see the data files accumulating in S3.
Upvotes: 8
Reputation: 161
During Kinesis Firehos setup, use the Redshift masteruser
credentials. Any other user will not work.
Upvotes: 1