web-dev-qa-db-ja.com

Elastic Beanstalk Rails-乗客の設定を変更するpassenger_max_pool_size

Railsアプリケーションを乗客で実行するためにpassenger_max_pool_sizeを増やす必要があります。デプロイにElasticbeanstalkを使用しました。これを実行する方法はありますか?これを行うためのオプション設定またはコンテナコマンドはありますか?

5
Divya Bhargov

これは古い投稿だと思いますが、未回答です。

最良のオプションは、プロジェクトのルートで.ebextensions dirを使用し、設定ファイルを追加して乗客を設定することです。プロジェクトに.ebextensions/01_passenger.configファイルを作成しました。

このファイルのコンテンツセクションでは、ここにある既存の乗客初期化ファイルをコピーすることをお勧めします/opt/elasticbeanstalk/support/conf/passenger

開始オプションに--max-pool-size=${PASSENGER_MAX_POOL_SIZE:-6}を含めるように少し変更しました。 Beanstalk環境変数を使用して、プールサイズのデフォルトの6をオーバーライドできます。

files:
  "/tmp/passenger.config":
    mode: "000755"
    owner: root
    group: root
    content: |
      #!/usr/bin/env bash
      #
      # chkconfig: 2345 80 20
      # description: Passenger
      #

      EB_HTTP_PORT=$(/opt/elasticbeanstalk/bin/get-config container -k http_port)
      EB_APP_USER=$(/opt/elasticbeanstalk/bin/get-config container -k app_user)
      EB_APP_DEPLOY_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k app_deploy_dir)
      EB_APP_PID_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k app_pid_dir)
      EB_APP_LOG_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k app_log_dir)
      EB_SCRIPT_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k script_dir)
      EB_SUPPORT_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k support_dir)
      EB_NGINX_VERSION=$(/opt/elasticbeanstalk/bin/get-config container -k nginx_version)

      . $EB_SUPPORT_DIR/envvars
      . $EB_SCRIPT_DIR/use-app-Ruby.sh

      if [ -f /etc/elasticbeanstalk/set-ulimit.sh ]; then
        . /etc/elasticbeanstalk/set-ulimit.sh
      fi

      # fixes http://code.google.com/p/phusion-passenger/issues/detail?id=614
      export HOME=/tmp
      export PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY=0

      if [ -d /etc/healthd ]; then
          STARTOPTS="--nginx-version $EB_NGINX_VERSION --nginx-config-template $EB_SUPPORT_DIR/conf/nginx_config_healthd.erb"
      else
          STARTOPTS="--nginx-version $EB_NGINX_VERSION --nginx-config-template $EB_SUPPORT_DIR/conf/nginx_config.erb"
      fi

      ENV_STAGE=${RACK_ENV:-$Rails_ENV}    # Read from $Rails_ENV if $RACK_ENV is empty
      if [ ${ENV_STAGE,,} = "production" ]; then    # Convert $ENV_STAGE to lower case and compare to "production"
        # Disable passenger friendly page for production stage
        STARTOPTS="$STARTOPTS --no-friendly-error-pages"
      fi

      #Add custom max-pool size
      STARTOPTS="$STARTOPTS  --max-pool-size=${PASSENGER_MAX_POOL_SIZE:-6}"

      GENERALOPTS="-p $EB_HTTP_PORT --pid-file $EB_APP_PID_DIR/passenger.pid"

      function start() {
        touch $EB_APP_LOG_DIR/passenger.log

        if [ -d /etc/healthd ]; then
          mkdir -p $EB_APP_LOG_DIR/healthd
          chown -R $EB_APP_USER:$EB_APP_USER $EB_APP_LOG_DIR/healthd
        fi

        chown $EB_APP_USER:$EB_APP_USER \
          $EB_APP_LOG_DIR/passenger.log
        passenger start $EB_APP_DEPLOY_DIR $STARTOPTS $GENERALOPTS \
          -d -e ${RACK_ENV:-$Rails_ENV} --user $EB_APP_USER \
          --log-file $EB_APP_LOG_DIR/passenger.log
      }

      function stop() {
        passenger stop $GENERALOPTS
      }

      function status() {
        passenger status $GENERALOPTS
      }

      case "$1" in
        start)
          start
          ;;
        stop)
          stop
          ;;
        status)
          status
          ;;
        restart|graceful)
          stop
          start
          ;;
        reload)
          su -s /bin/bash -c "touch $EB_APP_DEPLOY_DIR/tmp/restart.txt" $EB_APP_USER
          ;;
        *)
          echo "Usage: $0 {start|stop|restart|reload|status}"
          exit 1
          ;;
      esac

      exit 0

container_commands:
  01_config_passenger:
    command: "cp /tmp/passenger.config /opt/elasticbeanstalk/support/conf/passenger"
4
Justin Fortier

passenger-standaloneを使用する場合は、passenger-standalone.jsonファイルをRailsルートディレクトリに次の内容で追加することで、プロセスを簡略化できます。

{
  "max_pool_size": 16
}

ファイルの名前がpassenger-standalone.jsonではなくPassengerfile.jsonであることを確認してください。

構成を検証する

Sudo -i passenger-status

見る:

https://www.phusionpassenger.com/library/config/standalone/reference/

そして:

http://hwcode111.blogspot.com/2013/02/Rails-elastic-beanstalk-passenger.html

1
fluxsaas