当前位置:   article > 正文

Flink Table API写入数据到Elasticsearch_flink tableenv 输出到es

flink tableenv 输出到es
本案例使用flink的table API将数据写入es中,其中flink版本为1.10.0,es版本为7.6.2
  • 1
package com.bigdata.table

import com.bigdata.apitest.source.SensorReading
import org.apache.flink.streaming.api.scala._
import org.apache.flink.table.api.{DataTypes, Table}
import org.apache.flink.table.api.scala._
import org.apache.flink.table.descriptors.{Elasticsearch, Json, Schema}

/**
  * @ description: 使用flink table API将数据写入es
  * @ author: spencer
  * @ date: 2020/7/29 16:53
  */
object ESTableApiTest {

  def main(args: Array[String]): Unit = {

    val env: StreamExecutionEnvironment = StreamExecutionEnvironment
      .getExecutionEnvironment

    val tableEnv: StreamTableEnvironment = StreamTableEnvironment.create(env)

    env.setParallelism(1)

    //获取DataStream
    val inputDataStream: DataStream[SensorReading] = env.readTextFile("D:\\IdeaProjects\\flink-project\\src\\main\\resources\\sensor.txt")
      .map(
        data => {
          val dataArray: Array[String] = data.split(",")
          SensorReading(dataArray(0), dataArray(1).toLong, dataArray(2).toDouble)
        }
      )

    val inputTable: Table = tableEnv.fromDataStream(inputDataStream)

    val resultTable: Table = inputTable
      .groupBy('id)
      // 必须导入table api的隐式转换:import org.apache.flink.table.api.scala._
      // 才能使用单引号+字段
      .select('id, 'id.count as 'total)

    // 定义ES的输出连接
    tableEnv.connect(
      new Elasticsearch()
        .version("6")
        .host("localhost", 9200, "http")
        .index("sensor")
        .documentType("_doc")
    )
      .inUpsertMode()
      .withFormat(new Json())
      .withSchema(new Schema()
        .field("id", DataTypes.STRING())
        .field("count", DataTypes.BIGINT())
      )
      .createTemporaryTable("esOutputTable")

    resultTable.insertInto("esOutputTable")

    env.execute("ESTableApiTest")
  }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63

    es中查询结果如下:

    在这里插入图片描述

    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/606348
    推荐阅读
    相关标签
      

    闽ICP备14008679号