A modular, vendor-neutral API, that wraps provisioning instructions for all CDN vendors that support it.
Go to file
amitgandhinz 8daef25ef9 added pylint and cleaned up test-requirements 2014-08-07 17:06:03 -04:00
cdn Models and unittests for models 2014-08-05 11:02:12 -04:00
docker Readme file for the Cassandra Docker setup 2014-07-21 10:56:03 -04:00
etc Remove depency on falcon, update default transport driver to pecan 2014-07-30 15:02:28 -04:00
requirements Remove depency on falcon, update default transport driver to pecan 2014-07-30 15:02:28 -04:00
tests added pylint and cleaned up test-requirements 2014-08-07 17:06:03 -04:00
.coveragerc ignore openstack/common files for coverage checks 2014-07-23 16:02:12 -04:00
.gitignore added git ignore to ignore test result files and logs etc 2014-07-08 10:00:32 -04:00
AUTHORS.rst updated Authors list 2014-07-14 16:49:29 -04:00
HACKING.rst Update Hacking.rst 2014-07-18 16:30:48 -04:00
LICENSE Initial commit 2014-02-12 08:30:06 -08:00
MANIFEST.in Initial Commit 2014-02-12 11:33:37 -05:00
README.rst Update README.rst 2014-07-30 17:42:33 -04:00
openstack-common.conf updated openstack/common files 2014-07-23 16:13:36 -04:00
setup.cfg Update setup.cfg 2014-07-28 14:25:50 -04:00
setup.py Made setup.py PEP8 compatible 2014-07-25 16:49:30 -04:00
tox.ini added pylint and cleaned up test-requirements 2014-08-07 17:06:03 -04:00

README.rst

CDN

Content Delivery Network Management as a Service

Note: This is a work in progress and is not currently recommended for production use.

What is CDN

Users have come to expect exceptional speed in their applications, websites, and video experiences. Because of this, using a CDN has become standard for companies, no matter their size.

CDN will take all the guess work out of the CDN market for our users. CDN will give them a consistently speedy experience from integrated partners, with an easy to use RESTful API.

Vendor lock-in to a particular CDN provider is removed by abstracting away the plethora of vendor API's available. This means that a customer only has to integrate with one CDN API, and reap the benefits of using multiple providers.

Your content can be distributed to multiple providers seamlessly instead of just one.

Running performance benchmarks against each configured CDN provider allows you to simply repoint your DNS at the new provider; and with that simple change you can ensure your application is running using the fastest provider at the time. It will also allow you to handle CDN failures and minimize disruption to your application from CDN outages.

Features

  • Wraps third party CDN provider API's
  • Sends configurations to n configured CDN providers
  • Supports multiple backends (CassandraDB recommended)
    • CassandraDB
    • Your DB provider here
  • Openstack Compatable
    • Uses Keystone for authentication
  • Multiple Origins to pull from (including Rackspace Cloud Files)
  • Supports Multiple Domains
  • Custom Caching and TTL rules
  • Set Restrictions on who can access cached content

What CDN is not

CDN does not run its own Edge Cache or POP servers. This is purely a management API to abstract away the myriad of CDN providers on the market.

Getting Started

Note: These instructions are for running a local instance of CDN and not all of these steps are required. It is assumed you have CassandraDB installed and running.

  1. From your home folder create the ~/.cdn folder and clone the repo:

    $ cd
    $ mkdir .cdn
    $ git clone https://github.com/rackerlabs/cdn.git
  2. Copy the CDN config files to the directory ~/.cdn:

    $ cp cdn/etc/cdn.conf ~/.cdn/cdn.conf
    $ cp cdn/etc/logging.conf ~/.cdn/logging.conf
  3. Find the [drivers:storage:cassandradb] section in ~/.cdn/cdn.conf and modify the URI to point to your local casssandra cluster:

    [drivers:storage:cassandra]
    cluster = "localhost"
    keyspace = cdn
  4. By using cassandra storage plugin, you will need to create the default keyspace "cdn" on your cassandra host/cluster. So log into cqlsh, do:

    cqlsh> CREATE KEYSPACE cdn WITH REPLICATION = { 'class' : 'SimpleStrategy' , 'replication_factor' :  1}  ;
  5. For logging, find the [DEFAULT] section in ~/.cdn/cdn.conf and modify as desired:

    log_file = server.log
  6. Change directories back to your local copy of the repo:

    $ cd cdn
  7. Install general requirements:

    $ pip install -r requirements/requirements.txt

    Install Requirements for each Provider configured:

    $ pip install -r cdn/providers/fastly/requirements.txt

    Run the following so you can see the results of any changes you make to the code without having to reinstall the package each time:

    $ pip install -e .

    Installing the fastly client library may have issues. Copy the README.md file to README and try again.

  8. Start the CDN server:

    $ cdn-server
  9. Test out that CDN is working by requesting the home doc (with a sample project ID):

    $ curl -i -X GET http://0.0.0.0:8888/v1.0/123

You should get an HTTP 200 along with some headers that will look similar to this:

HTTP/1.0 200 OK
Date: Thu, 13 Feb 2014 14:34:21 GMT
Server: WSGIServer/0.1 Python/2.7.3
Content-Length: 464
Content-Type: application/json-home
Cache-Control: max-age=86400

Installing Cassandra Locally

Mac OSX

  1. Update your Java SDK to the latest version (v7+)

    http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

You can check the version currently running with

$java -version

  1. Follow the instructions on the datastax site to install cassandra for Mac OSX

    http://www.datastax.com/2012/01/working-with-apache-cassandra-on-mac-os-x

  2. CREATE KEYSPACE cdn WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };

  3. Import the Cassandra Schema to set up the required tables that CDN will need

    Open ./cqlsh and import the /cdn/storage/cassandra/schema.cql file

Running tests

First install the additional requirements:

$ pip install tox

And then run tests:

$ tox -e py27