[GitHub] carbondata pull request #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

[GitHub] carbondata pull request #2535: [CARBONDATA-2606]Fix Complex array Pushdown

qiuchenjian-2
GitHub user Indhumathi27 opened a pull request:

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

    [CARBONDATA-2606]Fix Complex array Pushdown

    **What is PR for?**
      Check for if Complex Column contains ArrayType at n levels and add parent to projection if contains array.
   
     - [ ] Any interfaces changed?
     
     - [ ] Any backward compatibility impacted?
     
     - [ ] Document update required?
   
     - [ ] Testing done
           
     - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


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

    $ git pull https://github.com/Indhumathi27/carbondata arrayfix

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

    https://github.com/apache/carbondata/pull/2535.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 #2535
   
----
commit e5b3d345d8054eaf1f326e70a2ab3453e9e1c153
Author: Indhumathi27 <indhumathim27@...>
Date:   2018-07-21T10:46:21Z

    [CARBONDATA-2606]Fix Complex array Pushdown

----


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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

qiuchenjian-2
Github user CarbonDataQA commented on the issue:

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



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Build Success with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/6134/



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

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



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

[GitHub] carbondata pull request #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535#discussion_r204296432
 
    --- Diff: integration/spark-common-test/src/test/scala/org/apache/carbondata/integration/spark/testsuite/complexType/TestComplexDataType.scala ---
    @@ -885,4 +885,36 @@ class TestComplexDataType extends QueryTest with BeforeAndAfterAll {
         checkExistence(sql("select * from table1"),true,"1.0E9")
       }
     
    +  test("test block compaction - auto merge") {
    +    sql("DROP TABLE IF EXISTS table1")
    +    CarbonProperties.getInstance()
    +      .addProperty(CarbonCommonConstants.ENABLE_AUTO_LOAD_MERGE, "true")
    +    sql(
    +      "create table table1 (roll int,person Struct<detail:int,age:string,height:double>) stored " +
    +      "by 'carbondata'")
    +    sql(
    +      "load data inpath '" + resourcesPath +
    +      "/Struct.csv' into table table1 options('delimiter'=','," +
    +      "'quotechar'='\"','fileheader'='roll,person','complex_delimiter_level_1'='$'," +
    +      "'complex_delimiter_level_2'='&')")
    +    sql(
    +      "load data inpath '" + resourcesPath +
    +      "/Struct.csv' into table table1 options('delimiter'=','," +
    +      "'quotechar'='\"','fileheader'='roll,person','complex_delimiter_level_1'='$'," +
    +      "'complex_delimiter_level_2'='&')")
    +    sql(
    +      "load data inpath '" + resourcesPath +
    +      "/Struct.csv' into table table1 options('delimiter'=','," +
    +      "'quotechar'='\"','fileheader'='roll,person','complex_delimiter_level_1'='$'," +
    +      "'complex_delimiter_level_2'='&')")
    +    sql(
    +      "load data inpath '" + resourcesPath +
    +      "/Struct.csv' into table table1 options('delimiter'=','," +
    +      "'quotechar'='\"','fileheader'='roll,person','complex_delimiter_level_1'='$'," +
    +      "'complex_delimiter_level_2'='&')")
    +    checkAnswer(sql("select count(*) from table1"),Seq(Row(40)))
    --- End diff --
   
    check for segments whether compaction has happened or not


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

[GitHub] carbondata pull request #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535#discussion_r204296035
 
    --- Diff: integration/spark2/src/main/scala/org/apache/carbondata/spark/rdd/CarbonDataRDDFactory.scala ---
    @@ -578,13 +578,19 @@ object CarbonDataRDDFactory {
             if (carbonTable.isHivePartitionTable) {
               carbonLoadModel.setFactTimeStamp(System.currentTimeMillis())
             }
    -        val compactedSegments = new util.ArrayList[String]()
    -        handleSegmentMerging(sqlContext,
    -          carbonLoadModel,
    -          carbonTable,
    -          compactedSegments,
    -          operationContext)
    -        carbonLoadModel.setMergedSegmentIds(compactedSegments)
    +        // Block compaction for table containing complex datatype
    +        if (carbonTable.getTableInfo.getFactTable.getListOfColumns.asScala
    +          .exists(m => m.getDataType.isComplexType)) {
    +          LOGGER.info("Compaction is skipped as table contains complex columns")
    --- End diff --
   
    change to warn


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

[GitHub] carbondata pull request #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535#discussion_r204296013
 
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonLoadDataCommand.scala ---
    @@ -823,15 +824,21 @@ case class CarbonLoadDataCommand(
         }
         try {
           carbonLoadModel.setFactTimeStamp(System.currentTimeMillis())
    -      val compactedSegments = new util.ArrayList[String]()
    -      // Trigger auto compaction
    -      CarbonDataRDDFactory.handleSegmentMerging(
    -        sparkSession.sqlContext,
    -        carbonLoadModel,
    -        table,
    -        compactedSegments,
    -        operationContext)
    -      carbonLoadModel.setMergedSegmentIds(compactedSegments)
    +      // Block compaction for table containing complex datatype
    +      if (table.getTableInfo.getFactTable.getListOfColumns.asScala
    +        .exists(m => m.getDataType.isComplexType)) {
    +        LOGGER.info("Compaction is skipped as table contains complex columns")
    --- End diff --
   
    change to warn


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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

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



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Retest this please


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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/6150/



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

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



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/6157/



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Retest this please


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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

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



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Retest this please


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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Build Success with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/6164/



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

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



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

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



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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Retest sdv please


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

[GitHub] carbondata issue #2535: [CARBONDATA-2606]Fix Complex array Pushdown

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

    https://github.com/apache/carbondata/pull/2535
 
    Build Success with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/6170/



---
123