Skip to main content

Django backend for YugabyteDB

Project description

Prerequisites

  • GCC

  • Python 3.8 and above

  • Psycopg2-binary

  • Django 3.16 or above

Need for Django Backend for YugabyteDB

YugabyteDB needs a separate backend for Django. This is because of mainly 2 reasons.

  • Django tries to create Inet data types as primary keys in Django test suites. Since this is not supported, we map Inet types to varchar(15) and varchar(39) in the YB backend.

  • We also need it to support type change from int to BigInt and numeric(m,n) to double precision. This is required for Django DB migrations. For now, the YB backend ignores these type changes.

Installing in Python Virtual Environment From Source

Install the yb-django package in the python virtual environment. Right now, you have to use the source code:

$ git clone https://github.com/yugabyte/yb-django.git

$ python -m pip install -r <repo_path>/yb-django/requirements.txt

$ python -m pip install -e <repo_path>/yb-django/

Check if it is installed correctly:

$ pip list —local

Use the backend with your Application

Update the DATABASES setting in your Django project’s settings to point to YB server using Django YB backend:

DATABASES = {
    'default': {
        'ENGINE': 'django_yugabytedb',
        'NAME': 'yugabyte',
        'HOST': 'localhost',
        'PORT': 5433,
        'USER': 'yugabyte'
    }
}

Known bugs and issues

  • The creation of indexes in YugabyteDB is a little slow.

  • Since Inet is mapped to varchar in the backend, comparison between data in the inet column wth Inet type will fail.

  • For YugabyteDB verions earlier than 2.9, the savepoint feature is not supported.

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-yugabytedb-4.0.0.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

django_yugabytedb-4.0.0-py3-none-any.whl (10.0 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