久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='0NIj4'></bdo><ul id='0NIj4'></ul>

    <small id='0NIj4'></small><noframes id='0NIj4'>

      1. <i id='0NIj4'><tr id='0NIj4'><dt id='0NIj4'><q id='0NIj4'><span id='0NIj4'><b id='0NIj4'><form id='0NIj4'><ins id='0NIj4'></ins><ul id='0NIj4'></ul><sub id='0NIj4'></sub></form><legend id='0NIj4'></legend><bdo id='0NIj4'><pre id='0NIj4'><center id='0NIj4'></center></pre></bdo></b><th id='0NIj4'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='0NIj4'><tfoot id='0NIj4'></tfoot><dl id='0NIj4'><fieldset id='0NIj4'></fieldset></dl></div>

        <tfoot id='0NIj4'></tfoot>
        <legend id='0NIj4'><style id='0NIj4'><dir id='0NIj4'><q id='0NIj4'></q></dir></style></legend>

      2. Hadoop Streaming - 找不到文件錯(cuò)誤

        Hadoop Streaming - Unable to find file error(Hadoop Streaming - 找不到文件錯(cuò)誤)
        <legend id='UcpDF'><style id='UcpDF'><dir id='UcpDF'><q id='UcpDF'></q></dir></style></legend>
          • <small id='UcpDF'></small><noframes id='UcpDF'>

            <i id='UcpDF'><tr id='UcpDF'><dt id='UcpDF'><q id='UcpDF'><span id='UcpDF'><b id='UcpDF'><form id='UcpDF'><ins id='UcpDF'></ins><ul id='UcpDF'></ul><sub id='UcpDF'></sub></form><legend id='UcpDF'></legend><bdo id='UcpDF'><pre id='UcpDF'><center id='UcpDF'></center></pre></bdo></b><th id='UcpDF'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='UcpDF'><tfoot id='UcpDF'></tfoot><dl id='UcpDF'><fieldset id='UcpDF'></fieldset></dl></div>

            <tfoot id='UcpDF'></tfoot>

              <tbody id='UcpDF'></tbody>
                <bdo id='UcpDF'></bdo><ul id='UcpDF'></ul>

                  本文介紹了Hadoop Streaming - 找不到文件錯(cuò)誤的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  我正在嘗試運(yùn)行一個(gè) hadoop-streaming python 作業(yè).

                  I am trying to run a hadoop-streaming python job.

                  bin/hadoop jar contrib/streaming/hadoop-0.20.1-streaming.jar 
                  -D stream.non.zero.exit.is.failure=true 
                  -input /ixml 
                  -output /oxml 
                  -mapper scripts/mapper.py 
                  -file scripts/mapper.py 
                  -inputreader "StreamXmlRecordReader,begin=channel,end=/channel" 
                  -jobconf mapred.reduce.tasks=0 
                  

                  我確保 mapper.py 擁有所有權(quán)限.它錯(cuò)誤地說(shuō)

                  I made sure mapper.py has all the permissions. It errors out saying

                  Caused by: java.io.IOException: Cannot run program "mapper.py":     
                  error=2, No such file or directory
                      at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
                      at org.apache.hadoop.streaming.PipeMapRed.configure(PipeMapRed.java:214)
                  ... 19 more
                  Caused by: java.io.IOException: error=2, No such file or directory
                      at java.lang.UNIXProcess.forkAndExec(Native Method)
                      at java.lang.UNIXProcess.(UNIXProcess.java:53)
                      at java.lang.ProcessImpl.start(ProcessImpl.java:91)
                      at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)
                  

                  我嘗試將 mapper.py 復(fù)制到 hdfs 并提供相同的 hdfs://localhost/mapper.py 鏈接,但這也不起作用!有關(guān)如何修復(fù)此錯(cuò)誤的任何想法?.

                  I tried copying mapper.py to hdfs and give the same hdfs://localhost/mapper.py link, that does not work too! Any thoughts on how to fix this bug?.

                  推薦答案

                  查看 HadoopStreaming wiki 上的示例頁(yè)面,看來(lái)你應(yīng)該改一下

                  Looking at the example on the HadoopStreaming wiki page, it seems that you should change

                  -mapper scripts/mapper.py 
                  -file scripts/mapper.py 
                  

                  -mapper mapper.py 
                  -file scripts/mapper.py 
                  

                  因?yàn)閭魉偷奈募M(jìn)入工作目錄".您可能還需要直接指定 python 解釋器:

                  since "shipped files go to the working directory". You might also need to specify the python interpreter directly:

                  -mapper /path/to/python mapper.py 
                  -file scripts/mapper.py 
                  

                  這篇關(guān)于Hadoop Streaming - 找不到文件錯(cuò)誤的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  python: Two modules and classes with the same name under different packages(python:不同包下同名的兩個(gè)模塊和類)
                  Configuring Python to use additional locations for site-packages(配置 Python 以使用站點(diǎn)包的其他位置)
                  How to structure python packages without repeating top level name for import(如何在不重復(fù)導(dǎo)入頂級(jí)名稱的情況下構(gòu)造python包)
                  Install python packages on OpenShift(在 OpenShift 上安裝 python 包)
                  How to refresh sys.path?(如何刷新 sys.path?)
                  Distribute a Python package with a compiled dynamic shared library(分發(fā)帶有已編譯動(dòng)態(tài)共享庫(kù)的 Python 包)
                  <legend id='5vdsE'><style id='5vdsE'><dir id='5vdsE'><q id='5vdsE'></q></dir></style></legend>
                    <tbody id='5vdsE'></tbody>

                  • <small id='5vdsE'></small><noframes id='5vdsE'>

                      • <bdo id='5vdsE'></bdo><ul id='5vdsE'></ul>
                          <i id='5vdsE'><tr id='5vdsE'><dt id='5vdsE'><q id='5vdsE'><span id='5vdsE'><b id='5vdsE'><form id='5vdsE'><ins id='5vdsE'></ins><ul id='5vdsE'></ul><sub id='5vdsE'></sub></form><legend id='5vdsE'></legend><bdo id='5vdsE'><pre id='5vdsE'><center id='5vdsE'></center></pre></bdo></b><th id='5vdsE'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5vdsE'><tfoot id='5vdsE'></tfoot><dl id='5vdsE'><fieldset id='5vdsE'></fieldset></dl></div>
                          <tfoot id='5vdsE'></tfoot>
                            主站蜘蛛池模板: 国产69久久精品成人看动漫 | 欧美在线激情 | 三级视频国产 | 久久久久国产精品一区三寸 | 一级做a爰片性色毛片视频停止 | 欧美黄色大片在线观看 | 中文字幕av网 | 久久久久国产精品午夜一区 | 欧美日韩国产在线观看 | 自拍偷拍亚洲一区 | 久久国产精品-国产精品 | 精品欧美乱码久久久久久 | 国产成人精品一区二区三区四区 | 日韩一区二区三区在线观看 | 国产激情一区二区三区 | 99精品久久 | 欧美一区二区三区 | www.成人久久| 中文字幕一区二区三区在线观看 | 欧美视频福利 | 国产日韩精品一区二区三区 | 欧美综合一区 | 亚洲视频免费 | 欧美日韩国产一区二区三区 | 亚洲 中文 欧美 日韩 在线观看 | 欧美视频成人 | 91精品国产91久久久久久最新 | 狠狠躁夜夜躁人人爽天天高潮 | av二区三区| 99这里只有精品视频 | 日韩在线视频一区 | 免费在线观看av片 | 日本福利视频免费观看 | 天天天堂| 污片在线免费观看 | 国产综合网址 | 欧美一区二区三区久久精品 | 国产在线观看一区二区 | 日韩靠逼 | 亚洲性视频| 欧美a∨|