qq - is there a way to use multiple versions of th...
# plugins-general
m
qq - is there a way to use multiple versions of the same plugin?
1
we're attempting to do so via inheritance - but when doing so it'll fail with an error message of
stripping trailing 0
or similar. Wondering if that's a supported pattern.
e
It should be possible with inheritance and overriding the
pip_url
. How does the
meltano.yml
look like?
m
Something Like base file
Copy code
plugins:
  extractors:
  - name: tap-postgres
    variant: transferwise
    pip_url: pipelinewise-tap-postgres==1.8.0
our actual tap logic - so we'd want one set running on 1.8 and another on 2.1
Copy code
plugins:
  extractors:
  - name: tap-postgres--core
    inherit_from: tap-postgres
    config:

- name: tap-postgres--core-bulk
    inherit_from: tap-postgres--core
    pip_url: pipelinewise-tap-postgres==2.1.0
    config:
      limit: 100000
it does seem to fail in the install step - I'm guessing something to do with my virtual env
e
what do you mean by
base file
? how are you including that?
m
Its just a file that defines the base config (pip url, etc). something like
pg_base
-> specific integrations that we would override. We got it figured out btw - just an env error
👍 1