Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: CDH4b2
-
Fix Version/s: CDH4.1.0
-
Component/s: Hadoop Common
-
Labels:None
-
Environment:AWS Linux
Description
This command works on previous versions of Apache Hadoop.
hadoop fs -conf /tmp/test.xml -ls s3n://mybucket/
In CDH4 Beta2, it gives me this:
Found 63 items
-ls: -0s
Usage: hadoop fs [generic options] -ls [-d] [-h] [-R] [<path> ...]
Contents of test.xml:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>fs.s3n.awsAccessKeyId</name>
<value>ACCESS_KEY</value>
</property>
<property>
<name>fs.s3n.awsSecretAccessKey</name>
<value>SECRET_KEY</value>
</property>
</configuration>