Replication Keys are columns that Stitch uses to identify new and updated data for replication. As Stitch’s Mongo integration uses only Incremental Replication, when you set a Mongo collection to sync, you’ll also need to define a Replication Key.
Incorrectly setting a Replication Key can cause data discrepancies, latency, and high row counts. As Mongo Replication Keys have their own set of quirks, it’s important to understand how they work and what makes a good key.
Replication Keys vs. Primary Keys
When it comes to replicating your data, there are a lot of ‘keys’ involved. It can be difficult to keep them all straight, but aside from Replication Keys, there’s one more you should keep in mind: Primary Keys.
In Stitch, Replication Keys and Primary Keys serve two different purposes:
-
Replication Keys are used during the extraction part of the replication process - or when Stitch is querying your data source - to identify new and updated data for replication.
In the Stitch app, Replication Keys have a next to the column name.
-
Primary Keys are used during the last step of the replication process, which is when Stitch loads replicated data into your data warehouse. Primary Keys identify unique rows within a table and ensure that only the most recently updated version of that record appears in your data warehouse.
In the Stitch app, Primary Keys have a next to the column name.
While a column can sometimes be used as both a Replication Key and a Primary Key, these are not necessarily always the same column.
Replication Key Requirements
Stitch uses a field you define - called a Replication Key - to identify new and updated data for replication. For Mongo connections, Stitch requires that the Replication Key field:
- be indexed, AND
- exist in the root of the document.
If you want to sync Mongo data and are going to add query parameters - which is what Incremental Replication does - undue stress could be put on your Mongo database. By indexing the fields you want to sync, that stress can be relieved.
Recommendations & Gotchas
While a field need only be indexed and exist in the root of the document to be a Mongo Replication Key, we have some recommendations (and things you should keep in mind) when selecting a field to be a Replication Key.
Replication Key Recommendations
-
Replication Key fields should contain only one data type. While Mongo allows you to have multiple data types in a single field, we strongly recommend keeping Replication Key fields to just one. This is because of the way Mongo compares and sorts data types and how this can impact replication.
-
Date and timestamp fields are great Replication Key candidates. We’re big fans of using
updatedAt
ormodifiedAt
. This is the best way to ensure that both new records and updates to existing records are captured.In some cases - for example, if a table is Append-Only -
createdAt
may also be suitable. -
If date or timestamp fields can’t be used, Replication Keys should update incrementally. Fields with
Integer
andObjectId
data types can be used as Replication Keys if they update incrementally, which allows Stitch to identify aMAX
value and detect new records for replication.This is suitable for Append-Only tables only, meaning that the table is only updated with new data. If existing records are ever modified, a field like
updatedAt
ormodifiedAt
should be used instead.
Replication Key Gotchas
Before selecting a Replication Key for a collection, there are a few things you should keep in mind:
-
Changing a collection’s Replication Key requires a full re-sync of the collection. To change the Replication Key for a Mongo collection, Stitch must perform a full re-sync of the collection.
-
Stitch will not capture hard deletes.
-
NULL is a defined BSON data type in Mongo. Unlike SQL,
NULLs
can actually compare to other data types and replicate without issue. -
Mongo fields may contain more than one data type. These data types also have a hierarchy. Fields in Mongo (even
_id
) can contain more than one data type. In addition, Mongo “ranks” data types, meaning that some are considered greater than others. This can lead to problems detecting new data.While Stitch doesn’t require single data types for Replication Keys, we strongly recommend it. We’ve seen a lot of data discrepancies arise from this.
Here’s an example that demonstrates why this could be a problem in Stitch:
- You sync a table, using a field called
_id
as the Replication Key. This field contains bothObjectId
andString
data types. - A historical sync of the table completes.
- Because Mongo considers
ObjectId
data types to be greater thanStrings
, Stitch will record theMAX
value as the last replicated record containing anObjectId
data type in the Replication Key field. - New records are added to the table.
- During the next sync, Stitch uses the last recorded
MAX
value - in this case, anObjectId
- to identify new/updated data. Remember: only records with Replication Key values greater than or equal to this value will be selected for replication. - Because
ObjectIds > Strings
, all records withStrings
are considered to be less than the last recordedMAX
value. This means Stitch won’t be able to detect these records and replicate them to your data warehouse.
Because Stitch may be unable to correctly identify new and updated data due to how data types are sorted, it’s best to keep Replication Key fields to a single data type. See below in the Checking for Multiple Data Types section for guidance on verifying a field’s data types.
- You sync a table, using a field called
-
Some data types may not auto-increment. Before using the field, you should verify the field’s data type and that it auto-increments. Otherwise, Stitch may have issues detecting new data.
Checking for Multiple Data Types
To determine if a field has more than one data type and is thus suitable to be used as a Replication Key, we recommend running the following queries. We’re using Mongo version 3.0+, so keep in mind that these queries may be different for your version.
Run this query to count how many of a single data type there are in the table’s Replication Key field, replacing:
nameOfCollection
with the collection name,replicationKeyField
with the field name, andknownDataTypeId
with the Mongo BSON data type ID. You can find the data type IDs here in Mongo’s docs.
Next, run this query to get a count of all records in the table:
Compare the results. If the counts are equal, then the Replication Key field contains only one data type.
Additionally, the following query will return the MAX
value for the table’s Replication Key field. This can be helpful when comparing your source database to what’s in your data warehouse:
Defining Replication Keys
After you set a collection to sync, you’ll be prompted to select a Replication Key.
After you select a field from the drop-down, click the Update Settings button.
Changing Existing Replication Keys
Changing an existing Replication Key for a collection is simple - just open up the Collection Settings page for the collection and select the new Replication Key field from the drop-down menu.
When you change a collection’s Replication Key, Stitch will queue a full re-sync of the collection’s data. We do this to ensure that there aren’t any gaps because of the Replication Key switch.
Resetting Replication Keys
There may be times when you need to fully replicate a collection (or collections) that usually update incrementally. If, for example, you add a new field and want to backfill data for already-replicated rows, forcing a full re-sync of the collection will populate the field for existing rows and replicate new records. You can do this by resetting Replication Keys.
1. This will overwrite existing data, not clear it.
2. Additionally, this process will lead to increased row counts which will count towards your limit.
3. This process is not reversible.
If you have questions or concerns about resetting Replication Keys, we encourage you to reach out to support before proceeding.
Mongo Replication Keys can be reset at the integration level only.
To reset Replication Keys, do the following:
-
Click into the integration from the Stitch Dashboard page.
-
Click Settings.
- Scroll down to the Reset Replication Keys section.
- Click the Reset Keys button.
- When prompted, click OK to confirm.
- A Success! message will display at the top of the page.
At this point, a full re-sync of the integration will be queued. Note that if there is a large volume of data to be replicated, it may take some time before you see the changes in your data warehouse.
Related | Troubleshooting |
Questions? Feedback?
Did this article help? If you have questions or feedback, please reach out to us.