I remember a thread passing by a few weeks ago on ...
# troubleshooting
s
I remember a thread passing by a few weeks ago on this subject but can't seem to find it again so I'll ask here: Would anyone know how to use 2 different plugins who hold the same name? I'm trying to migrate from one loader to another within bigquery, and I'm trying to figure out how to have 2 different versions of
target-bigquery
. I've tried changing the namespace, but no dice 🎲 . Any ideas / suggestions?
m
I think you want to use https://docs.meltano.com/concepts/plugins#plugin-inheritance. So for example you might do:
meltano --log-level debug add loader target-bigquery--client-a --inherit-from target-bigquery
meltano --log-level debug add loader target-bigquery--client-b --inherit-from target-bigquery
s
Hey Michael! Thansk for the reply 😄 Sadly I don't think that's what I'm looking for; plugin inheritance applies to 2 different loaders that inherit from the same loader. I want these 2 loaders to be from different implementations (ex: target-bigquery-yourcruit vs target-bigquery-adswerve)
s
@Reuben (Matatika) thanks! That should definitely help 😄