apache-spark - 如何检查结构化流中的StreamingQuery性能指标?

标签 apache-spark spark-streaming spark-structured-streaming

我想从流查询中获取 triggerExecution、inputRowsPerSecond、numInputRows、processedRowsPerSecond 等信息。

我使用 rate 格式生成每秒 10 行,并使用 QueryProgressEvent 获取所有指标。

但是,在控制台中,在打印QueryProgressEvent.inputRowsPerSecond时,我得到了不正确的值,例如:625.0 666.66

有人可以解释为什么它会产生这样的值(value)吗?

代码和示例输出如下:

 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()

流查询监听器:

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,那么为什么这个实际上没有进行任何转换的作业的processedRowsPerSecond 如此低?


更新::使用漂亮的 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"
  }
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

最佳答案

请记住,每秒生成 10 行并不能说明整个流式查询中的输入速率

在您的 writeStream 调用中,您没有设置触发器,这意味着流式查询在完成并且新数据可用时会被触发。

现在,流式查询显然不需要整秒来读取这 10 秒,而是只需要一小部分。 “inputRowsPerSecond”更多的是衡量读取输入数据的速度。由于舍入问题,您可能会在不同批处理中看到不同的值。检查输出中的“时间戳”字段,它不完全是一秒,而是通常+-几毫秒。

作业读取数据只需要几毫秒,并且每个批处理的情况可能略有不同。在批处理 164 中,读取 10 条消息花了 16 毫秒,在批处理 168 中花了 15 毫秒。

Batch 164 => 10 / 0,016sec = 625 messages per second

Batch 168 => 10 / 0,015ses = 666.6667 messages per second

processedRowsPerSecond 是根据 triggerExecution 计算的

1000 / triggerExecution x 10msg = 1000 / 421 x 10msg = 23.752969 

关于apache-spark - 如何检查结构化流中的StreamingQuery性能指标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65265091/

相关文章:

java - 如何在 Java 中转置 Apache Spark 数据集

apache-spark - 如何将正在运行的 Id 新列添加到 Spark Dataframe ( pyspark)

apache-spark - 如何在 Spark Streaming 中删除执行者的日志

pyspark - 每个微批处理 Spark Streaming 中处理的总记录数

pyspark - 如何使用PySpark结构流+Kafka

apache-spark - 防止 Spark 在流/流连接中存储状态

apache-spark - 如何连接两个 DataFrame 并更新缺失值?

scala - distinct() 是否对数据集进行排序?

hadoop - 使用 Spark Streaming 将非结构化数据持久化到 Hadoop

apache-spark - 为什么 Spark Streaming 执行器在不同的时间启动?