Skip to main content

Documentation Index

Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Create Read-Replica (optional)

We recommend syncing data using a read-replica of your database to ensure sync doesn’t affect your primary database instance. If you wish to sync against Primary, feel free to skip this step.Refer this documentation to create a read-replica.

Create user

Create a sync user for Integrate.io by executing,
CREATE USER 'flydata'@'%' IDENTIFIED BY '<your_password>';
Grant necessary privileges,
GRANT SELECT, RELOAD, REPLICATION SLAVE, REPLICATION CLIENT, LOCK TABLES ON *.* TO 'flydata'@'%';
FLUSH PRIVILEGES;

Enable binary logging

Create a DB Parameter Group and set the following parameters:
ParameterValue
binlog_formatROW
binlog_row_imageFULL
binlog_expire_logs_seconds604800 (Minimum 1 day or 86400)
These are recommended values for replication but not required. Set the recommended values if you encounter timeouts.
ParameterValue
net_read_timeout3600
net_write_timeout3600
wait_timeout86400
Assign the newly created parameter group to your database and reboot your database instance. Confirm your changes by checking the binlog status,
SHOW GLOBAL VARIABLES LIKE 'log_bin';

Increase binlog retention

To increase the binlog retention of the DB cluster, use the mysql_rds_set_configuration procedure. You can run the following command and sample parameters on the writer instance to retain the binlog files for 7 days (Minimum 1 day)
CALL mysql.rds_set_configuration('binlog retention hours', 168);
Last modified on April 15, 2026