Roberto Walter
10/21/2024, 4:21 PMuser
10/21/2024, 4:21 PMsql GRANT CREATE ON DATABASE database_name TO airbyte_user; -- add create schema permission GRANT usage, create on schema my_schema TO airbyte_user; -- add create table permission GRANT SELECT ON TABLE SVV_TABLE_INFO TO airbyte_user; -- add select permission for svv_table_info
Replace database_name
with the name of your database, my_schema
with the name of your schema, and airbyte_user
with the name of your Airbyte user. Also, it's worth noting that there are known issues with the Redshift source when the schema contains at least one view "with no schema binding". The precondition scan fails with a NullPointerException in such cases. A workaround for this issue is to only use Airbyte on schemas which don't contain any views with no schema binding. Sources: - [Airbyte Documentation](https://docs.airbyte.com/integrations/destinations/redshift#step-1-set-up-redshift) - [Github Issue 25825](https://github.com/airbytehq/airbyte/issues/25825)Roberto Walter
10/21/2024, 4:33 PMuser
10/21/2024, 4:34 PMuser
10/21/2024, 4:34 PMRoberto Walter
10/21/2024, 4:48 PMuser
10/21/2024, 4:48 PMuser
10/21/2024, 4:49 PMSyncing stream blocks 0:00:00.454835 Syncing stream bounces 0:00:00.484302 Syncing stream global_suppressions 0:00:00.465494 Syncing stream invalid_emails 0:00:00.423696 Syncing stream segments 0:00:00.714763 Syncing stream spam_reports 0:00:00.453491 Syncing stream stats_automations 0:00:00.491029 Syncing stream suppression_group_members 0:00:25.141263 Syncing stream suppression_groups 0:00:00.295982 Syncing stream templates 0:00:00.753334
In this example, the time taken to sync each stream is displayed next to the stream name. For instance, the blocks
stream took approximately 0.454835 seconds to sync, while the suppression_group_members
stream took approximately 25.141263 seconds. You can access the logs for a sync job from the Airbyte dashboard by navigating to the connection and clicking on the specific sync job you're interested in. Source: [Github Issue 37349](https://github.com/airbytehq/airbyte/issues/37349)Roberto Walter
10/21/2024, 4:50 PMuser
10/21/2024, 4:51 PMuser
10/21/2024, 4:51 PM