hdfs - How can i set the map chunk size in hadoop? -


i know default size of chunks in hadoop 64 mb. want change it. how can this? thanks

in hadoop version 1.0 default size 64mb , in version 2.0 default size 128mb. if want change block size go hdfs-site.xml file , add following property

<property>      <name>dfs.block.size<name>      <value>134217728<value>      <description>block size<description>  <property> 

note: should mention size in bits.for example : 134217728 bits = 128 mb.

for further query go link (extra)

change block size of existing files in hadoop


Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -