From a6546d7f4a43488211211dd3d75fa887cead8117 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 26 Feb 2024 21:53:08 +0300 Subject: [PATCH] [SPARK-47173][SS][UI] Fix a typo in streaming UI explanation ### What changes were proposed in this pull request? miss spelled flatMapGroupsWithState with flatMapGroupWithState (missed a "s" after group) ### Why are the changes needed? typo fix ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? No need ### Was this patch authored or co-authored using generative AI tooling? No Closes #45263 from WweiL/SPARK-47173-typo. Authored-by: Wei Liu Signed-off-by: Max Gekk --- .../spark/sql/streaming/ui/StreamingQueryStatisticsPage.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/core/src/main/scala/org/apache/spark/sql/streaming/ui/StreamingQueryStatisticsPage.scala b/sql/core/src/main/scala/org/apache/spark/sql/streaming/ui/StreamingQueryStatisticsPage.scala index 4c0195b819477..ba491df880761 100644 --- a/sql/core/src/main/scala/org/apache/spark/sql/streaming/ui/StreamingQueryStatisticsPage.scala +++ b/sql/core/src/main/scala/org/apache/spark/sql/streaming/ui/StreamingQueryStatisticsPage.scala @@ -307,7 +307,7 @@ private[ui] class StreamingQueryStatisticsPage(parent: StreamingQueryTab)
-
Aggregated Number Of Removed State Rows{SparkUIUtils.tooltip("Aggregated number of state rows removed from the state. Normally it means the number of rows evicted from the state because watermark has passed, except in flatMapGroupWithState, where users can manually remove the state.", "right")}
+
Aggregated Number Of Removed State Rows{SparkUIUtils.tooltip("Aggregated number of state rows removed from the state. Normally it means the number of rows evicted from the state because watermark has passed, except in flatMapGroupsWithState, where users can manually remove the state.", "right")}
{graphUIDataForNumberRemovedRows.generateTimelineHtml(jsCollector)}