Organizations often need to integrate data from various sources to gain valuable insights. One common scenario is transferring data from a NoSQL database like MongoDB to a cloud data warehouse like Snowflake for advanced analytics and business intelligence.
However, this process can be challenging, especially for those new to data engineering. This blog post explores three easy methods to seamlessly migrate data from MongoDB to Snowflake, ensuring a smooth and efficient data integration process.
Mongodb’s real-time replication to Snowflake ensures that data is consistently synchronized between MongoDB and Snowflake databases. Due to MongoDB’s schemaless nature, moving the data to a warehouse-like Snowflake for meaningful analysis becomes essential.
What is MongoDB?
MongoDB is a popular NoSQL database management system designed for flexibility, scalability, and performance in handling unstructured or semi-structured data. This document-oriented database presents a view wherein data is stored as flexible JSON-like documents instead of the traditional table-based relational databases. Data in MongoDB is stored in collections, which contain documents.
Features of MongoDB
- Document-Oriented Storage: Stores data in flexible, JSON-like documents (BSON format), allowing for a dynamic schema and easy representation of complex data structures.
- Scalability: Supports horizontal scaling through sharding, distributing data across multiple servers to handle large volumes of data and high traffic.
- Indexing: Provides various indexing options, including single field, compound, geospatial, and text indexes, to optimize query performance.
- High Availability: Features replica sets for automatic failover and data redundancy, ensuring high availability and reliability.
What is Snowflake?
Snowflake is a fully managed service that provides customers with near-infinite scalability of concurrent workloads to easily integrate, load, analyze, and securely share their data. Its common applications include data lakes, data engineering, data application development, data science, and secure consumption of shared data. Snowflake’s unique architecture natively integrates computing and storage. Snowflake also provides various data types for you to export data in any format seamlessly.
Features of Snowflake
- Multi-cluster shared data architecture: It allows point-to-point scaling of computing resources independent of storage.
- Separate Storage and Compute: Optimizes cost performance with the ability to independently scale storage and compute.
- Seamless SQL: Snowflake SQL is simple to perform due to its built-in query platform, which lets you run complex queries.
- Data Security with Sharing: Enables data sharing in real-time without losing privacy and security.
- Data Governance and Compliance: Advanced security features incorporate end-to-end encryption, complying with regulations.
Simplify your data migration from MongoDB to Snowflake using Hevo’s no-code platform. Hevo enables seamless, real-time data integration with automated workflows and reliable data sync, ensuring accurate insights across all your platforms.
Why Hevo is the Best:
- Minimal Learning Curve: Hevo’s simple, interactive UI makes it easy for new users to get started and perform operations.
- Connectors: With over 150 connectors, Hevo allows you to integrate various data sources into your preferred destination seamlessly.
- Schema Management: Hevo eliminates the tedious task of schema management by automatically detecting and mapping incoming data to the destination schema.
- Cost-Effective Pricing: Transparent pricing with no hidden fees, helping you budget effectively while scaling your data integration needs.
Try Hevo today and experience seamless data transformation and integration.
Get Started with Hevo for Free
What are the Methods to Connect MongoDB to Snowflake
These are the methods you can use to move data from MongoDB to Snowflake:
Method 1: Using Hevo’s No-Code Platform
Step 1: Configure MongoDB as a Source
- Step 1.1: Select MongoDB as the source.
- Step 1.2: Provide Credentials to MongoDB – You need to provide details like Hostname, Password, Database Name, and Port number so that Hevo can access your data from the database.
Step 2: Configure Snowflake as a Destination
- Step 2.1: Select Snowflake as the Destination.
- Step 2.2: Enter Snowflake Configuration Details – You can enter the Snowflake Account URL you obtained.
After the connection has been successfully established between the source and the destination, data will start flowing automatically. That’s how easy Hevo makes it for you. With this, you have successfully set up MongoDB to Snowflake Integration using Hevo Data.
Migrate from MongoDB to Snowflake
Migrate from MongoDB to BigQuery
Migrate from MongoDB to Redshift
Method 2: Writing Custom Scripts to Move Data
Below is a quick snapshot of the broad framework to move data.
The steps are:
Let’s take a detailed look at all the required steps for MongoDB Snowflake Integration:
Step 1: Extracting data from MongoDB Collections
mongoexport is the utility coming with MongoDB which can be used to create JSON or CSV export of the data stored in any MongoDB collection.
The following points are to be noted while using mongoexport :
mongoexport
should be running directly in the system command line, not from the Mongo shell (the Mongo shell is the command-line tool used to interact with MongoDB)
- The connecting user should have at least the read role on the target database. Otherwise, a permission error will be thrown.
mongoexport
, by default, uses primary read (direct read operations to the primary member in a replica set) as the read preference when connected to Mongos or a replica set.
- Also, note that the default read preference, which is “primary read,” can be overridden using the –readPreference option
Below is an example showing how to export data from the collection named contact_coln to a CSV file in the location /opt/exports/csv/col_cnts.csv
mongoexport --db users --collection contact_coln --type=csv --fields empl_name,empl_address --out /opt/exports/csv/empl_contacts.csv
- To export in CSV format, you should specify the column names in the collection to be exported. The above example specifies the empl_name and empl_address fields to export.
The output would look like this:
empl_name, empl_address
Prasad, 12 B street, Mumbai
Rose, 34544 Mysore
- You can also specify the fields to be exported in a file as a line-separated list of fields to export – with one field per line. For example, you can specify the emplyee_name and employee_address fields in a file empl_contact_fields.txt :
empl_name,
empl_address
Then, applying the --fieldFile
option, define the fields to export with the file:
mongoexport --db users --collection contact_coln --type=csv --fieldFile empl_contact_fields.txt --out /opt/backups/emplyee_contacts.csv
- Exported CSV files will have field names as a header by default. If you don’t want a header in the output file,–noHeaderLine option can be used.
- As in the above example –fields can be used to specify fields to be exported. It can also be used to specify nested fields. Suppose you have post_code filed with employee_address filed, it can be specified as employee_address.post_code
Incremental Data Extract From MongoDB
- So far, we have discussed extracting an entire MongoDB collection. It is also possible to filter the data while extracting from the collection by passing a query to filter data. This can be used for incremental data extraction. –query or -q is used to pass the query.
- For example, let’s consider the above-discussed contacts collection. Suppose the ‘updated_time’ field in each document stores the last updated or inserted Unix timestamp for that document.
mongoexport -d users -c contact_coln -q '{ updated_time: { $gte: 154856788 } }' --type=csv --fieldFile employee_contact_fields.txt --out exportdir/emplyee_contacts.csv
- The above command will extract all records from the collection with updated_time greater than the specified value,154856788. You should keep track of the last pulled updated_time separately and use that value while fetching data from MongoDB each time.
Migrate your data seamlessly
No credit card required
Step 2: Optional Data Type conversions and Data Formatting
Along with the application-specific logic to be applied while transferring data, the following are to be taken care of when migrating data to Snowflake.
- Snowflake can support many of the character sets, including UTF-8. Read the full list of supported encodings.
- If you have worked with cloud-based data warehousing solutions before, you might have noticed that most lack support and standard SQL constraints like
UNIQUE, PRIMARY KEY, FOREIGN KEY, NOT NULL
. However, keep in mind that Snowflake supports most SQL constraints.
- Snowflake data types cover all basic and semi-structured types like arrays. It also has built-in functions to work with semi-structured data. The list below shows Snowflake data types that are compatible with the various MongoDB data types.
MongoDB Data Type | Snowflake Data Type |
DOUBLE | DOUBLE,
DOUBLE PRECISION
|
STRING | STRING, TEXT |
BINARY DATA | BINARY |
OBJECTID | STRING, TEXT |
BOOLEAN | BOOLEAN |
DATE | DATE |
NULL | NULL |
32-BIT INTEGER | INTEGER |
TIMESTAMP | TIMESTAMP |
64-BIT INTEGER | INT64 |
DECIMAL128 | DECIMAL |
- As you can see from this table of MongoDB vs Snowflake data types, while inserting data, Snowflake allows almost all of the date/time formats. You can explicitly specify the format while loading data with the help of the File Format Option. We will discuss this in detail later. The full list of supported date and time formats can be found here.
Step 3: Staging Data Files
If you want to insert data into a Snowflake table, the data should be uploaded to online storage like S3. This process is called staging. Generally, Snowflake supports two types of stages – internal and external.
A. Internal Stage
For every user and table, Snowflake will create and allocate a staging location that is used by default for staging activities, and those stages will be named using some conventions mentioned below.
Note: It is also possible to create named internal stages.
- The user stage is named ‘@~’
- The name of the table stage is the name of the table.
- The user or table stages can’t be altered or dropped.
- It is not possible to set file format options in the default user or table stages.
Named internal stages can be created explicitly using SQL statements. While creating named internal stages, file format and other options can be set, which makes loading data to the table very easy with minimal command options. SnowSQL has a lightweight CLI client can run commands like DDLs or data loads. This is available in Linux/Mac/Windows.
Below are some example commands to create a stage:
create or replace stage my_mongodb_stage
copy_options = (on_error='skip_file')
file_format = (type = 'CSV' field_delimiter = '|' skip_header = 2);
The PUT
command is used to stage data files to an internal stage. The syntax is straightforward – you only need to specify the file path and stage name :
PUT file://path_to_file/filename internal_stage_name
E.g.:
Upload a file named emplyee_contacts.csv in the /tmp/mongodb_data/data/ directory to an internal stage named mongodb_stage
put file:////tmp/mongodb_data/data/emplyee_contacts.csv @mongodb_stage;
There are many configurations to maximize data load spread while uploading the file like the number of parallelisms, automatic compression of data files, etc.
B. External Stage
AWS and Azure are the industry leaders in the public cloud market. It is not surprising that Snowflake supports both Amazon S3 and Microsoft Azure for external staging locations. If the data is in S3 or Azure, all you need to do is create an external stage to point it, and the data can be loaded into the table.
IAM credentials are to be specified to create an external stage on S3. If the data in S3 is encrypted, encryption keys should also be given.
create or replace stage mongod_ext_stage url='s3://snowflake/data/mongo/load/files/'
credentials=(aws_key_id='181a233bmnm3c' aws_secret_key='a00bchjd4kkjx5y6z');
encryption=(master_key = 'e00jhjh0jzYfIjka98koiojamtNDwOaO8=');
Data to the external stage can be uploaded using respective cloud web interfaces or provided SDKs or third-party tools.
Step 4: Copying Staged Files to Snowflake Table
COPY INTO
is the command used to load data from the stage area into the Snowflake table. Compute resources needed to load the data are supplied by virtual warehouses, and the data loading time will depend on the size of the virtual warehouses
E.g.:
A. To load from a named internal stage
copy into mongodb_internal_table
from @mngodb_stage;
B. To load from the external stage :(Here, only one file is specified)
copy into mongodb_external_stage_table
from @mongodb_ext_stage/tutorials/dataloading/employee_contacts_ext.csv;
C. To copy directly from an external location without creating a stage:
copy into mongodb_table
from s3://mybucket/snow/mongodb/data/files
credentials=(aws_key_id='$AWS_ACCESS_KEY_ID' aws_secret_key='$AWS_SECRET_ACCESS_KEY')
encryption=(master_key = 'eSxX0jzYfIdsdsdsamtnBKOSgPH5r4BDDwOaO8=')
file_format = (format_name = csv_format);
D. The subset of files can be specified using patterns
copy into mongodb_table
from @mongodb_stage
file_format = (type = 'CSV')
pattern='.*/.*/.*[.]csv[.]gz';
Some common format options used in the COPY command for CSV format :
- COMPRESSION – Compression used for the input data files.
- RECORD_DELIMITER – The character used as records or line separator
- FIELD_DELIMITER -Character used for separating fields in the input file.
- SKIP_HEADER – Number of header lines to skip while loading data.
- DATE_FORMAT – Used to specify the date format
- TIME_FORMAT – Used to specify the time format
Step 5: Migrating to Snowflake
While discussing data extraction from MongoDB, both full and incremental methods are considered. Here, we will look at how to migrate that data into Snowflake effectively. Snowflake’s unique architecture helps to overcome many shortcomings of existing big data systems. Support for row-level updates is one such feature. Out-of-the-box support for the row-level updates makes delta data load to the Snowflake table simple. We can extract the data incrementally, load it into a temporary table and modify records in the final table as per the data in the temporary table.
There are three popular methods to update the final table with new data after new data is loaded into the intermediate table.
- Update the rows in the final table with the value in a temporary table and insert new rows from the temporary table into the final table.
UPDATE final_mongodb_table t
SET t.value = s.value
FROM intermed_mongdb_table in
WHERE t.id = in.id;
INSERT INTO final_mongodb_table (id, value)
SELECT id, value FROM intermed_mongodb_table WHERE NOT id IN (SELECT id FROM final_mongodb_table);
2. Delete all rows from the final table which are also present in the temporary table. Then insert all rows from the intermediate table to the final table.
DELETE .final_mogodb_table f
WHERE f.id IN (SELECT id from intermed_mongodb_table);
INSERT final_mongodb_table (id, value)
SELECT id, value FROM intermed_mongodb_table;
3. MERGE statement – Both inserts and updates can be carried out simultaneously using a single MERGE
statement. We can use this option to apply changes to the temporary table.
MERGE into final_mongodb_table t1 using tmp_mongodb_table t2 on t1.key = t2.key WHEN matched then update set value = t2.value WHEN not matched then INSERT (key, value) values (t2.key, t2.value);
What are the Limitations of using Custom Scripts?
Even though the manual method will complete your work, you might face some difficulties. I have listed below some limitations that might hinder your data migration process:
- This approach works decently well if you want to migrate data in batches. However, this approach becomes highly tedious and time-consuming if you are looking for real-time data availability.
- With this method, you can only move data from one place to another but not transform the data when in transit.
- When you write code to extract a subset of data, those scripts often break as the source schema changes or evolves. This can result in data loss.
- Choosing between data platforms is crucial, especially when integrating MongoDB with Snowflake or Databricks to enhance your data architecture.
The method mentioned above has a high scope of errors. This might impact Snowflake’s availability and accuracy of data.
Method 3: Using Native Cloud Tools and Snowpipe
Snowpipe, provided by Snowflake, enables a shift from the traditional scheduled batch-loading jobs to a more dynamic approach. It supersedes the conventional SQL COPY command, facilitating near real-time data availability. Snowpipe imports data into a staging area in smaller increments, working in tandem with your cloud provider’s native services, such as AWS or Azure.
For illustration, consider these scenarios for each cloud provider, detailing the integration of your platform’s infrastructure and the transfer of data from MongoDB to a Snowflake warehouse:
AWS: Utilize a Kinesis delivery stream to deposit MongoDB data into an S3 bucket. With an active SNS system, the associated successful run ID can be leveraged to import data into Snowflake using Snowpipe.
Azure: Activate Snowpipe with an Event Grid message corresponding to Blob storage events. Your MongoDB data is initially placed into an external Azure stage. Upon creating a blob storage event message, Snowpipe is alerted via Event Grid when the data is primed for Snowflake insertion. Subsequently, Snowpipe transfers the queued files into a pre-established table in Snowflake. For comprehensive guidance, Snowflake offers a detailed manual on the setup.
Limitations of Using Native Cloud Tools and Snowpipe
- A deep understanding of NoSQL databases, Snowflake, and cloud services is crucial. Troubleshooting in a complex data pipeline environment necessitates significant domain knowledge, which may be challenging for smaller or less experienced data teams.
- Long-term management and ownership of the approach can be problematic, as teams outside the Data department often control the resources used. This requires careful coordination with other engineering teams to establish clear ownership and ongoing responsibilities.
- The absence of native tools for applying the schema to NoSQL data presents difficulties in schematizing the data, potentially reducing its value in the data warehouse.
Use Cases For Migrating MongoDB to Snowflake
- Snowflake’s core is a powerful SQL engine that integrates BI and analytics tools seamlessly. Its SQL capabilities extend beyond relational data, enabling access to MongoDB’s JSON data, with its variable schema and nested structures, through SQL. Snowflake’s extensions and the creation of relational views make this JSON data readily usable with SQL-based tools.
- Snowflake’s system supports JSON natively, which is central to MongoDB’s document model. This allows direct loading of JSON data into Snowflake without needing to convert it into a fixed schema, eliminating the need for an ETL pipeline and concerns about evolving data structures.
- Snowflake’s architecture is designed for scalability and elasticity online. It can handle large volumes of data at varying speeds without resource conflicts with analytics, supporting micro-batch loading for immediate data analysis. Scaling up a virtual warehouse can speed up data loading without causing downtime or requiring data redistribution.
- Migrating data from MongoDB to Snowflake allows businesses to leverage advanced analytics capabilities, especially for use cases like customer segmentation and real-time reporting. Learn more about the use cases of connecting to MongoDB.
Additional Resources for MongoDB Integrations and Migrations
Conclusion
In this blog, we have three methods you can use to migrate your data from MongoDB to Snowflake. However, the choice of migration method can impact the process’s efficiency and complexity. Using custom scripts or Snowpipe for data ingestion may require extensive manual effort, face data consistency and real-time update challenges, and demand specialized technical skills.
For using the Native Cloud Tools, you will need a deep understanding of NoSQL databases, Snowflake, and cloud services. Moreover, troubleshooting can also be troublesome in such an environment. On the other hand, leveraging Hevo simplifies and automates the migration process by providing a user-friendly interface and pre-built connectors.
Want to take Hevo for a spin? SIGN UP to explore a hassle-free data migration from MongoDB to Snowflake. You can also have a look at the unbeatable pricing that will help you choose the right plan for your business needs.
FAQs
1. Does MongoDB work with Snowflake?
Yes, MongoDB can work with Snowflake through data integration and migration processes.
2. How do I migrate a database to a Snowflake?
To migrate a database to Snowflake:
1. Extract data from the source database using ETL tools or scripts.
2. Load the extracted data into Snowflake using Snowflake’s data loading utilities or ETL tools, ensuring compatibility and data integrity throughout the process.
3. Can Snowflake handle NoSQL?
While Snowflake supports semi-structured data such as JSON, Avro, and Parquet, it is not designed to directly manage NoSQL databases.
4. Which SQL is used in Snowflake?
Snowflake uses ANSI SQL (SQL:2003 standard) for querying and interacting with data.
Faisal loves data science and combines his problem-solving ability and passion for writing to help data teams in solving complex business problems.