<?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>question Re: this version of libhadoop was built without snappy support. in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154149#M20587</link>
    <description>&lt;P&gt;For me adding the line below to spark-defaults.conf helped based on packages installed on my test cluster.&lt;/P&gt;&lt;P&gt;spark.executor.extraLibraryPath /usr/hdp/current/hadoop-client/lib/native/:/usr/hdp/current/share/lzo/0.6.0/lib/native/Linux-amd64-64/&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2018 03:32:07 GMT</pubDate>
    <dc:creator>kushalbohra</dc:creator>
    <dc:date>2018-03-12T03:32:07Z</dc:date>
    <item>
      <title>this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154131#M20569</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I hope it's the right place to ask the following question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I try to put in hdfs a file with snappy compression. I write a Java code for that and when I try to run it on my cluster I got the following exception:&lt;/P&gt;&lt;P&gt;Exception
in thread "main" java.lang.RuntimeException: native snappy library
not available: this version of libhadoop was built without snappy support.&lt;/P&gt;&lt;P&gt; 
at
org.apache.hadoop.io.compress.SnappyCodec.checkNativeCodeLoaded(SnappyCodec.java:65)&lt;/P&gt;&lt;P&gt; 
at
org.apache.hadoop.io.compress.SnappyCodec.getCompressorType(SnappyCodec.java:134)&lt;/P&gt;&lt;P&gt; 
at org.apache.hadoop.io.compress.CodecPool.getCompressor(CodecPool.java:150)&lt;/P&gt;&lt;P&gt; 
at
org.apache.hadoop.io.compress.CompressionCodec$Util.createOutputStreamWithCodecPool(CompressionCodec.java:131)&lt;/P&gt;&lt;P&gt; 
at
org.apache.hadoop.io.compress.SnappyCodec.createOutputStream(SnappyCodec.java:99)&lt;/P&gt;&lt;P&gt;Apparently the snappy library is not available... I check on the os with the following cmd "rpm -qa | less | grep snappy" and snappy and snappy-devel is present.&lt;/P&gt;&lt;P&gt;In the configuration of hdfs (core-site.xml)  org.apache.hadoop.io.compress.SnappyCodec is present in the field io.compression.codecs.&lt;/P&gt;&lt;P&gt;Does anyone has a idea why it's not working?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 10:05:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154131#M20569</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2022-09-16T10:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154132#M20570</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/1390/michelsumbul.html" nodeid="1390"&gt;@Michel Sumbul&lt;/A&gt;&lt;P&gt; please post your code.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 22:37:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154132#M20570</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-23T22:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154133#M20571</link>
      <description>&lt;P&gt;here's the piece of code:&lt;/P&gt;&lt;PRE&gt;Path outFile = new Path(destPathFolder.toString() + "/" + listFolder[i].getName() + "_" + listFiles[b].getName() + ".txt");
FSDataOutputStream fin = dfs.create(outFile);
Configuration conf = new Configuration();
conf.setBoolean("mapreduce.map.output.compress", true);
conf.set("mapreduce.map.output.compress.codec", "org.apache.hadoop.io.compress.SnappyCodec");
CompressionCodecFactory codecFactory = new CompressionCodecFactory(conf);
CompressionCodec codec = codecFactory.getCodecByName("SnappyCodec");
CompressionOutputStream compressedOutput = codec.createOutputStream(fin);
FileReader input = new FileReader(listFiles[b]);
BufferedReader bufRead = new BufferedReader(input);
String myLine = null;
while ((myLine = bufRead.readLine()) != null) {
if (!myLine.isEmpty()) {
compressedOutput.write(myLine.getBytes());
compressedOutput.write('\n'); } }
compressedOutput.flush();
compressedOutput.close();

&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Feb 2016 22:44:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154133#M20571</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2016-02-23T22:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154134#M20572</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/1390/michelsumbul.html" nodeid="1390"&gt;@Michel Sumbul&lt;/A&gt;&lt;P&gt;I don't remember setting CompressionCodecFactory explicitly. Just let configuration do its magic so remove the following&lt;/P&gt;&lt;PRE&gt;CompressionCodecFactory codecFactory = new CompressionCodecFactory(conf);
CompressionCodec codec = codecFactory.getCodecByName("SnappyCodec");
CompressionOutputStream compressedOutput = codec.createOutputStream(fin);
&lt;/PRE&gt;&lt;P&gt;and&lt;/P&gt;&lt;PRE&gt;compressedOutput.write(myLine.getBytes());
compressedOutput.write('\n'); } }
compressedOutput.flush();
compressedOutput.close();
&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Feb 2016 23:13:54 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154134#M20572</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-23T23:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154135#M20573</link>
      <description>&lt;P&gt;Hi Artem,&lt;/P&gt;&lt;P&gt;Thanks for the fast reply. I don't really understand how it will work without the &lt;/P&gt;&lt;PRE&gt;compressedOutput.write(myLine.getBytes());
compressedOutput.write('\n'); } }
compressedOutput.flush();
compressedOutput.close();
&lt;/PRE&gt;&lt;P&gt;How it will write to hdfs? Also if I remove the first part, when the configuration will be use?&lt;/P&gt;&lt;P&gt;Can you give me an example because, I don't see how it works without the part that you specify :s&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 23:22:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154135#M20573</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2016-02-23T23:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154136#M20574</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/1390/michelsumbul.html" nodeid="1390"&gt;@Michel Sumbul&lt;/A&gt;&lt;P&gt;it's been awhile, here's an example from definitive guide book&lt;/P&gt;&lt;PRE&gt;public class StreamCompressor {

  public static void main(String[] args) throws Exception {
    String codecClassname = args[0];
    Class&amp;lt;?&amp;gt; codecClass = Class.forName(codecClassname);
    Configuration conf = new Configuration();
    CompressionCodec codec = (CompressionCodec)
      ReflectionUtils.newInstance(codecClass, conf);
    
    CompressionOutputStream out = codec.createOutputStream(System.out);
    IOUtils.copyBytes(System.in, out, 4096, false);
    out.finish();
  }
}&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Feb 2016 23:30:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154136#M20574</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-23T23:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154137#M20575</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/1390/michelsumbul.html" nodeid="1390"&gt;@Michel Sumbul&lt;/A&gt;  See &lt;A target="_blank" href="http://stackoverflow.com/questions/34194038/whats-the-native-snappy-library-when-running-jar-with-hadoop"&gt;this&lt;/A&gt; thread. The same solution was used in the past by a client. &lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 00:06:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154137#M20575</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2016-02-24T00:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154138#M20576</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt; I just made the test with the example of the definitve guide and I still have exactly the same error:&lt;/P&gt;&lt;P&gt;Exception in thread "main" java.lang.RuntimeException: native snappy 
library not available: this version of libhadoop was built without 
snappy support.&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 16:52:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154138#M20576</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2016-02-24T16:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154139#M20577</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/140/nsabharwal.html" nodeid="140"&gt;@Neeraj Sabharwal&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Thanks for the reply, In my case it's not a solution because when I'm doing &lt;/P&gt;&lt;PRE&gt;hadoop checknative -a

&lt;/PRE&gt;&lt;P&gt;I see that the snappy lib is true located at / usr/hdp/2.3.4.0-3485/hadoop/lib/native/libsnappy.so.1.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 16:59:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154139#M20577</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2016-02-24T16:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154140#M20578</link>
      <description>&lt;P&gt;Please go through these steps and confirm everything is in place &lt;A href="https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.0/bk_installing_manually_book/content/install_compression_libraries.html" target="_blank"&gt;https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.0/bk_installing_manually_book/content/install_compression_libraries.html&lt;/A&gt; and just double-check snappy versions according to this doc &lt;A href="http://docs.hortonworks.com/HDPDocuments/Ambari-2.1.1.0/bk_releasenotes_ambari_2.1.1.0/content/ambari_relnotes-2.1.1.0-known-issues.html" target="_blank"&gt;http://docs.hortonworks.com/HDPDocuments/Ambari-2.1.1.0/bk_releasenotes_ambari_2.1.1.0/content/ambari_relnotes-2.1.1.0-known-issues.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 19:56:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154140#M20578</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-24T19:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154141#M20579</link>
      <description>&lt;P&gt;We have the same problem. &lt;/P&gt;&lt;P&gt;&amp;gt; hadoop checknative -a&lt;/P&gt;&lt;P&gt;snappy: true /usr/hdp/2.3.4.0-3485/hadoop/lib/native/libsnappy.so.1&lt;/P&gt;&lt;P&gt;&amp;gt; rpm -qa snappy&lt;/P&gt;&lt;P&gt;snappy-1.1.0-3.el7.x86_64&lt;/P&gt;&lt;P&gt;What else can I check? &lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 21:05:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154141#M20579</guid>
      <dc:creator>olga_katzenelso</dc:creator>
      <dc:date>2016-03-03T21:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154142#M20580</link>
      <description>&lt;P&gt;Can you post your maven pom?&lt;/P&gt;</description>
      <pubDate>Sat, 05 Mar 2016 23:03:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154142#M20580</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-03-05T23:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154143#M20581</link>
      <description>&lt;P&gt;Please confirm that you have the following property set correctly in hadoop-env.sh&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2016 19:09:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154143#M20581</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-03-08T19:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154144#M20582</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits &lt;/A&gt;which property? &lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2016 17:31:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154144#M20582</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2016-03-14T17:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154145#M20583</link>
      <description>&lt;P&gt;Sorry, forgot to link &lt;A href="https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.4/bk_upgrading_hdp_manually/content/configure-hadoop-22.html" target="_blank"&gt;https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.4/bk_upgrading_hdp_manually/content/configure-hadoop-22.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2016 18:22:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154145#M20583</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-03-14T18:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154146#M20584</link>
      <description>&lt;P&gt;The problem is solve by making the following change in the spark config:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2840-cparkconfig.jpg" style="width: 1223px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/21005iAC81DB95E1D7347E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2840-cparkconfig.jpg" alt="2840-cparkconfig.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help guys!&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 12:34:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154146#M20584</guid>
      <dc:creator>michelsumbul</dc:creator>
      <dc:date>2019-08-18T12:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154147#M20585</link>
      <description>&lt;P&gt;I have compiled the hadoop again with snappy :&lt;/P&gt;&lt;P&gt;svn checkout &lt;A href="http://svn.apache.org/repos/asf/hadoop/common/tags/release-2.5.0"&gt;http://svn.apache.org/repos/asf/hadoop/common/tags/release-2.5.0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;mvn package -Drequire.snappy -Pdist,native,src -DskipTests -Dtar&lt;/P&gt;&lt;P&gt;but got the same exception again...&lt;/P&gt;&lt;P&gt;I have also checked the hadoop-env.sh:&lt;/P&gt;&lt;P&gt;export &lt;STRONG&gt;JAVA_LIBRARY_PATH&lt;/STRONG&gt;=${&lt;STRONG&gt;JAVA_LIBRARY_PATH&lt;/STRONG&gt;}&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 16:18:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154147#M20585</guid>
      <dc:creator>olga_katzenelso</dc:creator>
      <dc:date>2016-03-17T16:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154148#M20586</link>
      <description>&lt;P&gt;just want to add that it seems the spark.driver.extraClassPath is not necessary, at least in my case when I write file in snappy in spark using:&lt;/P&gt;&lt;PRE&gt;rdd.saveAsTextFile(path, SnappyCodec.class)&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jun 2016 20:15:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154148#M20586</guid>
      <dc:creator>David_Tam</dc:creator>
      <dc:date>2016-06-09T20:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: this version of libhadoop was built without snappy support.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154149#M20587</link>
      <description>&lt;P&gt;For me adding the line below to spark-defaults.conf helped based on packages installed on my test cluster.&lt;/P&gt;&lt;P&gt;spark.executor.extraLibraryPath /usr/hdp/current/hadoop-client/lib/native/:/usr/hdp/current/share/lzo/0.6.0/lib/native/Linux-amd64-64/&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 03:32:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/this-version-of-libhadoop-was-built-without-snappy-support/m-p/154149#M20587</guid>
      <dc:creator>kushalbohra</dc:creator>
      <dc:date>2018-03-12T03:32:07Z</dc:date>
    </item>
  </channel>
</rss>

