Skip to main content

Django Hurricane is an initiative to make Django more cloud-native compatible.

Project description

Hurricane Logo


Code style: black

Hurricane is an initiative to fit Django perfectly with Kubernetes. It is supposed to cover many capabilities in order to run Django in a cloud-native environment, including a Tornado-powered Django app server.

Intro

Django was developed with the batteries included-approach and already handles most of the challenges around web development with grace. It was initially developed at a time when web applications got deployed and run on a server (physical or virtual). With its pragmatic design it enabled many developers to keep up with changing requirements, performance and maintenance work.
However, service architectures have become quite popular for complex applications in the past few years. They provide a modular style based on the philosophy of dividing overwhelming software projects into smaller and more controllable parts. The advantage of highly specialized applications gained prominence among developers, but introduces new challenges to the IT-operation.
However, with the advent of Kubernetes and the cloud-native development philosophy a couple of new possibilities emerged to run those service-based applications even better. Kubernetes is a wonderful answer for just as many IT-operation requirements as Django is for web development. The inherent monolithic design of Django can be tempting to roll out recurring operation patterns with each application. It's not about getting Django to run in a Kubernetes cluster (you may already solved this), it's about integrating Django as tightly as possible with Kubernetes in order to harness the full power of that platform. Creating the most robust, scalable and secure applications with Django by leveraging the existing expertise of our favorite framework is the main goal of this initiative.

Parts

Hurricane is supposed to make the most out of the existing Django ecosystem without reinventing the wheel. We will collect best-practices and opinions about how to run Django in Kubernetes and put them on Hurricane's roadmap.

Application Server

Why another app server instead of uwsgi, gunicorn or mod_wsgi? We need a cloud-native app server which is much more tidily coupled to the Django application itself. Think of special url routes for Kubernetes probes! Building a special View in each and every Django application is not an appropriate solution. What about the Kubernetes Metrics API? That's all something we don't want to take care of in our Django code.
Those traditional app servers (i.e. uwsgi et.al.) have a highly optimized process model for bare-server deployments with many CPUs, multiple threads and so on. In Kubernetes the scaling of an application is done through the Replication-value in a workload description manifest. This is no longer something we configure with app server parameters.

Todo

  • Basic setup, POC, logging
  • actual Tornado integration (currently uses the tornado.wsgi.WSGIContainer)
  • web sockets with Django 3
  • Testing, testing in production
  • Load-testing, automated performance regression testing
  • Implement the Kubernetes Metrics API
  • Different endpoints for all Kubernetes probes
  • Implement hooks for calling webservices (e.g. for deployment or health state changes)
  • Add another metrics collector endpoint (e.g Prometheus)

Celery

In the future, Hurricane provides a sophisticated Django-celery integration with health checks and Kubernetes-scaling.

Todo

  • Concept draft
  • Kubernetes health probes for celery workers
  • Kubernetes health probes for celery beat
  • Implement hooks for calling webservices (e.g. for deployment or health state changes)
  • Implement the Kubernetes Metrics API

AMQP Worker/Consumer

In the future, Hurricane provides a generic amqp worker with health checks and Kubernetes-scaling.

Todo

  • Concept draft
  • Kubernetes health probes for amqp workers
  • Implement hooks for calling webservices (e.g. for deployment or health state changes)
  • Implement the Kubernetes Metrics API

Guidelines

In order to keep Django as lean and swift as possible we have to get rid of several parts: unneeded middlewares, apps and other overhead. A small Django-based service does not need all the batteries Django comes with. In many cases the superb ORM (object relation mapper) and a simple HTTP-interface is all it needs.

Todo

  • Concept draft
  • Cookiecutter template
  • Container (Docker) best-practices

Installation

Hurricane is currently available only on Blueshoe's Python Package Index.

pip3 install hurricane

Add "hurricane" to your INSTALLED_APPS:

INSTALLED_APPS += (
    'hurricane',
)

Usage

Application Server

Run the application server

In order to start the Django app run the management command serve:

python manage.py serve

It simply starts a Tornado-based application server ready to serve your Django application. No need for any other app server.

There are a couple of command options:

Option Help
--static Serve collected static files
--media Serve media files
--autoreload Reload code on change
--debug Set Tornado's Debug flag (don't confuse with Django's DEBUG=True)
--port The port for Tornado to listen on (default is port 8000)
--probe The exposed path (default is /alive) for probes to check liveness and readyness
--probe-port The port for Tornado probe routes to listen on (default is the next port of --port)
--no-probe Disable probe endpoint

Probes and the System Check Framework

The probe endpoint invokes Django's check framework (please see: https://docs.djangoproject.com/en/2.2/topics/checks/). This endpoint is called in a certain interval by Kubernetes, hence we get regular checks on the application. That's a well-suited approach to integrate custom checks (please refer to the Django documentation how to do that) and get health and sanity checks for free. Upon unhealthy declared applications (error-level) Kubernetes will restart the application and remove unhealthy PODs once a new instance is in healthy state.
The port for the probe route is separated from the application's port. If not specified, the probe port is one port added to the application's port.

Logging

Be sure to add the hurricane logger to your Django logging configuration otherwise you won't see any output the moment you started the application server. Feel free to adjust the log level according to your needs.

Test Hurricane

pip install -r requirements.txt
coverage run manage.py test
coverage combine
coverage report

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_hurricane-0.3.5-py3-none-any.whl (10.7 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