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

Sean Owen resolved SPARK-22873.
-------------------------------
    Resolution: Not A Problem

> Init lastReportTimestamp with system current time when start() called in 
> AsyncEventQueue
> ----------------------------------------------------------------------------------------
>
>                 Key: SPARK-22873
>                 URL: https://issues.apache.org/jira/browse/SPARK-22873
>             Project: Spark
>          Issue Type: Improvement
>          Components: Spark Core
>    Affects Versions: 2.2.1
>            Reporter: wuyi
>            Priority: Minor
>              Labels: newbie
>
> {code:java}
>    if (droppedEventsCounter.compareAndSet(droppedCount, 0)) {
>       val prevLastReportTimestamp = lastReportTimestamp
>       lastReportTimestamp = System.currentTimeMillis()
>       val previous = new java.util.Date(prevLastReportTimestamp)
>       logWarning(s"Dropped $droppedEvents events from $name since $previous.")
>    }
> {code}
> First time we log previous date, it would be "Thu Jan 01 08:00:00 CST 1970" 
> because of lastReportTimestamp was inited by 0L. Although there is no mistake 
> in theory, AsyncEventQueue's starting time seems better.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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

Reply via email to