You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by akashrn5 <gi...@git.apache.org> on 2017/11/05 13:19:09 UTC

[GitHub] carbondata pull request #1435: [CARBONDATA-1626]add data size and index size...

Github user akashrn5 commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1435#discussion_r148957017
  
    --- Diff: core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java ---
    @@ -1376,6 +1376,32 @@
     
       public static final String BITSET_PIPE_LINE_DEFAULT = "true";
     
    +  /**
    +   * The total size of carbon data
    +   */
    +  public static final String CARBON_TOTAL_DATA_SIZE = "datasize";
    +
    +  /**
    +   * The total size of carbon index
    +   */
    +  public static final String CARBON_TOTAL_INDEX_SIZE = "indexsize";
    +
    +  /**
    +   * ENABLE_CALCULATE_DATA_INDEX_SIZE
    +   */
    +  @CarbonProperty public static final String ENABLE_CALCULATE_SIZE = "carbon.enable.calculate.size";
    +
    +  /**
    +   * DEFAULT_ENABLE_CALCULATE_DATA_INDEX_SIZE
    +   */
    +  @CarbonProperty public static final String DEFAULT_ENABLE_CALCULATE_SIZE = "true";
    --- End diff --
    
    ok


---