[GitHub] carbondata pull request #1116: [CARBONDATA-1249] Wrong order of columns i n ...

classic Classic list List threaded Threaded
68 messages Options
1234
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

qiuchenjian-2
Github user CarbonDataQA commented on the issue:

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    Build Success with Spark 2.2.0, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/870/



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    Build Success with Spark 2.2.0, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/896/



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    please add test case to validate this scenario


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    added test case to validate the scenario


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

[GitHub] carbondata pull request #1116: [CARBONDATA-1249] Wrong order of columns in r...

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

    https://github.com/apache/carbondata/pull/1116#discussion_r158022240
 
    --- Diff: processing/src/main/java/org/apache/carbondata/processing/util/CarbonDataProcessorUtil.java ---
    @@ -622,4 +624,30 @@ public static String trimErrorMessage(String input) {
         }
         return errorMessage;
       }
    +  /**
    +   * The method returns true is either logger is enabled or action is redirect
    +   * @param configuration
    +   * @return
    +   */
    +  public static boolean isRawDataRequired(CarbonDataLoadConfiguration configuration) {
    +    boolean isRawDataRequired = Boolean.parseBoolean(
    +        configuration.getDataLoadProperty(DataLoadProcessorConstants.BAD_RECORDS_LOGGER_ENABLE)
    +            .toString());
    +    // if logger is disabled then check if action is redirect then raw data will be required.
    +    if (!isRawDataRequired) {
    --- End diff --
   
    Is isRawDataRequired is needed only in the case of LoggerAction.REDIRECT.  In that scenario we can turn ON isRawDataRequired whenever LoggerAction.REDIRECT is true. Why to keep a separate configuration?


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

[GitHub] carbondata pull request #1116: [CARBONDATA-1249] Wrong order of columns in r...

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

    https://github.com/apache/carbondata/pull/1116#discussion_r158028051
 
    --- Diff: processing/src/main/java/org/apache/carbondata/processing/util/CarbonDataProcessorUtil.java ---
    @@ -622,4 +624,30 @@ public static String trimErrorMessage(String input) {
         }
         return errorMessage;
       }
    +  /**
    +   * The method returns true is either logger is enabled or action is redirect
    +   * @param configuration
    +   * @return
    +   */
    +  public static boolean isRawDataRequired(CarbonDataLoadConfiguration configuration) {
    +    boolean isRawDataRequired = Boolean.parseBoolean(
    +        configuration.getDataLoadProperty(DataLoadProcessorConstants.BAD_RECORDS_LOGGER_ENABLE)
    +            .toString());
    +    // if logger is disabled then check if action is redirect then raw data will be required.
    +    if (!isRawDataRequired) {
    --- End diff --
   
    It is needed for the cases bad record logger is enabled or action is redirect.
    No new configuration introduce? Just preparing a flag from existing configuration.


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    LGTM


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    Build Success with Spark 2.2.0, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/983/



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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



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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

    https://github.com/apache/carbondata/pull/1116
 
    retest sdv please


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

[GitHub] carbondata issue #1116: [CARBONDATA-1249] Wrong order of columns in redirect...

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

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


---
1234