Yes, you can achieve this by configuring your syncs to use "Incremental | Append + Deduped" for most of the time and then manually triggering a "Full Refresh | Overwrite" sync periodically, such as once per week. Here’s how you can do it: 1.
Set Up Incremental Sync: - Configure your syncs to use the "Incremental | Append + Deduped" mode. This mode will help you save on network costs by only syncing the changes since the last sync. 2.
Manual Full Refresh Sync: - Once a week, you can manually trigger a "Full Refresh | Overwrite" sync. This will ensure that your data is fully refreshed and any discrepancies are corrected. ### Steps to Configure 1.
Configure Incremental Sync: - Go to your Airbyte dashboard. - Select the connection you want to configure. - Set the sync mode to "Incremental | Append + Deduped". 2.
Manual Full Refresh Sync: - On the day you want to perform a full refresh, go to the same connection. - Change the sync mode to "Full Refresh | Overwrite". - Trigger the sync manually. - After the sync is complete, revert the sync mode back to "Incremental | Append + Deduped". ### Known Limitations Be aware of the known limitations of the "Incremental | Append + Deduped" mode. For instance, if modifications to the underlying records are made without properly updating the cursor field, the updated records won't be picked up by the incremental sync as expected. This is because the source connectors extract delta rows using a SQL query like:
sql select * from table where cursor_field > 'last_sync_max_cursor_field_value'
[Source](
https://docs.airbyte.com/using-airbyte/core-concepts/sync-modes/incremental-append-deduped#known-limitations) ### Additional Resources - [Incremental - Append + Deduped](
https://docs.airbyte.com/understanding-airbyte/connections/incremental-append-deduped) - [Full Refresh - Overwrite](
https://docs.airbyte.com/understanding-airbyte/connections/full-refresh-overwrite/) By following these steps, you can optimize your sync strategy to balance between network cost savings and data accuracy.