Experience with Hadoop?

前端 未结 9 1900
傲寒
傲寒 2021-02-08 21:49

Have any of you tried Hadoop? Can it be used without the distributed filesystem that goes with it, in a Share-nothing architecture? Would that make sense?

I\'m also inte

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-08 22:23

    Great theoretical answers above.

    To change your hadoop file system to local, you can change it in "core-site.xml" configuration file like below for hadoop versions 2.x.x.

     
        fs.defaultFS
        file:///
      
    

    for hadoop versions 1.x.x.

     
        fs.default.name
        file:///
      
    

提交回复
热议问题