A tracker for the LBRY protocol.
Go to file
Justin Li 8502867d94 Merge pull request #64 from chihaya/fix-blank-query-param-panic
Fix panic occurring when blank query params are present
2015-06-18 18:00:40 -04:00
backend backend: add a Ping method to backend 2015-02-08 17:14:48 -05:00
cmd/chihaya 2015 2015-01-01 12:02:25 -05:00
config Merge branch 'master' into udp 2015-03-27 22:05:48 -04:00
Godeps Update graceful import path 2015-04-28 20:32:19 -04:00
http Fix query parsing when blank values are present 2015-06-18 10:34:52 -04:00
stats stats/udp: nop on nil DefaultStats 2015-02-25 21:56:58 -05:00
tracker models: Announce field for AnnounceResponse 2015-04-04 15:42:28 -04:00
udp udp: basic announce test 2015-05-11 00:57:54 -04:00
.gitignore Add a .gitignore for the binary and config file 2015-02-20 12:02:00 -05:00
.travis.yml travis: set sudo=false 2015-02-09 19:24:01 -05:00
AUTHORS Reflect change in sorting in the descriptions 2014-07-06 23:58:34 -04:00
chihaya.go tracker: Pass listen address into tracker.Server.Serve() 2015-02-21 13:16:21 -05:00
CONFIGURATION.md docs: Break out config docs into a separate file 2015-03-24 00:38:20 -04:00
CONTRIBUTING.md docs: target for changes is develop, not master 2015-02-08 17:13:39 -05:00
Dockerfile dockerfile: initial 2015-03-19 23:39:31 -04:00
example_config.json Disable graceful signal handling 2015-04-28 20:27:39 -04:00
LICENSE 2015 2015-01-01 12:02:25 -05:00
README.md docs: Fix link to configuration.md 2015-03-24 00:41:52 -04:00

Chihaya

GoDoc Build Status Docker Repository on Quay.io

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 64-bit Go 1.4, Godep, and a Go environment previously set up.

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

Configuration

Copy example_config.json to your choice of location, and update the values as required. An explanation of the available keys can be found in CONFIGURATION.md.