<?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: Querying Hbase REST with special characters in rowkey in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347509#M235192</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The encoded value for \x would be&amp;nbsp;&lt;SPAN&gt;%5Cx. So can you try using it in the url. Is it connecting via Knox?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also&lt;SPAN&gt;, do upload the curl command output.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2022 14:35:40 GMT</pubDate>
    <dc:creator>rki_</dc:creator>
    <dc:date>2022-07-13T14:35:40Z</dc:date>
    <item>
      <title>Querying Hbase REST with special characters in rowkey</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347402#M235148</link>
      <description>&lt;P&gt;Hi guys,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your assistance on querying hbase rest with special characters in the rowkey.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi, I have the following rowkey and data in Hbase:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ROW                      COLUMN+CELL                                                                                                                                                                                                                                                       
 \xF2member-00002         column=cf:age, timestamp=2022-07-12T10:16:11.986, value=20   &lt;/LI-CODE&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;&lt;P&gt;I am querying using the REST interface (version&amp;nbsp;0.0.3) as:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;GET 'http://localhost:8080/member/%F2member-00002'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but always getting&amp;nbsp;Not found.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What should be the correct url encoded rowkey?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 13:09:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347402#M235148</guid>
      <dc:creator>EJB</dc:creator>
      <dc:date>2022-07-12T13:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Querying Hbase REST with special characters in rowkey</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347509#M235192</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The encoded value for \x would be&amp;nbsp;&lt;SPAN&gt;%5Cx. So can you try using it in the url. Is it connecting via Knox?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also&lt;SPAN&gt;, do upload the curl command output.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 14:35:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347509#M235192</guid>
      <dc:creator>rki_</dc:creator>
      <dc:date>2022-07-13T14:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Querying Hbase REST with special characters in rowkey</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347522#M235199</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/80393"&gt;@rki_&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I have also used standard url encoding but still getting no results. By the way, what is interesting is when I have the following data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ROW                      COLUMN+CELL                                                                                                                                                                                                                                                       
 \xF2member-00002         column=cf:age, timestamp=2022-07-12T10:16:11.986, value=20 
 \x00member-00003         column=cf:age, timestamp=2022-07-12T10:16:11.986, value=20&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I can query&amp;nbsp;\x00member-00003 via curl by replacing \x with %&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl -v -X GET 'http://localhost:8080/member/%00member-00003' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json'&lt;/LI-CODE&gt;&lt;P&gt;and get results.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Row": [
        {
            "key": "AG1lbWJlci0wMDAwMw==",
            "Cell": [
                {
                    "column": "TTpwI2FnZQ==",
                    "timestamp": 1657730533731,
                    "$": "MjA="
                }
            ]
        }
    ]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but not this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl -v -X GET 'http://localhost:8080/member/%F2member-00002' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json'&lt;/LI-CODE&gt;&lt;P&gt;It returns Not Found.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I am using an hbase standalone docker image (mckdev/hbase:2.4.12).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 16:48:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347522#M235199</guid>
      <dc:creator>EJB</dc:creator>
      <dc:date>2022-07-13T16:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Querying Hbase REST with special characters in rowkey</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347528#M235200</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the above test, I guess you are hitting&amp;nbsp;&lt;A href="https://issues.apache.org/jira/browse/HBASE-21852" target="_self"&gt;HBASE-21852&lt;/A&gt;&amp;nbsp;which is still unresolved in the upstream.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 17:55:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347528#M235200</guid>
      <dc:creator>rki_</dc:creator>
      <dc:date>2022-07-13T17:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Querying Hbase REST with special characters in rowkey</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347548#M235209</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/80393"&gt;@rki_&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This must be it.. thanks a lot for the info!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 02:56:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Querying-Hbase-REST-with-special-characters-in-rowkey/m-p/347548#M235209</guid>
      <dc:creator>EJB</dc:creator>
      <dc:date>2022-07-14T02:56:49Z</dc:date>
    </item>
  </channel>
</rss>

