├── .gitmodules ├── LICENSE ├── README.md ├── docs ├── affinity.md ├── circuit-breaking.md ├── cross_language_testing │ ├── cross_language_testing_protocol.md │ └── running.md ├── error-mapping-tchannel-http.md ├── go-guide.md ├── http.md ├── images │ ├── circuit_breaking.png │ ├── hystrix_dashboard.png │ ├── rate_limiting_sliding_window1.png │ └── rate_limiting_sliding_window2.png ├── index.md ├── json.md ├── logo.md ├── meta.md ├── metrics.md ├── node-guide.md ├── protocol.md ├── python-guide.md ├── rate-limiting.md ├── raw.md ├── sims │ ├── affinity.py │ └── gossip_weighted_value.py ├── sthrift.md ├── tchannel-dark.svg ├── tchannel-light.svg └── thrift.md ├── idl └── github.com │ └── uber │ └── tchannel │ └── meta.thrift └── mkdocs.yml /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/README.md -------------------------------------------------------------------------------- /docs/affinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/affinity.md -------------------------------------------------------------------------------- /docs/circuit-breaking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/circuit-breaking.md -------------------------------------------------------------------------------- /docs/cross_language_testing/cross_language_testing_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/cross_language_testing/cross_language_testing_protocol.md -------------------------------------------------------------------------------- /docs/cross_language_testing/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/cross_language_testing/running.md -------------------------------------------------------------------------------- /docs/error-mapping-tchannel-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/error-mapping-tchannel-http.md -------------------------------------------------------------------------------- /docs/go-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/go-guide.md -------------------------------------------------------------------------------- /docs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/http.md -------------------------------------------------------------------------------- /docs/images/circuit_breaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/images/circuit_breaking.png -------------------------------------------------------------------------------- /docs/images/hystrix_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/images/hystrix_dashboard.png -------------------------------------------------------------------------------- /docs/images/rate_limiting_sliding_window1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/images/rate_limiting_sliding_window1.png -------------------------------------------------------------------------------- /docs/images/rate_limiting_sliding_window2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/images/rate_limiting_sliding_window2.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/json.md -------------------------------------------------------------------------------- /docs/logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/logo.md -------------------------------------------------------------------------------- /docs/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/meta.md -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/node-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/node-guide.md -------------------------------------------------------------------------------- /docs/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/protocol.md -------------------------------------------------------------------------------- /docs/python-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/python-guide.md -------------------------------------------------------------------------------- /docs/rate-limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/rate-limiting.md -------------------------------------------------------------------------------- /docs/raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/raw.md -------------------------------------------------------------------------------- /docs/sims/affinity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/sims/affinity.py -------------------------------------------------------------------------------- /docs/sims/gossip_weighted_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/sims/gossip_weighted_value.py -------------------------------------------------------------------------------- /docs/sthrift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/sthrift.md -------------------------------------------------------------------------------- /docs/tchannel-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/tchannel-dark.svg -------------------------------------------------------------------------------- /docs/tchannel-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/tchannel-light.svg -------------------------------------------------------------------------------- /docs/thrift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/docs/thrift.md -------------------------------------------------------------------------------- /idl/github.com/uber/tchannel/meta.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/idl/github.com/uber/tchannel/meta.thrift -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel/HEAD/mkdocs.yml --------------------------------------------------------------------------------