Hello, I have a `tap-postgres`extractor and `targe...
# troubleshooting
h
Hello, I have a `tap-postgres`extractor and
target-postgres
loader defined for a pipeline that runs successfully. However in the UI, when I click the Explore drop-down, it says 'No Extractors'. The green 'Explore' button is grey-ed out also. Is there a configuration setting to enable the Explore function? Thanks!
r
@hank_calzaretta how are you running the pipeline? Is it just running using the Meltano CLI (i.e.
meltano elt tap-postgres target-postgres
)? If so, is that running in a container?
h
Hi Rickey, yes, the Meltano code resides in a container and am running it via the CLI.
I have run it from the Airflow UI also.
r
Are they both built off of the same image?
I'm also pretty sure not every extractor allows for the 'Explore' button but could be wrong
h
Yes, I added the airflow plugin to the project with this command. I was planning on installing outside of docker. I'll see if it works differently there, Thanks!
Copy code
docker run -v $(pwd):/projects -w /projects meltano/meltano add orchestrator airflow
r
I wonder if that installation is persisting or if each time you run that it has to install it again. I would add the orchestrator directly to your
meltano.yml
file and then make sure you are running
meltano install
whenever you build your image
h
Okay, thanks!