<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: TestDFSIO in latest HDP in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116562#M16859</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2369/greenhorntechie.html" nodeid="2369"&gt;@Greenhorn Techie&lt;/A&gt;  &lt;/P&gt;&lt;P&gt;ls -l /usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-2.7.1.2.3.4.0-3485-tests.jar&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jan 2016 04:07:47 GMT</pubDate>
    <dc:creator>nsabharwal</dc:creator>
    <dc:date>2016-01-29T04:07:47Z</dc:date>
    <item>
      <title>TestDFSIO in latest HDP</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116560#M16857</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to run TestDFSIO performance tests on my cluster and trying to do as below. &lt;/P&gt;&lt;P&gt;Logged into the name node machine&lt;/P&gt;&lt;P&gt;Logged in as hdfs user&lt;/P&gt;&lt;PRE&gt;/usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-*tests.jar TestDFSIO -write -nrFiles 100 -fileSize 100 TestDFSIO Read Test hadoop jar&lt;/PRE&gt;&lt;P&gt;After running the above test, I am seeing a permission denied error. Not sure what could be the reason for it as I am running as hdfs user, but still it doesnt run.&lt;/P&gt;&lt;PRE&gt;bash: /usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-2.7.1.2.3.4.0-3485-tests.jar: Permission denied&lt;/PRE&gt;&lt;P&gt;Any idea what could be the reason?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 03:36:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116560#M16857</guid>
      <dc:creator>techiegreenhorn</dc:creator>
      <dc:date>2016-01-29T03:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: TestDFSIO in latest HDP</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116561#M16858</link>
      <description>&lt;P&gt;The permission denied error is coming from bash, not Hadoop.  Is that the full command that you were running?  If so, then you ended up trying to execute the jar file directly.  Since the jar file won't have the execute bit on in its permissions, this gets reported as permission denied.  Instead, you would need to run the jar through the "hadoop jar" command.&lt;/P&gt;&lt;PRE&gt;hadoop jar /usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-*-tests.jar&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Jan 2016 04:02:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116561#M16858</guid>
      <dc:creator>cnauroth</dc:creator>
      <dc:date>2016-01-29T04:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: TestDFSIO in latest HDP</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116562#M16859</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2369/greenhorntechie.html" nodeid="2369"&gt;@Greenhorn Techie&lt;/A&gt;  &lt;/P&gt;&lt;P&gt;ls -l /usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-2.7.1.2.3.4.0-3485-tests.jar&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 04:07:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116562#M16859</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2016-01-29T04:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: TestDFSIO in latest HDP</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116563#M16860</link>
      <description>&lt;P&gt;My bad. I forgot to start the command with "yarn jar". Apologies. Its working fine! Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 04:13:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116563#M16860</guid>
      <dc:creator>techiegreenhorn</dc:creator>
      <dc:date>2016-01-29T04:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: TestDFSIO in latest HDP</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116564#M16861</link>
      <description>&lt;P&gt;Run the jar with "hadoop jar" or "yarn jar"&lt;/P&gt;&lt;P&gt;hadoop jar /usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-*tests.jar TestDFSIO ..........
yarn jar /usr/hdp/2.3.4.0-3485/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-*tests.jar TestDFSIO .......&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 13:17:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/TestDFSIO-in-latest-HDP/m-p/116564#M16861</guid>
      <dc:creator>rajsyrus</dc:creator>
      <dc:date>2016-05-03T13:17:52Z</dc:date>
    </item>
  </channel>
</rss>

