You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Docker image based on fishtownanalytics/dbt:0.19.2 where dbt-spark is installed. If I try to connect to an EMR cluster on AWS via thrift server, the connection returns an undefined error.
Steps To Reproduce
Create a Docker image with something like:
FROM fishtownanalytics/dbt:0.19.2
RUN apt-get update && \
apt-get install libsasl2-dev && \
pip install "dbt-spark[PyHive]"==0.19.2
Log into the container with: docker run --rm -it --entrypoint bash <your_image>
Create a sample dbt project and change the configuration using spark and pointing to some EMR cluster with enabled thriftserver, like:
This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please remove the stale label or comment on the issue, or it will be closed in 7 days.
Describe the bug
I have a Docker image based on
fishtownanalytics/dbt:0.19.2
wheredbt-spark
is installed. If I try to connect to an EMR cluster on AWS via thrift server, the connection returns an undefined error.Steps To Reproduce
Log into the container with:
docker run --rm -it --entrypoint bash <your_image>
Create a sample dbt project and change the configuration using
spark
and pointing to some EMR cluster with enabled thriftserver, like:dbt config
versus it.At that point the connection will return an error.
Expected behavior
Screenshots and log output
The output of
dbt --version
:The operating system you're using:
MacOS Catalina 10.15.7
The output of
python --version
:Python 2.7.16
Python 3.8.10
Additional context
The only workaround I found is building a new image based on
ubuntu 20.04
and installingdbt
anddbt-spark
after.The text was updated successfully, but these errors were encountered: