Packages

c

org.apache.spark.storage

ShuffleBlockChunkId

case class ShuffleBlockChunkId(shuffleId: Int, shuffleMergeId: Int, reduceId: Int, chunkId: Int) extends BlockId with Product with Serializable

Developer API
Annotations
@Since("3.2.0") @DeveloperApi()
Source
BlockId.scala
Linear Supertypes
Serializable, Product, Equals, BlockId, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShuffleBlockChunkId
  2. Serializable
  3. Product
  4. Equals
  5. BlockId
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ShuffleBlockChunkId(shuffleId: Int, shuffleMergeId: Int, reduceId: Int, chunkId: Int)

Value Members

  1. def asRDDId: Option[RDDBlockId]
    Definition Classes
    BlockId
  2. val chunkId: Int
  3. def isBroadcast: Boolean
    Definition Classes
    BlockId
  4. def isRDD: Boolean
    Definition Classes
    BlockId
  5. def isShuffle: Boolean
    Definition Classes
    BlockId
  6. def isShuffleChunk: Boolean
    Definition Classes
    BlockId
  7. def name: String

    A globally unique identifier for this Block.

    A globally unique identifier for this Block. Can be used for ser/de.

    Definition Classes
    ShuffleBlockChunkIdBlockId
  8. def productElementNames: Iterator[String]
    Definition Classes
    Product
  9. val reduceId: Int
  10. val shuffleId: Int
  11. val shuffleMergeId: Int
  12. def toString(): String
    Definition Classes
    BlockId → AnyRef → Any