Hey everyone! I had two quick questions. 1. Is t...
# best-practices
g
Hey everyone! I had two quick questions. 1. Is there a Meltano Best Practices doc? I looked on the website and saw the different handbooks, but wasn't sure if that was it. 2. If I have a project with 2 taps (postgres and klaviyo) and 1 target (target-redshift), and both taps use the same target redshift, how would I configure a different target-redshift config for the other tap? Question 2 Summary: If I have 2 taps that use the same target, but each tap uses different configs for the target, how would this be configured in the same project?
d
1. There isn't currently a dedicated Best Practices doc, no. We've tried to explain everything we've deemed relevant including best practices in the relevant guides, e.g. Configuration: https://meltano.com/docs/configuration.html 2. You can have different configurations of the same plugin using inheritance: https://meltano.com/docs/configuration.html#multiple-plugin-configurations. One pipeline would then use
tap-postgres target-redshift--postgres
and the other
tap-klaviyo target-redshift--klaviyo
(of course the names of your inheriting plugins can be whatever you like)