This is an automated email from the ASF dual-hosted git repository.

chenliang613 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/carbondata.git


The following commit(s) were added to refs/heads/master by this push:
     new 2c78847c6e fix format and docker version issues
2c78847c6e is described below

commit 2c78847c6eb30dd1d03f8b16c1f0e2a255ea0e8a
Author: chenliang613 <chenliang...@apache.org>
AuthorDate: Sat Jul 6 17:47:34 2024 +0200

    fix format and docker version issues
---
 ...-to-build-carbondata-notebook-docker-image-by-dockerfile.md |  2 +-
 .../How-to-build-carbondata-notebook-docker-image-by-manual.md |  4 ++--
 format/src/main/thrift/carbondata.thrift                       | 10 +++++-----
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/build/How-to-build-carbondata-notebook-docker-image-by-dockerfile.md 
b/build/How-to-build-carbondata-notebook-docker-image-by-dockerfile.md
index 3cf5526322..f19a887f74 100644
--- a/build/How-to-build-carbondata-notebook-docker-image-by-dockerfile.md
+++ b/build/How-to-build-carbondata-notebook-docker-image-by-dockerfile.md
@@ -12,7 +12,7 @@ cd build/docker/carbondata-notebook
 ```
 build image:
 ```
-docker build -t carbondata:2.3.0  .
+docker build -t carbondata:2.3.1  .
 ```
 
 ```history
diff --git a/build/How-to-build-carbondata-notebook-docker-image-by-manual.md 
b/build/How-to-build-carbondata-notebook-docker-image-by-manual.md
index 4ebb5a12aa..9b4d6861dc 100644
--- a/build/How-to-build-carbondata-notebook-docker-image-by-manual.md
+++ b/build/How-to-build-carbondata-notebook-docker-image-by-manual.md
@@ -37,10 +37,10 @@ CONTAINER ID   IMAGE                                    
COMMAND
 ```
 Add carbondata jar to spark jars directory:
 ```
-docker cp apache-carbondata-2.3.0-bin-spark3.1.1-hadoop2.7.2.jar  
305f1277690c:/usr/local/spark-3.1.1-bin-hadoop3.2/jars/
+docker cp apache-carbondata-2.3.1-bin-spark3.1.1-hadoop2.7.2.jar  
305f1277690c:/usr/local/spark-3.1.1-bin-hadoop3.2/jars/
 ```
 
-The apache-carbondata-2.3.0-bin-spark3.1.1-hadoop2.7.2.jar is from 
assembly/target/scala-2.12/ directory of carbondata project.
+The apache-carbondata-2.3.1-bin-spark3.1.1-hadoop2.7.2.jar is from 
assembly/target/scala-2.12/ directory of carbondata project.
 You can build jar by maven, For example:
 
 ```
diff --git a/format/src/main/thrift/carbondata.thrift 
b/format/src/main/thrift/carbondata.thrift
index 7dcd4d320a..1c0dddcff5 100644
--- a/format/src/main/thrift/carbondata.thrift
+++ b/format/src/main/thrift/carbondata.thrift
@@ -32,7 +32,7 @@ struct SegmentInfo{
 }
 
 /**
- * Btree index of one blocklet
+ * Btree index of one blocklet for V3 format
  */
 struct BlockletBTreeIndex{
     1: required binary start_key; // Bit-packed start key of one blocklet
@@ -40,7 +40,7 @@ struct BlockletBTreeIndex{
 }
 
 /**
- * Min-max index of one blocklet
+ * Min-max index of one blocklet for V3 format
  */
 struct BlockletMinMaxIndex{
     1: required list<binary> min_values; //Min value of all columns of one 
blocklet Bit-Packed
@@ -49,7 +49,7 @@ struct BlockletMinMaxIndex{
 }
 
 /**
- * Index of one blocklet
+ * Index of one blocklet for V3 format
  */
 struct BlockletIndex{
     1: optional BlockletMinMaxIndex min_max_index;
@@ -57,7 +57,7 @@ struct BlockletIndex{
 }
 
 /**
- * Sort state of one column
+ * Sort state of one column for V3 format
  */
 enum SortState{
     SORT_NONE = 0; // Data is not sorted
@@ -211,7 +211,7 @@ struct FileFooter3{
 }
 
 /**
- * Header for appendable carbon file
+ * Header for appendable carbon file for V3 format
  */
 struct FileHeader{
        1: required i32 version; // Version used for data compatibility

Reply via email to