~daisy-pluckers/oops-repository/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
==========================
README for oops-repository
==========================

OOPS repository is a storage and reporting system for the server fault reports
- 'OOPSes' that Launchpad and other systems at Canonical use.

OOPS repository is maintained by the Launchpad
<https://launchpad.net/launchpad> team @ Canonical <http://www.canonical.com>.
The project uses Python 2.6 as its main development language, Cassandra for
scalable storage.

Runtime Dependencies
====================

* Cassandra (0.7)
* python-pycassa
* python-thrift 0.5 (for pycassa)
* Python

Build Dependencies
==================

* python-fixtures
* python-testtools
* testrepository

Home page, code etc
===================

https://launchpad.net/oops-repository has the project bug tracker, source code,
FAQs etc.

The code can be branch using bzr::

    $ bzr branch lp:oops-repository

Getting started
===============

Install cassanda. Choose a keyspace for oopsrepository and export OOPS_KEYSPACE
with that value. For instance::

    $ export OOPS_KEYSPACE=oopses

Create the schema::

    $ python -m oopsrepository.schema

Code structure
==============

Tests are in oopsrepository/tests.
Test helpers are in oopsrepository/testing.
Actual code is in oopsrepository.

Enjoy!