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

    https://github.com/apache/carbondata/pull/2558#discussion_r205102509
  
    --- Diff: docs/data-management-on-carbondata.md ---
    @@ -141,7 +141,103 @@ This tutorial is going to introduce all commands and 
data operations on CarbonDa
                        'SORT_SCOPE'='NO_SORT')
        ```
       **NOTE:** CarbonData also supports "using carbondata". Find example code 
at 
[SparkSessionExample](https://github.com/apache/carbondata/blob/master/examples/spark2/src/main/scala/org/apache/carbondata/examples/SparkSessionExample.scala)
 in the CarbonData repo.
    -
    +   
    +   - **Caching Min/Max Value for Required Columns**
    +     By default, CarbonData caches min and max values of all the columns 
in schema.  As the load increases, the memory required to hold the min and max 
values increases considerably. This feature enables you to configure min and 
max values only for the required columns, resulting in optimized memory usage. 
    +    
    +    Following are the valid values for COLUMN_META_CACHE:
    +    * If you want no column min/max values to be caches in the driver.
    +    
    +    ```
    +    COLUMN_META_CACHE=’’
    +    ```
    +    
    +    * If you want only col1 min/max values to be cached in the driver.
    +    
    +    ```
    +    COLUMN_META_CACHE=’col1’
    +    ```
    +    
    +    * If you want min/max values to be caches in driver for all the 
specified columns.
    --- End diff --
    
    correct the typo...caches to cached


---

Reply via email to