如何从 Zeppelin 加载 Flink Streaming 数据
How to load Flink Streaming data from Zeppelin
我开始在 Zeppelin 上使用 Flink 并尝试 运行 流媒体中最简单的程序:wordcount。
当我 运行 使用终端在本地模式下使用此代码时,它可以工作。
这是我的做法:https://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html
这是代码:
object SocketWindowWordCount {
/** Main program method */
def main(args: Array[String]) : Unit = {
// the host and the port to connect to
var hostname: String = "localhost"
var port: Int = 0
try {
val params = ParameterTool.fromArgs(args)
hostname = if (params.has("hostname")) params.get("hostname") else "localhost"va
port = params.getInt("port")
} catch {
case e: Exception => {
System.err.println("No port specified. Please run 'SocketWindowWordCount " +
"--hostname <hostname> --port <port>', where hostname (localhost by default) and port " +
"is the address of the text server")
System.err.println("To start a simple text server, run 'netcat -l <port>' " +
"and type the input text into the command line")
return
}
}
// get the execution environment
val env: StreamExecutionEnvironment = StreamExecutionEnvironment.getExecutionEnvironment
// get input data by connecting to the socket
val text = env.socketTextStream(hostname, port, '\n')
// parse the data, group it, window it, and aggregate the counts
val windowCounts = text
.flatMap { w => w.split("\s") }
.map { w => WordWithCount(w, 1) }
.keyBy("word")
.timeWindow(Time.seconds(5))
.sum("count")
// print the results with a single thread, rather than in parallel
windowCounts.print().setParallelism(1)
env.execute("Socket Window WordCount")
}
/** Data type for words with count */
case class WordWithCount(word: String, count: Long)
}
但是,当我尝试 运行 Zeppelin 上的这段代码时...我不知道该怎么做。
我想我也需要在终端中打开一个套接字,但我不知道如何让 Flink 连接到这个端口。我应该在Flink上开几个windows吗?
我可以总结问题在:如何从Zeppelin加载flink流数据???
我需要在最后添加一些 Scala 方法,例如:
import scala.io.Source
val programRunning = Source.from"Socket"...?
在此先感谢您的帮助! :)
在终端中,您可以使用
nc -lk 9999
建立绑定到端口 9999 的服务,该服务会将其在标准输入上收到的任何内容发送给其客户端。
我开始在 Zeppelin 上使用 Flink 并尝试 运行 流媒体中最简单的程序:wordcount。 当我 运行 使用终端在本地模式下使用此代码时,它可以工作。
这是我的做法:https://ci.apache.org/projects/flink/flink-docs-release-1.2/quickstart/setup_quickstart.html
这是代码:
object SocketWindowWordCount {
/** Main program method */
def main(args: Array[String]) : Unit = {
// the host and the port to connect to
var hostname: String = "localhost"
var port: Int = 0
try {
val params = ParameterTool.fromArgs(args)
hostname = if (params.has("hostname")) params.get("hostname") else "localhost"va
port = params.getInt("port")
} catch {
case e: Exception => {
System.err.println("No port specified. Please run 'SocketWindowWordCount " +
"--hostname <hostname> --port <port>', where hostname (localhost by default) and port " +
"is the address of the text server")
System.err.println("To start a simple text server, run 'netcat -l <port>' " +
"and type the input text into the command line")
return
}
}
// get the execution environment
val env: StreamExecutionEnvironment = StreamExecutionEnvironment.getExecutionEnvironment
// get input data by connecting to the socket
val text = env.socketTextStream(hostname, port, '\n')
// parse the data, group it, window it, and aggregate the counts
val windowCounts = text
.flatMap { w => w.split("\s") }
.map { w => WordWithCount(w, 1) }
.keyBy("word")
.timeWindow(Time.seconds(5))
.sum("count")
// print the results with a single thread, rather than in parallel
windowCounts.print().setParallelism(1)
env.execute("Socket Window WordCount")
}
/** Data type for words with count */
case class WordWithCount(word: String, count: Long)
}
但是,当我尝试 运行 Zeppelin 上的这段代码时...我不知道该怎么做。 我想我也需要在终端中打开一个套接字,但我不知道如何让 Flink 连接到这个端口。我应该在Flink上开几个windows吗?
我可以总结问题在:如何从Zeppelin加载flink流数据???
我需要在最后添加一些 Scala 方法,例如:
import scala.io.Source
val programRunning = Source.from"Socket"...?
在此先感谢您的帮助! :)
在终端中,您可以使用
nc -lk 9999
建立绑定到端口 9999 的服务,该服务会将其在标准输入上收到的任何内容发送给其客户端。