If i have a parent plugin with multiple inherited ...
# plugins-general
g
If i have a parent plugin with multiple inherited plugins, do they all need to be invoked separately or is there a way to invoke them all based on the parent name?
k
Maybe just override dunder call?
g
that'd be in the tap tho right? rather than meltano cli or something?
k
actually, you can just return all the required ones by using discover_streams method. this doesn't work for you?
a
@gary_james - If I understand that you want to invoke multiple plugin instance simultaneously based on their "inherit from" parent defined in
meltano.yml
, then no, as of now we don't have a method to auto-invoke based on parent name.
Those declarations from Meltano's perspective are each separate extractors and can only be invoked separately.
g
@aaronsteers cool, makes sense, no issue, just me being a bit lazy 😂 thank you!