putting a remote file into hadoop without copying it to local disk

前端 未结 4 418
猫巷女王i
猫巷女王i 2020-12-04 10:44

I am writing a shell script to put data into hadoop as soon as they are generated. I can ssh to my master node, copy the files to a folder over there and then put them into

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-04 11:10

    The node where you have generated the data on, is this able to reach each of your cluster nodes (the name node and all the datanodes).

    If you do have data connectivity then you can just execute the hadoop fs -put command from the machine where the data is generated (assuming you have the hadoop binaries installed there too):

    #> hadoop fs -fs masternode:8020 -put test.bin hadoopFolderName/
    

提交回复
热议问题