Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2434#discussion_r200014195
--- Diff:
store/sdk/src/main/java/org/apache/carbondata/sdk/file/CarbonReader.java ---
@@ -121,6 +122,7 @@ public static CarbonReaderBuilder builder(String
tablePath) {
*/
public void close() throws IOException {
validateReader();
+ SDKDetailQueryExecutor.shutdownThreadPool();
--- End diff --
Static one we cannot shutdown, as another CarbonReader might be reading
same or different table in same process
---