---- HBASE MODULE ----
class { 'hbase':
cluster => 'feeds_e',
namenode => 'ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com',
zookeeper_quorum => 'zk1,zk2,zk3',
hbase_site_opts => {
'hbase.replication' => true,
'hbase.snapshot.enabled' => true,
'hbase.snapshot.region.timeout' => '35000',
'replication.sink.client.ops.timeout' => '20000',
'replication.sink.client.retries.number' => '3',
'replication.source.size.capacity' => '4194304',
'replication.source.nb.capacity' => '100',
...
}
}
---- FACT BASED VARIABLES ----
$hbase_heap_size = $ec2_instance_type ? {
'hi1.4xlarge' => '24000',
'm2.2xlarge' => '24000',
'm2.xlarge' => '11480',
'm1.xlarge' => '11480',
'm1.large' => '6500',
...
}
Puppet Module