How to override a stream's primary key properties or incremental replication key in Meltano?

1.4k Views Asked by At

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?

2

There are 2 best solutions below

3
On BEST ANSWER

In your Meltano yaml file, you can add a table-key-properties and/or replication-key override using the metadata extra config.

Docs reference: https://docs.meltano.com/concepts/plugins#metadata-extra

Example yaml code:

extractors:
- name: tap-postgres
  metadata:
    some_stream_id:
      table-key-properties: [id]
      replication-key: created_at
      replication-method: INCREMENTAL

This example sets the primary key to id and the replication key to created_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:

extractors:
- name: tap-postgres
  metadata:
    "*":
      # set all streams to "full table" mode
      replication-method: FULL_TABLE

And:

extractors:
- name: tap-postgres
  metadata:
    "*":
      # ignore primary keys for all streams
      table-key-properties: []
0
On

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