<?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 Re: Reload on Start in LASR in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240418#M2974</link>
    <description>&lt;P&gt;Hi Snehasis,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the Reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to use the Reload at start functionality that comes Out of the Box. Baiscally we want reload the Data in memory from a back up copy of data in Hadoop dynamically every time LASR server re starts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nikhil &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Dec 2015 09:46:26 GMT</pubDate>
    <dc:creator>nikhil_khanolkar</dc:creator>
    <dc:date>2015-12-22T09:46:26Z</dc:date>
    <item>
      <title>Reload on Start in LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240401#M2972</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In our project&amp;nbsp;we are creating and updating a Table in LASR by Processing/Joining Datasets in SAS server. After creating a data in LASR we copy that data in the HDFS. This Scheduled process executes multiple times during a day.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would "reload on start" funtionality work in this case? We need to reload all datasets in LASR memory every time LASR server starts.&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;Nikhil&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2015 05:28:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240401#M2972</guid>
      <dc:creator>nikhil_khanolkar</dc:creator>
      <dc:date>2015-12-22T05:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reload on Start in LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240409#M2973</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A class="lia-link-navigation lia-page-link lia-user-name-link" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12555" target="_self"&gt;nikhil_khanolka&lt;WBR /&gt;r&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Create a data query by mentioning&lt;SPAN&gt;&amp;nbsp;all the required datasets&amp;nbsp;and schedule it as per your time.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;NOTE:Change &lt;STRONG&gt;BOLD&lt;/STRONG&gt; portion only&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/** QUERY **/&lt;/P&gt;
&lt;P&gt;%LET VDB_GRIDHOST=&lt;STRONG&gt;&lt;FONT color="#000000"&gt;HOSTNAME&lt;/FONT&gt;&lt;/STRONG&gt;;&lt;BR /&gt;%LET VDB_GRIDINSTALLLOC=/opt/TKGrid;&lt;BR /&gt;options set=GRIDHOST="&lt;STRONG&gt;HOSTNAME&lt;/STRONG&gt;";&lt;BR /&gt;options set=GRIDINSTALLLOC="/opt/TKGrid";&lt;BR /&gt;options validvarname=any validmemname=extend;&lt;/P&gt;
&lt;P&gt;/* Register Table Macro */&lt;BR /&gt;%macro registertable( REPOSITORY=Foundation, REPOSID=, LIBRARY=, TABLE=, FOLDER=, TABLEID=, PREFIX= );&lt;/P&gt;
&lt;P&gt;/* Mask special characters */&lt;/P&gt;
&lt;P&gt;%let REPOSITORY=%superq(REPOSITORY);&lt;BR /&gt; %let LIBRARY =%superq(LIBRARY);&lt;BR /&gt; %let FOLDER =%superq(FOLDER);&lt;BR /&gt; %let TABLE =%superq(TABLE);&lt;/P&gt;
&lt;P&gt;%let REPOSARG=%str(REPNAME="&amp;amp;REPOSITORY.");&lt;BR /&gt; %if ("&amp;amp;REPOSID." ne "") %THEN %LET REPOSARG=%str(REPID="&amp;amp;REPOSID.");&lt;/P&gt;
&lt;P&gt;%if ("&amp;amp;TABLEID." ne "") %THEN %LET SELECTOBJ=%str(&amp;amp;TABLEID.);&lt;BR /&gt; %else %LET SELECTOBJ=&amp;amp;TABLE.;&lt;/P&gt;
&lt;P&gt;%if ("&amp;amp;FOLDER." ne "") %THEN&lt;BR /&gt; %PUT INFO: Registering &amp;amp;FOLDER./&amp;amp;SELECTOBJ. to &amp;amp;LIBRARY. library.;&lt;BR /&gt; %else&lt;BR /&gt; %PUT INFO: Registering &amp;amp;SELECTOBJ. to &amp;amp;LIBRARY. library.;&lt;/P&gt;
&lt;P&gt;proc metalib;&lt;BR /&gt; omr (&lt;BR /&gt; library="&amp;amp;LIBRARY." &lt;BR /&gt; %str(&amp;amp;REPOSARG.) &lt;BR /&gt; ); &lt;BR /&gt; %if ("&amp;amp;TABLEID." eq "") %THEN %DO;&lt;BR /&gt; %if ("&amp;amp;FOLDER." ne "") %THEN %DO;&lt;BR /&gt; folder="&amp;amp;FOLDER.";&lt;BR /&gt; %end;&lt;BR /&gt; %end;&lt;BR /&gt; %if ("&amp;amp;PREFIX." ne "") %THEN %DO;&lt;BR /&gt; prefix="&amp;amp;PREFIX.";&lt;BR /&gt; %end;&lt;BR /&gt; select ("&amp;amp;SELECTOBJ."); &lt;BR /&gt; run; &lt;BR /&gt; quit;&lt;/P&gt;
&lt;P&gt;%mend;&lt;/P&gt;
&lt;P&gt;LIBNAME VALIBLA SASIOLA TAG=HPS PORT=10011 HOST="&lt;STRONG&gt;HOSTNAME&lt;/STRONG&gt;"&lt;/P&gt;
&lt;P&gt;SIGNER="&lt;STRONG&gt;HOSTNAME&lt;/STRONG&gt;:&lt;STRONG&gt;PORT&lt;/STRONG&gt;/SASLASRAuthorization" ;&lt;BR /&gt;option DBIDIRECTEXEC;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;/* mention&amp;nbsp;Datasets&amp;nbsp;required for reload&amp;nbsp;*/&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;%vdb_dt(VALIBLA.&lt;STRONG&gt;TARGETLASRTABLE&lt;/STRONG&gt;);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;data &lt;SPAN&gt;VALIBLA.&lt;STRONG&gt;TARGETLASRTABLE&lt;/STRONG&gt;&lt;/SPAN&gt; ( ); &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;set &lt;STRONG&gt;libref.SOURCEDATA&amp;nbsp;&lt;/STRONG&gt;( );&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;run;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2015 07:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240409#M2973</guid>
      <dc:creator>SnehasisTTPL</dc:creator>
      <dc:date>2015-12-22T07:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reload on Start in LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240418#M2974</link>
      <description>&lt;P&gt;Hi Snehasis,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the Reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to use the Reload at start functionality that comes Out of the Box. Baiscally we want reload the Data in memory from a back up copy of data in Hadoop dynamically every time LASR server re starts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nikhil &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2015 09:46:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/240418#M2974</guid>
      <dc:creator>nikhil_khanolkar</dc:creator>
      <dc:date>2015-12-22T09:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reload on Start in LASR</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/330915#M6314</link>
      <description>&lt;P&gt;I know that this is an old post, but this is exaclty what I am attempting to do.&amp;nbsp; Did you every find a resolution to this...other than creating scripts and including a call to those scripts in your startup process?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ricky&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 17:09:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Reload-on-Start-in-LASR/m-p/330915#M6314</guid>
      <dc:creator>rgreen33</dc:creator>
      <dc:date>2017-02-08T17:09:19Z</dc:date>
    </item>
  </channel>
</rss>

