-
Notifications
You must be signed in to change notification settings - Fork 218
Roadmap
Andrew Montalenti edited this page Jul 26, 2014
·
7 revisions
This library's primary focus is on a few key areas core to writing, running, monitoring, and debugging clusters in Python. These are:
- local execution using Storm
LocalCluster
(DONE) - Python dependency management, utilizing virtualenv tooling (DONE)
- an enhanced Pythonic support library (DONE)
- Python 3 support (DONE)
- logging and log tailing using the
logging
module andfabric
(DONE) - generator / co-routine based Bolts and Spouts (IN PROGRESS)
- remote debugging that exposes
pdb
on each spout/bolt over a socket (IN PROGRESS) - PyPy support (IN PROGRESS)
- post-mortem debugging support that saves stack trace objects for
pdb.pm()
(NOT STARTED) - out-of-box Sentry/Raven support (NOT STARTED)
- decorator versions for Bolts and Spouts,
@bolt
and@spout
(NOT STARTED)