Skip to main content

Django database backend for MariaDB Galera Cluster

Project description

A Django application providing a database backend for MariaDB Galera Cluster.

Features

  • Loadbalancing

  • Read/Write Splitting

  • Optimistic transactions on slaves

  • Automatic failover on connection failures

Setup

DATABASES = {
    'default': {
        'ATOMIC_REQUESTS': True,
        'ENGINE': 'galera.backends.readwritesplit',
        # 'HOST': 'localhost',                      # prefer a local node for faster access times
        # 'HOST': '/var/run/mysqld/mysqld.sock',    # also works with sockets
        'PORT': 3306,
        'NAME': 'db_name',
        'USER': 'db_username',
        'PASSWORD': 'db_password',
        'NODES': {
            'db1': {'HOST': '10.0.1.2'},
            'db2': {'HOST': '10.0.1.3'},
            'db3': {'HOST': '10.0.1.4'},
            # 'db4': {'HOST': '10.0.1.4', 'PORT': 3307},    # node settings inherit but can be overwritten
        }
    }
}

MIDDLEWARE = [
    # Optional: the middleware repeats a request if a deadlock occurs
    'galera.middleware.GaleraMiddleware'
]

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

django-galera-0.2.tar.gz (4.7 kB view hashes)

Uploaded Source

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