You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ar...@apache.org on 2019/08/29 19:56:40 UTC

[impala] branch master updated: IMPALA-8892: Add debugging tools to our docker images

This is an automated email from the ASF dual-hosted git repository.

arodoni pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new 146af97  IMPALA-8892: Add debugging tools to our docker images
146af97 is described below

commit 146af97944bb2797d501ecdbc6417a3bc758891f
Author: Lars Volker <lv...@cloudera.com>
AuthorDate: Mon Jul 22 16:20:01 2019 -0700

    IMPALA-8892: Add debugging tools to our docker images
    
    I often find it tricky to debug network and Impala issues when using our
    Docker images. This change adds a handful of tools that I frequently
    miss having.
    
    It adds about 6.5% to the image size, they grow from 984MB to 953MB. If
    people feel that that is too much, I'm happy to cut back on the tools we
    install.
    
    Change-Id: I47c7aa7076cebfa3bfad2029fb1da9e64364f0e6
    Reviewed-on: http://gerrit.cloudera.org:8080/13895
    Reviewed-by: Lars Volker <lv...@cloudera.com>
    Tested-by: Lars Volker <lv...@cloudera.com>
---
 docker/impala_base/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docker/impala_base/Dockerfile b/docker/impala_base/Dockerfile
index 46ad011..1e808d0 100644
--- a/docker/impala_base/Dockerfile
+++ b/docker/impala_base/Dockerfile
@@ -23,6 +23,7 @@ FROM ubuntu:16.04
 RUN apt-get update && \
   apt-get install -y openjdk-8-jre-headless \
   libsasl2-2 libsasl2-modules libsasl2-modules-gssapi-mit \
+  sudo netcat-openbsd less curl iproute2 vim iputils-ping \
   tzdata liblzo2-2 krb5-user && \
   apt-get clean && \
   rm -rf /var/lib/apt/lists/*