Tango is a standalone RESTful Web service that runs and manages jobs. A job is a set of files that must satisfy the following constraints:
Makefile
that runs the job.Example jobs are provided for the user to peruse in clients/
. Tango has a REST API which is used for job submission.
Upon receiving a job, Tango will copy all of the job's input files into a VM, run make
, and copy the resulting output back to the host machine. Tango jobs are run in pre-configured VMs. Support for various Virtual Machine Management Systems (VMMSs) like KVM, Docker, or Amazon EC2 can be added by implementing a high level VMMS API that Tango provides.
A brief overview of the Tango respository:
tango.py
- Main tango serverjobQueue.py
- Manages the job queuejobManager.py
- Assigns jobs to free VMsworker.py
- Shepherds a job through its executionpreallocator.py
- Manages pools of VMsvmms/
- VMMS library implementationsrestful_tango/
- HTTP server layer on the main TangoTango was developed as a distributed grading system for Autolab at Carnegie Mellon University and has been extensively used for autograding programming assignments in CMU courses.
Please feel free to use Tango at your school/organization. If you run into any problems with the steps below, you can reach the core developers at autolab-dev@andrew.cmu.edu
and we would be happy to help.
Tango now runs on Python 3. However, there is a legacy branch master-python2 which is a snapshot of the last Python 2 Tango commit for legacy reasons. You are strongly encouraged to upgrade to the current Python 3 version of Tango if you are still on the Python 2 version, as future enhancements and bug fixes will be focused on the current master.
We will not be backporting new features from master
to master-python2
.
pre-commit install
to set up Git pre-commit linting scripts.Please see the git linear development guide for a more in-depth explanation of the version control model that we use.
Tango is released under the Apache License 2.0.