A tracker for the LBRY protocol.
Go to file
2015-01-29 12:10:37 -05:00
backend docs: move driver docs into backend/README.md 2015-01-28 22:51:09 -05:00
cmd/chihaya 2015 2015-01-01 12:02:25 -05:00
config 2015 2015-01-01 12:02:25 -05:00
Godeps deps: Update dependencies to Go 1.4 2015-01-29 12:10:37 -05:00
http 2015 2015-01-01 12:02:25 -05:00
stats 2015 2015-01-01 12:02:25 -05:00
tracker 2015 2015-01-01 12:02:25 -05:00
.travis.yml TravisCI now uses Godep and IRC notices. 2014-10-22 21:57:06 -04:00
AUTHORS Reflect change in sorting in the descriptions 2014-07-06 23:58:34 -04:00
chihaya.go 2015 2015-01-01 12:02:25 -05:00
CONTRIBUTING.md docs: update CONTRIBUTING.md 2015-01-28 23:37:02 -05:00
example_config.json Begin refactor to better encapsulate configuration 2014-11-01 20:12:40 -04:00
LICENSE 2015 2015-01-01 12:02:25 -05:00
README.md docs: attempt to keep README within 80 chars 2015-01-28 23:26:03 -05:00

Chihaya Build Status

Chihaya is a high-performance BitTorrent tracker written in the Go programming language. It is still heavily under development and the current master branch should probably not be used in production (unless you know what you're doing).

Features include:

  • Public tracker feature-set with full compatibility with what exists of the BitTorrent spec
  • Private tracker feature-set with compatibility for a Gazelle-like deployment (WIP)
  • Low resource consumption, and fast, asynchronous request processing
  • Full IPv6 support, including handling for dual-stacked peers
  • Extensive metrics for visibility into the tracker and swarm's performance
  • Ability to prioritize peers in local subnets to reduce backbone contention
  • Pluggable backend driver that can coordinate with an external database

When would I use Chihaya?

Chihaya is a meant for every kind of BitTorrent tracker deployment. Chihaya has been used to replace instances of opentracker and also instances of ocelot. Chihaya handles torrent announces and scrapes in memory, but using a backend driver, can also asynchronously provide deltas to maintain a set of persistent data without throttling a database (this most useful for private tracker use-cases).

Building & Installing

Chihaya requires Go 1.3, Godep, and a Go environment previously setup.

$ export GOPATH=$PWD/chihaya
$ git clone github.com/chihaya/chihaya chihaya/src/github.com/chihaya/chihaya
$ godep go install chihaya/src/github.com/chihaya/cmd/chihaya

Testing

Chihaya has end-to-end test coverage for announces in addition to unit tests for isolated components. To run the tests, use:

$ cd $GOPATH/src/github.com/chihaya/chihaya
$ godep go test -v ./...

There is also a set of benchmarks for performance-critical sections of Chihaya. These can be run similarly:

$ cd $GOPATH/src/github.com/chihaya/chihaya
$ godep go test -v ./... -bench .