Packages

t

com.nvidia.spark

Retryable

trait Retryable extends AnyRef

An interface that can be used to retry the processing on non-deterministic expressions on the GPU.

GPU memory is a limited resource. When it runs out the RAPIDS Accelerator for Apache Spark will use several different strategies to try and free more GPU memory to let the query complete. One of these strategies is to roll back the processioning for one task, pause the task thread, then retry the task when more memory is available. This works transparently for any stateless deterministic processing. But technically an expression/UDF can be non-deterministic and/or keep state in between calls. This interface provides a checkpoint method to save any needed state, and a restore method to reset the state in the case of a retry.

Please note that a retry is not isolated to a single expression, so a restore can be called even after the expression returned one or more batches of results. And each time checkpoint it called any previously saved state can be overwritten.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Retryable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def checkpoint(): Unit

    Save the state, so it can be restored in the case of a retry.

    Save the state, so it can be restored in the case of a retry. (This is called inside a Spark task context on executors.)

  2. abstract def restore(): Unit

    Restore the state that was saved by calling to "checkpoint".

    Restore the state that was saved by calling to "checkpoint". (This is called inside a Spark task context on executors.)

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped