<?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 How to create Namespace in hbase? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118901#M42949</link>
    <description>&lt;P&gt;Need steps for creation of the Namespace.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Oct 2016 11:13:55 GMT</pubDate>
    <dc:creator>rammohanciber</dc:creator>
    <dc:date>2016-10-07T11:13:55Z</dc:date>
    <item>
      <title>How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118901#M42949</link>
      <description>&lt;P&gt;Need steps for creation of the Namespace.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 11:13:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118901#M42949</guid>
      <dc:creator>rammohanciber</dc:creator>
      <dc:date>2016-10-07T11:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118902#M42950</link>
      <description>&lt;P&gt; &lt;A rel="user" href="https://community.cloudera.com/users/13514/rammohanciber.html" nodeid="13514"&gt;@Rammohan Reddy&lt;/A&gt; This is documented here &lt;/P&gt;&lt;P&gt;&lt;A href="http://hbase.apache.org/book.html#_namespace" target="_blank"&gt;http://hbase.apache.org/book.html#_namespace&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Just go to hbase shell and execute command.&lt;/P&gt;&lt;H3&gt;21.1. Namespace management&lt;/H3&gt;&lt;P&gt;A namespace can be created, removed or altered. Namespace membership is determined during table creation by specifying a fully-qualified table name of the form:&lt;/P&gt;&lt;PRE&gt;&amp;lt;code&amp;gt;&amp;lt;table namespace&amp;gt;:&amp;lt;table qualifier&amp;gt;&lt;/PRE&gt;
&lt;P&gt;
Example 12. Examples&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&amp;lt;code&amp;gt;#Create a namespace
create_namespace 'my_ns'&lt;/PRE&gt;

&lt;PRE&gt;&amp;lt;code&amp;gt;#create my_table in my_ns namespace
create 'my_ns:my_table', 'fam'&lt;/PRE&gt;

&lt;PRE&gt;&amp;lt;code&amp;gt;#drop namespace
drop_namespace 'my_ns'&lt;/PRE&gt;

&lt;PRE&gt;&amp;lt;code&amp;gt;#alter namespace
alter_namespace 'my_ns', {METHOD =&amp;gt; 'set', 'PROPERTY_NAME' =&amp;gt; 'PROPERTY_VALUE'}&lt;/PRE&gt;
&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 07 Oct 2016 11:16:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118902#M42950</guid>
      <dc:creator>sunile_manjee</dc:creator>
      <dc:date>2016-10-07T11:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118903#M42951</link>
      <description>&lt;P&gt;Thanks  Sunile for the information.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 12:49:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118903#M42951</guid>
      <dc:creator>rammohanciber</dc:creator>
      <dc:date>2016-10-07T12:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118904#M42952</link>
      <description>&lt;P&gt;Thanks for the  information Sunile&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 12:49:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118904#M42952</guid>
      <dc:creator>rammohanciber</dc:creator>
      <dc:date>2016-10-07T12:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118905#M42953</link>
      <description>&lt;P&gt;As a quick follow-up to &lt;A rel="user" href="https://community.cloudera.com/users/1486/smanjee.html" nodeid="1486"&gt;@Sunile Manjee&lt;/A&gt;'s perfect answer, check out &lt;A href="https://martin.atlassian.net/wiki/x/0zToBQ" target="_blank"&gt;https://martin.atlassian.net/wiki/x/0zToBQ&lt;/A&gt; for how to grant DBA-level privileges to these new namespaces.  Heck, here it is in from the shell's perspective.&lt;/P&gt;&lt;PRE&gt;grant 'the_username', 'RWXC', '@my_ns'&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Mar 2017 08:50:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118905#M42953</guid>
      <dc:creator>LesterMartin</dc:creator>
      <dc:date>2017-03-05T08:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118906#M42954</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;although &lt;A rel="user" href="https://community.cloudera.com/users/122/lmartin.html" nodeid="122"&gt;@Lester Martin&lt;/A&gt; and &lt;A rel="user" href="https://community.cloudera.com/users/1486/smanjee.html" nodeid="1486"&gt;@Sunile Manjee&lt;/A&gt; answered perfectly, just a minor addition. If you want to assign privileges to a _group_ instead of single user, then also use '@'-prefix, like e.g.:&lt;/P&gt;&lt;PRE&gt;grant '@admingroup', 'RWXC', '@my_ns'&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Apr 2017 21:23:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118906#M42954</guid>
      <dc:creator>geko</dc:creator>
      <dc:date>2017-04-26T21:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Namespace in hbase?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118907#M42955</link>
      <description>&lt;P&gt;Will it be possible to create namespace on the custom hdfs path ?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2018 20:39:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-create-Namespace-in-hbase/m-p/118907#M42955</guid>
      <dc:creator>aps</dc:creator>
      <dc:date>2018-07-06T20:39:25Z</dc:date>
    </item>
  </channel>
</rss>

