Skip to main content
Common Reference

TimeDelay (delay) Filter

The TimeDelayFilter delays writing events to the THL and should be used only on Appliers in the remote-to-thl stage. This delays writing the transactions into the THL files, but allows the application of the data to the database to continue without further intervention.

note

The delayInMs Filter should be used instead if you need to allow a delay precision in milliseconds.

Pre-configured filter namedelay
Classnamecom.continuent.tungsten.replicator.filter.TimeDelayFilter
Property prefixreplicator.filter.delay
Stage compatibilityremote-to-thl
tpm Option compatibilitysvc-thl-filters
Data compatibilityAny event

Parameters

ParameterTypeDefaultDescription
delaynumeric300Number of seconds to delay transaction processing row

The TimeDelayFilter delays the application of transactions recorded in the THL. The delay can be used to allow point-in-time recovery of DML operations before the transaction has been applied to the Target, or where data may need to be audited or checked before transactions are committed.

note

For effective operation, Source and Targets should be synchronized using NTP or a similar protocol.

To enable the TimeDelayFilter, update the tungsten.ini configuration file to enable the filter. For example, to enable the delay for 600 seconds:

shell> vi /etc/tungsten/tungsten.ini
[serviceName]
...
svc-applier-filters=delay
property=replicator.filter.delay.delay=600
...

shell> tpm update

Time delay of transaction events should be performed with care, since the delay will prevent a Target from being up to date compared to the Source. In the event of a node failure, an up to date Target is required to ensure that data is safe.