<?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: Cloudera Manager HBase Trigger in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/375458#M242464</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106601"&gt;@skomar89&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our HBase experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/47030"&gt;@pajoshi&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/22863"&gt;@ChrisGe&lt;/a&gt;&amp;nbsp; who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Aug 2023 17:07:16 GMT</pubDate>
    <dc:creator>DianaTorres</dc:creator>
    <dc:date>2023-08-21T17:07:16Z</dc:date>
    <item>
      <title>Cloudera Manager HBase Trigger</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/375435#M242447</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;we are trying to create an alert to get notification when no row was inserted into a given HBase table in given period of time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following command was used:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;IF (SELECT total_write_requests_rate_across_regionservers WHERE serviceName=$SERVICENAME AND max(total_write_requests_rate_across_regionservers ) = 0 AND entityName = "hbase" AND category = "SERVICE") DO health:bad&lt;/LI-CODE&gt;&lt;P&gt;but the name of HBase table is missing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The `htableName` property is mentioned under the&amp;nbsp;&lt;A href="https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_dg_tsquery.html#concept_d2g_k11_dk__section_cdx_sbp_3l" target="_blank"&gt;https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_dg_tsquery.html#concept_d2g_k11_dk__section_cdx_sbp_3l&lt;/A&gt;&amp;nbsp;chapter, but it does not work - the command return empty results after putting the&amp;nbsp;`htableName` attribute to WHERE condition.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could I please to an advice, how to get a notification when entities are not inserted to the HBase table?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 08:44:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/375435#M242447</guid>
      <dc:creator>skomar89</dc:creator>
      <dc:date>2023-08-21T08:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager HBase Trigger</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/375458#M242464</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106601"&gt;@skomar89&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our HBase experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/47030"&gt;@pajoshi&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/22863"&gt;@ChrisGe&lt;/a&gt;&amp;nbsp; who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 17:07:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/375458#M242464</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2023-08-21T17:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager HBase Trigger</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/377217#M243186</link>
      <description>&lt;P&gt;This metric is specific to the region server level and cannot be sorted or filtered based on the table name. However, You can leverage the timerange option with scan to check if there are any rows inserted between two timestamps. By default, the timestamp represents the time on the RegionServer when the data was written, so unless you specify a different timestamp value when you put data into the cell, you can leverage with the cell timestamps to check the insertion time.&lt;/P&gt;&lt;P&gt;for example,&lt;/P&gt;&lt;PRE&gt;scan &lt;SPAN class="string"&gt;&lt;SPAN class="delimiter"&gt;'&lt;/SPAN&gt;&lt;SPAN class="content"&gt;NS:TableName&lt;/SPAN&gt;&lt;SPAN class="delimiter"&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;, { TIMERANGE =&amp;gt; [&lt;SPAN class="integer"&gt;1589621394000&lt;/SPAN&gt;, &lt;SPAN class="integer"&gt;1589637999999&lt;/SPAN&gt;] }&lt;/PRE&gt;&lt;P&gt;You can get epoch time from HBase shell as well using this option.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="include"&gt;SimpleDateFormat.new&lt;/SPAN&gt;(&lt;SPAN class="string"&gt;&lt;SPAN class="delimiter"&gt;"&lt;/SPAN&gt;&lt;SPAN class="content"&gt;yy/MM/dd HH:mm:ss&lt;/SPAN&gt;&lt;SPAN class="delimiter"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;).&lt;SPAN class="include"&gt;parse&lt;/SPAN&gt;(&lt;SPAN class="string"&gt;&lt;SPAN class="delimiter"&gt;"&lt;/SPAN&gt;&lt;SPAN class="content"&gt;08/08/16 20:56:29&lt;/SPAN&gt;&lt;SPAN class="delimiter"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;, &lt;SPAN class="include"&gt;ParsePosition.new&lt;/SPAN&gt;(&lt;SPAN class="integer"&gt;0&lt;/SPAN&gt;)).&lt;SPAN class="include"&gt;getTime&lt;/SPAN&gt;() =&amp;gt; &lt;SPAN class="integer"&gt;1218920189000&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 08:49:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/377217#M243186</guid>
      <dc:creator>Anandh_S</dc:creator>
      <dc:date>2023-10-04T08:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Cloudera Manager HBase Trigger</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/377398#M243249</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106601"&gt;@skomar89&lt;/a&gt;&amp;nbsp;Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 03:49:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Cloudera-Manager-HBase-Trigger/m-p/377398#M243249</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2023-10-10T03:49:32Z</dc:date>
    </item>
  </channel>
</rss>

