Skip to main content

Readiness Check for uWSGI

Project description

uwsgi-readiness-check

Readiness check for uwsgi using its stats socket

Use this check to mark a pod running uwsgi as NotReady whenever the uwsgi queue crosses a threshold. This will allow uwsgi to finish processing requests in its queue before Kubernetes sends more traffic to it

Local Development / Testing

Because the readiness check needs to run as part of a pod, in order to have functional test we deploy a small python+uwsgi application that sleeps for a few seconds + a second python "client" script that makes requests. Since the application sleeps upon a request and new requests are constantly being sent, uwsgi will eventually queue and we'll readiness checks should fail.

Kind installation Skaffold installation Kubectl installation

Running locally

With kind, kubectl and skaffold installed, simply run:

skaffold dev

Skaffold builds a docker image, loads into the kind "cluster" and creates the Pods, watches for changes in the filesystem and automatically re-deploys when needed.

Examples:

The example below will prevent traffic from hitting the Pod once the queue reaches 70% its max capacity:

          readinessProbe:
            exec:
              command:
                - uwsgi-is-ready
                - --stats-socket
                - /tmp/uwsgi-stats
                - --queue-threshold
                - 0.7
            failureThreshold: 2
            initialDelaySeconds: 5
            periodSeconds: 5
            successThreshold: 1
            timeoutSeconds: 1

You can find a complete example in k8s/deployment.yaml

Installation

In the container image used by your Pod, run:

pip install uwsgi-readiness-check

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uwsgi-readiness-check-0.2.0.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

uwsgi_readiness_check-0.2.0-py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page