Tim Armstrong created IMPALA-8186:
-------------------------------------
Summary: Automate setup of docker bridge network for dockerised
minicluster
Key: IMPALA-8186
URL: https://issues.apache.org/jira/browse/IMPALA-8186
Project: IMPALA
Issue Type: Sub-task
Components: Infrastructure
Reporter: Tim Armstrong
Assignee: Tim Armstrong
I had some manual setup that I did to create a docker network and set
INTERNAL_LISTEN_HOST as the gateway. I think we could automate it with some
logic like the following:
{code}
docker network create -d bridge impala-cluster
IMPALA_NETWORK_GATEWAY=$(docker network inspect impala-cluster | grep -o
'"Gateway": "[0-9\.]*"' | grep -o "[0-9.]*")
echo "export INTERNAL_LISTEN_HOST=${IMPALA_NETWORK_GATEWAY}" >>
bin/impala-config-local.sh
echo 'export DEFAULT_FS=hdfs://${INTERNAL_LISTEN_HOST}:20500' >>
bin/impala-config-local.sh
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]