oozie hadoop流媒体

jgwigjjp  于 2021-06-01  发布在  Hadoop
关注(0)|答案(2)|浏览(399)

我正在尝试编写一个简单的仅Maphadoop流式作业,从hdfs读取数据并将其推送到vertica。
我写了一些shell脚本如下
加载.sh

hadoop jar hadoop-streaming-2.7.3.2.5.3.0-37.jar -input $INPUT_DIR -mapper /user/oozie/adhoc_data_load/scripts/export.sh -output $OUTPUT_DIR

导出.sh

./vsql -c "copy $TABLE from stdin delimiter E'\t' direct null '\\N';" -U $DBUSER -w $DBPWD -h $DBHOST -p $DBPORT

工作流程:

<action name="loadToVertica">
    <shell xmlns="uri:oozie:shell-action:0.1">
            <job-tracker>${jobTracker}</job-tracker>
            <name-node>${nameNode}</name-node>
            <exec>loadVertica.sh</exec>
            <argument>${STREAMING_JAR_PATH}</argument>
            <argument>${nameNode}/user/oozie/optus_adhoc_data/${exportDataDate}</argument>
            <argument>${TABLE_NAME_VERTICA}</argument>
            <argument>${dbHost}</argument>
            <argument>${dbName}</argument>
            <argument>${dbPassword}</argument>
            <argument>${dbPort}</argument>
            <argument>${nameNode}/user/oozie/optus_adhoc_data/output/${exportDataDate}</argument>
            <argument>vsql,export.sh</argument>
            <file>${nameNode}/user/oozie/adhoc_data_load/scripts/loadVertica.sh#loadVertica.sh</file>
            <file>${wfsBasePath}/libs/${STREAMING_JAR_PATH}#${STREAMING_JAR_PATH}</file>
            <file>${wfsBasePath}/config/vsql#vsql</file>
            <file>${wfsBasePath}/scripts/export.sh#export.sh</file>
            <capture-output/>
        </shell>
        <ok to="end"/>
       <error to="end"/>
    </action>

运行时,oozie用户遇到以下异常:

org.apache.hadoop.ipc.RemoteException(org.apache.hadoop.security.AccessControlException): Permission denied: user=yarn, access=WRITE, inode="/user/yarn/.staging":hdfs:hdfs:drwxr-xr-x
        at org.apache.hadoop.hdfs.server.namenode.FSPermissionChecker.check(FSPermissionChecker.java:319)

解决方案:
加载项工作流:
hadoop\u user\u name=${wf:user()}

swvgeqrz

swvgeqrz1#

Permission denied: user=yarn, access=WRITE, inode="/user/yarn/.staging":hdfs:hdfs:drwxr-xr-x

意味着目录 /user/yarn/.staging 属于用户 hdfs .
目录具有权限 rwxr-xr-x 也就是说只有 hdfs 具有写入权限。
因为您的工作流正在使用用户 yarn ,无法写入该目录。
您可以更改权限:

hdfs dfs -chmod -R 777 /user/yarn/

或者把它的所有权给 yarn 比如:

sudo -u hdfs hdfs dfs -chown yarn:yarn /user/yarn
qf9go6mv

qf9go6mv2#

可以通过在workflow.xml中添加以下内容来解决此问题
hadoop\u user\u name=${wf:user()}

相关问题