Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2653#discussion_r212538229
--- Diff:
hadoop/src/main/java/org/apache/carbondata/hadoop/api/CarbonTableOutputFormat.java
---
@@ -268,6 +268,49 @@ public synchronized OutputCommitter
getOutputCommitter(TaskAttemptContext contex
executorService);
}
+ public RecordWriter<NullWritable, ObjectArrayWritable>
getMultiThreadRecordWriter(
--- End diff --
1) Added comments.
2) cannot change argument of number of threads to getRecordWriter() as it
is a override method from FileOutputFormat. Hence added new method.
---