<?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>topic SAS Mapreduce Wordcount example Jar and class in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-Mapreduce-Wordcount-example-Jar-and-class/m-p/343211#M10218</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run map reduce wordcount example as shown in below example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I donot have wordcount jar available.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#p0pxnmn7ufoi1vn11sqywfltd9u7.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#p0pxnmn7ufoi1vn11sqywfltd9u7.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I request you to share the wordcount Jar and its appropriate classes.&lt;/P&gt;&lt;P&gt;My SAS Hadoop set up is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS 9.4&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cloudera CDH5.8 VM&lt;/P&gt;&lt;P&gt;Both are connected well and HDFS configuration are correct as HDFS commands are working properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ashish Jain&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Mar 2017 09:15:25 GMT</pubDate>
    <dc:creator>ajain59</dc:creator>
    <dc:date>2017-03-22T09:15:25Z</dc:date>
    <item>
      <title>SAS Mapreduce Wordcount example Jar and class</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-Mapreduce-Wordcount-example-Jar-and-class/m-p/343211#M10218</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run map reduce wordcount example as shown in below example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I donot have wordcount jar available.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#p0pxnmn7ufoi1vn11sqywfltd9u7.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#p0pxnmn7ufoi1vn11sqywfltd9u7.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I request you to share the wordcount Jar and its appropriate classes.&lt;/P&gt;&lt;P&gt;My SAS Hadoop set up is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS 9.4&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cloudera CDH5.8 VM&lt;/P&gt;&lt;P&gt;Both are connected well and HDFS configuration are correct as HDFS commands are working properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ashish Jain&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 09:15:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-Mapreduce-Wordcount-example-Jar-and-class/m-p/343211#M10218</guid>
      <dc:creator>ajain59</dc:creator>
      <dc:date>2017-03-22T09:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Mapreduce Wordcount example Jar and class</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-Mapreduce-Wordcount-example-Jar-and-class/m-p/353223#M10539</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/99429"&gt;@ajain59&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The wordcount JAR will be on the cluster somewhere. There may be a way of getting it off the web. Here is an example which shows the general form of the JAR name (it is in the comments):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Run the Word Count sample program on Moby **bleep** */
/* hadoop-examples-1.2.0.1.3.0.0-96.jar */

proc hadoop options=cfg user="bob"  verbose;
  mapreduce input='/user/bob/Books/moby_dick.txt' 
     output='/user/bob/outBook' 
     jar='C:\Hadoop_examples\hadoop-examples-1.2.0.1.3.0.0-96.jar' 
     outputkey="org.apache.hadoop.io.Text" 
     outputvalue="org.apache.hadoop.io.IntWritable" 
     reduce="org.apache.hadoop.examples.WordCount$IntSumReducer" 
     combine="org.apache.hadoop.examples.WordCount$IntSumReducer" 
     map="org.apache.hadoop.examples.WordCount$TokenizerMapper";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2017 15:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-Mapreduce-Wordcount-example-Jar-and-class/m-p/353223#M10539</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2017-04-25T15:16:04Z</dc:date>
    </item>
  </channel>
</rss>

