Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2276#discussion_r186336455
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/loading/model/CarbonLoadModel.java
---
@@ -202,6 +202,13 @@
*/
private boolean isPartitionLoad;
+ /**
+ * It directly writes data directly to nosort processor bypassing
convert steps.
+ * This data comes from SDK where the input is from AVRO and AVRO Writer
already
+ * converts the AVRO data to the Primitive datatypes object.
+ */
+ private boolean isAvroSDKLoad;
--- End diff --
I don't think this is required, use partition flow
---