Details
Description
The overall logic of the synchronization (1.2) / incremental pull (2.0) process can be summarized as:
- invoke underlying connector's getLatestSyncToken
- invoke underlying connector's sync
- store the value for getLatestSyncToken for subsequent invocation
As a consequence, when one synchronizing item (SyncDelta) generates an error, the whole process might be interrupted without saving the updated sync token, and next invocation will start again from the beginning, without considering the successful items passed before the error occurred.
The process should be changed as follows, instead:
- invoke underlying connector's getLatestSyncToken
- invoke underlying connector's sync: for each SyncDelta, temporary store the related syncToken field;
- store the last successful item's syncToken value - or getLatestSyncToken if no error occurred - for subsequent invocation
Attachments
Issue Links
- breaks
-
SYNCOPE-923 Sync / Pull task not configured for delete causes incremental sync to prematurely stop
- Closed
-
SYNCOPE-936 Sync token reset to NULL when no SyncDelta items are available
- Closed