Hi, I have an interesting one today. I have a melt...
# troubleshooting
j
Hi, I have an interesting one today. I have a meltano project I have been running for a while now. But after updating the linux session it lives on it seems to not be able to find dbt anymore. giving this error: Transformer 'dbt' is not known to Meltano. Try running
meltano lock --update --all
to ensure your plugins are up to date. When I try to add dbt in again, I get this: meltano add transformer dbt Transformer 'dbt' already exists in your Meltano project Really odd, not sure what could have caused it to not recognise dbt
c
Hey mate. We haven't upgrade the project to use the
dbt-postgres
utility yet. So, you'll need to make sure to stick to a meltano version lower than 3.0
I suppose in theory you could try and keep going with meltano 3.x releases, you would need to create the lock files yourself. And you probably would also need to notify Derek and Francois about the update to 3.x
j
That makes a lot of sense, i'll have a look at rolling my version back, cheers
c
If you used
pipx
to install meltano it should be pretty easy to downgrade.
Pipx forced downgrade would be:
pipx install --force 'meltano<3'
j
Rolling back has fixed it, thanks for that