<?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 Can Flume be used with HBase? How? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123517#M22611</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can anyone please explain if Flume be used with HBase and how we can use it. If Possibly with example to help me understand.&lt;/P&gt;</description>
    <pubDate>Sat, 12 Mar 2016 15:58:17 GMT</pubDate>
    <dc:creator>rushikeshdeshmu</dc:creator>
    <dc:date>2016-03-12T15:58:17Z</dc:date>
    <item>
      <title>Can Flume be used with HBase? How?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123517#M22611</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can anyone please explain if Flume be used with HBase and how we can use it. If Possibly with example to help me understand.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2016 15:58:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123517#M22611</guid>
      <dc:creator>rushikeshdeshmu</dc:creator>
      <dc:date>2016-03-12T15:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can Flume be used with HBase? How?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123518#M22612</link>
      <description>&lt;P&gt;This &lt;A href="https://blogs.apache.org/flume/entry/streaming_data_into_apache_hbase"&gt;Apache document&lt;/A&gt; is good on Streaming data into Apache HBase using Apache Flume.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2016 16:03:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123518#M22612</guid>
      <dc:creator>rpednekar</dc:creator>
      <dc:date>2016-03-12T16:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can Flume be used with HBase? How?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123519#M22613</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/502/rpednekar.html"&gt;Rohan Pednekar&lt;/A&gt;, thanks for sharing this link.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2016 16:08:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123519#M22613</guid>
      <dc:creator>rushikeshdeshmu</dc:creator>
      <dc:date>2016-03-12T16:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can Flume be used with HBase? How?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123520#M22614</link>
      <description>&lt;P&gt;I got below answer:&lt;/P&gt;&lt;P&gt;Apache
Flume can be used with HBase using one of the two HBase sinks –&lt;/P&gt;&lt;UL&gt;
	
&lt;LI&gt;HBaseSink
	(org.apache.flume.sink.hbase.HBaseSink) supports secure HBase
	clusters and also the novel HBase IPC that was introduced in the
	version HBase 0.96.&lt;/LI&gt;&lt;LI&gt;AsyncHBaseSink
	(org.apache.flume.sink.hbase.AsyncHBaseSink) has better performance
	than HBase sink as it can easily make non-blocking calls to HBase.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Working
of the HBaseSink –&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In
HBaseSink, a Flume Event is converted into HBase Increments or Puts.
Serializer implements the HBaseEventSerializer which is then
instantiated when the sink starts. For every event, sink calls the
initialize method in the serializer which then translates the Flume
Event into HBase increments and puts to be sent to HBase cluster.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Working
of the AsyncHBaseSink-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;AsyncHBaseSink
implements the AsyncHBaseEventSerializer. The initialize method is
called only once by the sink when it starts. Sink invokes the
setEvent method and then makes calls to the getIncrements and
getActions methods just similar to HBase sink. When the sink stops,
the cleanUp method is called by the serializer.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2016 16:14:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123520#M22614</guid>
      <dc:creator>rushikeshdeshmu</dc:creator>
      <dc:date>2016-03-12T16:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can Flume be used with HBase? How?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123521#M22615</link>
      <description>&lt;P&gt;Here's info on both HBase sinks in Flume along with examples &lt;A href="https://flume.apache.org/FlumeUserGuide.html#hbasesinks" target="_blank"&gt;https://flume.apache.org/FlumeUserGuide.html#hbasesinks&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Alternatively, if you're using Phoenix, there's a connector for that &lt;A href="https://phoenix.apache.org/flume.html" target="_blank"&gt;https://phoenix.apache.org/flume.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2016 17:00:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123521#M22615</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-03-12T17:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can Flume be used with HBase? How?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123522#M22616</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/393/aervits.html"&gt;Artem Ervits&lt;/A&gt;, thanks for sharing this link.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2016 17:04:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Can-Flume-be-used-with-HBase-How/m-p/123522#M22616</guid>
      <dc:creator>rushikeshdeshmu</dc:creator>
      <dc:date>2016-03-12T17:04:20Z</dc:date>
    </item>
  </channel>
</rss>

