[GitHub] [carbondata] xuchuanyin commented on a change in pull request #3177: [CARBONDATA-3306] Distributed index server

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] xuchuanyin commented on a change in pull request #3177: [CARBONDATA-3306] Distributed index server

GitBox
xuchuanyin commented on a change in pull request #3177: [CARBONDATA-3306] Distributed index server
URL: https://github.com/apache/carbondata/pull/3177#discussion_r277488429
 
 

 ##########
 File path: core/src/main/java/org/apache/carbondata/core/indexstore/ExtendedBlocklet.java
 ##########
 @@ -144,4 +150,19 @@ public void setColumnSchema(List<ColumnSchema> columnSchema) {
     this.inputSplit.setColumnSchema(columnSchema);
   }
 
+
+
+  @Override public void write(DataOutput out) throws IOException {
+    out.writeUTF(dataMapUniqueId);
+    inputSplit.write(out);
+    super.write(out);
+  }
+
+  @Override public void readFields(DataInput in) throws IOException {
+    dataMapUniqueId = in.readUTF();
+    inputSplit = new CarbonInputSplit();
+    inputSplit.readFields(in);
+    super.readFields(in);
 
 Review comment:
   this has the same problem as described above

----------------------------------------------------------------
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