- Integrations
- Custom integration
- Load SafetyCulture data into AWS data warehouses
Load SafetyCulture data into AWS data warehouses
Learn how to load SafetyCulture data into AWS data warehouses.
If your organization doesn't use AWS as the data storage solution, you can interchange it with other options such as Azure.
What are data warehouses?
A data warehouse is a type of system that supports organizations to perform business intelligence operations, such as analytics. The data you store in a data warehouse is usually extracted from multiple application sources, including SafetyCulture.
What you'll need
AWS data storage solution: Relational Database Service (RDS) or Redshift
Virutal machine
Take note
This article's setup requires the SafetyCulture Exporter (CLI version) to facilitate the loading of your SafetyCulture data into your data warehouse. As the SafetyCulture Exporter (CLI version) is a command-line interface (CLI) tool, it needs to be installed on a virtual machine to be run.
Load SafetyCulture data into an AWS data warehouse
Create an RDS instance. Make sure the inbound access is enabled for an EC2 connection.
Create an EC2 instance. Make sure the inbound and outbound access are enabled for HTTP requests.
Set up the SafetyCulture Exporter in your virtual machine with command lines:
Download the latest version. Replace "3.x.x" with the latest version's version number.
curl -OL https://github.com/SafetyCulture/safetyculture-exporter/releases/download/v3.x.x/safetyculture-exporter_3.x.x_macOS_x86_64.tar.gz
Uncompress the "gzip" file. Replace "<filename>" with the filename.
gzip -d <filename>
Uncompress the "tar" file. Replace "<filename>" with the filename.
tar xvf <filename>
Create the configuration file.
./safetyculture-exporter configure
Run the SafetyCulture Exporter to load data into your data warehouse. Replace "<dialect>" with your data warehouse's database dialect and "<connection-string>" with your connection string. Refer to our documentation for examples.
./safetyculture-exporter sql --db-dialect <dialect> --db-connection-string <connection-string>
The SafetyCulture Exporter will automatically create and populate tables in your data warehouse. If you want to automate the loading of data, you can schedule runs with tools such as Amazon CloudWatch.
Was this page helpful?
Thank you for letting us know.