[GitHub] carbondata pull request #2772: [CARBONDATA-2977] Write uncompress_size to Ch...

classic Classic list List threaded Threaded
38 messages Options
12
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/891/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/894/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/1088/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/9157/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Failed with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/1094/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/905/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/1101/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/9170/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/934/



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

[GitHub] carbondata pull request #2772: [CARBONDATA-2977] Write uncompress_size to Ch...

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

    https://github.com/apache/carbondata/pull/2772#discussion_r227303328
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/UnsafeFixLengthColumnPage.java ---
    @@ -534,6 +534,11 @@ private int getEndLoop() {
         }
       }
     
    +  @Override
    +  public long getPageLengthInBytes() {
    +    return totalLength;
    --- End diff --
   
    We need to implement this method for `SafeFixLengthColumnPage` also


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

[GitHub] carbondata pull request #2772: [CARBONDATA-2977] Write uncompress_size to Ch...

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

    https://github.com/apache/carbondata/pull/2772#discussion_r227304248
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/encoding/ColumnPageEncoder.java ---
    @@ -100,17 +100,17 @@ private DataChunk2 buildPageMetadata(ColumnPage inputPage, byte[] encodedBytes)
           throws IOException {
         DataChunk2 dataChunk = new DataChunk2();
         dataChunk.setData_page_length(encodedBytes.length);
    -    fillBasicFields(inputPage, dataChunk);
    +    fillBasicFields(inputPage, dataChunk, encodedBytes);
    --- End diff --
   
    Instead of sending the encodedBytes send the length of encodedBytes as we are not making any other use of encodedBytes


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

[GitHub] carbondata pull request #2772: [CARBONDATA-2977] Write uncompress_size to Ch...

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

    https://github.com/apache/carbondata/pull/2772#discussion_r228049899
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/UnsafeFixLengthColumnPage.java ---
    @@ -534,6 +534,11 @@ private int getEndLoop() {
         }
       }
     
    +  @Override
    +  public long getPageLengthInBytes() {
    +    return totalLength;
    --- End diff --
   
    For `SafeFixLengthColumnPage`, it can use the function in `ColumnPage`


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

[GitHub] carbondata pull request #2772: [CARBONDATA-2977] Write uncompress_size to Ch...

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

    https://github.com/apache/carbondata/pull/2772#discussion_r228050566
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/encoding/ColumnPageEncoder.java ---
    @@ -100,17 +100,17 @@ private DataChunk2 buildPageMetadata(ColumnPage inputPage, byte[] encodedBytes)
           throws IOException {
         DataChunk2 dataChunk = new DataChunk2();
         dataChunk.setData_page_length(encodedBytes.length);
    -    fillBasicFields(inputPage, dataChunk);
    +    fillBasicFields(inputPage, dataChunk, encodedBytes);
    --- End diff --
   
    ok, now I remove this parameter and use dataChunk.getData_page_length instead


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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/9274/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/1009/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

    https://github.com/apache/carbondata/pull/2772
 
    Build Failed with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/1222/



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

[GitHub] carbondata issue #2772: [CARBONDATA-2977] Write uncompress_size to ChunkComp...

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

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


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

[GitHub] carbondata pull request #2772: [CARBONDATA-2977] Write uncompress_size to Ch...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user asfgit closed the pull request at:

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


---
12