You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by ueshin <gi...@git.apache.org> on 2017/03/04 02:43:57 UTC

[GitHub] spark pull request #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$Sp...

GitHub user ueshin opened a pull request:

    https://github.com/apache/spark/pull/17158

    [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificOrdering` grows beyond 64 KB

    ## What changes were proposed in this pull request?
    
    This is a backport pr of #15480 into `branch-1.6`.
    
    ## How was this patch tested?
    
    Existing tests.


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

    $ git pull https://github.com/ueshin/apache-spark issues/SPARK-16845_1.6

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

    https://github.com/apache/spark/pull/17158.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 #17158
    
----
commit 441aafcb4abb603c03e30bfe1de7afec32b16873
Author: Liwei Lin <lw...@gmail.com>
Date:   2017-01-10T11:35:46Z

    [SPARK-16845][SQL] `GeneratedClass$SpecificOrdering` grows beyond 64 KB
    
    Prior to this patch, we'll generate `compare(...)` for `GeneratedClass$SpecificOrdering` like below, leading to Janino exceptions saying the code grows beyond 64 KB.
    
    ``` scala
    /* 005 */ class SpecificOrdering extends o.a.s.sql.catalyst.expressions.codegen.BaseOrdering {
    /* ..... */   ...
    /* 10969 */   private int compare(InternalRow a, InternalRow b) {
    /* 10970 */     InternalRow i = null;  // Holds current row being evaluated.
    /* 10971 */
    /* 1.... */     code for comparing field0
    /* 1.... */     code for comparing field1
    /* 1.... */     ...
    /* 1.... */     code for comparing field449
    /* 15012 */
    /* 15013 */     return 0;
    /* 15014 */   }
    /* 15015 */ }
    ```
    
    This patch would break `compare(...)` into smaller `compare_xxx(...)` methods when necessary; then we'll get generated `compare(...)` like:
    
    ``` scala
    /* 001 */ public SpecificOrdering generate(Object[] references) {
    /* 002 */   return new SpecificOrdering(references);
    /* 003 */ }
    /* 004 */
    /* 005 */ class SpecificOrdering extends o.a.s.sql.catalyst.expressions.codegen.BaseOrdering {
    /* 006 */
    /* 007 */     ...
    /* 1.... */
    /* 11290 */   private int compare_0(InternalRow a, InternalRow b) {
    /* 11291 */     InternalRow i = null;  // Holds current row being evaluated.
    /* 11292 */
    /* 11293 */     i = a;
    /* 11294 */     boolean isNullA;
    /* 11295 */     UTF8String primitiveA;
    /* 11296 */     {
    /* 11297 */
    /* 11298 */       Object obj = ((Expression) references[0]).eval(null);
    /* 11299 */       UTF8String value = (UTF8String) obj;
    /* 11300 */       isNullA = false;
    /* 11301 */       primitiveA = value;
    /* 11302 */     }
    /* 11303 */     i = b;
    /* 11304 */     boolean isNullB;
    /* 11305 */     UTF8String primitiveB;
    /* 11306 */     {
    /* 11307 */
    /* 11308 */       Object obj = ((Expression) references[0]).eval(null);
    /* 11309 */       UTF8String value = (UTF8String) obj;
    /* 11310 */       isNullB = false;
    /* 11311 */       primitiveB = value;
    /* 11312 */     }
    /* 11313 */     if (isNullA && isNullB) {
    /* 11314 */       // Nothing
    /* 11315 */     } else if (isNullA) {
    /* 11316 */       return -1;
    /* 11317 */     } else if (isNullB) {
    /* 11318 */       return 1;
    /* 11319 */     } else {
    /* 11320 */       int comp = primitiveA.compare(primitiveB);
    /* 11321 */       if (comp != 0) {
    /* 11322 */         return comp;
    /* 11323 */       }
    /* 11324 */     }
    /* 11325 */
    /* 11326 */
    /* 11327 */     i = a;
    /* 11328 */     boolean isNullA1;
    /* 11329 */     UTF8String primitiveA1;
    /* 11330 */     {
    /* 11331 */
    /* 11332 */       Object obj1 = ((Expression) references[1]).eval(null);
    /* 11333 */       UTF8String value1 = (UTF8String) obj1;
    /* 11334 */       isNullA1 = false;
    /* 11335 */       primitiveA1 = value1;
    /* 11336 */     }
    /* 11337 */     i = b;
    /* 11338 */     boolean isNullB1;
    /* 11339 */     UTF8String primitiveB1;
    /* 11340 */     {
    /* 11341 */
    /* 11342 */       Object obj1 = ((Expression) references[1]).eval(null);
    /* 11343 */       UTF8String value1 = (UTF8String) obj1;
    /* 11344 */       isNullB1 = false;
    /* 11345 */       primitiveB1 = value1;
    /* 11346 */     }
    /* 11347 */     if (isNullA1 && isNullB1) {
    /* 11348 */       // Nothing
    /* 11349 */     } else if (isNullA1) {
    /* 11350 */       return -1;
    /* 11351 */     } else if (isNullB1) {
    /* 11352 */       return 1;
    /* 11353 */     } else {
    /* 11354 */       int comp = primitiveA1.compare(primitiveB1);
    /* 11355 */       if (comp != 0) {
    /* 11356 */         return comp;
    /* 11357 */       }
    /* 11358 */     }
    /* 1.... */
    /* 1.... */   ...
    /* 1.... */
    /* 12652 */     return 0;
    /* 12653 */   }
    /* 1.... */
    /* 1.... */   ...
    /* 15387 */
    /* 15388 */   public int compare(InternalRow a, InternalRow b) {
    /* 15389 */
    /* 15390 */     int comp_0 = compare_0(a, b);
    /* 15391 */     if (comp_0 != 0) {
    /* 15392 */       return comp_0;
    /* 15393 */     }
    /* 15394 */
    /* 15395 */     int comp_1 = compare_1(a, b);
    /* 15396 */     if (comp_1 != 0) {
    /* 15397 */       return comp_1;
    /* 15398 */     }
    /* 1.... */
    /* 1.... */     ...
    /* 1.... */
    /* 15450 */     return 0;
    /* 15451 */   }
    /* 15452 */ }
    ```
    - a new added test case which
      - would fail prior to this patch
      - would pass with this patch
    - ordering correctness should already be covered by existing tests like those in `OrderingSuite`
    
    A major part of this PR - the refactoring work of `splitExpression()` - has been done by ueshin.
    
    Author: Liwei Lin <lw...@gmail.com>
    Author: Takuya UESHIN <ue...@happy-camper.st>
    Author: Takuya Ueshin <ue...@happy-camper.st>
    
    Closes #15480 from lw-lin/spec-ordering-64k-.

----


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    **[Test build #73890 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/73890/consoleFull)** for PR 17158 at commit [`441aafc`](https://github.com/apache/spark/commit/441aafcb4abb603c03e30bfe1de7afec32b16873).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    Merged build finished. Test FAILed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    Merged build finished. Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    **[Test build #73886 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/73886/consoleFull)** for PR 17158 at commit [`441aafc`](https://github.com/apache/spark/commit/441aafcb4abb603c03e30bfe1de7afec32b16873).
     * This patch **fails to build**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/73886/
    Test FAILed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    **[Test build #73890 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/73890/consoleFull)** for PR 17158 at commit [`441aafc`](https://github.com/apache/spark/commit/441aafcb4abb603c03e30bfe1de7afec32b16873).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by cloud-fan <gi...@git.apache.org>.
Github user cloud-fan commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    thanks, merging to 1.6!


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by kiszk <gi...@git.apache.org>.
Github user kiszk commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    Jenkins, 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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    **[Test build #73886 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/73886/consoleFull)** for PR 17158 at commit [`441aafc`](https://github.com/apache/spark/commit/441aafcb4abb603c03e30bfe1de7afec32b16873).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$SpecificO...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17158
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/73890/
    Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17158: [SPARK-16845][SQL][BRANCH-1.6] `GeneratedClass$Sp...

Posted by ueshin <gi...@git.apache.org>.
Github user ueshin closed the pull request at:

    https://github.com/apache/spark/pull/17158


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org