You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Chenzhao Guo (JIRA)" <ji...@apache.org> on 2019/04/30 08:30:00 UTC

[jira] [Created] (SPARK-27603) Make ShuffleClient pluggable

Chenzhao Guo created SPARK-27603:
------------------------------------

             Summary: Make ShuffleClient pluggable
                 Key: SPARK-27603
                 URL: https://issues.apache.org/jira/browse/SPARK-27603
             Project: Spark
          Issue Type: Improvement
          Components: Spark Core
    Affects Versions: 2.4.0
            Reporter: Chenzhao Guo


ShuffleClient resides in BlockManager, it's the client to read other executors' shuffle files.

ShuffleManager is pluggable, however, ShuffleClient is restrained to be either a `NettyBlockTransferService` or an `ExternalShuffleClient`.

When a custom ShuffleManager is used, the current 2 implementations of ShuffleClient may not be enough. For example, a shuffle manager leveraging remote storage may not need either of these 2 ShuffleClient. It may require the network transferring shuffle data index(the ranges of blocks) from the executor who wrote them, and then read directly from the globally-accessible remote storage, instead of transfering data through network as the 2 implementations do. Also, there is need for non-Netty based block transfer service.

 

 



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

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