gearman-ruby
gearman-ruby copied to clipboard
Official! Ruby library for the Gearman distributed job system
The current version is 4.0.7, but the newest version on RubyGems is 4.0.5. Any plans on releasing 4.0.7? Reason for asking: 4.0.5 sometime raises `undefined method 'hostport' for #`, but...
I'm looking for a little bit of direction before I start digging into this. I'm currently getting a lot of these errors on the line `raise ProtocolError, "Invalid magic '#{magic}'"...
Issue https://github.com/johnewart/gearman-ruby/issues/26
I think ``` message = "Network error on read from #{connection.hostport} while adding job, marking server bad" ``` should be ``` message = "Network error on read from #{connection.to_host_port} while...
In gearman command line tool, it allow to control the times of run before exiting. ` -c - Number of jobs for worker to run before exiting` The goal: one...
uninitialized constant Gearman::Util (NameError)
If the `arg` string given to `Task.new` is encoded as UTF-8 and contains chars such as `åäö`, an `Encoding::CompatibilityError Incompatible character encodings: UTF-8 and ASCII-8BIT` is thrown on line [217](https://github.com/gearman-ruby/gearman-ruby/blob/master/lib/gearman/task.rb#L217)....
`Gearman::Server` is a uninitialized constant, maybe forget to require it ? ``` 2.1.5 :001 > require 'gearman' => true 2.1.5 :002 > Gearman::Server NameError: uninitialized constant Gearman::Server from (irb):2 from...
My workers are raising exceptions and silently failing to finish. How can I have worker exceptions printed to stdout/stderr of the console running the worker?