You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ranger.apache.org by "bhavik patel (JIRA)" <ji...@apache.org> on 2018/09/20 04:51:00 UTC

[jira] [Updated] (RANGER-2229) Perform graceful terminate with retries before doing forceful kill for usersync and tagsync

     [ https://issues.apache.org/jira/browse/RANGER-2229?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

bhavik patel updated RANGER-2229:
---------------------------------
    Attachment: RANGER-2229.patch

> Perform graceful terminate with retries before doing forceful kill for usersync and tagsync
> -------------------------------------------------------------------------------------------
>
>                 Key: RANGER-2229
>                 URL: https://issues.apache.org/jira/browse/RANGER-2229
>             Project: Ranger
>          Issue Type: Bug
>          Components: tagsync, usersync
>    Affects Versions: 1.1.0
>            Reporter: suja s
>            Assignee: bhavik patel
>            Priority: Major
>         Attachments: RANGER-2229.patch
>
>
> In ranger usersync and tagsync scripts, stop of the process is done forcefully using kill -9.
> Suggestion is to do a graceful shutdown with retries and do a force kill only if graceful shutdown is not successful.
> Stop section from ranger-tagsync-services.sh and ranger-tusersync-services.sh
> {noformat}
> lif [ "${action}" == "STOP" ]; then
>  WAIT_TIME_FOR_SHUTDOWN=2
>  NR_ITER_FOR_SHUTDOWN_CHECK=15
>  if [ -f "$pidf" ] ; then
>  pid=`cat $pidf` > /dev/null 2>&1
>  echo "Found Apache Ranger TagSync Service with pid $pid, Stopping..."
>  kill -9 $pid > /dev/null 2>&1
>  sleep 1 #Give kill -9 sometime to "kill"
>  if ps -p $pid > /dev/null; then
>  echo "Wow, even kill -9 failed, giving up! Sorry.."
>  else
>  rm -f $pidf
>  echo "Apache Ranger Tagsync Service pid = ${pid} has been stopped."
>  fi
>  else
>  echo "Ranger Tagsync Service not running"
>  fi
>  exit;
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)