Skip to content

Commit

Permalink
SPARK-51252 Fix ClientStreamingQuerySuite
Browse files Browse the repository at this point in the history
  • Loading branch information
zecookiez authored and Zeyu Chen committed Feb 21, 2025
1 parent a5573ae commit fee7776
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ class ClientStreamingQuerySuite extends QueryTest with RemoteSparkSession with L
test("Streaming API with windowed aggregate query") {
// This verifies standard streaming API by starting a streaming query with windowed count.
withSQLConf(
"spark.sql.shuffle.partitions" -> "1" // Avoid too many reducers.
"spark.sql.shuffle.partitions" -> "1", // Avoid too many reducers.
"spark.sql.streaming.stateStore.numStateStoreInstanceMetricsToReport" -> "0"
) {
val readDF = spark.readStream
.format("rate")
Expand Down

0 comments on commit fee7776

Please sign in to comment.