blob: 2c7967f343253e4e16884f59afa16b145b852be7 [file] [log] [blame]
#!/bin/bash
#/*
# * Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved.
# *
# * Permission is hereby granted, free of charge, to any person obtaining a
# * copy of this software and associated documentation files (the "Software"),
# * to deal in the Software without restriction, including without limitation
# * the rights to use, copy, modify, merge, publish, distribute, sublicense,
# * and/or sell copies of the Software, and to permit persons to whom the
# * Software is furnished to do so, subject to the following conditions:
# *
# * The above copyright notice and this permission notice shall be included in
# * all copies or substantial portions of the Software.
# *
# * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# * DEALINGS IN THE SOFTWARE.
# *
# */
debug_mode=${DEBUG}
log_level=${LOG_LEVEL:-warn}
marathon_host=${MARATHON_HOST}
sleep_duration=${MARATHON_POLL_INTERVAL:-5}
# location for a remote /etc/api-gateway folder.
# i.e s3://api-gateway-config
remote_config=${REMOTE_CONFIG}
remote_config_sync_interval=${REMOTE_CONFIG_SYNC_INTERVAL:-10s}
function start_zmq_adaptor()
{
echo "Starting ZeroMQ adaptor ..."
zmq_port=$(echo $ZMQ_PUBLISHER_PORT)
# use -d flag to start API Gateway ZMQ adaptor in debug mode to print all messages sent by the GW
zmq_adaptor_cmd="api-gateway-zmq-adaptor"
if [[ -n "${zmq_port}" ]]; then
echo "... ZMQ will publish messages on:" ${zmq_port}
zmq_adaptor_cmd="${zmq_adaptor_cmd} -p ${zmq_port}"
fi
if [ "${debug_mode}" == "true" ]; then
echo " ... in DEBUG mode "
zmq_adaptor_cmd="${zmq_adaptor_cmd} -d"
fi
$zmq_adaptor_cmd >> /dev/stderr &
sleep 3s
# allow interprocess communication by allowing api-gateway processes to write to the socket
chown nginx-api-gateway:nginx-api-gateway /tmp/nginx_queue_listen
chown nginx-api-gateway:nginx-api-gateway /tmp/nginx_queue_push
}
# keep the zmq adaptor running using a simple loop
while true; do zmq_pid=$(ps aux | grep api-gateway-zmq-adaptor | grep -v grep) || ( echo "Restarting api-gateway-zmq-adaptor" && start_zmq_adaptor ); sleep 60; done &
echo "Starting api-gateway ..."
if [ "${debug_mode}" == "true" ]; then
echo " ... in DEBUG mode "
mv /usr/local/sbin/api-gateway /usr/local/sbin/api-gateway-no-debug
ln -sf /usr/local/sbin/api-gateway-debug /usr/local/sbin/api-gateway
fi
/usr/local/sbin/api-gateway -V
echo "------"
echo resolver $(awk 'BEGIN{ORS=" "} /nameserver/{print $2}' /etc/resolv.conf | sed "s/ $/;/g") > /etc/api-gateway/conf.d/includes/resolvers.conf
echo " ... with dns $(cat /etc/api-gateway/conf.d/includes/resolvers.conf)"
sync_cmd="echo checking for changes ..."
if [[ -n "${remote_config}" ]]; then
echo " ... using a remote config from: ${remote_config}"
if [[ "${remote_config}" =~ ^s3://.+ ]]; then
sync_cmd="aws s3 sync --exclude *resolvers.conf --exclude *environment.conf.d/*vars.server.conf --exclude *environment.conf.d/*upstreams.http.conf --delete ${remote_config} /etc/api-gateway/"
echo " ... syncing from s3 using command ${sync_cmd}"
else
echo " ... but this REMOTE_CONFIG is not supported "
fi
fi
api-gateway-config-supervisor \
--reload-cmd="api-gateway -s reload" \
--sync-folder=/etc/api-gateway \
--sync-interval=${remote_config_sync_interval} \
--sync-cmd="${sync_cmd}" \
--http-addr=127.0.0.1:8888 &
if [[ -n "${marathon_host}" ]]; then
echo " ... starting Marathon Service Discovery on ${marathon_host}"
touch /var/run/apigateway-config-watcher.lastrun
# start marathon's service discovery
while true; do /etc/api-gateway/marathon-service-discovery.sh > /dev/stderr; sleep ${sleep_duration}; done &
# start simple statsd logger
#
# ASSUMPTION: there is a graphite app named "api-gateway-graphite" deployed in marathon
#
while true; do \
statsd_host=$(curl -s ${marathon_host}/v2/apps/api-gateway-graphite/tasks -H "Accept:text/plain" | grep 8125 | awk '{for(i=3;i<=NF;++i) printf("%s ", $i) }' | awk '{for(i=1;i<=NF;++i) sub(/:[[:digit:]]+/,"",$i); print }' ); \
if [[ -n "${statsd_host}" ]]; then python /etc/api-gateway/scripts/python/logger/StatsdLogger.py --statsd-host=${statsd_host} > /var/log/api-gateway/statsd-logger.log; fi; \
sleep 6; \
done &
fi
echo " ... testing configuration "
api-gateway -t -p /usr/local/api-gateway/ -c /etc/api-gateway/api-gateway.conf
echo " ... using log level: '${log_level}'. Override it with -e 'LOG_LEVEL=<level>' "
api-gateway -p /usr/local/api-gateway/ -c /etc/api-gateway/api-gateway.conf -g "daemon off; error_log /dev/stderr ${log_level};"