<?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: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/646523#M8267</link>
    <description>&lt;P&gt;Hi Anna,&amp;nbsp;the ticket is now at the SAS Global Support. It seems to be a problem with the CAS Action sequence.pathing.&lt;/P&gt;&lt;P&gt;The CAS Action has an enormous consumption of memory:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;80 Observation -&amp;gt; 6 GB RAM&lt;BR /&gt;95 Observation -&amp;gt; 27,75 GB RAM&lt;BR /&gt;97 Observation -&amp;gt; 103, GB RAM&lt;BR /&gt;98 Observation -&amp;gt; game over and the error occurs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Klaus&lt;/P&gt;</description>
    <pubDate>Sun, 10 May 2020 16:08:38 GMT</pubDate>
    <dc:creator>klroesner</dc:creator>
    <dc:date>2020-05-10T16:08:38Z</dc:date>
    <item>
      <title>ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specified</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/644968#M8257</link>
      <description>&lt;P&gt;Hello World,&lt;/P&gt;&lt;P&gt;We have a problem executing a CAS action:&lt;CODE class=" language-sas"&gt;&amp;nbsp;sequence.pathing&lt;/CODE&gt; . Does anyone know what the error message means? The program appears to be correct.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Dokumentation Action Set: Sequence Action Set */
/* https://documentation.sas.com/?docsetId=casanpg&amp;amp;docsetVersion=8.3&amp;amp;docsetTarget=n0gse7erokgd4un1gvqzehse1fkg.htm&amp;amp;locale=en*/


/* Libname */
cas seq;
libname mycas cas caslib=PowerUserDM;


/* What CAS sessions do I have running? */
cas _all_ list;


/* Zugriff auf die Daten über print */
proc print data=mycas.VP_SEQUENCE_DATA (obs=5);
run;


/*Reduktion der Daten für diesen Test */
data mycas.VP_SEQUENCE_DATA_tmp promote ; 
            set mycas.VP_SEQUENCE_DATA (obs = 10000); 
run;

/* Sequenzanalyse */
proc cas;                                                       
   sequence.pathing / table={caslib="PowerUserDM" name="VP_SEQUENCE_DATA_tmp"} 
                      item="EREIGNIS_ANONYM"
                      time="ZEIT"
                      tran="VS_VERS_NR_ANONYM"
                      casOutSequTranMap={caslib="casuser" name="casouttable", replace=true}
                      casout={caslib="casuser" name="versicherten_sequence", replace=true}
                      ;
   run;
quit;

cas seq terminate;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
75    
76    *----------------------------------------------------NICHT Lauffähiges Programm mit "proc cas pathing" auf artifiziellen
76  ! Daten----------------------------------------------------;
77    
78    
79    /*Dokumentation Action Set: Sequence Action Set */
80    /* https://documentation.sas.com/?docsetId=casanpg&amp;amp;docsetVersion=8.3&amp;amp;docsetTarget=n0gse7erokgd4un1gvqzehse1fkg.htm&amp;amp;locale=en*/
81    
82    
83    /* Libname */
84    cas seq;
NOTE: The session SEQ connected successfully to Cloud Analytic Services rviap0v02.dst.tk-inline.net using port 5570. The UUID is 
      544a6756-aa54-ad44-85c3-a8c0db933ac5. The user is P226526 and the active caslib is CASUSERHDFS(P226526).
NOTE: The SAS option SESSREF was updated with the value SEQ.
NOTE: The SAS macro _SESSREF_ was updated with the value SEQ.
NOTE: The session is using 4 workers.
85    libname mycas cas caslib=PowerUserDM;
NOTE: Libref MYCAS was successfully assigned as follows: 
      Engine:        CAS 
      Physical Name: 544a6756-aa54-ad44-85c3-a8c0db933ac5
86    
87    
88    /* What CAS sessions do I have running? */
89    cas _all_ list;
NOTE: Session SEQ is ACTIVE using port 5570 and host rviap0v02.dst.tk-inline.net for user P226526. The session UUID is 
      544a6756-aa54-ad44-85c3-a8c0db933ac5.
90    
91    
92    /* Zugriff auf die Daten über print */
93    proc print data=mycas.VP_SEQUENCE_DATA (obs=5);
94    run;
NOTE: The PROCEDURE PRINT printed page 2.
NOTE:  Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit):
      real time           1.57 seconds
      cpu time            0.18 seconds
      
95    
96    
97    /*Reduktion der Daten für diesen Test */
98    data mycas.VP_SEQUENCE_DATA_tmp promote ;
99                set mycas.VP_SEQUENCE_DATA (obs = 10000);
100   run;
NOTE: There were 10000 observations read from the data set MYCAS.VP_SEQUENCE_DATA.
NOTE: The data set MYCAS.VP_SEQUENCE_DATA_TMP has 10000 observations and 3 variables.
NOTE: The data set WORK.PROMOTE has 10000 observations and 3 variables.
NOTE:  Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit):
      real time           0.22 seconds
      cpu time            0.05 seconds
      
101   
102   /* Sequenzanalyse */
103   proc cas;
104      sequence.pathing / table={caslib="PowerUserDM" name="VP_SEQUENCE_DATA_tmp"}
105                         item="EREIGNIS_ANONYM"
106                         time="ZEIT"
107                         tran="VS_VERS_NR_ANONYM"
108                         casOutSequTranMap={caslib="casuser" name="casouttable", replace=true}
109                         casout={caslib="casuser" name="versicherten_sequence", replace=true}
110                         ;
111      run;
NOTE: Active Session now SEQ.
NOTE: Added action set 'sequence'.
&lt;FONT color="#FF0000"&gt;ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specified session.&lt;/FONT&gt;
112   quit;
NOTE:  Verwendet wurde: PROZEDUR CAS - (Gesamtverarbeitungszeit):
      real time           46.16 seconds
      cpu time            1.89 seconds
      
113   
114   cas seq terminate;
NOTE: Libref MYCAS has been deassigned.
NOTE: Deletion of the session SEQ was successful.
NOTE: The default CAS session SEQ identified by SAS option SESSREF= was terminated. Use the OPTIONS statement to set the SESSREF= 
      option to an active session.
NOTE: Request to TERMINATE completed for session SEQ.
115   *----------------------------------------------------ENDE NICHT Lauffähiges Programm mit "proc cas pathing" auf artifiziellen
115 !  Daten----------------------------------------------------;
116   
117   OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
130   &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 May 2020 12:43:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/644968#M8257</guid>
      <dc:creator>klroesner</dc:creator>
      <dc:date>2020-05-04T12:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/645387#M8263</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/301833"&gt;@klroesner&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your question! If you haven't already, I suggest&amp;nbsp;&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;opening a track with Technical Support&lt;/A&gt;&amp;nbsp;for this scenario.&amp;nbsp;&lt;A href="http://support.sas.com/techsup/contact/index.html" target="_blank"&gt;Check out this page&lt;/A&gt;&amp;nbsp;for&amp;nbsp;information on other ways to contact Tech Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anna&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 19:22:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/645387#M8263</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2020-05-05T19:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/645414#M8264</link>
      <description>Hi Anna, I‘ve allready opened a Ticket.&lt;BR /&gt;&lt;BR /&gt;Thanks, Klaus</description>
      <pubDate>Tue, 05 May 2020 20:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/645414#M8264</guid>
      <dc:creator>klroesner</dc:creator>
      <dc:date>2020-05-05T20:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/646202#M8266</link>
      <description>&lt;P&gt;Excellent, thanks for responding back! Feel free to post any resolution you find as other community members may run into the same problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anna&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 13:28:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/646202#M8266</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2020-05-08T13:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/646523#M8267</link>
      <description>&lt;P&gt;Hi Anna,&amp;nbsp;the ticket is now at the SAS Global Support. It seems to be a problem with the CAS Action sequence.pathing.&lt;/P&gt;&lt;P&gt;The CAS Action has an enormous consumption of memory:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;80 Observation -&amp;gt; 6 GB RAM&lt;BR /&gt;95 Observation -&amp;gt; 27,75 GB RAM&lt;BR /&gt;97 Observation -&amp;gt; 103, GB RAM&lt;BR /&gt;98 Observation -&amp;gt; game over and the error occurs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Klaus&lt;/P&gt;</description>
      <pubDate>Sun, 10 May 2020 16:08:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/646523#M8267</guid>
      <dc:creator>klroesner</dc:creator>
      <dc:date>2020-05-10T16:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/648111#M8277</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We have an answer from the technical support. The CAS action works as designed. The action must always be called with constraints such as minimal support, otherwise it leads to exploding data growth.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers, Klaus&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 17:39:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/648111#M8277</guid>
      <dc:creator>klroesner</dc:creator>
      <dc:date>2020-05-15T17:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Connection failed. Server returned: Session reconnect failed: Could not find the specifie</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/648122#M8278</link>
      <description>&lt;P&gt;Fantastic,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/301833"&gt;@klroesner&lt;/a&gt;! Thanks for sharing your solution with the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anna&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 17:59:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/ERROR-Connection-failed-Server-returned-Session-reconnect-failed/m-p/648122#M8278</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2020-05-15T17:59:43Z</dc:date>
    </item>
  </channel>
</rss>

