Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2888#discussion_r230272135
--- Diff: docs/sdk-guide.md ---
@@ -429,6 +429,15 @@ public CarbonWriterBuilder
withAvroInput(org.apache.avro.Schema avroSchema);
public CarbonWriterBuilder withJsonInput(Schema carbonSchema);
```
+```
+/**
+* To support writing the ApplicationName which is writing the carbondata
file
+* @param application name which is writing the carbondata files
+* @return CarbonWriterBuilder
--- End diff --
this is mandatory because SDK can be used by different application, one
application can write and other can read this, so we store this info, during
load case we take from spark application name, SDK needs to provide this
---