Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2433#discussion_r201266103
--- Diff: docs/sdk-guide.md ---
@@ -251,6 +251,23 @@ public CarbonWriterBuilder withBlockSize(int
blockSize);
public CarbonWriterBuilder withBlockletSize(int blockletSize);
```
+```
+/**
+ * @param enableLocalDictionary enable local dictionary , default is
false
+ * @return updated CarbonWriterBuilder
+ */
+public CarbonWriterBuilder enableLocalDictionary(boolean
enableLocalDictionary);
+```
+
+```
+/**
+ * @param localDictionaryThreshold is localDictionaryThreshold,default
is 1000
--- End diff --
please update it as 10000.
---