Skip to main content

Django Cassandra Engine - the Cassandra backend for Django

Project description

All tools you need to start your journey with Apache Cassandra and Django Framework!

Latest version CI Donate

Features

  • integration with latest python-driver and optionally dse-driver from DataStax

  • working flush, migrate, sync_cassandra, inspectdb and dbshell commands

  • support for creating/destroying test database

  • accepts all Cqlengine and cassandra.cluster.Cluster connection options

  • automatic connection/disconnection handling

  • works well along with relational databases (as secondary DB)

  • storing sessions in Cassandra

  • working django forms

  • usable admin panel with Cassandra models

Plans (TODO)

  • User model stored in Cassandra (auth module)

Installation

Recommended installation:

pip install django-cassandra-engine

Basic Usage

  1. Add django_cassandra_engine to INSTALLED_APPS in your settings.py file:

    INSTALLED_APPS = ('django_cassandra_engine',) + INSTALLED_APPS
  2. Change DATABASES setting:

    DATABASES = {
        'default': {
            'ENGINE': 'django_cassandra_engine',
            'NAME': 'db',
            'TEST_NAME': 'test_db',
            'HOST': 'db1.example.com,db2.example.com',
            'OPTIONS': {
                'replication': {
                    'strategy_class': 'SimpleStrategy',
                    'replication_factor': 1
                }
            }
        }
    }
  3. Define some model:

    # myapp/models.py
    
    import uuid
    from cassandra.cqlengine import columns
    from django_cassandra_engine.models import DjangoCassandraModel
    
    class ExampleModel(DjangoCassandraModel):
        example_id    = columns.UUID(primary_key=True, default=uuid.uuid4)
        example_type  = columns.Integer(index=True)
        created_at    = columns.DateTime()
        description   = columns.Text(required=False)
  4. Run ./manage.py sync_cassandra

  5. Done!

Documentation

The documentation can be found online here.

Donation

If this project help you reduce time to develop, you can give me a cup of coffee :)

Donate

License

Copyright (c) 2014-2018, Rafał Furmański.

All rights reserved. Licensed under BSD 2-Clause License.

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-cassandra-engine-1.5.2.tar.gz (29.3 kB view details)

Uploaded Source

Built Distribution

django_cassandra_engine-1.5.2-py2-none-any.whl (38.8 kB view details)

Uploaded Python 2

File details

Details for the file django-cassandra-engine-1.5.2.tar.gz.

File metadata

File hashes

Hashes for django-cassandra-engine-1.5.2.tar.gz
Algorithm Hash digest
SHA256 f8d8a8a56d30a9290707c34a593936a3d3455b7289c99606b07e0a9d9b66b7bb
MD5 6518101c2b44843a74ef6b425c111201
BLAKE2b-256 192f1ee02cfd0e6f8da0e58f8d9da4cc7ca352afb11a29353439278bba7e010b

See more details on using hashes here.

File details

Details for the file django_cassandra_engine-1.5.2-py2-none-any.whl.

File metadata

File hashes

Hashes for django_cassandra_engine-1.5.2-py2-none-any.whl
Algorithm Hash digest
SHA256 e3aff3810b4b724d838a1f41f6832cdf7ec0ad6201e781a04423a46cd1095fd8
MD5 ffab182aeb3b9aff24cc83639ffeeaa0
BLAKE2b-256 308a387160302e8d3b90bc681690729e1cf62d2e49d89226afb73303880a4249

See more details on using hashes here.

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