Incremental Import
Using Holistics Import allows you to quickly ETL/sync data from different sources into your data-warehouse automatically.
As your source data grows everyday, incremental Import allows you to load data incrementally, loading only the data that's been changed. This reduces the need to load old/untouched data.
When Your Past Records Data Don't Change
If your past records/data don't change (example: weblogs, click streams, etc), on every run, Holistics simply figure out the new data that haven't been imported over, and perform the import.
You need to specify to Holistics what is your increment_column
. It will rely on this column
to decide what data to extract from source to load into data warehouse.
Examples of increment_column:
- ID (auto-increasing primary key)
- timestamp / created_at: timestamp at which the record is created
When Your Past Records Data Change
This is when your past records data can change over time (example would be bookings
with status
column).
In this case Holistics would require you to specify an additional column called primary_key
(or primary key / unique column). This
is needed to perform an upsert operation (or INSERT ON DUPLICATE OVERWRITE), where existing records in your data-warehouse will
be overwritten.
In the above case, your table would need to contain 2 columns:
updated_at
: timestamp at which your record is last updated. Configured asincremental_column
id
: table's unique or primary key. Configured asprimary_key
When You Want To Import Records In A Custom Range
By default, incremental import only imports the records whose incremental_column
value is
greater than the current maximum value in the destination table.
In case you want to specify a range of values for the incremental_column
, you can use 'Custom Range' import execution mode.
NOTE
- Currently, Custom Range import only supports importing data from MongoDB and OracleDB.
- To use Custom Range import, you need to use Holistics CLI. See this doc to learn how to set up CLI and use it.
Usage
First, you also need to create a Data Import in Incremental mode (similar to the above section).
Again, you can also the primary_key
column to overwrite existing records in the destination table similar to this section.
Then, execute your Data Import in Custom Range execution mode by entering the following command in Holistics CLI:
holistics import execute \
-j <data_import_id> \
--custom-range \
--range-start <range_start> \
--range-end <range_end>
Arguments:
-j
: The id of your Data Import--custom-range
: Specify the execution mode to be Custom Range mode--range-start
: The starting value (inclusive) of theincremental_column
which will be chosen for import--range-end
: The ending value (exclusive) of theincremental_column
which will be chosen for import
Example
Let's say we have a Data Import id 1
, which is configured to import data from this table:
We execute this command:
holistics import execute -j 1 --custom-range --range-start 'Day 2' --range-end 'Day 4'
As the result, all records whose updated_at
is from Day 2
upto (but not including) Day 4
will be imported to the destination table.
Handling Deleted Records
In either of the above case, if you have records in source that get hard-deleted, doing incremental import will not be able to capture these deleted records and apply in the destination table. In this case there are 2 ways to handle this.
Doing Regular Full Import
You can schedule a full import every week to reload the entire table data.
Moving To Soft-Delete
The recommended ways to handle this is to move your application logic to using soft-delete (i.e just mark the record as deleted instead of actually deleting it). Usually this is implemented by:
- Adding a
deleted_at
column to your table, default toNULL
(not deleted). A record with non-NULL value is considered deleted. - When a record is deleted, set both
deleted_at
andupdated_at
to the current time.
With this setup, the Incremental approach as described above will work as normal.
A Note On Soft-Delete
Note that aside from serving the incremental import purpose above, soft-deletion is also our recommended way:
Operations: You don't lose track of old data - a hard-deleted record is gone forever and you would never be able to restore it. A user is accidentally deleted cannot be restored. A deleted order cannot be traced back.
Analytics: Your records don't just sit alone but it has relational with other data (a booking would have user_id). If we hard-delete the user, we won't be able to make sense of the booking data any longer.