diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-09-20 13:18:24 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-09-20 13:18:24 +0000 |
commit | 0653e08efd039a5905f3fa4f6e9cef9f5d2f799c (patch) | |
tree | 4dcc884cf6d81db44adae4aa99f8ec1233a41f55 /bin/background_jobs_sk_cluster | |
parent | 744144d28e3e7fddc117924fef88de5d9674fe4c (diff) | |
download | gitlab-ce-0653e08efd039a5905f3fa4f6e9cef9f5d2f799c.tar.gz |
Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42
Diffstat (limited to 'bin/background_jobs_sk_cluster')
-rwxr-xr-x | bin/background_jobs_sk_cluster | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/bin/background_jobs_sk_cluster b/bin/background_jobs_sk_cluster deleted file mode 100755 index d48b5484fce..00000000000 --- a/bin/background_jobs_sk_cluster +++ /dev/null @@ -1,76 +0,0 @@ -#!/usr/bin/env bash - -cd $(dirname $0)/.. -app_root=$(pwd) -sidekiq_pidfile="$app_root/tmp/pids/sidekiq-cluster.pid" -sidekiq_logfile="$app_root/log/sidekiq.log" -gitlab_user=$(ls -l config.ru | awk '{print $3}') - -warn() -{ - echo "$@" 1>&2 -} - -get_sidekiq_pid() -{ - if [ ! -f $sidekiq_pidfile ]; then - warn "No pidfile found at $sidekiq_pidfile; is Sidekiq running?" - return - fi - - cat $sidekiq_pidfile -} - -stop() -{ - sidekiq_pid=$(get_sidekiq_pid) - - if [ $sidekiq_pid ]; then - kill -TERM $sidekiq_pid - fi -} - -restart() -{ - if [ -f $sidekiq_pidfile ]; then - stop - fi - - warn "Sidekiq output will be written to $sidekiq_logfile" - start_sidekiq "$@" >> $sidekiq_logfile 2>&1 -} - -start_sidekiq() -{ - cmd="exec" - chpst=$(command -v chpst) - - if [ -n "$chpst" ]; then - cmd="${cmd} ${chpst} -P" - fi - - # sidekiq-cluster expects '*' '*' arguments (one wildcard for each process). - for (( i=1; i<=$SIDEKIQ_WORKERS; i++ )) - do - processes_args+=("*") - done - - ${cmd} bin/sidekiq-cluster "${processes_args[@]}" -P $sidekiq_pidfile -e $RAILS_ENV "$@" -} - -case "$1" in - stop) - stop - ;; - start) - restart "$@" & - ;; - start_foreground) - start_sidekiq "$@" - ;; - restart) - restart "$@" & - ;; - *) - echo "Usage: RAILS_ENV=<env> SIDEKIQ_WORKERS=<n> $0 {stop|start|start_foreground|restart}" -esac |