Pipeline Modes
ON THIS PAGE
In case of RDBMS Sources, you can select from the following Pipeline Modes to define how Hevo must read your data from the database:
Custom SQL
Use the Custom SQL mode if you are looking to fetch data in a different structure than how it is stored in your Source tables. Custom SQL mode allows you to fetch data using a custom query at a fixed frequency. Based on the query mode and the parameter/column name specified in the query mode configuration, Hevo fetches data from the Source tables/views.
For example, if you want to fetch data from the view/table named some_table
, then, you can simply write a query like the following:
SELECT * FROM some_table
Hevo runs the following query to fetch the data periodically:
SELECT *
FROM some_table
WHERE updated_timestamp_column > last_polled_time
AND updated_timestamp_column < Now() - delay
ORDER BY updated_timestamp_column ASC
LIMIT 500000
Note that aliased columns cannot directly be used in the job configuration fields. Your query must be written as a table expression before the aliased column can be used. moreover, if your query results in several columns with the same name, they should be aliased uniquely to disambiguate.
Suppose you have two tables with these columns:
user (id, name, updated_ts)
employee (user_id, dept_name, updated_ts)
And, you want to fetch data using the following query and query mode as Delta - Timestamp and timestamp column name as updated_ts
(from the table employee
):
SELECT u.id,
u.name,
u.updated_ts,
e.user_id,
e.dept_name,
e.updated_ts
FROM user u
INNER JOIN employee e
ON u.id = e.id
Then, you must specify the query as:
SELECT *
FROM (SELECT u.id,
u.name,
u.updated_ts AS user_updated_ts,
e.user_id,
e.dept_name,
e.updated_ts AS employee_updated_ts
FROM user u
INNER JOIN employee e
ON u.id = e.id)TABLE_ALIAS
with timestamp column name being employee_updated_ts
The corresponding Hevo query would be:
SELECT *
FROM (SELECT u.id,
u.name,
u.updated_ts AS user_updated_ts,
e.user_id,
e.dept_name,
e.updated_ts AS employee_updated_ts
FROM user u
INNER JOIN employee e
ON u.id = e.id)TABLE_ALIAS
WHERE employee_updated_ts > last_polled_time
AND employee_updated_ts < Now() - delay
ORDER BY employee_updated_ts ASC
LIMIT 5000000
Pipelines created in Custom SQL mode do not have any primary keys defined by default even though the selected Source columns have these. You need to manually define the primary keys to avoid duplicates, even if Auto Mapping is enabled.
You can either do this by setting the primary keys as part of creating transformations or by creating them in the Destination table manually. Read Handling of Updates.
Table
In Table mode, your tables are read individually at a fixed frequency. Use this mode to fetch data from multiple tables in your database, while maintaining control over the ingestion for every table individually. You can fetch data using different query modes.
In Table mode:
-
Hevo does not fetch Views automatically from your database. As a workaround, you can create individual Pipelines in Custom SQL mode to fetch each View. However, some limitations may arise based on the type of data synchronization, the query mode, or the number of Events. Contact Hevo Support for more detail.
-
Hevo does not update the Destination tables for any deletes that may have occurred in the Source data. In log-based replication, deletes can be identified by the field hevo_is_deleted being True for an Event. However, in Table mode, data is fetched using SQL queries, and these do not offer any mechanism to determine the deletes.
BinLog (Binary Logging)
The BinLog mode is applicable for MySQL Source Types. In this mode, data is read using MySQL’s BinLog. This mode is useful when you are looking to replicate the complete database, as is, to the Destination. This mode is very efficient in replicating but leaves you with less control and manageability over data ingestion. Read BinLog Replication and BinLog Alerts.
Change Tracking
The Change Tracking mode is applicable for MS SQL Source Types. It makes use of the Change Tracking feature provided by SQL Server. You may follow the instructions in this guide to enable change tracking for the Source objects. The change retention period should be more than the replication frequency of your Hevo Pipeline to avoid any data loss.
Logical Replication
This mode is applicable for the Postgres Source Types. In this mode, data is replicated using Postgres Write Ahead Log (WAL) set at a logical level (available on Postgres version 9.4 and above). This mode is useful when you are looking to replicate the complete database as it is. Please note that Hevo will create a new Replication Slot for the Pipeline which may lead to higher disk consumption in your Postgres Database. Read about the instructions to set up WAL for logical replication here.
Redo Log
This mode is applicable for the Oracle Source Types. This involves using Oracle Logminer to incrementally ingest the data from Oracle Redo logs. This is the recommended way to replicate data in Oracle. You can read more about Logminer here. Refer to the Oracle Source variants documented in this section for instructions to set up Redo log for an Oracle database.
BinLog Replication
After a historical load of the initial state of the MySQL database, the BinLog is continuously streamed. The first time the data is ingested, the table definitions are directly read from the schema and not the BinLog. Post that, all of the schema updates are read from the BinLog for near real-time replication at scale. This approach supports both deletions and table alterations leading to exactly one-to-one replication. It does not require locks or affect the performance of the database. It is also consistent with the stream processing paradigm allowing near real-time performance.
BinLog Alerts
For Pipelines with BinLog mode, if the BinLog retention period is set as less than 24 hours, (and Hevo has sufficient permissions to read the BinLog configurations), Hevo displays a one-time warning to increase the retention period: “BinLog retention is set to <detected> hours. We recommend having BinLog retention of at least 24 hours to avoid disruption in replication due to spikes.”
Refer to MySQL’s replication reference guide to know about the options available for replication and binary logging. The mysql_rds_set_configuration page provides information on BinLog retention in RDS instances.
See Also
Revision History
Refer to the following table for the list of key updates made to the page:
Date | Release | Description of Change |
---|---|---|
30-Mar-2021 | NA | Added a bullet point in the section Table to explain that Hevo does not handle Source record deletions in the Destination table. |
08-Mar-2021 | 1.58 | Added Change Tracking as a distinct Pipeline mode for MS SQL Source Types in Hevo. |