Is there a specific reason not to include all the ...
# ingestion
c
Is there a specific reason not to include all the connectors by default in the pipfile? They are only a few python modules anyway right? So should be pretty light. I’m refactoring our build to use the pipfile instead of the docker, but it seems a bit cumbersome to define every source/sink manually as extra’s. (We are using pipenv.)
h
You do not want to install the snowflake connector, if you dont use Snowflake. We do, and we still hate it. 😅
c
Ah ok, That explains enough 😂
g
If you still want to install everything, you can use the [all] extra - that’s what the docker image uses as well