Nathan Gille
10/05/2022, 6:44 PMMarcos Marx (Airbyte)
10/05/2022, 6:46 PMNathan Gille
10/05/2022, 7:23 PMuser
10/05/2022, 7:25 PMNathan Gille
10/06/2022, 1:57 PMEach stream will be output into its own raw table in Redshift. Each table will contain 3 columns:
• `_airbyte_ab_id`: a uuid assigned by Airbyte to each event that is processed. The column type in Redshift is.VARCHAR
• `_airbyte_emitted_at`: a timestamp representing when the event was pulled from the data source. The column type in Redshift is.TIMESTAMP WITH TIME ZONE
• `_airbyte_data`: a json blob representing with the event data. The column type in Redshift isbut can be be parsed with JSON functions.VARCHAR
Marcos Marx (Airbyte)
10/06/2022, 9:06 PM