kumarvishal09 commented on a change in pull request #3281: [WIP]Index server performance improvement
URL:
https://github.com/apache/carbondata/pull/3281#discussion_r293677528
##########
File path: core/src/main/java/org/apache/carbondata/core/indexstore/ExtendedBlocklet.java
##########
@@ -161,40 +163,30 @@ public void setColumnSchema(List<ColumnSchema> columnSchema) {
out.writeUTF(dataMapUniqueId);
}
if (inputSplit != null) {
- out.writeBoolean(true);
- inputSplit.write(out);
- String[] locations = getLocations();
- if (locations != null) {
- out.writeBoolean(true);
- out.writeInt(locations.length);
- for (String location : locations) {
- out.writeUTF(location);
- }
- } else {
- out.writeBoolean(false);
+ ExtendedByteArrayOutputStream ebos = new ExtendedByteArrayOutputStream();
Review comment:
Fixed class level comments
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services