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 ?
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)