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

michaelsmith 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 c10e74d1f IMPALA-13132: Stop Kudu in kill-all.sh
c10e74d1f is described below

commit c10e74d1fc6f8b6759af6cc07894488620f9d68a
Author: Michael Smith <[email protected]>
AuthorDate: Wed Oct 9 12:18:30 2024 -0700

    IMPALA-13132: Stop Kudu in kill-all.sh
    
    After IMPALA-12852, Kudu is no longer explicitly stopped as part of
    kill-all.sh. Kudu stops anyway, but the PID files are not cleaned up.
    That can lead to Kudu startup accidentally stopping another process that
    re-used the PID when the minicluster is restarted after data load.
    
    Change-Id: I4c40d881140658e8213f742d52e4eb73261e1b30
    Reviewed-on: http://gerrit.cloudera.org:8080/21915
    Reviewed-by: Joe McDonnell <[email protected]>
    Reviewed-by: Wenzhe Zhou <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 testdata/bin/kill-all.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testdata/bin/kill-all.sh b/testdata/bin/kill-all.sh
index cd3ada794..d25912ce0 100755
--- a/testdata/bin/kill-all.sh
+++ b/testdata/bin/kill-all.sh
@@ -28,6 +28,7 @@ ${IMPALA_HOME}/bin/start-impala-cluster.py --kill
 $IMPALA_HOME/testdata/bin/kill-sentry-service.sh
 $IMPALA_HOME/testdata/bin/kill-hive-server.sh
 $IMPALA_HOME/testdata/bin/kill-hbase.sh
+$IMPALA_HOME/testdata/bin/kill-kudu.sh
 $IMPALA_HOME/testdata/bin/kill-mini-dfs.sh
 $IMPALA_HOME/testdata/bin/kill-ranger-server.sh
 

Reply via email to