The synchronize
action demonstrated in the sample code acts the same way every time it is called: the connector ingests every synchronize
action is used.
When the synchronize
action runs again, it is more efficient to send ingest-add commands only for new
To implement an incremental synchronize it is often useful to store state information, for example a list of files retrieved and the time when they were last modified. This information can then be compared to the files currently in the repository. FetchTask
(specifically SynchronizeTask
) provides a datastore file name when you call task.datastoreFilename()
. The file name is consistent between actions, and can therefore be used to store persistent state data. You can store the information in a format of your choice.
Micro Focus recommends that you use the file name returned by task.datastoreFilename()
to store all state information for the task. The advantages of using this file name include:
backup
and restore
actions are used.
|