GitHub user zsxwing opened a pull request:

    https://github.com/apache/spark/pull/17610

    [SPARK-20131][Core]Use a separate lock for StandaloneSchedulerBackend.stop

    ## What changes were proposed in this pull request?
    
    `o.a.s.streaming.StreamingContextSuite.SPARK-18560 Receiver data should be 
deserialized properly` is flaky is because there is a potential dead-lock in 
StandaloneSchedulerBackend which causes `await` timeout. Here is the related 
stack trace:
    ```
    "Thread-31" #211 daemon prio=5 os_prio=31 tid=0x00007fedd4808000 
nid=0x16403 waiting on condition [0x00007000239b7000]
       java.lang.Thread.State: TIMED_WAITING (parking)
        at sun.misc.Unsafe.park(Native Method)
        - parking to wait for  <0x000000079b49ca10> (a 
scala.concurrent.impl.Promise$CompletionLatch)
        at 
java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
        at 
java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedNanos(AbstractQueuedSynchronizer.java:1037)
        at 
java.util.concurrent.locks.AbstractQueuedSynchronizer.tryAcquireSharedNanos(AbstractQueuedSynchronizer.java:1328)
        at 
scala.concurrent.impl.Promise$DefaultPromise.tryAwait(Promise.scala:208)
        at scala.concurrent.impl.Promise$DefaultPromise.ready(Promise.scala:218)
        at 
scala.concurrent.impl.Promise$DefaultPromise.result(Promise.scala:223)
        at org.apache.spark.util.ThreadUtils$.awaitResult(ThreadUtils.scala:201)
        at org.apache.spark.rpc.RpcTimeout.awaitResult(RpcTimeout.scala:75)
        at org.apache.spark.rpc.RpcEndpointRef.askSync(RpcEndpointRef.scala:92)
        at org.apache.spark.rpc.RpcEndpointRef.askSync(RpcEndpointRef.scala:76)
        at 
org.apache.spark.scheduler.cluster.CoarseGrainedSchedulerBackend.stop(CoarseGrainedSchedulerBackend.scala:402)
        at 
org.apache.spark.scheduler.cluster.StandaloneSchedulerBackend.org$apache$spark$scheduler$cluster$StandaloneSchedulerBackend$$stop(StandaloneSchedulerBackend.scala:213)
        - locked <0x00000007066fca38> (a 
org.apache.spark.scheduler.cluster.StandaloneSchedulerBackend)
        at 
org.apache.spark.scheduler.cluster.StandaloneSchedulerBackend.stop(StandaloneSchedulerBackend.scala:116)
        - locked <0x00000007066fca38> (a 
org.apache.spark.scheduler.cluster.StandaloneSchedulerBackend)
        at 
org.apache.spark.scheduler.TaskSchedulerImpl.stop(TaskSchedulerImpl.scala:517)
        at org.apache.spark.scheduler.DAGScheduler.stop(DAGScheduler.scala:1657)
        at 
org.apache.spark.SparkContext$$anonfun$stop$8.apply$mcV$sp(SparkContext.scala:1921)
        at org.apache.spark.util.Utils$.tryLogNonFatalError(Utils.scala:1302)
        at org.apache.spark.SparkContext.stop(SparkContext.scala:1920)
        at 
org.apache.spark.streaming.StreamingContext.stop(StreamingContext.scala:708)
        at 
org.apache.spark.streaming.StreamingContextSuite$$anonfun$43$$anonfun$apply$mcV$sp$66$$anon$3.run(StreamingContextSuite.scala:827)
    
    "dispatcher-event-loop-3" #18 daemon prio=5 os_prio=31 
tid=0x00007fedd603a000 nid=0x6203 waiting for monitor entry [0x0000700003be4000]
       java.lang.Thread.State: BLOCKED (on object monitor)
        at 
org.apache.spark.scheduler.cluster.CoarseGrainedSchedulerBackend$DriverEndpoint.org$apache$spark$scheduler$cluster$CoarseGrainedSchedulerBackend$DriverEndpoint$$makeOffers(CoarseGrainedSchedulerBackend.scala:253)
        - waiting to lock <0x00000007066fca38> (a 
org.apache.spark.scheduler.cluster.StandaloneSchedulerBackend)
        at 
org.apache.spark.scheduler.cluster.CoarseGrainedSchedulerBackend$DriverEndpoint$$anonfun$receive$1.applyOrElse(CoarseGrainedSchedulerBackend.scala:124)
        at 
org.apache.spark.rpc.netty.Inbox$$anonfun$process$1.apply$mcV$sp(Inbox.scala:117)
        at org.apache.spark.rpc.netty.Inbox.safelyCall(Inbox.scala:205)
        at org.apache.spark.rpc.netty.Inbox.process(Inbox.scala:101)
        at 
org.apache.spark.rpc.netty.Dispatcher$MessageLoop.run(Dispatcher.scala:213)
        at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
        at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
        at java.lang.Thread.run(Thread.java:745)
    ```
    
    This PR just uses a separate lock to fix the dead-lock. However, there is 
still a potential dead-lock: 
    Codes in `StandaloneSchedulerBackend.stop(finalState: 
SparkAppHandle.State)` call this method in another thread  and wait. But I 
think this won't happen in current code path. cc @vanzin for confirming it as 
I'm not familiar with the spark launcher codes.
    
    ## How was this patch tested?
    
    Jenkins


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/zsxwing/spark SPARK-20131

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/17610.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #17610
    
----
commit e6d0841ba73d5f6da2d82dcf8eff8bc95e1bbb5e
Author: Shixiong Zhu <shixi...@databricks.com>
Date:   2017-04-11T18:46:59Z

    Use a separate lock for stop

----


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to