Overview
Last updated
Last updated
You are currently browsing the Cinchy v5.0-v5.5 Data Sync documentation. For the most up to date documentation, please navigate to https://platform.docs.cinchy.com/data-syncs/getting-started-with-data-syncs
Cinchy provides two methods of synchronizing data: batch sync and real-time sync. You can run a batch sync as a one time data load operation, or you can schedule it to run periodically. The real-time sync pushes individual events in real-time to the target system through the Cinchy listener and worker process.
At a high level, running a syncdata operation performs these steps:
Connects to Cinchy and creates a log entry in the Execution Log table with a status of running.
Streams the source and target into the CLI. Any malformed records or duplicate sync keys are written to source and target errors csvs (based on the temp directory)
Compares the sync keys to match up source and target records
Checks if there are changes between the matched records
For the records where there are changes, groups them into insert, update, and delete batches.
Sends the batches to the target, records failures in sync errors csv and Execution Errors table.
Once complete, updates Execution Log entry with final status and execution output.
At a high level, this is the process a real-time message goes through. We assume there is a listener and worker already set up.
Listener is successfully subscribed and waiting for events from streaming source
Listener receives a message from a streaming source and pushes it to SQL Server Broker.
Worker picks up message from SQL Server Broker
Worker fetches the matching record from the target based on the sync key
If there are changes detected, the worker pushes them to the target system. Logs successes and failures in the worker's log file.