Exception: DruidConfig::Exceptions::NotAvailableNodes

Inherits:
StandardError
  • Object
show all
Defined in:
lib/druid_config/exceptions.rb

Overview

Indicate there aren’t any node available in Zookeeper to run the data. It returns the name of the service user is trying to call.

Instance Method Summary collapse

Constructor Details

#initialize(service) ⇒ NotAvailableNodes

Returns a new instance of NotAvailableNodes.



13
14
15
# File 'lib/druid_config/exceptions.rb', line 13

def initialize(service)
  super("There aren't any available #{service} node")
end