Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-30512

Use a dedicated boss event group loop in the netty pipeline for external shuffle service

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 3.0.0
    • 2.4.5, 3.0.0
    • Shuffle, Spark Core
    • None

    Description

      We have been seeing a large number of SASL authentication (RPC requests) timing out with the external shuffle service.
      The issue and all the analysis we did is described here:
      https://github.com/netty/netty/issues/9890

      I added a LoggingHandler to netty pipeline and realized that even the channel registration is delayed by 30 seconds.
      In the Spark External Shuffle service, the boss event group and the worker event group are same which is causing this delay.

          EventLoopGroup bossGroup =
            NettyUtils.createEventLoop(ioMode, conf.serverThreads(), conf.getModuleName() + "-server");
          EventLoopGroup workerGroup = bossGroup;
      
          bootstrap = new ServerBootstrap()
            .group(bossGroup, workerGroup)
            .channel(NettyUtils.getServerChannelClass(ioMode))
            .option(ChannelOption.ALLOCATOR, allocator)
            .childOption(ChannelOption.ALLOCATOR, allocator);
      

      When the load at the shuffle service increases, since the worker threads are busy with existing channels, registering new channels gets delayed.

      The fix is simple. I created a dedicated boss thread event loop group with 1 thread.

          EventLoopGroup bossGroup = NettyUtils.createEventLoop(ioMode, 1,
            conf.getModuleName() + "-boss");
          EventLoopGroup workerGroup =  NettyUtils.createEventLoop(ioMode, conf.serverThreads(),
          conf.getModuleName() + "-server");
      
          bootstrap = new ServerBootstrap()
            .group(bossGroup, workerGroup)
            .channel(NettyUtils.getServerChannelClass(ioMode))
            .option(ChannelOption.ALLOCATOR, allocator)
      

      This fixed the issue.
      We just need 1 thread in the boss group because there is only a single server bootstrap.

       

      Attachments

        Issue Links

          Activity

            People

              csingh Chandni Singh
              csingh Chandni Singh
              Votes:
              0 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: