feat(apisix): add Cloudron package
- Implements Apache APISIX packaging for Cloudron platform. - Includes Dockerfile, CloudronManifest.json, and start.sh. - Configured to use Cloudron's etcd addon. 🤖 Generated with Gemini CLI Co-Authored-By: Gemini <noreply@google.com>
This commit is contained in:
155
CloudronPackages/APISIX/apisix-source/benchmark/run.sh
Executable file
155
CloudronPackages/APISIX/apisix-source/benchmark/run.sh
Executable file
@@ -0,0 +1,155 @@
|
||||
#! /bin/bash -x
|
||||
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
worker_cnt=$1
|
||||
else
|
||||
worker_cnt=1
|
||||
fi
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
upstream_cnt=$2
|
||||
else
|
||||
upstream_cnt=1
|
||||
fi
|
||||
|
||||
mkdir -p benchmark/server/logs
|
||||
mkdir -p benchmark/fake-apisix/logs
|
||||
|
||||
|
||||
make init
|
||||
|
||||
fake_apisix_cmd="openresty -p $PWD/benchmark/fake-apisix -c $PWD/benchmark/fake-apisix/conf/nginx.conf"
|
||||
server_cmd="openresty -p $PWD/benchmark/server -c $PWD/benchmark/server/conf/nginx.conf"
|
||||
|
||||
trap 'onCtrlC' INT
|
||||
function onCtrlC () {
|
||||
sudo killall wrk
|
||||
sudo killall openresty
|
||||
sudo ${fake_apisix_cmd} -s stop || exit 1
|
||||
sudo ${server_cmd} -s stop || exit 1
|
||||
}
|
||||
|
||||
for up_cnt in $(seq 1 $upstream_cnt);
|
||||
do
|
||||
port=$((1979+$up_cnt))
|
||||
nginx_listen=$nginx_listen"listen $port;"
|
||||
upstream_nodes=$upstream_nodes"\"127.0.0.1:$port\":1"
|
||||
|
||||
if [ $up_cnt -lt $upstream_cnt ]; then
|
||||
upstream_nodes=$upstream_nodes","
|
||||
fi
|
||||
done
|
||||
|
||||
sed -i "s/\- proxy-mirror/#\- proxy-mirror/g" conf/config-default.yaml
|
||||
sed -i "s/\- proxy-cache/#\- proxy-cache/g" conf/config-default.yaml
|
||||
sed -i "s/listen .*;/$nginx_listen/g" benchmark/server/conf/nginx.conf
|
||||
|
||||
echo "
|
||||
nginx_config:
|
||||
worker_processes: ${worker_cnt}
|
||||
" > conf/config.yaml
|
||||
|
||||
sudo ${server_cmd} || exit 1
|
||||
|
||||
make run
|
||||
|
||||
sleep 3
|
||||
|
||||
#############################################
|
||||
echo -e "\n\napisix: $worker_cnt worker + $upstream_cnt upstream + no plugin"
|
||||
admin_key=$(yq '.deployment.admin.admin_key[0].key' conf/config.yaml | sed 's/"//g')
|
||||
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H "X-API-KEY: $admin_key" -X PUT -d '
|
||||
{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
},
|
||||
"upstream": {
|
||||
"type": "roundrobin",
|
||||
"nodes": {
|
||||
'$upstream_nodes'
|
||||
}
|
||||
}
|
||||
}'
|
||||
|
||||
sleep 1
|
||||
|
||||
wrk -d 5 -c 16 http://127.0.0.1:9080/hello
|
||||
|
||||
sleep 1
|
||||
|
||||
wrk -d 5 -c 16 http://127.0.0.1:9080/hello
|
||||
|
||||
sleep 1
|
||||
|
||||
#############################################
|
||||
echo -e "\n\napisix: $worker_cnt worker + $upstream_cnt upstream + 2 plugins (limit-count + prometheus)"
|
||||
admin_key=$(yq '.deployment.admin.admin_key[0].key' conf/config.yaml | sed 's/"//g')
|
||||
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H "X-API-KEY: $admin_key" -X PUT -d '
|
||||
{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"limit-count": {
|
||||
"count": 2000000000000,
|
||||
"time_window": 60,
|
||||
"rejected_code": 503,
|
||||
"key": "remote_addr"
|
||||
},
|
||||
"prometheus": {}
|
||||
},
|
||||
"upstream": {
|
||||
"type": "roundrobin",
|
||||
"nodes": {
|
||||
'$upstream_nodes'
|
||||
}
|
||||
}
|
||||
}'
|
||||
|
||||
sleep 3
|
||||
|
||||
wrk -d 5 -c 16 http://127.0.0.1:9080/hello
|
||||
|
||||
sleep 1
|
||||
|
||||
wrk -d 5 -c 16 http://127.0.0.1:9080/hello
|
||||
|
||||
sleep 1
|
||||
|
||||
make stop
|
||||
|
||||
#############################################
|
||||
echo -e "\n\nfake empty apisix server: $worker_cnt worker"
|
||||
|
||||
sleep 1
|
||||
|
||||
sed -i "s/worker_processes [0-9]*/worker_processes $worker_cnt/g" benchmark/fake-apisix/conf/nginx.conf
|
||||
|
||||
sudo ${fake_apisix_cmd} || exit 1
|
||||
|
||||
sleep 1
|
||||
|
||||
wrk -d 5 -c 16 http://127.0.0.1:9080/hello
|
||||
|
||||
sleep 1
|
||||
|
||||
wrk -d 5 -c 16 http://127.0.0.1:9080/hello
|
||||
|
||||
sudo ${fake_apisix_cmd} -s stop || exit 1
|
||||
|
||||
sudo ${server_cmd} -s stop || exit 1
|
Reference in New Issue
Block a user