Github user frreiss commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15307#discussion_r81672040
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/StreamExecution.scala
 ---
    @@ -136,16 +139,30 @@ class StreamExecution(
       /** Whether the query is currently active or not */
       override def isActive: Boolean = state == ACTIVE
     
    +  override def queryStatus: StreamingQueryInfo = {
    +    this.toInfo
    +  }
    +
       /** Returns current status of all the sources. */
       override def sourceStatuses: Array[SourceStatus] = {
         val localAvailableOffsets = availableOffsets
         sources.map(s =>
    -      new SourceStatus(s.toString, 
localAvailableOffsets.get(s).map(_.toString))).toArray
    +      new SourceStatus(
    --- End diff --
    
    If this method is intended to be called from threads other than the 
scheduler thread, then the entire map really ought to be synchronized on 
`streamMetrics`'s lock. Otherwise this method could return a mixture of 
statistics from different points of time, even within a single source.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to