VenuReddy2103 commented on a change in pull request #3819:
URL:
https://github.com/apache/carbondata/pull/3819#discussion_r478387596##########
File path: sdk/sdk/src/main/java/org/apache/carbondata/sdk/file/JsonCarbonWriter.java
##########
@@ -91,4 +102,39 @@ public void close() throws IOException {
throw new IOException(e);
}
}
+
+ private void loadSingleFile(File file) throws IOException {
+ try {
+ Reader reader = SDKUtil.buildJsonReader(file);
+ JSONParser jsonParser = new JSONParser();
+ Object jsonRecord = jsonParser.parse(reader);
+ if (jsonRecord instanceof JSONArray) {
+ JSONArray jsonArray = (JSONArray) jsonRecord;
+ for (Object record : jsonArray) {
+ this.write(record.toString());
+ }
+ } else {
+ this.write(jsonRecord.toString());
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ throw new IOException(e.getMessage());
Review comment:
Need to close stream in validateJsonFiles as well. Please check for all the stream cases in this PR.
----------------------------------------------------------------
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]