Revert "Add smarter traefik load balancing with health check"

This reverts commit 2ab6156db4.
This commit is contained in:
Matej Bačo 2024-02-19 14:10:35 +00:00
parent 2ab6156db4
commit 505b481537
5 changed files with 5 additions and 24 deletions

2
.env
View file

@ -1,6 +1,6 @@
_APP_ENV=development
_APP_LOCALE=en
_APP_WORKER_PER_CORE=1
_APP_WORKER_PER_CORE=6
_APP_CONSOLE_WHITELIST_ROOT=disabled
_APP_CONSOLE_WHITELIST_EMAILS=
_APP_CONSOLE_WHITELIST_IPS=

View file

@ -51,16 +51,8 @@ App::get('/v1/health/version')
->label('sdk.response.code', Response::STATUS_CODE_OK)
->label('sdk.response.type', Response::CONTENT_TYPE_JSON)
->label('sdk.response.model', Response::MODEL_HEALTH_VERSION)
->inject('http')
->inject('response')
->action(function (mixed $http, Response $response) {
$stats = $http->stats();
\var_dump(\gethostname() . ': ' . $stats['idle_worker_num'] . '/' . $stats['worker_num']);
if(($stats['idle_worker_num'] ?? 0) <= 1) {
throw new Exception(Exception::GENERAL_SERVER_ERROR, 'Can not process more requests at the moment.');
}
->action(function (Response $response) {
$response->dynamic(new Document([ 'version' => APP_VERSION_STABLE ]), Response::MODEL_HEALTH_VERSION);
});

View file

@ -10,7 +10,6 @@ App::get('/versions')
->label('scope', 'public')
->inject('response')
->action(function (Response $response) {
\sleep(60);
$platforms = Config::getParam('platforms');
$versions = [

View file

@ -327,11 +327,4 @@ $http->on('request', function (SwooleRequest $swooleRequest, SwooleResponse $swo
}
});
$register->set('http', function () use ($http) {
return $http;
});
App::setResource('http', function ($register) {
return $register->get('http');
}, ['register']);
$http->start();

View file

@ -44,9 +44,7 @@ services:
- appwrite
appwrite:
deploy:
mode: replicated
replicas: 3
container_name: appwrite
<<: *x-logging
image: appwrite-dev
build:
@ -55,6 +53,8 @@ services:
DEBUG: false
TESTING: true
VERSION: dev
ports:
- 9501:80
networks:
- appwrite
labels:
@ -62,9 +62,6 @@ services:
- "traefik.constraint-label-stack=appwrite"
- "traefik.docker.network=appwrite"
- "traefik.http.services.appwrite_api.loadbalancer.server.port=80"
- "traefik.http.services.appwrite_api.loadbalancer.healthcheck.path=/v1/health/version"
- "traefik.http.services.appwrite_api.loadbalancer.healthcheck.interval=3s"
- "traefik.http.services.appwrite_api.loadbalancer.healthcheck.timeout=2s"
#http
- traefik.http.routers.appwrite_api_http.entrypoints=appwrite_web
- traefik.http.routers.appwrite_api_http.rule=PathPrefix(`/`)