in src/main/java/org/apache/datasketches/server/SketchServerConfig.java [80:84]
private static JsonElement readJsonFromFile(final String configFile) throws IOException {
final Path configPath = Paths.get(configFile);
final Reader reader = Files.newBufferedReader(configPath);
return JsonParser.parseReader(reader);
}