<?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: SAS High-Performance Data Mining installation problem in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401057#M10552</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/164781"&gt;@VladimirLaskov&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are no problems with LASR, this is the problem:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;17/10/04 18:55:54 INFO hadoop.BaseService: Data dirs: [/tmp/hadoop-sassrv/dfs/data]
17/10/04 18:55:54 ERROR hadoop.BaseService: Invalid rc (1) from process on host cloudera-node2.example.loc [df, /tmp/hadoop-sassrv/dfs/data]: df: `/tmp/hadoop-sassrv/dfs/data': No such file or directory df: no file systems processed
java.io.IOException: Invalid rc (1) from process on host cloudera-node2.example.loc [df, /tmp/hadoop-sassrv/dfs/data]: df: `/tmp/hadoop-sassrv/dfs/data': No such file or directory df: no file systems processed
at com.sas.lasr.hadoop.BaseService.invokeCommand(BaseService.java:1312)
at com.sas.lasr.hadoop.BaseService.getMountpoint(BaseService.java:1269)
at com.sas.lasr.hadoop.DataNodeService.createTempDirs(DataNodeService.java:215)
at com.sas.lasr.hadoop.DataNodeService.start(DataNodeService.java:162)
at com.sas.lasr.hadoop.DataNodeService.main(DataNodeService.java:98)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 04 Oct 2017 17:00:08 GMT</pubDate>
    <dc:creator>alexal</dc:creator>
    <dc:date>2017-10-04T17:00:08Z</dc:date>
    <item>
      <title>SAS High-Performance Data Mining installation problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/400627#M10546</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I have a&amp;nbsp;problem in work SAS HPDM. I running SAS code and see a&amp;nbsp;warning message:&lt;BR /&gt;&lt;BR /&gt;WARNING: The datanode running on cloudera-node2.example.loc did not respond. No file blocks are written on that host. ?&lt;BR /&gt;&lt;BR /&gt;How to debug connection to the datanode cloudera&lt;SPAN&gt;-node2.example.loc ?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;I use CLOUDERA HADOOP 5.11, SAS 9.4, TKGrid, SAS Plug-ins for Hadoop package (SASHDAT),&amp;nbsp;SAS Embedded Process for Hadoop, RHEL 6.8&lt;BR /&gt;Hadoop cluster has&amp;nbsp;4 nodes.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;7 proc hpatest;&lt;BR /&gt;8 performance nodes=all details;&lt;BR /&gt;9 run;&lt;BR /&gt;NOTE: The HPATEST procedure is executing in the distributed computing environment with 2 worker nodes. The SAS System 18:31 Tuesday, October 3, 2017 1&lt;BR /&gt;&lt;BR /&gt; Performance Information&lt;BR /&gt;&lt;BR /&gt; Host Node cloudera-node1&lt;BR /&gt; Execution Mode Distributed &lt;BR /&gt; Number of Compute Nodes 2 &lt;BR /&gt;NOTE: The PROCEDURE HPATEST printed page 1.&lt;BR /&gt;NOTE: PROCEDURE HPATEST used (Total process time):&lt;BR /&gt; real time 2.01 seconds&lt;BR /&gt; cpu time 0.06 seconds&lt;BR /&gt; &lt;BR /&gt;10 &lt;BR /&gt;11 libname hdatLib sashdat path="/data/hps" verbose=yes;&lt;BR /&gt;NOTE: Libref HDATLIB was successfully assigned as follows: &lt;BR /&gt; Engine: SASHDAT &lt;BR /&gt; Physical Name: Directory '/data/hps' of HDFS cluster on host 'cloudera-node1'&lt;BR /&gt;12 &lt;BR /&gt;13 data simData;&lt;BR /&gt;14 array _a{8} _temporary_ (0,0,0,1,0,1,1,1);&lt;BR /&gt;15 array _b{8} _temporary_ (0,0,1,0,1,0,1,1);&lt;BR /&gt;16 array _c{8} _temporary_ (0,1,0,0,1,1,0,1);&lt;BR /&gt;17 do obsno=1 to 10000000;&lt;BR /&gt;18 x = rantbl(1,0.28,0.18,0.14,0.14,0.03,0.09,0.08,0.06);&lt;BR /&gt;19 a1 = _a{x};&lt;BR /&gt;20 b1 = _b{x};&lt;BR /&gt;21 c1 = _c{x};&lt;BR /&gt;22 x1 = int(ranuni(1)*400);&lt;BR /&gt;23 x2 = 52 + ranuni(1)*38;&lt;BR /&gt;&lt;BR /&gt;2 The SAS System 18:31 Tuesday, October 3, 2017&lt;BR /&gt;&lt;BR /&gt;24 x3 = ranuni(1)*12;&lt;BR /&gt;25 lp = 6. -0.015*(1-a1) + 0.7*(1-b1) + 0.6*(1-c1) + 0.02*x1 -0.05*x2 - 0.1*x3;&lt;BR /&gt;26 y1 = ranbin(1,1,(1/(1+exp(lp))));&lt;BR /&gt;27 output;&lt;BR /&gt;28 end;&lt;BR /&gt;29 drop x lp;&lt;BR /&gt;30 run;&lt;BR /&gt;NOTE: The data set WORK.SIMDATA has 10000000 observations and 8 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 3.36 seconds&lt;BR /&gt; cpu time 3.36 seconds&lt;BR /&gt; &lt;BR /&gt;31 &lt;BR /&gt;32 data hdatLib.simData;&lt;BR /&gt;33 set simData;&lt;BR /&gt;34 run;&lt;BR /&gt;WARNING: The datanode running on cloudera-node2.example.loc did not respond. No file blocks are written on that host.&lt;BR /&gt;NOTE: There were 10000000 observations read from the data set WORK.SIMDATA.&lt;BR /&gt;NOTE: The data set /data/hps/simdata has 10000000 observations and 8 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 15.49 seconds&lt;BR /&gt; cpu time 1.79 seconds&lt;BR /&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 15:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/400627#M10546</guid>
      <dc:creator>VladimirLaskov</dc:creator>
      <dc:date>2017-10-03T15:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS High-Performance Data Mining installation problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/400659#M10548</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/164781"&gt;@VladimirLaskov&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First of all, check HDFS cluster status:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hdfs dfsadmin -report&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something is wrong with the datanode running on cloudera-node2.example.loc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the following steps to enable advanced debugging for loading to HDFS from SAS:&lt;BR /&gt; &lt;BR /&gt;1. Create a .tkmpi.personal file in the /home/ directory of the user invoking SAS or LASR:&lt;BR /&gt;/home/userid/.tkmpi.personal&lt;BR /&gt; &lt;BR /&gt;2. Insert the following line in the file:&lt;BR /&gt;export HADOOP_LASR_STDERR_LOG=/tmp/hdfs_fail.txt&lt;BR /&gt;&lt;BR /&gt;3. Copy the .tkmpi.personal file across hosts of the grid.&lt;BR /&gt;/&amp;lt;PATH_TO_TKGRID&amp;gt;/bin/simcp /home/userid/.tkmpi.personal /home/userid&lt;BR /&gt; &lt;BR /&gt;4. Perform the task or submit the code that generated the problem. From the example below:&lt;BR /&gt;libname hdfs SASHDAT SERVER="headnode.unx.lax.com"&lt;BR /&gt;INSTALL="/local/install/TKGrid" PATH="/hps/user";&lt;BR /&gt;data hdfs.mydata(replace=yes);&lt;BR /&gt;set sashelp.class;&lt;BR /&gt;run;&lt;BR /&gt; &lt;BR /&gt;5. Inspect the /tmp/hdfs_fail.txt log. A clean log looks like this:&lt;BR /&gt;yy/mm/dd hh:mm:ss INFO hadoop.BaseService: Starting embedded NameNodeService&lt;BR /&gt;yy/mm/dd hh:mm:ss INFO hadoop.BaseService: Starting NameNodeService&lt;BR /&gt;yy/mm/dd hh:mm:ss INFO hadoop.BaseService: Data dirs: [/local/install/hadoop/hadoop-data]&lt;BR /&gt;yy/mm/dd hh:mm:ss INFO hadoop.BaseService: Ready to accept commands&lt;BR /&gt;yy/mm/dd hh:mm:ss INFO hadoop.BaseService: Processing command 9&lt;BR /&gt;/mm/dd hh:mm:ss INFO hadoop.BaseService: ConcatRequest [fileName=/hps/user/mydata.sashdat, flags=1, permissionsMask=774,&lt;BR /&gt;fileParts=[FilePartInfo [fullPath=/hps/user/mydata.sashdat-12.34.567.89.sashdat, numBlocks=1], ...&lt;BR /&gt;The fileparts= details are repeated for each grid host.&lt;BR /&gt;yy/mm/dd hh:mm:35 INFO hadoop.BaseService: Action 9 complete&lt;BR /&gt; &lt;BR /&gt;6. Check the head node first. If that log is clean, you should check the debug log files on other nodes.&lt;BR /&gt; &lt;BR /&gt;7. When debugging is complete, remove the .tkmpi.personal file across the grid.&lt;BR /&gt;/&amp;lt;PATH_TO_TKGRID&amp;gt;/bin/simcp /home/userid/.tkmpi.personal&lt;BR /&gt;Otherwise the debugging option may cause performance issues.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 17:00:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/400659#M10548</guid>
      <dc:creator>alexal</dc:creator>
      <dc:date>2017-10-03T17:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS High-Performance Data Mining installation problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401033#M10551</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank You&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;# hdfs dfsadmin -report
Configured Capacity: 590688002048 (550.12 GB)
Present Capacity: 471623994732 (439.23 GB)
DFS Remaining: 467021839791 (434.95 GB)
DFS Used: 4602154941 (4.29 GB)
DFS Used%: 0.98%
Under replicated blocks: 0
Blocks with corrupt replicas: 0
Missing blocks: 0
Missing blocks (with replication factor 1): 0

-------------------------------------------------
Live datanodes (3):

Name: (cloudera-node1.example.loc)
Hostname: cloudera-node1.example.loc
Rack: /default
Decommission Status : Normal
Configured Capacity: 197020434432 (183.49 GB)
DFS Used: 1533861821 (1.43 GB)
Non DFS Used: 77469122627 (72.15 GB)
DFS Remaining: 107416443365 (100.04 GB)
DFS Used%: 0.78%
DFS Remaining%: 54.52%
Configured Cache Capacity: 1387266048 (1.29 GB)
Cache Used: 0 (0 B)
Cache Remaining: 1387266048 (1.29 GB)
Cache Used%: 0.00%
Cache Remaining%: 100.00%
Xceivers: 4
Last contact: Wed Oct 04 11:09:44 MSK 2017


Name: (cloudera-node2.example.loc)
Hostname: cloudera-node2.example.loc
Rack: /default
Decommission Status : Normal
Configured Capacity: 196833783808 (183.32 GB)
DFS Used: 1533829120 (1.43 GB)
Non DFS Used: 6064525312 (5.65 GB)
DFS Remaining: 178575792613 (166.31 GB)
DFS Used%: 0.78%
DFS Remaining%: 90.72%
Configured Cache Capacity: 2599419904 (2.42 GB)
Cache Used: 0 (0 B)
Cache Remaining: 2599419904 (2.42 GB)
Cache Used%: 0.00%
Cache Remaining%: 100.00%
Xceivers: 4
Last contact: Wed Oct 04 11:09:43 MSK 2017


Name: (cloudera-node3.example.loc)
Hostname: cloudera-node3.example.loc
Rack: /default
Decommission Status : Normal
Configured Capacity: 196833783808 (183.32 GB)
DFS Used: 1534464000 (1.43 GB)
Non DFS Used: 3610079232 (3.36 GB)
DFS Remaining: 181029603813 (168.60 GB)
DFS Used%: 0.78%
DFS Remaining%: 91.97%
Configured Cache Capacity: 2885681152 (2.69 GB)
Cache Used: 0 (0 B)
Cache Remaining: 2885681152 (2.69 GB)
Cache Used%: 0.00%
Cache Remaining%: 100.00%
Xceivers: 4
Last contact: Wed Oct 04 11:09:43 MSK 2017

&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;[root@cloudera-node2 ~]# cat /tmp/hdfs_fail.txt
17/10/04 18:55:52 INFO hadoop.BaseService: Starting embedded DataNodeService 20141117a
17/10/04 18:55:54 INFO hadoop.BaseService: Starting DataNodeService 20141117a
17/10/04 18:55:54 INFO hadoop.BaseService: Creating configuration
17/10/04 18:55:54 INFO hadoop.BaseService: sudoCommand=sudo
17/10/04 18:55:54 INFO hadoop.BaseService: shortCircuitCommand=/opt/cloudera/parcels/CDH-5.10.1-1.cdh5.10.1.p0.10/lib/hadoop/bin/saslasrfd
17/10/04 18:55:54 INFO hadoop.BaseService: NameNode port=15452, DataNode port=15453
17/10/04 18:55:54 INFO hadoop.BaseService: Service version 6.0
17/10/04 18:55:54 INFO hadoop.BaseService: Data dirs: [/tmp/hadoop-sassrv/dfs/data]
17/10/04 18:55:54 ERROR hadoop.BaseService: Invalid rc (1) from process on host cloudera-node2.example.loc [df, /tmp/hadoop-sassrv/dfs/data]: df: `/tmp/hadoop-sassrv/dfs/data': No such file or directory df: no file systems processed
java.io.IOException: Invalid rc (1) from process on host cloudera-node2.example.loc [df, /tmp/hadoop-sassrv/dfs/data]: df: `/tmp/hadoop-sassrv/dfs/data': No such file or directory df: no file systems processed
	at com.sas.lasr.hadoop.BaseService.invokeCommand(BaseService.java:1312)
	at com.sas.lasr.hadoop.BaseService.getMountpoint(BaseService.java:1269)
	at com.sas.lasr.hadoop.DataNodeService.createTempDirs(DataNodeService.java:215)
	at com.sas.lasr.hadoop.DataNodeService.start(DataNodeService.java:162)
	at com.sas.lasr.hadoop.DataNodeService.main(DataNodeService.java:98)
17/10/04 18:55:55 INFO hadoop.BaseService: Ready to accept commands
17/10/04 18:55:55 INFO hadoop.BaseService: Processing command 1
17/10/04 18:55:55 ERROR hadoop.BaseService: Connection refused (Connection refused)
java.net.ConnectException: Connection refused (Connection refused)
	at java.net.PlainSocketImpl.socketConnect(Native Method)
	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
	at java.net.Socket.connect(Socket.java:589)
	at java.net.Socket.connect(Socket.java:538)
	at java.net.Socket.&amp;lt;init&amp;gt;(Socket.java:434)
	at java.net.Socket.&amp;lt;init&amp;gt;(Socket.java:211)
	at com.sas.lasr.hadoop.BaseService.sendPing(BaseService.java:642)
	at com.sas.lasr.hadoop.DataNodeService.handleCommand(DataNodeService.java:286)
	at com.sas.lasr.hadoop.DataNodeService.main(DataNodeService.java:107)
17/10/04 17:48:17 ERROR hadoop.BaseService: Connection refused (Connection refused)
java.net.ConnectException: Connection refused (Connection refused)
	at java.net.PlainSocketImpl.socketConnect(Native Method)
	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
	at java.net.Socket.connect(Socket.java:589)
	at java.net.Socket.connect(Socket.java:538)
	at java.net.Socket.&amp;lt;init&amp;gt;(Socket.java:434)
	at java.net.Socket.&amp;lt;init&amp;gt;(Socket.java:211)
	at com.sas.lasr.hadoop.BaseService.sendPing(BaseService.java:642)
	at com.sas.lasr.hadoop.DataNodeService.handleCommand(DataNodeService.java:286)
	at com.sas.lasr.hadoop.DataNodeService.main(DataNodeService.java:107)&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;on data node (cloudera-node2) tcp port 15453 is not listen&lt;BR /&gt;&lt;BR /&gt;How to debug LASR ?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 11:32:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401033#M10551</guid>
      <dc:creator>VladimirLaskov</dc:creator>
      <dc:date>2017-10-05T11:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS High-Performance Data Mining installation problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401057#M10552</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/164781"&gt;@VladimirLaskov&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are no problems with LASR, this is the problem:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;17/10/04 18:55:54 INFO hadoop.BaseService: Data dirs: [/tmp/hadoop-sassrv/dfs/data]
17/10/04 18:55:54 ERROR hadoop.BaseService: Invalid rc (1) from process on host cloudera-node2.example.loc [df, /tmp/hadoop-sassrv/dfs/data]: df: `/tmp/hadoop-sassrv/dfs/data': No such file or directory df: no file systems processed
java.io.IOException: Invalid rc (1) from process on host cloudera-node2.example.loc [df, /tmp/hadoop-sassrv/dfs/data]: df: `/tmp/hadoop-sassrv/dfs/data': No such file or directory df: no file systems processed
at com.sas.lasr.hadoop.BaseService.invokeCommand(BaseService.java:1312)
at com.sas.lasr.hadoop.BaseService.getMountpoint(BaseService.java:1269)
at com.sas.lasr.hadoop.DataNodeService.createTempDirs(DataNodeService.java:215)
at com.sas.lasr.hadoop.DataNodeService.start(DataNodeService.java:162)
at com.sas.lasr.hadoop.DataNodeService.main(DataNodeService.java:98)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Oct 2017 17:00:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401057#M10552</guid>
      <dc:creator>alexal</dc:creator>
      <dc:date>2017-10-04T17:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS High-Performance Data Mining installation problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401216#M10559</link>
      <description>&lt;P&gt;OK, but how to resolve it? Where&amp;nbsp;&lt;SPAN&gt;pay attention?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 08:15:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/401216#M10559</guid>
      <dc:creator>VladimirLaskov</dc:creator>
      <dc:date>2017-10-05T08:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS High-Performance Data Mining installation problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/402334#M10627</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/164781"&gt;@VladimirLaskov&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Who is managing your Hadoop environment? Your Hadoop administrator can help you.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 12:22:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-High-Performance-Data-Mining-installation-problem/m-p/402334#M10627</guid>
      <dc:creator>alexal</dc:creator>
      <dc:date>2017-10-09T12:22:21Z</dc:date>
    </item>
  </channel>
</rss>

