Go to file
Ben Lewis f0587c8cda
Merge pull request #72 from twitter/blewis/upgrade-to-v-11
Update CHANGELOG
2018-09-14 11:06:36 -06:00
lib Extract wrapped exception class creation 2014-03-19 17:46:06 -07:00
test Compare bytes and require http server to fix tests 2017-10-19 12:04:33 -06:00
.gitignore add travis ci support 2012-11-26 13:15:52 -08:00
.travis.yml Drop Ruby 1.9.3 support entirely 2017-10-19 12:16:24 -06:00
CHANGELOG Update CHANGELOG 2018-09-14 10:59:33 -06:00
Gemfile Change to https rubygems source 2014-03-19 17:21:45 -07:00
LICENSE Add things. 2009-10-13 21:03:15 -07:00
README.rdoc change link 2017-12-18 10:18:14 -08:00
Rakefile remove Echoe dependency 2012-11-26 11:50:28 -08:00
thrift_client.gemspec Thrift version update, tests pass 2018-09-11 14:44:52 -07:00

README.rdoc

== thrift_client {<img src="https://travis-ci.org/twitter/thrift_client.png" />}[https://travis-ci.org/twitter/thrift_client]

A Thrift client wrapper that encapsulates some common failover behavior.

== Features

* Transparent connection management
* Configurable failover and retry backoff
* Ruby 2.1 compatibility
* ThriftClient::Simple class, for working without generated bindings.

The Github source repository is {here}[http://github.com/twitter/thrift_client/]. Patches and contributions are very welcome.

== Usage

Instantiate a client:

  client = ThriftClient.new(CassandraRb::Client, '127.0.0.1:9160', :retries => 2)

You can then make calls to the server via the <tt>client</tt> instance as if was your internal Thrift client. The connection will be opened lazily and methods will be proxied through.

  client.get_string_list_property("keyspaces")

On failures, the client will try the remaining servers in the list before giving up. See ThriftClient for more.

== Timeouts

Timeouts are enforced per-try, so if you have a timeout of n and do m retries, the total time it could take is n*m.

== Connection Handling

The library will shuffle the host list then work its way down this list, only moving to the next host if it received an error or you've doing more than server_max_requests requests with that host (defaults to 0 which means there's no limit).

Servers that throw an error get marked as dead and will only be retried every server_retry_period seconds (at that time all dead servers are retried, no matter long they've been marked as dead).

== Installation

You need Ruby 2.1.7. Just run:

  sudo gem install thrift_client

== Additional Documentation

Additional documentation and api access can be found {here}[http://www.rubydoc.info/gems/thrift/Thrift]

== Contributing

To contribute changes:

1. Fork the project
2. Make your change, adding tests
3. Send a pull request to twitter

== Reporting problems

The Github issue tracker is {here}[http://github.com/twitter/thrift_client/issues].

== License

Copyright 2009-2012 Twitter, Inc. See included LICENSE file.

The public certificate for this gem is here[http://blog.evanweaver.com/files/evan_weaver-original-public_cert.pem].