You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Hyukjin Kwon (Jira)" <ji...@apache.org> on 2021/04/28 01:48:00 UTC

[jira] [Resolved] (SPARK-35246) Streaming-batch intersects are incorrectly allowed through UnsupportedOperationsChecker

     [ https://issues.apache.org/jira/browse/SPARK-35246?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hyukjin Kwon resolved SPARK-35246.
----------------------------------
      Assignee: Jose Torres
    Resolution: Fixed

Fixed in [https://github.com/apache/spark/pull/32371]

> Streaming-batch intersects are incorrectly allowed through UnsupportedOperationsChecker
> ---------------------------------------------------------------------------------------
>
>                 Key: SPARK-35246
>                 URL: https://issues.apache.org/jira/browse/SPARK-35246
>             Project: Spark
>          Issue Type: Bug
>          Components: Structured Streaming
>    Affects Versions: 3.0.0, 3.1.0
>            Reporter: Jose Torres
>            Assignee: Jose Torres
>            Priority: Major
>             Fix For: 3.2.0
>
>
> The UnsupportedOperationChecker currently rejects streaming intersects only if both sides are streaming, but they don't work if even one side is streaming. The following simple test, for example, fails with a cryptic None.get error because the state store can't plan itself properly.
> {code:java}
>   test("intersect") {
>     val input = MemoryStream[Long]
>     val df = input.toDS().intersect(spark.range(10).as[Long])
>     testStream(df) (
>       AddData(input, 1L),
>       CheckAnswer(1)
>     )
>   }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org