Exception in using bootstrap-storage-plugins.json file for storage plugin in apache-drill
问题 I want to add storage plugins for MongoDB in apache-drill . After reading docs, I came to know that programmatically I can do that in two ways: Rest API using bootstrap-storage-plugins.json for configuration I am using 2nd way for my java code. Useful portion of my code: Connection conn = new Driver().connect("jdbc:drill:zk=local",null); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("show databases"); while (rs.next()) { String SCHEMA_NAME = rs.getString("SCHEMA