[ 
https://issues.apache.org/jira/browse/PHOENIX-3962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16057037#comment-16057037
 ] 

Ankit Singhal edited comment on PHOENIX-3962 at 6/21/17 6:07 AM:
-----------------------------------------------------------------

Not sure why local filesystem causing an exception for rename(maybe permission 
issue, you made a connection with a different user before and now you are 
making with the underprivileged user). 
It's better to clean hbase and start fresh.
{code}
hbase clean --cleanAll
{code}

Please paste the complete stack trace from master and client for these 
exceptions.


was (Author: an...@apache.org):
Not sure why local filesystem causing any exception for rename(maybe you made a 
connection with a different user before and now you are making with the 
underprivileged user). 
It's better to clean hbase and start fresh.
{code}
hbase clean --cleanAll
{code}

> Not creating the table in custom schema
> ---------------------------------------
>
>                 Key: PHOENIX-3962
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-3962
>             Project: Phoenix
>          Issue Type: Bug
>    Affects Versions: 4.10.0
>         Environment: HBase : 1.2.6
> Phoenix : 4.10.0-Hbase-1.2.0
>            Reporter: vishal
>
> I am trying to create a table MYTAB1 in my schema/namespace MYTEST.
> But instead of creating the table in that namespace it is creating it in 
> default namespace with the table name  *MYTEST.MYTAB1*.
> This not my requirement.
> I have done like this:
> 1) hbase(main):059:0> create_namespace 'MYTEST'
> 2)hbase(main):059:0> list_namespace_tables 'MYTEST'
>    --> result will be empty as i have not created any tables
> 3)createing table using phoenix using sql as below:
> {code:java}
> connection = DriverManager.getConnection("jdbc:phoenix:localhost");
> statement = connection.createStatement();
> statement.executeUpdate("create table MYTEST.MYTAB1 (employee_id integer not 
> null primary key, name varchar)");
> connection.commit();
> {code}
> 4)hbase(main):059:0> list_namespace_tables 'MYTEST'
>    --> still it is returning empty.
> Please suggest me the right syntax to create table in my own schema.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to