Skip to content

Commit 7286e37

Browse files
updated mapper with default ignoreReads
1 parent ba01ddb commit 7286e37

File tree

1 file changed

+5
-5
lines changed
  • connectors/postgres/demo/config/samples/postgres/mappers

1 file changed

+5
-5
lines changed

connectors/postgres/demo/config/samples/postgres/mappers/mapper1.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ schema: public
22
tables:
33
- table: emp
44
mapper:
5-
id: Test
6-
processorID: Test
7-
publishBefore: false
8-
passThrough: false
9-
ignoreReads: true # false (default) reloads the data from last checkpoint
5+
id: Test # mapper Id
6+
processorID: Test # processor ID for the mapper
7+
publishBefore: false # false (default) Global setting, that specifies if before values have to be published for all columns - This setting could be overridden at each column level
8+
passThrough: false # false (default) If this is set to true, all of the Columns will be in the output without individual mappings. You still need to map the PK column.
9+
ignoreReads: false # false (default) If set to true, reads will be ignored
1010
columns:
1111
- src: empno
1212
target: EmployeeNumber

0 commit comments

Comments
 (0)