A tracker for the LBRY protocol.
Go to file
Jimmy Zelinskie c994988ad5 Merge pull request #237 from jzelinskie/v1jwtfix
jwt: verifying JWT are now client errors
2016-09-30 09:57:58 -04:00
api remove all private tracker logic 2016-01-04 18:26:29 -05:00
cmd/chihaya 2015 2015-01-01 12:02:25 -05:00
config add support for jwt validation of infohashes 2016-01-13 16:14:54 -05:00
Godeps update godeps with jwt dependencies 2016-01-13 16:14:54 -05:00
http add support for jwt validation of infohashes 2016-01-13 16:14:54 -05:00
stats replace time.NewTicker().C with time.After 2016-01-13 16:14:54 -05:00
tracker jwt: verifying JWT are now client errors 2016-09-29 15:52:52 -04:00
udp replace time.NewTicker().C with time.After 2016-01-13 16:14:54 -05:00
.gitignore Use godep restore to set up dependencies 2015-06-18 20:16:24 -04:00
.travis.yml drop Go 1.4 from travis 2015-10-25 15:31:24 -04:00
AUTHORS Reflect change in sorting in the descriptions 2014-07-06 23:58:34 -04:00
chihaya.go remove all private tracker logic 2016-01-04 18:26:29 -05:00
CONFIGURATION.md add support for jwt validation of infohashes 2016-01-13 16:14:54 -05:00
CONTRIBUTING.md docs: update primary branch to be master 2015-06-26 23:00:25 -04:00
debug.go chihaya: add copyright header to debug.go 2015-09-13 00:09:45 -04:00
Dockerfile docker: move to alpine & mount config file only 2016-09-27 13:39:27 -04:00
example_config.json add support for jwt validation of infohashes 2016-01-13 16:14:54 -05:00
LICENSE 2015 2015-01-01 12:02:25 -05:00
README.md docker: move to alpine & mount config file only 2016-09-27 13:39:27 -04:00

Chihaya

GoDoc License 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).

Current features include:

  • Public tracker feature-set with full compatibility with what exists of the BitTorrent spec
  • 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
  • JWT Validation to approve the usage of a given infohash.

Planned features include:

  • Private tracker feature-set with compatibility for a Gazelle-like deployment (WIP)

When would I use Chihaya?

Chihaya is a eventually 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. However, using a backend driver, Chihaya can also asynchronously provide deltas to maintain a set of persistent data without throttling a database. This is particularly useful behavior for private tracker use-cases.

Running Chihaya

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.

Docker

# Download and edit the example config
curl -L https://raw.githubusercontent.com/chihaya/chihaya/release-v1.0/example_config.json -o config.json
vi config.json

# Run the container with the config file mounted
docker run -p 6880-6882:6880-6882 -v $PWD/config.json:/config.json:ro quay.io/jzelinskie/chihaya:v1.0.1 -v=5

Developing Chihaya

Building & Installing

Chihaya requires Go 1.5+ (preferrably the latest stable Go), Godep, and a Go environment previously set up.

$ export GOPATH=$PWD/chihaya
$ git clone https://github.com/chihaya/chihaya.git chihaya/src/github.com/chihaya/chihaya
$ cd chihaya/src/github.com/chihaya/chihaya/cmd/chihaya/
$ godep restore
$ go install github.com/chihaya/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 .

Contributing

See CONTRIBUTING.md for guidelines to contributing to the project. Feel free to make issues or ask questions. Our maintainers are also always idle in #chihaya on freenode.