【发布时间】:2021-03-23 16:19:32
【问题描述】:
我想从流式查询中获取triggerExecution, inputRowsPerSecond, numInputRows, processedRowsPerSecond 之类的信息。
我使用rate 格式生成10 rows per second,并使用QueryProgressEvent 获取所有指标。
但是,在控制台中,在打印 QueryProgressEvent.inputRowsPerSecond 时,我得到了不正确的值,例如:625.0 666.66
有人可以解释为什么它会产生这样的价值吗?
代码和示例输出如下:
spark.streams.addListener(new EventMetric())
val df = spark.readStream
.format("rate")
.option("rowsPerSecond",10)
.option("numPartitions",1)
.load()
.select($"value",$"timestamp")
df.writeStream
.outputMode("append")
.option("checkpointLocation", "/testjob")
.foreachBatch((batchDf: DataFrame, batchId: Long) =>{
println("rowcount value >>>> " + rowCountAcc.value)
val outputDf = batchDf
outputDf.write
.format("console")
.mode("append")
.save()
})
.start()
.awaitTermination()
StreamingQueryListener:
class EventMetric extends StreamingQueryListener{
override def onQueryStarted(event: QueryStartedEvent): Unit = {
}
override def onQueryProgress(event: QueryProgressEvent): Unit = {
val p = event.progress
// println("id : " + p.id)
println("runId : " + p.runId)
// println("name : " + p.name)
println("batchid : " + p.batchId)
println("timestamp : " + p.timestamp)
println("triggerExecution" + p.durationMs.get("triggerExecution"))
println(p.eventTime)
println("inputRowsPerSecond : " + p.inputRowsPerSecond)
println("numInputRows : " + p.numInputRows)
println("processedRowsPerSecond : " + p.processedRowsPerSecond)
println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
}
override def onQueryTerminated(event: QueryTerminatedEvent): Unit = {
}
}
输出 1:
runId : bc7f97c1-687f-4125-806a-dc573e006dcd
batchid : 164
timestamp : 2020-12-12T12:31:14.323Z
triggerExecution453
{}
inputRowsPerSecond : 625.0
numInputRows : 10
processedRowsPerSecond : 22.075055187637968
输出 2:
runId : bc7f97c1-687f-4125-806a-dc573e006dcd
batchid : 168
timestamp : 2020-12-12T12:31:18.326Z
triggerExecution453
{}
inputRowsPerSecond : 666.6666666666667
numInputRows : 10
processedRowsPerSecond : 22.075055187637968
编辑:
另外,如果输入速率是 625,那么对于这个实际上没有进行转换的作业,为什么处理的RowsPerSecond 如此之低?
更新 :: 输出漂亮的 JSON:
第 1 批:
runId : 16c82066-dea0-4e0d-8a1e-ad1df55ad516
batchid : 198
timestamp : 2020-12-13T16:23:14.331Z
triggerExecution422
{}
inputRowsPerSecond : 666.6666666666667
numInputRows : 10
processedRowsPerSecond : 23.696682464454977
json : {
"id" : "f8af5400-533c-4f7f-8b01-b365dc736735",
"runId" : "16c82066-dea0-4e0d-8a1e-ad1df55ad516",
"name" : null,
"timestamp" : "2020-12-13T16:23:14.331Z",
"batchId" : 198,
"numInputRows" : 10,
"inputRowsPerSecond" : 666.6666666666667,
"processedRowsPerSecond" : 23.696682464454977,
"durationMs" : {
"addBatch" : 47,
"getBatch" : 0,
"getEndOffset" : 0,
"queryPlanning" : 0,
"setOffsetRange" : 0,
"triggerExecution" : 422,
"walCommit" : 234
},
"stateOperators" : [ ],
"sources" : [ {
"description" : "RateStreamV2[rowsPerSecond=10, rampUpTimeSeconds=0, numPartitions=1",
"startOffset" : 212599,
"endOffset" : 212600,
"numInputRows" : 10,
"inputRowsPerSecond" : 666.6666666666667,
"processedRowsPerSecond" : 23.696682464454977
} ],
"sink" : {
"description" : "ForeachBatchSink"
}
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
第 2 批:
runId : 16c82066-dea0-4e0d-8a1e-ad1df55ad516
batchid : 191
timestamp : 2020-12-13T16:23:07.328Z
triggerExecution421
{}
inputRowsPerSecond : 625.0
numInputRows : 10
processedRowsPerSecond : 23.752969121140143
json : {
"id" : "f8af5400-533c-4f7f-8b01-b365dc736735",
"runId" : "16c82066-dea0-4e0d-8a1e-ad1df55ad516",
"name" : null,
"timestamp" : "2020-12-13T16:23:07.328Z",
"batchId" : 191,
"numInputRows" : 10,
"inputRowsPerSecond" : 625.0,
"processedRowsPerSecond" : 23.752969121140143,
"durationMs" : {
"addBatch" : 62,
"getBatch" : 0,
"getEndOffset" : 0,
"queryPlanning" : 16,
"setOffsetRange" : 0,
"triggerExecution" : 421,
"walCommit" : 187
},
"stateOperators" : [ ],
"sources" : [ {
"description" : "RateStreamV2[rowsPerSecond=10, rampUpTimeSeconds=0, numPartitions=1",
"startOffset" : 212592,
"endOffset" : 212593,
"numInputRows" : 10,
"inputRowsPerSecond" : 625.0,
"processedRowsPerSecond" : 23.752969121140143
} ],
"sink" : {
"description" : "ForeachBatchSink"
}
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
【问题讨论】:
标签: apache-spark spark-streaming spark-structured-streaming