All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.accenture.flink.Utils.ReadKuduTable Maven / Gradle / Ivy

package es.accenture.flink.Utils;

import es.accenture.flink.Utils.Exceptions.KuduClientException;
import org.apache.kudu.client.KuduException;


public class ReadKuduTable {

    public static void main(String[] args) {

        String table = "TableJar"; // TODO insert table name
        String host = "localhost";


        try {
            Utils utils = new Utils(host);
            utils.readTablePrint(table);
        } catch (KuduClientException e) {
            e.printStackTrace();
        } catch (KuduException e) {
            e.printStackTrace();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy