Skip to content

xyzisinus/Tango

This branch is 132 commits ahead of, 130 commits behind autolab/Tango:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a0a7434 · Nov 9, 2019
Mar 17, 2016
Aug 20, 2019
Feb 13, 2017
Oct 18, 2019
Aug 22, 2018
Apr 1, 2015
Oct 18, 2019
Oct 9, 2019
Dec 10, 2015
Mar 12, 2018
Oct 9, 2019
Feb 25, 2016
Nov 21, 2014
Jul 26, 2017
Aug 13, 2018
Oct 10, 2015
Aug 22, 2018
Aug 22, 2018
Nov 9, 2019
Aug 22, 2018
Aug 11, 2017
Sep 3, 2019
Aug 22, 2018
Nov 20, 2018
Mar 17, 2016

Repository files navigation

Tango Circle CI

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:

  1. There must be exactly one Makefile that runs the job.
  2. The output for the job should be printed to stdout.

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 server
  • jobQueue.py - Manages the job queue
  • jobManager.py - Assigns jobs to free VMs
  • worker.py - Shepherds a job through its execution
  • preallocator.py - Manages pools of VMs
  • vmms/ - VMMS library implementations
  • restful-tango/ - HTTP server layer on the main Tango

Tango 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.

Using Tango

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.

  1. Follow the steps to set up Tango.
  2. Read the documentation for the REST API.
  3. Read the documentation for the VMMS API.
  4. Test whether Tango is set up properly and can process jobs.

Contributing to Tango

  1. Fork the Tango repository.
  2. Create a local clone of the forked repo.
  3. Make a branch for your feature and start committing changes.
  4. Create a pull request (PR).
  5. Address any comments by updating the PR and wait for it to be accepted.
  6. Once your PR is accepted, a reviewer will ask you to squash the commits on your branch into one well-worded commit.
  7. Squash your commits into one and push to your branch on your forked repo.
  8. A reviewer will fetch from your repo, rebase your commit, and push to Tango.

Please see the git linear development guide for a more in-depth explanation of the version control model that we use.

License

Tango is released under the Apache License 2.0.

About

Standalone RESTful autograding service

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 85.9%
  • C 10.8%
  • Shell 1.9%
  • Dockerfile 1.1%
  • Makefile 0.3%