You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2024/04/11 23:19:41 UTC

(accumulo) branch 2.1 updated: fixes bug with starting multiple group of scan servers (#4445)

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

kturner pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 7c6572caf3 fixes bug with starting multiple group of scan servers (#4445)
7c6572caf3 is described below

commit 7c6572caf336cd76bb794befe7a31dce3503cd4b
Author: Keith Turner <kt...@apache.org>
AuthorDate: Thu Apr 11 19:19:36 2024 -0400

    fixes bug with starting multiple group of scan servers (#4445)
    
    When trying to start and stop multiple groups of scan servers using the
    accumulo-cluster script the groups would interfere with each other.
    This change fixes that by making the the scan servers use the group in
    the instance id like compactors do.
    
    Ran into this while workiing on #4444 and pulled it out as a stand alone
    fix.
---
 assemble/bin/accumulo-cluster | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/assemble/bin/accumulo-cluster b/assemble/bin/accumulo-cluster
index 5dd9de7e4e..d31d65989c 100755
--- a/assemble/bin/accumulo-cluster
+++ b/assemble/bin/accumulo-cluster
@@ -141,7 +141,7 @@ function control_service() {
     ACCUMULO_SERVICE_INSTANCE=""
     [[ $service == "tserver" && ${NUM_TSERVERS:-1} -gt 1 ]] && ACCUMULO_SERVICE_INSTANCE=${inst_id}
     [[ $service == "compactor" ]] && ACCUMULO_SERVICE_INSTANCE="${inst_id}_${5}"
-    [[ $service == "sserver" && ${NUM_SSERVERS:-1} -gt 1 ]] && ACCUMULO_SERVICE_INSTANCE=${inst_id}
+    [[ $service == "sserver" ]] && ACCUMULO_SERVICE_INSTANCE="${inst_id}_${5}"
 
     if [[ $host == localhost || $host == "$(hostname -s)" || $host == "$(hostname -f)" || "$(hostname -I)" =~ $host ]]; then
       #