[GitHub] carbondata pull request #1291: [CARBONDATA-1343] Hive can't query data when ...

classic Classic list List threaded Threaded
60 messages Options
123
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1291: [CARBONDATA-1343] Hive can't query data when ...

qiuchenjian-2
GitHub user cenyuhai opened a pull request:

    https://github.com/apache/carbondata/pull/1291

    [CARBONDATA-1343] Hive can't query data when the carbon table info is store in hive metastore

    add tableInfo to CarbonHiveInputSplit and no need to get schema from file in map process.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/cenyuhai/incubator-carbondata CARBONDATA-1343

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/carbondata/pull/1291.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #1291
   
----
commit 97b103d162120bc1f9be52b807da6063b4ce398e
Author: CenYuhai <[hidden email]>
Date:   2017-08-27T07:37:29Z

    add tableInfo to CarbonHiveInputSplit and no need to get schema from file in map process.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
Github user cenyuhai commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    retest this please


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user cenyuhai commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    retest this please


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user cenyuhai commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    @anubhav100 @chenliang613


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1291: [CARBONDATA-1343] Hive can't query data when ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chenliang613 commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1291#discussion_r135560774
 
    --- Diff: hadoop/src/main/java/org/apache/carbondata/hadoop/CarbonInputFormat.java ---
    @@ -133,7 +133,7 @@ public static void setTableInfo(Configuration configuration, TableInfo tableInfo
       /**
        * Get TableInfo object from `configuration`
        */
    -  private TableInfo getTableInfo(Configuration configuration) throws IOException {
    +  public TableInfo getTableInfo(Configuration configuration) throws IOException {
    --- End diff --
   
    In the future,  carbondata will use CarbonTableInputFormat to replace CarbonInputFormat, so please use CarbonTableInputFormat.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chenliang613 commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    @cenyuhai  i think, CarbonInputFormat should extend CarbonTableInputFormat now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/17/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user cenyuhai commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    {code}
    hive> select * from temp.yuhai_carbon;
    OK
    2       runlin  2       china   33000.2
    1       yuhai   2       china   33000.1
    Time taken: 1.696 seconds, Fetched: 2 row(s)
    hive> select * from temp.yuhai_carbon;
    OK
    Failed with exception java.io.IOException:java.lang.NegativeArraySizeException
    Time taken: 0.066 seconds
    {code}


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user cenyuhai commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    I find the root cause, AbstractQueryExecutor will call `freeMemoryAll(ThreadLocalTaskInfo.getCarbonTaskInfo().getTaskId())`. We should use another taskId for UnsafeMemoryDMStore


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/188/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Failed with Spark 1.6, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/64/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/189/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Success with Spark 1.6, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/65/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    SDV Build Success , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/819/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    SDV Build Success , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/820/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/190/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Failed with Spark 1.6, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/66/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    SDV Build Fail , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/821/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Success with Spark 1.6, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/70/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1291: [CARBONDATA-1343] Hive can't query data when the car...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1291
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/193/



---
123