You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ku...@apache.org on 2022/03/07 08:17:22 UTC

[carbondata] branch master updated (19343a7 -> a838531)

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

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


    from 19343a7  [CARBONDATA-4326] MV not hitting with multiple sessions issue fix
     new 9b74951  [maven-release-plugin] prepare release apache-carbondata-2.3.0-rc2
     new e25d5b6  [maven-release-plugin] prepare for next development iteration
     new a838531  [CARBONDATA-4306] Fix Query Performance issue for Spark 3.1

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assembly/pom.xml                                                    | 2 +-
 common/pom.xml                                                      | 2 +-
 core/pom.xml                                                        | 2 +-
 examples/flink/pom.xml                                              | 2 +-
 examples/spark/pom.xml                                              | 2 +-
 format/pom.xml                                                      | 2 +-
 geo/pom.xml                                                         | 2 +-
 hadoop/pom.xml                                                      | 2 +-
 index/bloom/pom.xml                                                 | 2 +-
 index/examples/pom.xml                                              | 2 +-
 index/lucene/pom.xml                                                | 2 +-
 index/secondary-index/pom.xml                                       | 2 +-
 integration/flink-build/pom.xml                                     | 2 +-
 integration/flink-proxy/pom.xml                                     | 2 +-
 integration/flink/pom.xml                                           | 2 +-
 integration/hive/pom.xml                                            | 2 +-
 integration/presto/pom.xml                                          | 2 +-
 integration/spark/pom.xml                                           | 2 +-
 .../apache/spark/sql/execution/strategy/CarbonSourceStrategy.scala  | 6 +++---
 mv/plan/pom.xml                                                     | 2 +-
 pom.xml                                                             | 2 +-
 processing/pom.xml                                                  | 2 +-
 sdk/sdk/pom.xml                                                     | 2 +-
 streaming/pom.xml                                                   | 2 +-
 tools/cli/pom.xml                                                   | 2 +-
 25 files changed, 27 insertions(+), 27 deletions(-)

[carbondata] 03/03: [CARBONDATA-4306] Fix Query Performance issue for Spark 3.1

Posted by ku...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a838531f243f4b826778b51d1f238461d3414fe4
Author: Indhumathi27 <in...@gmail.com>
AuthorDate: Fri Mar 4 13:25:36 2022 +0530

    [CARBONDATA-4306] Fix Query Performance issue for Spark 3.1
    
    Why is this PR needed?
    Some non-partition filters, which cannot be handled by carbon, is not pushed down to spark.
    
    What changes were proposed in this PR?
    If partition filters is non empty, then the filter column is not partition column, then push the filter to spark
    
    This closes #4252
---
 .../apache/spark/sql/execution/strategy/CarbonSourceStrategy.scala  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/integration/spark/src/main/scala/org/apache/spark/sql/execution/strategy/CarbonSourceStrategy.scala b/integration/spark/src/main/scala/org/apache/spark/sql/execution/strategy/CarbonSourceStrategy.scala
index 824c7fb..85044a2 100644
--- a/integration/spark/src/main/scala/org/apache/spark/sql/execution/strategy/CarbonSourceStrategy.scala
+++ b/integration/spark/src/main/scala/org/apache/spark/sql/execution/strategy/CarbonSourceStrategy.scala
@@ -158,10 +158,10 @@ private[sql] object CarbonSourceStrategy extends SparkStrategy {
         SparkSession.getActiveSession.get,
         relation.catalogTable.get.identifier
       )
+      // remove dynamic partition filter from predicates
+      filterPredicates = CarbonToSparkAdapter.getDataFilter(partitionSet,
+        allPredicates, partitionsFilter)
     }
-    // remove dynamic partition filter from predicates
-    filterPredicates = CarbonToSparkAdapter.getDataFilter(partitionSet,
-      allPredicates, partitionsFilter)
     val table = relation.relation.asInstanceOf[CarbonDatasourceHadoopRelation]
     val projects = rawProjects.map {p =>
       p.transform {

[carbondata] 01/03: [maven-release-plugin] prepare release apache-carbondata-2.3.0-rc2

Posted by ku...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9b749511153c653e15bfcfbd2757dd4d8f337530
Author: kunal642 <ku...@gmail.com>
AuthorDate: Wed Jan 19 16:48:56 2022 +0530

    [maven-release-plugin] prepare release apache-carbondata-2.3.0-rc2
---
 assembly/pom.xml                | 2 +-
 common/pom.xml                  | 2 +-
 core/pom.xml                    | 2 +-
 examples/flink/pom.xml          | 2 +-
 examples/spark/pom.xml          | 2 +-
 format/pom.xml                  | 2 +-
 geo/pom.xml                     | 2 +-
 hadoop/pom.xml                  | 2 +-
 index/bloom/pom.xml             | 2 +-
 index/examples/pom.xml          | 2 +-
 index/lucene/pom.xml            | 2 +-
 index/secondary-index/pom.xml   | 2 +-
 integration/flink-build/pom.xml | 2 +-
 integration/flink-proxy/pom.xml | 2 +-
 integration/flink/pom.xml       | 2 +-
 integration/hive/pom.xml        | 2 +-
 integration/presto/pom.xml      | 2 +-
 integration/spark/pom.xml       | 2 +-
 mv/plan/pom.xml                 | 2 +-
 pom.xml                         | 4 ++--
 processing/pom.xml              | 2 +-
 sdk/sdk/pom.xml                 | 2 +-
 streaming/pom.xml               | 2 +-
 tools/cli/pom.xml               | 2 +-
 24 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/assembly/pom.xml b/assembly/pom.xml
index d4c7aba..1107569 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/common/pom.xml b/common/pom.xml
index 68fea9c..88dc1b8 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/core/pom.xml b/core/pom.xml
index f4d2c16..0e74e7a 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/examples/flink/pom.xml b/examples/flink/pom.xml
index cd4b691..da34787 100644
--- a/examples/flink/pom.xml
+++ b/examples/flink/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/examples/spark/pom.xml b/examples/spark/pom.xml
index 0f804f4..ca666db 100644
--- a/examples/spark/pom.xml
+++ b/examples/spark/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/format/pom.xml b/format/pom.xml
index c547d37..a8c5b60 100644
--- a/format/pom.xml
+++ b/format/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/geo/pom.xml b/geo/pom.xml
index fcbd80c..83bbbd9 100644
--- a/geo/pom.xml
+++ b/geo/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/hadoop/pom.xml b/hadoop/pom.xml
index e8be41e..298337b 100644
--- a/hadoop/pom.xml
+++ b/hadoop/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/index/bloom/pom.xml b/index/bloom/pom.xml
index c4071ba..1096951 100644
--- a/index/bloom/pom.xml
+++ b/index/bloom/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/index/examples/pom.xml b/index/examples/pom.xml
index 3873996..3522097 100644
--- a/index/examples/pom.xml
+++ b/index/examples/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/index/lucene/pom.xml b/index/lucene/pom.xml
index b10583d..88d8afb 100644
--- a/index/lucene/pom.xml
+++ b/index/lucene/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/index/secondary-index/pom.xml b/index/secondary-index/pom.xml
index b998143..f4ce62e 100644
--- a/index/secondary-index/pom.xml
+++ b/index/secondary-index/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/integration/flink-build/pom.xml b/integration/flink-build/pom.xml
index c443497..ba37c2e 100644
--- a/integration/flink-build/pom.xml
+++ b/integration/flink-build/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>2.3.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/flink-proxy/pom.xml b/integration/flink-proxy/pom.xml
index 23f5169..832d804 100644
--- a/integration/flink-proxy/pom.xml
+++ b/integration/flink-proxy/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>2.3.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/flink/pom.xml b/integration/flink/pom.xml
index 95ea491..ffa7dfc 100644
--- a/integration/flink/pom.xml
+++ b/integration/flink/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>2.3.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/hive/pom.xml b/integration/hive/pom.xml
index 1671259..095e67e 100644
--- a/integration/hive/pom.xml
+++ b/integration/hive/pom.xml
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0-SNAPSHOT</version>
+        <version>2.3.0</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/presto/pom.xml b/integration/presto/pom.xml
index fb92f99..ce620df 100644
--- a/integration/presto/pom.xml
+++ b/integration/presto/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/integration/spark/pom.xml b/integration/spark/pom.xml
index 4c2b812..2fcee18 100644
--- a/integration/spark/pom.xml
+++ b/integration/spark/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/mv/plan/pom.xml b/mv/plan/pom.xml
index 1d04c7d..18e9144 100644
--- a/mv/plan/pom.xml
+++ b/mv/plan/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/pom.xml b/pom.xml
index f30df4b..192f4b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,7 @@
   <inceptionYear>2016</inceptionYear>
   <packaging>pom</packaging>
 
-  <version>2.3.0-SNAPSHOT</version>
+  <version>2.3.0</version>
 
   <licenses>
     <license>
@@ -49,7 +49,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/carbondata.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/carbondata.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/carbondata.git</url>
-    <tag>HEAD</tag>
+    <tag>apache-carbondata-2.3.0-rc2</tag>
   </scm>
 
   <issueManagement>
diff --git a/processing/pom.xml b/processing/pom.xml
index 4d4eef3..cd7b77a 100644
--- a/processing/pom.xml
+++ b/processing/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/sdk/sdk/pom.xml b/sdk/sdk/pom.xml
index b3e1116..6373aa5 100644
--- a/sdk/sdk/pom.xml
+++ b/sdk/sdk/pom.xml
@@ -5,7 +5,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/streaming/pom.xml b/streaming/pom.xml
index e0e5722..e37d315 100644
--- a/streaming/pom.xml
+++ b/streaming/pom.xml
@@ -19,7 +19,7 @@
   <parent>
     <artifactId>carbondata-parent</artifactId>
     <groupId>org.apache.carbondata</groupId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/tools/cli/pom.xml b/tools/cli/pom.xml
index 5c0882a..66b5673 100644
--- a/tools/cli/pom.xml
+++ b/tools/cli/pom.xml
@@ -5,7 +5,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0-SNAPSHOT</version>
+    <version>2.3.0</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 

[carbondata] 02/03: [maven-release-plugin] prepare for next development iteration

Posted by ku...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e25d5b6fa292ba00cc0ed50b8f4610c2b968c0c5
Author: kunal642 <ku...@gmail.com>
AuthorDate: Wed Jan 19 16:50:11 2022 +0530

    [maven-release-plugin] prepare for next development iteration
---
 assembly/pom.xml                | 2 +-
 common/pom.xml                  | 2 +-
 core/pom.xml                    | 2 +-
 examples/flink/pom.xml          | 2 +-
 examples/spark/pom.xml          | 2 +-
 format/pom.xml                  | 2 +-
 geo/pom.xml                     | 2 +-
 hadoop/pom.xml                  | 2 +-
 index/bloom/pom.xml             | 2 +-
 index/examples/pom.xml          | 2 +-
 index/lucene/pom.xml            | 2 +-
 index/secondary-index/pom.xml   | 2 +-
 integration/flink-build/pom.xml | 2 +-
 integration/flink-proxy/pom.xml | 2 +-
 integration/flink/pom.xml       | 2 +-
 integration/hive/pom.xml        | 2 +-
 integration/presto/pom.xml      | 2 +-
 integration/spark/pom.xml       | 2 +-
 mv/plan/pom.xml                 | 2 +-
 pom.xml                         | 4 ++--
 processing/pom.xml              | 2 +-
 sdk/sdk/pom.xml                 | 2 +-
 streaming/pom.xml               | 2 +-
 tools/cli/pom.xml               | 2 +-
 24 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/assembly/pom.xml b/assembly/pom.xml
index 1107569..d8d03b7 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/common/pom.xml b/common/pom.xml
index 88dc1b8..6205781 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/core/pom.xml b/core/pom.xml
index 0e74e7a..a5f2e75 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/examples/flink/pom.xml b/examples/flink/pom.xml
index da34787..360fcff 100644
--- a/examples/flink/pom.xml
+++ b/examples/flink/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/examples/spark/pom.xml b/examples/spark/pom.xml
index ca666db..64f0d9f 100644
--- a/examples/spark/pom.xml
+++ b/examples/spark/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/format/pom.xml b/format/pom.xml
index a8c5b60..e992b2e 100644
--- a/format/pom.xml
+++ b/format/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/geo/pom.xml b/geo/pom.xml
index 83bbbd9..46f6695 100644
--- a/geo/pom.xml
+++ b/geo/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/hadoop/pom.xml b/hadoop/pom.xml
index 298337b..c38b0f9 100644
--- a/hadoop/pom.xml
+++ b/hadoop/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/index/bloom/pom.xml b/index/bloom/pom.xml
index 1096951..7ec45b4 100644
--- a/index/bloom/pom.xml
+++ b/index/bloom/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/index/examples/pom.xml b/index/examples/pom.xml
index 3522097..bccbae1 100644
--- a/index/examples/pom.xml
+++ b/index/examples/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/index/lucene/pom.xml b/index/lucene/pom.xml
index 88d8afb..e23b94d 100644
--- a/index/lucene/pom.xml
+++ b/index/lucene/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/index/secondary-index/pom.xml b/index/secondary-index/pom.xml
index f4ce62e..b1a2414 100644
--- a/index/secondary-index/pom.xml
+++ b/index/secondary-index/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/integration/flink-build/pom.xml b/integration/flink-build/pom.xml
index ba37c2e..a4b320e 100644
--- a/integration/flink-build/pom.xml
+++ b/integration/flink-build/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0</version>
+        <version>2.3.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/flink-proxy/pom.xml b/integration/flink-proxy/pom.xml
index 832d804..b7aee50 100644
--- a/integration/flink-proxy/pom.xml
+++ b/integration/flink-proxy/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0</version>
+        <version>2.3.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/flink/pom.xml b/integration/flink/pom.xml
index ffa7dfc..5eca6fb 100644
--- a/integration/flink/pom.xml
+++ b/integration/flink/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0</version>
+        <version>2.3.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/hive/pom.xml b/integration/hive/pom.xml
index 095e67e..7e5926d 100644
--- a/integration/hive/pom.xml
+++ b/integration/hive/pom.xml
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.carbondata</groupId>
         <artifactId>carbondata-parent</artifactId>
-        <version>2.3.0</version>
+        <version>2.3.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/integration/presto/pom.xml b/integration/presto/pom.xml
index ce620df..b317060 100644
--- a/integration/presto/pom.xml
+++ b/integration/presto/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/integration/spark/pom.xml b/integration/spark/pom.xml
index 2fcee18..6d278fc 100644
--- a/integration/spark/pom.xml
+++ b/integration/spark/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/mv/plan/pom.xml b/mv/plan/pom.xml
index 18e9144..9865ff7 100644
--- a/mv/plan/pom.xml
+++ b/mv/plan/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/pom.xml b/pom.xml
index 192f4b5..69dca97 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,7 @@
   <inceptionYear>2016</inceptionYear>
   <packaging>pom</packaging>
 
-  <version>2.3.0</version>
+  <version>2.3.1-SNAPSHOT</version>
 
   <licenses>
     <license>
@@ -49,7 +49,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/carbondata.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/carbondata.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/carbondata.git</url>
-    <tag>apache-carbondata-2.3.0-rc2</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <issueManagement>
diff --git a/processing/pom.xml b/processing/pom.xml
index cd7b77a..048c912 100644
--- a/processing/pom.xml
+++ b/processing/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 
diff --git a/sdk/sdk/pom.xml b/sdk/sdk/pom.xml
index 6373aa5..3f886ff 100644
--- a/sdk/sdk/pom.xml
+++ b/sdk/sdk/pom.xml
@@ -5,7 +5,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
diff --git a/streaming/pom.xml b/streaming/pom.xml
index e37d315..3889bf1 100644
--- a/streaming/pom.xml
+++ b/streaming/pom.xml
@@ -19,7 +19,7 @@
   <parent>
     <artifactId>carbondata-parent</artifactId>
     <groupId>org.apache.carbondata</groupId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/tools/cli/pom.xml b/tools/cli/pom.xml
index 66b5673..c708424 100644
--- a/tools/cli/pom.xml
+++ b/tools/cli/pom.xml
@@ -5,7 +5,7 @@
   <parent>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-parent</artifactId>
-    <version>2.3.0</version>
+    <version>2.3.1-SNAPSHOT</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>