Hey folks, In the Meltano docs it says that inline...
# troubleshooting
h
Hey folks, In the Meltano docs it says that inline stream maps can be used to override the key_properties, to allow you enable append-only behaviour at a target. I've developed a tap, using the Meltano SDK, and it's working fine, but can't get the stream maps to set the
key_properties
in the catalog/schema out to null. I'm setting the stream map in the meltano config, as described here but it isn't resulting in the desired behaviour.
1
When I output the
invoke
comand I can see the property isn't overwritten to be null or empty.
e
What does your
stream_maps
config look like?
h
Copy code
config:
      stream_maps:
        campaigns:
          __key_properties__: null
e
can you try
__key_properties__: []
?
h
OK that worked! Thank you.
🙌 1