Evans Ye created BIGTOP-1687:
--------------------------------
Summary: Puppet: fix wrong array representation for
hadoop-zookeeper::server::ensemble
Key: BIGTOP-1687
URL: https://issues.apache.org/jira/browse/BIGTOP-1687
Project: Bigtop
Issue Type: Bug
Components: deployment
Affects Versions: 0.8.0
Reporter: Evans Ye
Assignee: Evans Ye
The variable for hadoop-zookeeper::server::ensemble in
hieradata/bigtop/cluster.yaml has a problem:
{code}
hadoop-zookeeper::server::ensemble:
- ["%{hiera('bigtop::hadoop_head_node')}:2888:3888"]
{code}
This will result in the deployed *zoo.cfg* has wrong configuration:
{code}
server.0:["bigtop1.docker:2888:3888"]
{code}
Hence the zookeeper and HBase can not successfully deployed.
Here's the correct version of zoo.cfg. It should be some thing like this:
{code}
server.0=bigtop1.docker:2888:3888
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)