VNODES is the number of queues in rabbit that are available for subscribing. The name comes from riak, where the data ring (160bits) is chunked into many vnodes; vnodes outnumber physical nodes, so one node hosts several vnodes. That is the same design we use here.
See the notes on topic queue benchmarking before adjusting this value.
# File lib/chef/expander/configuration.rb, line 32 def self.config @config ||= Configuration::Base.new end
# File lib/chef/expander/configuration.rb, line 36 def self.init_config(argv) config.apply_defaults remaining_opts_after_parse = Configuration::CLI.parse_options(argv) # Need to be able to override the default config file location on the command line config_file_to_use = Configuration::CLI.config.config_file || config.config_file config.merge_config(Configuration::Base.from_chef_compat_config(config_file_to_use)) # But for all other config options, the CLI config should win over config file config.merge_config(Configuration::CLI.config) config.validate! remaining_opts_after_parse end
Generated with the Darkfish Rdoc Generator 2.