OSDN Git Service

adds `DC/OS in LXD` setup support.
[metasearch/grid-chef-repo.git] / roles / hbase.rb
index 096eafb..a20fbd5 100644 (file)
@@ -2,10 +2,9 @@ name 'hbase'
 description 'HBase node'
 
 run_list(
-  #'recipe[yum]',
   'role[java]',
-  'recipe[grid]',
-  'recipe[hadoop]',
+  'role[grid]',
+  'role[hadoop]',
   'recipe[hbase]'
 )
 
@@ -13,7 +12,12 @@ run_list(
 
 default_attributes(
   'hadoop' => {
-    'with_hbase' => true
+    'extra_configs' => {
+      'hdfs-site.xml' => {
+        'dfs.support.append' => 'true',
+        'dfs.datanode.max.xcievers' => '4096'
+      }
+    }
   }
 )