crowbar/crowbar-hadoop

View on GitHub
chef/cookbooks/zookeeper/templates/default/zoo.cfg.erb

Summary

Maintainability
Test Coverage
#
# Cookbook Name: zookeeper
# File: zoo.cfg
#
# Copyright (c) 2011 Dell Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

#######################################################################
# Generated and maintained by Crowbar for <%= @node[:fqdn] %>
#######################################################################

# The number of milliseconds of each tick.
tickTime=<%= @node[:zookeeper][:tick_time] %>

# The number of ticks that the initial synchronization phase can take.
initLimit=<%= @node[:zookeeper][:init_limit] %>

# The number of ticks that can pass between sending a request and
# getting an acknowledgement.
syncLimit=<%= @node[:zookeeper][:sync_limit] %>

# Directory where the snapshot is stored.
dataDir=<%= @node[:zookeeper][:data_dir] %>

<% if @node[:zookeeper][:data_log_dir] %>
# Directory where the zoopkeeper log files are stored.
dataLogDir=<%= @node[:zookeeper][:data_log_dir] %>
<% end %>

# Port at which the clients will connect.
clientPort=<%= @node[:zookeeper][:client_port] %>

<% if !@servers.nil? && @servers.size > 0 -%>
# Zookeeper servers.
  <% @servers.each_with_index do |server, i| %>
server.<%= i + 1 %>=<%= server[:ipaddress] %>:<%= server[:peer_port] %>:<%= server[:leader_port] %> 
  <% end -%>
<% else -%>
# No zookeeper servers configured.
<% end -%>