blob: 7db9eaec28d2295ff4fec457368d0cd5771123f7 [file] [log] [blame]
#
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
#
#
class hdp2-zookeeper::params() inherits hdp2::params
{
$conf_dir = $hdp2::params::zk_conf_dir
$zk_user = $hdp2::params::zk_user
$zk_log_dir = hdp_default("zk_log_dir","/var/log/zookeeper")
$zk_data_dir = hdp_default("zk_data_dir","/var/lib/zookeeper/data")
$zk_pid_dir = hdp_default("zk_pid_dir","/var/run/zookeeper")
$zk_pid_file = "${zk_pid_dir}/zookeeper_server.pid"
$tickTime = hdp_default("tickTime","2000")
$initLimit = hdp_default("initLimit","10")
$syncLimit = hdp_default("syncLimit","5")
$clientPort = hdp_default("clientPort","2181")
}