Roadway Docs
  • Getting started
    • Quickstart guide
  • Implement Roadway
    • Warehouse-native
      • Connect Snowflake
      • Connect BigQuery
      • Connect Redshift
    • Direct connectors
  • Data Requirements
    • Warehouse Requirements
      • Visits (Sessions)
      • Users
      • Revenue
      • CRMs
      • Ad Spend
  • Required IDs for attribution
    • Implementing the Roadway Tag
      • Add Anonymous IDs to CRM with Custom Forms
        • Segment with Custom Forms
        • Google Analytics with Custom Forms
      • Add Anonymous IDs to CRM with Hubspot Forms
        • Google Analytics with Hubspot Forms
Powered by GitBook
On this page
  1. Implement Roadway
  2. Warehouse-native

Connect Redshift

Data warehouse requirements

  1. Connect to your Redshift Cluster

  2. Execute the following SQL. These commands create a roadway user and grant read and write permissions to the tables (view Data warehouse requirements) required by Roadway. Make sure to change the placeholders for the correct database and schema Roadway should use; we do not need access to your entire data warehouse.

CREATE USER roadway_user PASSWORD <'your_strong_password'>;

GRANT USAGE ON SCHEMA <your_database_name>.<your_schema_name> TO roadway_user;
GRANT SELECT, INSERT ON ALL TABLES IN SCHEMA <your_database_name>.<your_schema_name> TO roadway_user;

Next you need to Configure Network Accessibility (Using AWS Management Console)

  1. Go to AWS Management Console > Redshift and select your cluster

  2. Make sure the cluster security settings allow for inbound connections. For this, you can follow this AWS Tutorial.

Afterwards, share connection credentials with Roadway:

  • cluster name / endpoint, e.g. example_cluster.<account_id>.<your-cluster-region>.redshift-serverless.amazonaws.com

  • database

  • schema

  • user

  • password

  • region, e.g. us-west-2

  • port (if not provided, we assume the default - 5439 )

We recommend sharing these credentials via sharing mechanisms in password management systems.

PreviousConnect BigQueryNextDirect connectors

Last updated 1 month ago