The insertsonly filter filters
events to only include ROW-based events using
INSERT.
| Pre-configured filter name |
insertsonly
| ||
| JavaScript Filter File |
tungsten-replicator/support/filters-javascript/insertonly.js
| ||
| Property prefix |
replicator.filter.insertonly
| ||
| Stage compatibility |
q-to-dbms
| ||
| tpm Option compatibility |
--svc-applier-filters
| ||
| Data compatibility | Row events | ||
| Parameters | |||
| Parameter | Type | Default | Description |
This is achieved by examining each row and removing row changes that do
not match the INSERT action type:
if(oneRowChange.getAction()!="INSERT")
{
rowChanges.remove(j);
j--;
}