Warehouses and Lakes
Databases

How to load data from MongoDb to Redshift

Learn how to use Airbyte to synchronize your MongoDb data into Redshift within minutes.

TL;DR

This can be done by building a data pipeline manually, usually a Python script (you can leverage a tool as Apache Airflow for this). This process can take more than a full week of development. Or it can be done in minutes on Airbyte in three easy steps:

  1. set up MongoDb as a source connector (using Auth, or usually an API key)
  2. set up Redshift as a destination connector
  3. define which data you want to transfer and how frequently

You can choose to self-host the pipeline using Airbyte Open Source or have it managed for you with Airbyte Cloud.

This tutorial’s purpose is to show you how.

What is MongoDb

MongoDB is a popular open-source NoSQL database that stores data in a flexible, document-based format. It is designed to handle large volumes of unstructured data and is highly scalable, making it a popular choice for modern web applications. MongoDB uses a JSON-like format to store data, which allows for easy integration with web applications and APIs. It also supports dynamic queries, indexing, and aggregation, making it a powerful tool for data analysis. MongoDB is widely used in industries such as finance, healthcare, and e-commerce, and is known for its ease of use and flexibility.

What is Redshift

A fully managed data warehouse service in the Amazon Web Services (AWS) cloud, Amazon Redshift is designed for storage and analysis of large-scale datasets. Redshift allows businesses to scale from a few hundred gigabytes to more than a petabyte (a million gigabytes), and utilizes ML techniques to analyze queries, offering businesses new insights from their data. Users can query and combine exabytes of data using standard SQL, and easily save their query results to their S3 data lake.

Integrate MongoDb with Redshift in minutes

Try for free now

Prerequisites

  1. A MongoDb account to transfer your customer data automatically from.
  2. A Redshift account.
  3. An active Airbyte Cloud account, or you can also choose to use Airbyte Open Source locally. You can follow the instructions to set up Airbyte on your system using docker-compose.

Airbyte is an open-source data integration platform that consolidates and streamlines the process of extracting and loading data from multiple data sources to data warehouses. It offers pre-built connectors, including MongoDb and Redshift, for seamless data migration.

When using Airbyte to move data from MongoDb to Redshift, it extracts data from MongoDb using the source connector, converts it into a format Redshift can ingest using the provided schema, and then loads it into Redshift via the destination connector. This allows businesses to leverage their MongoDb data for advanced analytics and insights within Redshift, simplifying the ETL process and saving significant time and resources.

Step 1: Set up MongoDb as a source connector

1. First, you need to have a MongoDB instance running and accessible from the internet. You will also need to have the necessary credentials to access the database.

2. In the Airbyte dashboard, click on "Sources" and then click on "New Source."

3. Select "MongoDB" from the list of available sources.

4. In the "Connection Configuration" section, enter the following information:
- Host: The hostname or IP address of your MongoDB instance.
- Port: The port number on which your MongoDB instance is running.
- Username: The username you use to access your MongoDB instance.
- Password: The password you use to access your MongoDB instance.
- Authentication Database: The name of the database where your authentication credentials are stored.

5. Click on "Test Connection" to ensure that Airbyte can connect to your MongoDB instance.

6. If the connection is successful, click on "Save" to save your MongoDB source configuration.

7. You can now create a new pipeline and select your MongoDB source as the input. You can then configure the pipeline to transform and load your data into your desired destination.

Step 2: Set up Redshift as a destination connector

1. First, log in to your Airbyte account and navigate to the "Destinations" tab on the left-hand side of the screen.
2. Click on the "Add Destination" button and select "Redshift" from the list of available connectors.
3. Enter your Redshift database credentials, including the host, port, database name, username, and password.
4. Choose the schema you want to use for your data in Redshift.
5. Select the tables you want to sync from your source connector to Redshift.
6. Map the fields from your source connector to the corresponding fields in Redshift.
7. Choose the sync mode you want to use, either "append" or "replace."
8. Set up any additional options or filters you want to use for your sync.
9. Test your connection to ensure that your data is syncing correctly.
10. Once you are satisfied with your settings, save your configuration and start your sync.

Step 3: Set up a connection to sync your MongoDb data to Redshift

Once you've successfully connected MongoDb as a data source and Redshift as a destination in Airbyte, you can set up a data pipeline between them with the following steps:

  1. Create a new connection: On the Airbyte dashboard, navigate to the 'Connections' tab and click the '+ New Connection' button.
  2. Choose your source: Select MongoDb from the dropdown list of your configured sources.
  3. Select your destination: Choose Redshift from the dropdown list of your configured destinations.
  4. Configure your sync: Define the frequency of your data syncs based on your business needs. Airbyte allows both manual and automatic scheduling for your data refreshes.
  5. Select the data to sync: Choose the specific MongoDb objects you want to import data from towards Redshift. You can sync all data or select specific tables and fields.
  6. Select the sync mode for your streams: Choose between full refreshes or incremental syncs (with deduplication if you want), and this for all streams or at the stream level. Incremental is only available for streams that have a primary cursor.
  7. Test your connection: Click the 'Test Connection' button to make sure that your setup works. If the connection test is successful, save your configuration.
  8. Start the sync: If the test passes, click 'Set Up Connection'. Airbyte will start moving data from MongoDb to Redshift according to your settings.

Remember, Airbyte keeps your data in sync at the frequency you determine, ensuring your Redshift data warehouse is always up-to-date with your MongoDb data.

Use Cases to transfer your MongoDb data to Redshift

Integrating data from MongoDb to Redshift provides several benefits. Here are a few use cases:

  1. Advanced Analytics: Redshift’s powerful data processing capabilities enable you to perform complex queries and data analysis on your MongoDb data, extracting insights that wouldn't be possible within MongoDb alone.
  2. Data Consolidation: If you're using multiple other sources along with MongoDb, syncing to Redshift allows you to centralize your data for a holistic view of your operations, and to set up a change data capture process so you never have any discrepancies in your data again.
  3. Historical Data Analysis: MongoDb has limits on historical data. Syncing data to Redshift allows for long-term data retention and analysis of historical trends over time.
  4. Data Security and Compliance: Redshift provides robust data security features. Syncing MongoDb data to Redshift ensures your data is secured and allows for advanced data governance and compliance management.
  5. Scalability: Redshift can handle large volumes of data without affecting performance, providing an ideal solution for growing businesses with expanding MongoDb data.
  6. Data Science and Machine Learning: By having MongoDb data in Redshift, you can apply machine learning models to your data for predictive analytics, customer segmentation, and more.
  7. Reporting and Visualization: While MongoDb provides reporting tools, data visualization tools like Tableau, PowerBI, Looker (Google Data Studio) can connect to Redshift, providing more advanced business intelligence options. If you have a MongoDb table that needs to be converted to a Redshift table, Airbyte can do that automatically.

Wrapping Up

To summarize, this tutorial has shown you how to:

  1. Configure a MongoDb account as an Airbyte data source connector.
  2. Configure Redshift as a data destination connector.
  3. Create an Airbyte data pipeline that will automatically be moving data directly from MongoDb to Redshift after you set a schedule

With Airbyte, creating data pipelines take minutes, and the data integration possibilities are endless. Airbyte supports the largest catalog of API tools, databases, and files, among other sources. Airbyte's connectors are open-source, so you can add any custom objects to the connector, or even build a new connector from scratch without any local dev environment or any data engineer within 10 minutes with the no-code connector builder.

We look forward to seeing you make use of it! We invite you to join the conversation on our community Slack Channel, or sign up for our newsletter. You should also check out other Airbyte tutorials, and Airbyte’s content hub!

What should you do next?

Hope you enjoyed the reading. Here are the 3 ways we can help you in your data journey:

flag icon
Easily address your data movement needs with Airbyte Cloud
Take the first step towards extensible data movement infrastructure that will give a ton of time back to your data team. 
Get started with Airbyte for free
high five icon
Talk to a data infrastructure expert
Get a free consultation with an Airbyte expert to significantly improve your data movement infrastructure. 
Talk to sales
stars sparkling
Improve your data infrastructure knowledge
Subscribe to our monthly newsletter and get the community’s new enlightening content along with Airbyte’s progress in their mission to solve data integration once and for all.
Subscribe to newsletter

Connectors Used

As diversity and use cases of data are evolving rapidly, switching between different database management systems is becoming normal for organizations. 

If you are here, you might need to shift from MongoDB to Redshift. MongoDB is a non-relational database widely used by organizations to handle various data formats, high-speed data ingestion, and powerful query language. On the other hand, Redshift is a relational storage system used for its analytical capabilities, query performance, and storage capacity. Since both databases have different use cases, migration becomes an obvious choice for varying business requirements. 

This article will discuss migrating MongoDB to Redshift ETL using two easy methods. 

MongoDB Overview

Image Source: MongoDB

Created in 2009, MongoDB is a modern NoSQL database. Being non-relational, it follows a document-oriented approach and stores data in documents that consist of key-value pairs and follow a BSON (Binary JavaScript Notation) structure. Unlike relational databases, MongoDB has no structural limitations. Therefore, it can process structured, semi-structured, and unstructured data. Additionally, its modern architecture and cutting-edge features like load balancing, query performance, and indexing make it stand out from other NoSQL databases.

Some of the key features of MongoDB include: 

  • Schema-less Database: As a NoSQL database, MongoDB is schema-less, which means you can store different types of documents in one collection. In a MongoDB database, a single collection can hold multiple documents, and each document may consist of different numbers of fields and contents.
  • Indexing: Indexes are unique data structures that store some information related to documents, making it easy for MongoDB to find the right data file. If the data is not indexed properly, the database searches each document with specified queries, which is time-consuming. 
  • Rich Query Language: MongoDB has a rich query language for data querying and manipulation. You can use it to run searches for filtering data, sorting results, or even perform geospatial queries to locate data based on its coordinates. 

Redshift Overview

Image Source

Amazon Redshift is a cloud data warehousing solution provided by Amazon Web Services (AWS). It can handle and process huge amounts of structured and unstructured data in the range of exabytes (10*18 bytes). Some of the well-known organizations that use Redshift in their tech stack include Amazon, Lyft, Figma, and Coursera. 

Key features of Redshift include:

  • Petabyte Scale Data Warehouse: The distributed architecture of storage in Redshift supports workloads of up to 8 PB of compressed data. With this robust storage capacity, you can handle almost any number or type of nodes in your data warehouse. 
  • Federated Query: The federated query feature of Redshift allows you to query live data across one or more databases without the need for data migration. This includes querying from Amazon's Relational Database Services (RDS), including Aurora MySQL Aurora PostgreSQL, and getting results as temporary tables.
  • Serverless: Redshift offers a serverless architecture for data management. With this feature, you can manage any size of analytical workload without the need to manage a data warehouse's resources. Therefore, you can focus on the analytics rather than managing infrastructure.

Why Migrate From MongoDB to Redshift?

MongoDB and Redshift complement each other. While MongoDB is known for handling evolving and unstructured data, Redshift outshines it in analytical processing. Below are some of the key reasons for migrating MongoDB to Redshift: 

Data Warehousing

MongoDB: MongoDB is not a data warehouse. It offers a flexible NoSQL database that can handle diverse data types, including structured, semi-structured, and unstructured data.

Redshift: Redshift is a data warehouse. It lets organizations store data from one or more sources in a centralized repository. So that organizations can connect multiple databases of downstream applications into one data warehouse. This allows organizations to do cross-functional analysis and unify their data by creating a single source of truth. 

Business Intelligence & Reporting

MongoDB: MongoDB is ideal for handling transactional workloads and real-time applications. However, the analytical capabilities of MongoDB are not as robust as a dedicated data warehousing solution.

Redshift: Redshift streamlines the integration with well-known BI tools like Tableau and Power BI to extract meaningful insights from the organization's data. Organizations can use these BI capabilities to make data-driven decisions. 

Scalability

MongoDB: MongoDB provides horizontal scalability, which allows organizations to scale their database easily by adding more servers to a MongoDB cluster. 

Redshift: Redshift offers a Massively Parallel Processing (MPP) architecture to handle large datasets. Organizations can choose to add more computing resources to the Redshift cluster to scale up their analytics processing requirements. 

Methods to Sync MongoDB to Redshift

Method 1: Using Airbyte to connect MongoDB to Redshift ETL.

Method 2: Manually connecting MongoDB to Redshift. 

Method 1: Using Airbyte to Connect MongoDB to Redshift ETL

In this method, we use Airbyte, a widely used data integration tool, to extract data from MongoDB and load it into Redshift. Here is a step-by-step guide:

Step 1: Configure MongoDB As a Source

  • Create an Airbyte account or Login. Navigate to the home page of Airbyte and click on the Sources button in the left navigation bar. 
  • Use the search bar from the top on the Sources page and input MongoDB. Click on the connector card of MongoDB. 
  • Then, you'll see a Create a Source page. Select your Cluster Type, and fill in other details, including the Connection String, Database name, Username, and Password of your MongoDB database. Toggle the advanced window and optionally make changes to default configurations. Click on Set up source.

Step 2: Configure Redshift As a Destination

  • After setting up MongoDB as a source, click on Destinations from the left navigation menu. 
  • On the Destinations page, select the search bar and type in Redshift. Click on the Redshift connector card. 
  • You'll be redirected to the Create a destination section. Fill in the required details, including Host, Port, Username, Password, Database, and Uploading Schema. Click on Set up destination

Step 3: Connecting Source And Destination

  • In the left navigation menu, click on Connections > Create a Connection. 
  • Select MongoDB as a source and Redshift as a destination to establish a connection. 
  • On the connection page, provide a unique Connection name and select the required Replication frequency. Optionally, you can tweak the Streams section and select your sync mode
  • Click on Set up connection and run the sync once by clicking the Sync now button. 

That concludes it. You have now successfully connected MongoDB to Redshift. 

Method 2: Manually Connecting MongoDB to Redshift

In this method, we will manually migrate data from MongoDB to Redshift. It involves exporting data from MongoDB in JSON format, uploading it to the S3 bucket, and moving it to Redshift. Here's a detailed guide:

Prerequisites

  • Amazon S3
  • A SQL Client. 
  • Windows Powershell. 

Step 1: Export Data From MongoDB

  • Access your MongoDB database using the command prompt.
  • Type the following command on the terminal to export data from your MongoDB collection in JSON format:
mongoexport --db db-name --collection collection-name --out output-file.json

Replace db-name with the name of the database, collection-name with the collection you want to export, and output-file.json with your desired file name. 

Step 2: Upload JSON file to S3 bucket

  • Sign up or log in to the AWS Management Console and navigate to the Amazon S3 service. 
  • Create a new bucket or use an existing one on S3.
  • Upload the JSON file you exported from MongoDB on the S3 bucket. 

Step 3: Create a Table in Redshift

  • Access your Redshift cluster using a SQL client. 
  • Now, create a table schema in Redshift that matches the structure of MongoDB data in a JSON file. Type the following code in the SQL client: 
CREATE TABLE your_table( 
         column1 datatype1, 
         column2 datatype2,
          -- Add more columns as needed 
);

Replace your_table with the desired table name and define columns according to the JSON file structure. 

Step 4: Copy Data From S3 to Redshift

  • On the SQL client, type the following code to copy data from the S3 bucket to the Redshift table: 
COPY your_table
FROM 's3_path' 
CREDENTIALS'aws_access_key_id=your_access_key_id;aws_secret_access_key=your_secret_access_key' 
FORMAT JSON' auto';

In the above code, replace your_table with your table name, s3_path with a path to your JSON file in S3, your_access_key_id, and your_secret_access_key with AWS credentials. 

Done. By following these steps carefully, you'll successfully export data from MongoDB, upload it on S3, and load it in Redshift. 

Conclusion 

Migration from MongoDB to Redshift can benefit organizations looking to enhance their analytical workloads and query performance. In this article, you have seen two popular methods for migrating data from MongoDB to Redshift. One method uses a SaaS tool - Airbyte, to streamline the process of migrating data. The other uses JSON files to migrate data manually. 

Both of these methods are widely used and have their use cases. However, using Airbyte, you can perform data migration within just a few clicks, and it automatically syncs the data if changes are made. However, in the manual method, you don't need a tool for migrating data, and the process is time-consuming and error-prone.

What should you do next?

Hope you enjoyed the reading. Here are the 3 ways we can help you in your data journey:

flag icon
Easily address your data movement needs with Airbyte Cloud
Take the first step towards extensible data movement infrastructure that will give a ton of time back to your data team. 
Get started with Airbyte for free
high five icon
Talk to a data infrastructure expert
Get a free consultation with an Airbyte expert to significantly improve your data movement infrastructure. 
Talk to sales
stars sparkling
Improve your data infrastructure knowledge
Subscribe to our monthly newsletter and get the community’s new enlightening content along with Airbyte’s progress in their mission to solve data integration once and for all.
Subscribe to newsletter

Connectors Used

Frequently Asked Questions

What data can you extract from MongoDb?

MongoDB gives access to a wide range of data types, including:

1. Documents: MongoDB stores data in the form of documents, which are similar to JSON objects. Each document contains a set of key-value pairs that represent the data.
2. Collections: A collection is a group of related documents that are stored together in MongoDB. Collections can be thought of as tables in a relational database.
3. Indexes: MongoDB supports various types of indexes, including single-field, compound, and geospatial indexes. Indexes are used to improve query performance.
4. GridFS: MongoDB's GridFS is a specification for storing and retrieving large files, such as images and videos, in MongoDB.
5. Aggregation: MongoDB's aggregation framework provides a way to perform complex data analysis operations, such as grouping, filtering, and sorting, on large datasets.
6. Transactions: MongoDB supports multi-document transactions, which allow multiple operations to be performed atomically.
7. Change streams: MongoDB's change streams provide a way to monitor changes to data in real-time, allowing applications to react to changes as they occur.

Overall, MongoDB provides access to a flexible and powerful data model that can handle a wide range of data types and use cases.

What data can you transfer to Redshift?

You can transfer a wide variety of data to Redshift. This usually includes structured, semi-structured, and unstructured data like transaction records, log files, JSON data, CSV files, and more, allowing robust, scalable data integration and analysis.

What are top ETL tools to transfer data from MongoDb to Redshift?

The most prominent ETL tools to transfer data from MongoDb to Redshift include:

  • Airbyte
  • Fivetran
  • Stitch
  • Matillion
  • Talend Data Integration

These tools help in extracting data from MongoDb and various sources (APIs, databases, and more), transforming it efficiently, and loading it into Redshift and other databases, data warehouses and data lakes, enhancing data management capabilities.