Install/config issue arrow flight on dremio docker

Hi,
Yes, you will have to amend the dremio.conf config file.
You can use a “docker exec -it yourdockername bash” but the issue is that you will not have any editor to amend the file inside of the container. you will still be able to find the file:
image

I end up moving the file between the host and the docker with:
docker cp youdockername:/opt/dremio/conf/dremio.conf .
image
Amend the file:
image
The save it / copy back to the container
docker cp dremio.conf dremio13v2:/opt/dremio/conf/dremio.conf
image
You will probably need to restart the docker/service

then your python script will look like that:


We had a lot of issue with the DNS working randomly in virtual machines / dockers, but passing through direct IP seems better :slight_smile:

Hope it helps,

Y.