@@ -186,10 +186,6 @@ public final class CarbonCommonConstants {
186
186
public static final byte [] MEMBER_DEFAULT_VAL_ARRAY =
187
187
MEMBER_DEFAULT_VAL .getBytes (Charset .forName (DEFAULT_CHARSET ));
188
188
189
- /**
190
- * Bytes for string 0, it is used in codegen in case of null values.
191
- */
192
- public static final byte [] ZERO_BYTE_ARRAY = "0" .getBytes ();
193
189
/**
194
190
* FILE STATUS IN-PROGRESS
195
191
*/
@@ -963,12 +959,12 @@ public final class CarbonCommonConstants {
963
959
/**
964
960
* If the level 2 compaction is done in minor then new compacted segment will end with .2
965
961
*/
966
- public static String LEVEL2_COMPACTION_INDEX = ".2" ;
962
+ public static final String LEVEL2_COMPACTION_INDEX = ".2" ;
967
963
968
964
/**
969
965
* Indicates compaction
970
966
*/
971
- public static String COMPACTION_KEY_WORD = "COMPACTION" ;
967
+ public static final String COMPACTION_KEY_WORD = "COMPACTION" ;
972
968
973
969
/**
974
970
* hdfs temporary directory key
@@ -985,30 +981,30 @@ public final class CarbonCommonConstants {
985
981
/**
986
982
* File created in case of minor compaction request
987
983
*/
988
- public static String minorCompactionRequiredFile = "compactionRequired_minor" ;
984
+ public static final String minorCompactionRequiredFile = "compactionRequired_minor" ;
989
985
990
986
/**
991
987
* File created in case of major compaction request
992
988
*/
993
- public static String majorCompactionRequiredFile = "compactionRequired_major" ;
989
+ public static final String majorCompactionRequiredFile = "compactionRequired_major" ;
994
990
995
991
/**
996
992
* @Deprecated : This property has been deprecated.
997
993
* Property for enabling system level compaction lock.1 compaction can run at once.
998
994
*/
999
995
@ CarbonProperty
1000
- public static String ENABLE_CONCURRENT_COMPACTION = "carbon.concurrent.compaction" ;
996
+ public static final String ENABLE_CONCURRENT_COMPACTION = "carbon.concurrent.compaction" ;
1001
997
1002
998
/**
1003
999
* Default value of Property for enabling system level compaction lock.1 compaction can run
1004
1000
* at once.
1005
1001
*/
1006
- public static String DEFAULT_ENABLE_CONCURRENT_COMPACTION = "true" ;
1002
+ public static final String DEFAULT_ENABLE_CONCURRENT_COMPACTION = "true" ;
1007
1003
1008
1004
/**
1009
1005
* Compaction system level lock folder.
1010
1006
*/
1011
- public static String SYSTEM_LEVEL_COMPACTION_LOCK_FOLDER = "SystemCompactionLock" ;
1007
+ public static final String SYSTEM_LEVEL_COMPACTION_LOCK_FOLDER = "SystemCompactionLock" ;
1012
1008
1013
1009
/**
1014
1010
* This batch size is used to send rows from load step to another step in batches.
@@ -1048,34 +1044,34 @@ public final class CarbonCommonConstants {
1048
1044
/**
1049
1045
* columns which gets updated in update will have header ends with this extension.
1050
1046
*/
1051
- public static String UPDATED_COL_EXTENSION = "-updatedColumn" ;
1047
+ public static final String UPDATED_COL_EXTENSION = "-updatedColumn" ;
1052
1048
1053
1049
/**
1054
1050
* appending the key to differentiate the update flow with insert flow.
1055
1051
*/
1056
- public static String RDDUTIL_UPDATE_KEY = "UPDATE_" ;
1052
+ public static final String RDDUTIL_UPDATE_KEY = "UPDATE_" ;
1057
1053
1058
1054
/**
1059
1055
* to determine to use the rdd persist or not.
1060
1056
*/
1061
1057
@ CarbonProperty
1062
- public static String isPersistEnabled = "carbon.update.persist.enable" ;
1058
+ public static final String isPersistEnabled = "carbon.update.persist.enable" ;
1063
1059
1064
1060
/**
1065
1061
* for enabling or disabling Horizontal Compaction.
1066
1062
*/
1067
1063
@ CarbonProperty
1068
- public static String isHorizontalCompactionEnabled = "carbon.horizontal.compaction.enable" ;
1064
+ public static final String isHorizontalCompactionEnabled = "carbon.horizontal.compaction.enable" ;
1069
1065
1070
1066
/**
1071
1067
* Default value for HorizontalCompaction is true.
1072
1068
*/
1073
- public static String defaultIsHorizontalCompactionEnabled = "true" ;
1069
+ public static final String defaultIsHorizontalCompactionEnabled = "true" ;
1074
1070
1075
1071
/**
1076
1072
* by default rdd will be persisted in the update case.
1077
1073
*/
1078
- public static String defaultValueIsPersistEnabled = "true" ;
1074
+ public static final String defaultValueIsPersistEnabled = "true" ;
1079
1075
1080
1076
/**
1081
1077
* current data file version
@@ -1089,7 +1085,7 @@ public final class CarbonCommonConstants {
1089
1085
/**
1090
1086
* Maximum no of column supported
1091
1087
*/
1092
- public static int DEFAULT_MAX_NUMBER_OF_COLUMNS = 20000 ;
1088
+ public static final int DEFAULT_MAX_NUMBER_OF_COLUMNS = 20000 ;
1093
1089
1094
1090
/**
1095
1091
* Maximum waiting time (in seconds) for a query for requested executors to be started
0 commit comments