<?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 Can you configure SAS\ACCESS and PROC HADOOP to talk to any cluster, regardless of vendor? in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/470424#M13389</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Does anyone&amp;nbsp;know of any users that install\configure Hadoop, Hive, and Pig directly from Apache and then successfully connect the Hadoop SAS\Access engine to these? Can SAS connect to a stand-alone Hadoop cluster using proc&amp;nbsp;hadoop? It seems SAS\Access for Hadoop requires Hive, but is that it?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jun 2018 19:44:15 GMT</pubDate>
    <dc:creator>mich1</dc:creator>
    <dc:date>2018-06-14T19:44:15Z</dc:date>
    <item>
      <title>Can you configure SAS\ACCESS and PROC HADOOP to talk to any cluster, regardless of vendor?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/470424#M13389</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Does anyone&amp;nbsp;know of any users that install\configure Hadoop, Hive, and Pig directly from Apache and then successfully connect the Hadoop SAS\Access engine to these? Can SAS connect to a stand-alone Hadoop cluster using proc&amp;nbsp;hadoop? It seems SAS\Access for Hadoop requires Hive, but is that it?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 19:44:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/470424#M13389</guid>
      <dc:creator>mich1</dc:creator>
      <dc:date>2018-06-14T19:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can you configure SAS\ACCESS and PROC HADOOP to talk to any cluster, regardless of vendor?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/470518#M13392</link>
      <description>It might work. I don't recommend it though.&lt;BR /&gt;&lt;BR /&gt;You will only receive support from SAS for SAS\ACCESS Interface to Hadoop when you are using a supported distribution.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/en/documentation/third-party-software-reference/9-4/support-for-hadoop.html" target="_blank"&gt;https://support.sas.com/en/documentation/third-party-software-reference/9-4/support-for-hadoop.html&lt;/A&gt;</description>
      <pubDate>Fri, 15 Jun 2018 05:34:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/470518#M13392</guid>
      <dc:creator>SimonDawson</dc:creator>
      <dc:date>2018-06-15T05:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can you configure SAS\ACCESS and PROC HADOOP to talk to any cluster, regardless of vendor?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/471666#M13428</link>
      <description>&lt;P&gt;Thanks - So, if I have an existing "home-brew" Hadoop cluster with Hive and Pig installed, then it's possible that the SAS\ACCESS engine will be able to communicate? From what I understand, Hive is required in order to use the LIBNAME statement, but will PROC HDFS work without Hive? Has anyone out there built their own cluster and then gotten SAS to connect?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 12:47:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/471666#M13428</guid>
      <dc:creator>mich1</dc:creator>
      <dc:date>2018-06-20T12:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can you configure SAS\ACCESS and PROC HADOOP to talk to any cluster, regardless of vendor?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/472257#M13459</link>
      <description>&lt;P&gt;PROC HADOOP is part of base SAS and works now from PC. I created a Hadoop Cluster in UBUNTU 16 LTS and ran the latest hadooptracer.py script from SAS. I then copied over the config files to my PC. Note that the output&amp;nbsp;configs and jars are&amp;nbsp;for a single node pseudo distributed mode configuration. The config files contain the JARS and the&amp;nbsp;XMLs&amp;nbsp;SAS needs to talk to the Hadoop cluster. I placed these on my PC and ran the following program (configs are at \\MY NETWORK SHARE\Hadoop). Note that "Configured Hadoop User" has the .bashrc configured for JAVA and HADOOP on the UBUNTU cluster...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options SET = SAS_HADOOP_JAR_PATH " \\MY NETWORK SHARE\Hadoop\lib";&lt;BR /&gt;options SET = SAS_HADOOP_CONFIG_PATH " \\MY NETWORK SHARE\Hadoop\conf";&lt;/P&gt;&lt;P&gt;proc hadoop&lt;BR /&gt;username='Configured Hadoop User on UBUNTU' password='user password';&lt;BR /&gt;hdfs mkdir="/user/new";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;If you go to http://YOURCLUSTER FULL ADDRESS:50070/dfshealth.html#tab-overview &amp;gt; Utilities &amp;gt; Browse the file system &amp;gt; look under “user” and you will see the new HDFS directory. So, it appears to be possible to connect sas to a home-brew cluster.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also got my server to connect via PROC HDFS (code is very similar)...I'd recommend the above as a troubleshooting step to see if there are configuration issues with the cluster or sas user permission issues...I'm gonna try to connect the access engine to hive on the cluster (I also installed Hive)&amp;nbsp; and I'll post any results&lt;img id="robotlol" class="emoticon emoticon-robotlol" src="https://communities.sas.com/i/smilies/16x16_robot-lol.png" alt="Robot LOL" title="Robot LOL" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 19:12:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Can-you-configure-SAS-ACCESS-and-PROC-HADOOP-to-talk-to-any/m-p/472257#M13459</guid>
      <dc:creator>mich1</dc:creator>
      <dc:date>2018-06-21T19:12:20Z</dc:date>
    </item>
  </channel>
</rss>

