Starting from r_keeper version 7.5.4, it is possible to update only selected collections at the lower-level server linked to the restaurant. This article describes the process of selective and scheduled synchronization.
The following options are available at the moment:
The synchronization schedule is edited in a separate file — Syncconfig.ini.
Specify the path to this file in the report server .ini file: SyncSchdFile = "Y:\syncconf.ini". If this parameter is not specified, the file must be named syncconf.ini, and be located along with the server:
The file contains an optional common section [*] and sections related to report servers (network names).
The server checks presence of this file at startup, then searches a section with its network name in it. If there is no such section, it uses parameters from the common section [*]. If there is no common section, the server keeps working in a standard way.
Example of the schedule settings file (any of section can be missing):
[*] RefsSyncMode = 1 ;; synchronization execution time in CRON.CRON format 50 10 * * * means "always at 10:50". See more details at https://en.wikipedia.org/wiki/Cron SyncSchedule = 40 20 * * * SyncOnUpLink = 0 SyncOnReload = 0 ;; filter by collection IDs, starting from 7.6.2.104 names are accepted RestFilterIn = 137,61,63,71,70,94,152,159,48,49,59,79 ;; list of IDs of collections (starting from 7.6.2.104 names are accepted) for which only active elements are transmitted skipDeleteIn = EMPLOYEES [IMxREPS2x1] RefsSyncMode = 1 SyncSchedule = 30 10 * * * SyncOnUpLink = 0 SyncOnReload = 0 [IMxREPS2x2] RefsSyncMode = 1 SyncSchedule = 30 10 * * * SyncOnUpLink = 0 SyncOnReload = 0 |
Parameters are independent of each other
* RefsSyncMode — whether scheduled synchronization is enabled. If not, there will be no synchronization on time, but there will be synchronization when the connection is restored and the server is started.
* SyncOnUpLink — whether synchronization when connecting to the upper-level server is enabled. If not, synchronization will not occur when the connection is restored.
* SyncOnReload — to synchronize at server startup. If the parameter is set to 0 but SyncOnUpLink = 1, synchronization will still be performed when the connection is restored. So, although this parameter is independent, it only makes sense with SyncOnUpLink = 0.
* SyncSchedule — synchronization execution time in CRON format. CRON 50 10 * * * means always at 10:50. See more details at https://en.wikipedia.org/wiki/Cron
This format allows to perform synchronization at any time but once a day. Therefore, specifying hours and minutes is mandatory. |
Possible operational scheme:
REF
||
REP TRANSIT constant synchronization but filtering is used (REST_FILTER_IN)
||
REP Local Restaurant Server (scheduled synchronization)
||
MID
For REP_TRANSIT generally syncconf.ini
RefsSyncMode = 0 SyncSchedule = * SyncOnUpLink = 1 SyncOnReload = 1 RestFilterIn = 137,61,63,71,70,94,152,159,48,49,59,79 // filter by collection IDs, starting from 7.6.2.104 names are accepted skipDeleteIn = EMPLOYEES // list of IDs of collections (starting from 7.6.2.104 names are accepted) for which only active elements are transmitted |
Filter does not work for all collections! Filter only works in case of full collection flow. |