python-spanner-django

command module
v0.0.2-alpha Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2020 License: BSD-3-Clause Imports: 19 Imported by: 0

README

django-spanner

ORM plugin for using Cloud Spanner as a database for Django.

🚨THIS CODE IS STILL UNDER DEVELOPMENT🚨

Table of contents

Installing it

Use the version of django-spanner that corresponds to your version of Django. For example, django-spanner 2.2.x works with Django 2.2.y. (This is the only supported version at this time.)

The minor release number of Django doesn't correspond to the minor release number of django-spanner. Use the latest minor release of each.

pip3 install --user .

Using it

After installing it, you'll need to edit your Django settings.py file and particularly the DATABASES section to point to an EXISTING database, of the format:

Format
DATABASES = {
    'default': {
        'ENGINE': 'django_spanner',
        'PROJECT': '<project_id>',
        'INSTANCE': '<instance_id>',
        'NAME': '<database_name>',
        # Only include this if you need to specify where to retrieve the
        # service account JSON for the credentials to connect to Cloud Spanner.
        'OPTIONS': {
            'credentials_uri': '<credentials_uri>',
        },
    },
}
Example

For example:

DATABASES = {
    'default': {
        'ENGINE': 'django_spanner',
        'PROJECT': 'appdev-soda-spanner-staging', # Or the GCP project-id
        'INSTANCE': 'django-dev1', # Or the Cloud Spanner instance
        'DATABASE': 'db1', # Or the Cloud Spanner database to use
    }
}

Functional tests

We have functional tests for individual components that can be run by

tox

Django integration tests

We run full integration tests with continuous integration on Google Cloud Build with Kokoro.

The tests to be run are specified in file django_test_apps.txt

There are 2 ways to run the tests:

django_test_suite.sh

This method requires an already existing Cloud Spanner instance. Expected environment variables:

Environment variables
Variable Description Comment
GOOGLE_APPLICATION_CREDENTIALS The Google Application Credentials file For example GOOGLE_APPLICATION_CREDENTIALS=~/Downloads/creds.json
PROJECT_ID The project id of the Google Application credentials being used For example PROJECT_ID=appdev-soda-spanner-staging
DJANGO_TEST_APPS The Django test suite apps to run For example DJANGO_TEST_APPS="basic i18n admin_views"
SPANNER_TEST_INSTANCE The Cloud Spanner instance to use, it MUST exist before running tests For example SPANNER_TEST_INSTANCE="django-tests"
DJANGO_TESTS_DIR The directory into which Django has been cloned to run the test suite For example DJANGO_TESTS_DIR=django_tests
Example run
GOOGLE_APPLICATION_CREDENTIALS=~/Downloads/creds.json \
PROJECT_ID=appdev-soda DJANGO_TEST_APPS="expressions i18n" \
SPANNER_TEST_INSTANCE=django-tests ./django_tests_suite.sh
Parallelization script

This method shards tests over multiple builds, and over available cores.

Environment variables

To run the tests locally, you'll need the following environment variables.

Variable Description Comment
GOOGLE_APPLICATION_CREDENTIALS The Google Application Credentials file For example GOOGLE_APPLICATION_CREDENTIALS=~/Downloads/creds.json
PROJECT_ID The project id of the Google Application credentials being used For example PROJECT_ID=appdev-soda-spanner-staging
DJANGO_WORKER_COUNT The number of parallel jobs to split the tests amongst To get all the tests run by one process, use a cout of 1, so DJANGO_WORKER_COUNT=1
DJANGO_WORKER_INDEX The zero based index of the parallel job number, to run tests, it is correlated with DJANGO_WORKER_COUNT and an offset to figure out which tests to run with this job
django_test_apps.txt The listing of Django apps to run Set the apps you'd like to be run in parallel
Example run
GOOGLE_APPLICATION_CREDENTIALS=~/Downloads/creds.json \
PROJECT_ID=appdev-soda DJANGO_TEST_APPS="expressions i18n" \
DJANGO_WORKER_COUNT=1 DJANGO_WORKER_INDEX=0SPANNER_TEST_INSTANCE=django-tests ./bin/parallelize_tests_linux

Limitations

Limitation Comment Resolution
Lack of DEFAULT for columns Cloud Spanner doesn't support using DEFAULT for columns thus the use of default values might have to enforced in your controller logic
Lack of FOREIGN KEY constraints Cloud Spanner doesn't support foreign key constraints thus they have to be defined in code
Lack of sequential and auto-assigned IDs Cloud Spanner doesn't autogenerate IDs and this integration instead creates UUID4 to avoid hotspotting so you SHOULD NOT rely on IDs being sorted We generate UUID4s for each AutoField
Numeric values are saved as FLOAT64 Cloud Spanner doesn't support the NUMERIC type thus we might have precision losses Decimal and Numeric are translated to FLOAT64. If Cloud Spanner adds NUMERIC in the future, you might need to migrate your columns
Optimistic transactions when running DDL and other statements Cloud Spanner CANNOT run DDL (CREATE, DROP, ALTER) in a Transaction and CAN ONLY run them in the DatabaseAdmin RPC so any mixes of DDL and other statements will make prior statements get run, DDL run, then following statements run separately
107 unexplored Django tests We need to run every single test in the Django test suite for 100% certainty Currently in progress to complete the 211 test cases
Table names CANNOT have spaces within them whether back-ticked or not Cloud Spanner DOEST NOT support tables with spaces in them for example Entity ID Ensure that your table names don't have spaces within them
Table names CANNOT have punctuation marks and MUST contain valid UTF-8 Cloud Spanner DOEST NOT support punctuation marks e.g. periods ".", question marks "?" in table names Ensure that your table names don't have punctuation marks
Lack of stored procedures and triggers Cloud Spanner DOES NOT support stored procedures nor triggers so if your code relies on them, you might need to move the logic into your application Not supported
Lack of VARIANCE, STDDEV database functions Cloud Spanned doesn't yet implement these functions

How it works

Overall design

Internals

🚨THIS CODE IS STILL UNDER DEVELOPMENT🚨

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL