You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Tajo QA (JIRA)" <ji...@apache.org> on 2015/09/06 10:32:45 UTC

[jira] [Commented] (TAJO-1727) Allow to create external table with TableSpace

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

Tajo QA commented on TAJO-1727:
-------------------------------

{color:red}*-1 overall.*{color}  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12754372/TAJO-1727_2.patch
  against master revision release-0.9.0-rc0-445-gfd4a3f8.

    {color:green}+1 @author.{color}  The patch does not contain any @author tags.

    {color:green}+1 tests included.{color}  The patch appears to include 1 new or modified test files.

    {color:green}+1 javac.{color}  The applied patch does not increase the total number of javac compiler warnings.

    {color:green}+1 javadoc.{color}  The applied patch does not increase the total number of javadoc warnings.

    {color:green}+1 checkstyle.{color}  The patch generated 0 code style errors.

    {color:red}-1 findbugs.{color}  The patch appears to introduce 8 new Findbugs (version 2.0.3) warnings.

    {color:green}+1 release audit.{color}  The applied patch does not increase the total number of release audit warnings.

    {color:green}+1 core tests.{color}  The patch passed unit tests in tajo-core tajo-core-tests.

Test results: https://builds.apache.org/job/PreCommit-TAJO-Build/855//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-TAJO-Build/855//artifact/incubator-tajo/patchprocess/newPatchFindbugsWarningstajo-core.html
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/855//console

This message is automatically generated.

> Allow to create external table with TableSpace
> ----------------------------------------------
>
>                 Key: TAJO-1727
>                 URL: https://issues.apache.org/jira/browse/TAJO-1727
>             Project: Tajo
>          Issue Type: Bug
>          Components: SQL Parser
>            Reporter: Jaehwa Jung
>            Assignee: Jaehwa Jung
>            Priority: Critical
>             Fix For: 0.11.0, 0.12.0
>
>         Attachments: TAJO-1727.patch, TAJO-1727_2.patch
>
>
> I failed to create external table on HBaseTableSpace as following:
> * HBase Shell
> {code:xml}
> hbase(main):002:0> desc 'blog'
> Table blog is ENABLED                                                                                                                                                                                                               
> blog                                                                                                                                                                                                                                
> COLUMN FAMILIES DESCRIPTION                                                                                                                                                                                                         
> {NAME => 'content', DATA_BLOCK_ENCODING => 'NONE', BLOOMFILTER => 'ROW', REPLICATION_SCOPE => '0', VERSIONS => '1', COMPRESSION => 'NONE', MIN_VERSIONS => '0', TTL => 'FOREVER', KEEP_DELETED_CELLS => 'FALSE', BLOCKSIZE => '65536
> ', IN_MEMORY => 'false', BLOCKCACHE => 'true'}                                                                                                                                                                                      
> {NAME => 'info', DATA_BLOCK_ENCODING => 'NONE', BLOOMFILTER => 'ROW', REPLICATION_SCOPE => '0', VERSIONS => '1', COMPRESSION => 'NONE', MIN_VERSIONS => '0', TTL => 'FOREVER', KEEP_DELETED_CELLS => 'FALSE', BLOCKSIZE => '65536', 
> IN_MEMORY => 'false', BLOCKCACHE => 'true'}                                                                                                                                                                                         
> 2 row(s) in 0.2380 seconds
> {code}
> * TSQL
> {code:xml}
> CREATE EXTERNAL TABLE hbase_blog (rowkey text, author text, register_date text, title text)  TABLESPACE hbasecluster1 USING hbase WITH ('table'='blog', 'columns'=':key,info:author,info:date,content:title');
> ERROR: hdfs://localhost:9010/tajo/warehouse/default/hbase_blog does not exist
> {code}
> * TajoMaster Log
> {code:xml}
> Stack Trace:
> java.io.IOException: ERROR: hdfs://localhost:9010/tajo/warehouse/default/hbase_blog does not exist
> 	at org.apache.tajo.storage.FileTablespace.createTable(FileTablespace.java:674)
> 	at org.apache.tajo.master.exec.DDLExecutor.createTable(DDLExecutor.java:364)
> 	at org.apache.tajo.master.exec.DDLExecutor.createTable(DDLExecutor.java:291)
> 	at org.apache.tajo.master.exec.DDLExecutor.execute(DDLExecutor.java:93)
> 	at org.apache.tajo.master.exec.QueryExecutor.execute(QueryExecutor.java:113)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)