OSDN Git Service

add .envrc
[metasearch/grid-chef-repo.git] / roles / hbase.rb
1 name 'hbase'
2 description 'HBase node'
3
4 run_list(
5   'role[java]',
6   'role[grid]',
7   'role[hadoop]',
8   'recipe[hbase]'
9 )
10
11 #env_run_lists "prod" => ["recipe[apache2]"], "staging" => ["recipe[apache2::staging]"], "_default" => []
12
13 default_attributes(
14   'hadoop' => {
15     'extra_configs' => {
16       'hdfs-site.xml' => {
17         'dfs.support.append' => 'true',
18         'dfs.datanode.max.xcievers' => '4096'
19       }
20     }
21   }
22 )
23
24 #override_attributes "apache2" => { "max_children" => "50" }