timothy_frazer
06/15/2021, 8:41 PMPIP_EXTRA_INDEX_URL
- I can jump into the docker container and pip install target-example
however, when I try and meltano install
it doesn’t seem to be able to find the package.timothy_frazer
06/15/2021, 8:41 PMversion: 1
plugins:
loaders:
- name: target-example
pip_url: target-example
timothy_frazer
06/15/2021, 8:41 PMtimothy_frazer
06/15/2021, 8:44 PMFROM meltano/meltano:latest-python3.8
ARG PIP_EXTRA_INDEX_URL
ENV PIP_EXTRA_INDEX_URL $PIP_EXTRA_INDEX_URL
COPY meltano/meltano.yml meltano.yml
WORKDIR /project
RUN meltano install
I see the meltano.yml
in the docker container and I can install standard meltano tap/target but for some reason it doesn’t find the target-example
from our other pypi server
timothy_frazer
06/15/2021, 9:00 PMmeltano install
I get Extractor 'tap-example' is not known to Meltano
🧐timothy_frazer
06/15/2021, 9:00 PMedgar_ramirez_mondragon
06/15/2021, 9:38 PMdouwe_maan
06/15/2021, 9:39 PMtarget-example
(or tap-example
) is not supported out of the box by Meltano, you need to provide a little more information in meltano.yml
for it to work: https://meltano.com/docs/project.html#custom-plugin-definitions
I recommend adding it using meltano add --custom
as in https://meltano.com/docs/plugin-management.html#custom-pluginstimothy_frazer
06/16/2021, 1:35 PMtimothy_frazer
06/16/2021, 1:38 PM