zoukankan      html  css  js  c++  java
  • FLink Table API JAVA_BATCH_DEMO

    <dependencies>
    <dependency>
    <groupId>org.apache.flink</groupId>
    <artifactId>flink-table-api-java-bridge_2.11</artifactId>
    <version>1.9.0</version>
    <!--<scope>provided</scope>-->
    </dependency>
    <dependency>
    <groupId>org.apache.flink</groupId>
    <artifactId>flink-table-planner_2.11</artifactId>
    <version>1.9.0</version>
    <!--<scope>provided</scope>-->
    </dependency>
    <dependency>
    <groupId>org.apache.flink</groupId>
    <artifactId>flink-streaming-scala_2.11</artifactId>
    <version>1.9.0</version>
    <!--<scope>provided</scope>-->
    </dependency>

    </dependencies>






    import org.apache.flink.api.java.DataSet;
    import org.apache.flink.api.java.ExecutionEnvironment;
    import org.apache.flink.table.api.Table;
    import org.apache.flink.table.api.java.BatchTableEnvironment;

    /**
    *
    * FLink Java Batch Table API DEMO
    *
    * @author: create by maoxiangyi
    * @version: v1.0
    */
    public class WordCountSql {

    public static void main(String[] args) throws Exception {
    ExecutionEnvironment fbEnv = ExecutionEnvironment.getExecutionEnvironment();
    BatchTableEnvironment fbTableEnv = BatchTableEnvironment.create(fbEnv);

    DataSet<WC> input = fbEnv.fromElements(
    new WC("Hello", 1),
    new WC("Ciao", 1),
    new WC("Hello", 1)
    );


    // register the DataSet as table "WordCount"
    fbTableEnv.registerDataSet("WordCount", input, "word, frequency");

    // run a SQL query on the Table and retrieve the result as a new Table
    Table table = fbTableEnv.sqlQuery(
    "SELECT word, SUM(frequency) as frequency FROM WordCount GROUP BY word");

    DataSet<com.xesv5.mxy.WC> result = fbTableEnv.toDataSet(table, com.xesv5.mxy.WC.class);

    result.print();
    }
    }










  • 相关阅读:
    Doing Homework 简单dp&&状态压缩
    嫖裤子序列
    王宁宁宁
    友军寻路法
    Viviani
    ccf 201909-3
    ccf 201909-5
    链式前向星
    ccf-201909-04
    ccf -201909-2
  • 原文地址:https://www.cnblogs.com/maoxiangyi/p/11869190.html
Copyright © 2011-2022 走看看