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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9d2df50  Return appropriate config directory path for indexer process. 
(#10657)
9d2df50 is described below

commit 9d2df506eaf77c5625ce9ca9f77b79f1759d7137
Author: Harini Rajendran <[email protected]>
AuthorDate: Wed Dec 9 11:30:36 2020 -0600

    Return appropriate config directory path for indexer process. (#10657)
    
    Currently `getConfPath` function returns an empty string for `indexer` 
service. So the config directory path for this service is not set properly when 
installed using docker environment.
---
 distribution/docker/druid.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/distribution/docker/druid.sh b/distribution/docker/druid.sh
index 85891e2..3b269c3 100755
--- a/distribution/docker/druid.sh
+++ b/distribution/docker/druid.sh
@@ -55,6 +55,7 @@ getConfPath() {
     _common) echo $cluster_conf_base/_common ;;
     historical) echo $cluster_conf_base/data/historical ;;
     middleManager) echo $cluster_conf_base/data/middleManager ;;
+    indexer) echo $cluster_conf_base/data/indexer ;;
     coordinator | overlord) echo 
$cluster_conf_base/master/coordinator-overlord ;;
     broker) echo $cluster_conf_base/query/broker ;;
     router) echo $cluster_conf_base/query/router ;;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to