There are times when we want to override a stream's key properties (primary key) or it's incremental replication key. What's the best way to do this in Meltano?
How to override a stream's primary key properties or incremental replication key in Meltano?
1.4k Views Asked by aaronsteers At
2
There are 2 best solutions below
0

After having followed @visch suggestion by using
metadata:
"*":
replication-method: FULL_TABLE
from the logs (when running Meltano in debug mode with --log-level=debug
) in discovery mode you should see something like:
metadata node for tap_stream_id 'mydb-mytable'
From the above you can get the correct collection name and then structure the meltano.yml
accordingly:
extractors:
- name: tap-postgres
select:
- mydb-mytable.*
metadata:
mydb-mytable:
table-key-properties: [id]
replication-method: INCREMENTAL
replication-key: created_at
In particular it was very important for me to add the select
field as otherwise I was getting this error message:
ERROR message=Invalid replication method None!
replication method needs to be either FULL_TABLE or INCREMENTAL
In your Meltano yaml file, you can add a
table-key-properties
and/orreplication-key
override using themetadata
extra config.Docs reference: https://docs.meltano.com/concepts/plugins#metadata-extra
Example yaml code:
This example sets the primary key to
id
and the replication key tocreated_at
.Update regarding wildcards (2022-03-30)
Per @visch's comment, wildcards can also be used in stream names to match multiple streams at once. Such as in these example:
And: