Pinot provides a native java client to execute queries on data in the cluster. The client is also tenant-aware, so able to redirect the queries to the correct broker.
Installation
To use the Pinot java client, include the following dependency:
Basic authorization for the JDBC client is not supported in Pinot JDBC 0.9.3 release or earlier. The JDBC client has been upgraded to support basic authentication in the Pinot 0.10.0 snapshot, which can currently be built from source.
You will not need to update your Pinot cluster to 0.10.0+ to support basic authentication, only the JDBC and Java client JARs.
Usage
Here's an example of how to use the pinot-java-client to query Pinot.
importorg.apache.pinot.client.Connection;importorg.apache.pinot.client.ConnectionFactory;importorg.apache.pinot.client.Request;importorg.apache.pinot.client.ResultSetGroup;importorg.apache.pinot.client.ResultSet;/** * Demonstrates the use of the pinot-client to query Pinot from Java */publicclassPinotClientExample {publicstaticvoidmain(String[] args) {// pinot connectionString zkUrl ="localhost:2181";String pinotClusterName ="PinotCluster";Connection pinotConnection =ConnectionFactory.fromZookeeper(zkUrl +"/"+ pinotClusterName);String query ="SELECT COUNT(*) FROM myTable GROUP BY foo";// set queryType=sql for querying the sql endpointRequest pinotClientRequest =newRequest("sql", query);ResultSetGroup pinotResultSetGroup =pinotConnection.execute(pinotClientRequest);ResultSet resultTableResultSet =pinotResultSetGroup.getResultSet(0);int numRows =resultTableResultSet.getRowCount();int numColumns =resultTableResultSet.getColumnCount();String columnValue =resultTableResultSet.getString(0,1);String columnName =resultTableResultSet.getColumnName(1);System.out.println("ColumnName: "+ columnName +", ColumnValue: "+ columnValue); }}
Connection Factory
The client provides a ConnectionFactory class to create connections to a Pinot cluster. The factory supports the following methods to create a connection -
Zookeeper (Recommended): Comma-separated list of zookeeper of the cluster. This is the recommended method which can redirect queries to appropriate brokers based on tenant/table.
Broker list: Comma separated list of the brokers in the cluster. Use for standalone setups, proof-of-concepts (POC), or Kubernetes deployments.
Controller URL: (v 0.11.0+) Controller URL. This will use periodic controller API calls to keep the table level broker list updated (hence there might be delay b/w the broker mapping changing and the client state getting updated).
Properties file: You can also put the broker list as brokerList in a properties file and provide the path to that file to the factory. This should only be used in standalone setups or for POC, unless you have a load balancer setup for brokers.
If your Pinot cluster is running inside Kubernetes and you're trying to connect to it from outside Kubernetes, the Zookeeper method will probably not work (return internal host names that can't be resolved).
For Kubernetes deployments, we recommend passing the hostname of broker(s). For example:
Connection connection = ConnectionFactory.fromHostList ("broker-1:1234", "broker-2:1234", ...) ;
Here's an example demonstrating all methods of Connection factory:
You can run the query in both blocking as well as async manner. Use
Connection.execute(org.apache.pinot.client.Request) for blocking queries
Connection.executeAsync(org.apache.pinot.client.Request) for asynchronous queries that return a future object.
ResultSetGroup resultSetGroup =connection.execute(newRequest("sql","select * from foo..."));// ORFuture<ResultSetGroup> futureResultSetGroup =connection.executeAsync(newRequest("sql","select * from foo..."));
You can also use PreparedStatement to escape query parameters. We don't store the Prepared Statement in the database and hence it won't increase the subsequent query performance.
PreparedStatement statement =connection.prepareStatement(newRequest("sql","select * from foo where a = ?"));statement.setString(1,"bar");ResultSetGroup resultSetGroup =statement.execute();// ORFuture<ResultSetGroup> futureResultSetGroup =statement.executeAsync();
Result Set
Results can be obtained with the various get methods in the first ResultSet, obtained through the getResultSet(int) method:
Request request =newRequest("sql","select foo, bar from baz where quux = 'quuux'");ResultSetGroup resultSetGroup =connection.execute(request);ResultSet resultTableResultSet =pinotResultSetGroup.getResultSet(0);for (int i =0; i <resultSet.getRowCount(); ++i) {System.out.println("foo: "+resultSet.getString(i,0));System.out.println("bar: "+resultSet.getInt(i,1));}
In case of aggregation with GROUP BY, there will be as many ResultSets as the number of aggregations, each of which will contain multiple results grouped by a grouping key.
For more information about the endpoints, visit Querying Pinot.
Authentication
Pinot supports basic HTTP authorization, which can be enabled for your cluster using configuration. To support basic HTTP authorization in your client-side Java applications, make sure you are using Pinot Java Client 0.10.0+ or building from the latest Pinot snapshot. The following code snippet shows you how to connect to and query a Pinot cluster that has basic HTTP authorization enabled when using the Java client.
finalString username ="admin";finalString password ="verysecret";// Concatenate username and password and use base64 to encode the concatenated stringString plainCredentials = username +":"+ password;String base64Credentials =newString(Base64.getEncoder().encode(plainCredentials.getBytes()));String authorizationHeader ="Basic "+ base64Credentials;Map<String,String> headers =newHashMap();headers.put("Authorization", authorizationHeader);JsonAsyncHttpPinotClientTransportFactory factory =newJsonAsyncHttpPinotClientTransportFactory();factory.setHeaders(headers);PinotClientTransport clientTransport = factory.buildTransport();Connection connection =ConnectionFactory.fromProperties(Collections.singletonList("localhost:8000"), clientTransport);String query ="select count(*) FROM baseballStats limit 1";ResultSetGroup rs =connection.execute(query);System.out.println(rs);connection.close();
Configuring client time-out
The following timeouts can be set:
brokerConnectTimeoutMs (default 2000)
brokerReadTimeoutMs (default 60000)
brokerHandshakeTimeoutMs (default 2000)
controllerConnectTimeoutMs (default 2000)
controllerReadTimeoutMs (default 60000)
controllerHandshakeTimeoutMs (default 2000)
Timeouts for the Java connector can be added as a connection properties. The following example configures a very low timeout of 10ms:
Properties connectionProperties =newProperties();connectionProperties.setProperty("controllerReadTimeoutMs","10");connectionProperties.setProperty("controllerHandshakeTimeoutMs","10");connectionProperties.setProperty("controllerConnectTimeoutMs","10");connectionProperties.setProperty("brokerReadTimeoutMs","10");connectionProperties.setProperty("brokerHandshakeTimeoutMs","10");connectionProperties.setProperty("brokerConnectTimeoutMs","10");// Register new Pinot JDBC driverDriverManager.registerDriver(newPinotDriver());// Get a client connection and set the connection timeoutsConnection connection =DriverManager.getConnection(DB_URL, connectionProperties);// Test that your query successfully times outStatement statement =connection.createStatement();ResultSet rs =statement.executeQuery("SELECT count(*) FROM baseballStats LIMIT 1;");while (rs.next()) {String result =rs.getString("count(*)");System.out.println(result);}