決定的な Hadoop の本を読んでいます。そこで著者は、hadoop.job.ugi
. まあ、私はそれでどこにも行きません...
hduser@ubuntu (私のボックス名) を使用しています。
デフォルトの conf をオーバーライドするために localhost.conf を作成しました。
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
<description>Default block replication.
The actual number of replications can be specified when the file is created.
The default is used if replication is not specified in create time.
</description>
</property>
<property>
<name>mapred.job.tracker</name>
<value>localhost:54311</value>
<description>The host and port that the MapReduce job tracker runs
at. If "local", then jobs are run in-process as a single map
and reduce task.
</description>
</property>
<property>
<name>hadoop.job.ugi</name>
<value>user, supergroup</value>
</property>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:54310</value>
<description>The name of the default file system. A URI whose
scheme and authority determine the FileSystem implementation. The
uri's scheme determines the config property (fs.SCHEME.impl) naming
the FileSystem implementation class. The uri's authority is used to
determine the host, port, etc. for a filesystem.</description>
</property>
</configuration>
しかし、実行すると、ディレクトリnewDirがユーザーではなくhduserhadoop fs -conf localhost.conf -mkdir newDir
によって作成されていることがわかりますhadoop fs -conf localhost.conf -ls .
設定が抜けてるに違いない…。
前もって感謝します。