Packages

object ResolveHints

Collection of rules related to hints. The only hint currently available is join strategy hint.

Note that this is separately into two rules because in the future we might introduce new hint rules that have different ordering requirements from join strategies.

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

Type Members

  1. class RemoveAllHints extends Rule[LogicalPlan]

    Removes all the hints, used to remove invalid hints provided by the user.

    Removes all the hints, used to remove invalid hints provided by the user. This must be executed after all the other hint rules are executed.

  2. class ResolveCoalesceHints extends Rule[LogicalPlan]

    COALESCE Hint accepts names "COALESCE", "REPARTITION", and "REPARTITION_BY_RANGE".

  3. class ResolveJoinStrategyHints extends Rule[LogicalPlan]

    The list of allowed join strategy hints is defined in JoinStrategyHint.strategies, and a sequence of relation aliases can be specified with a join strategy hint, e.g., "MERGE(a, c)", "BROADCAST(a)".

    The list of allowed join strategy hints is defined in JoinStrategyHint.strategies, and a sequence of relation aliases can be specified with a join strategy hint, e.g., "MERGE(a, c)", "BROADCAST(a)". A join strategy hint plan node will be inserted on top of any relation (that is not aliased differently), subquery, or common table expression that match the specified name.

    The hint resolution works by recursively traversing down the query plan to find a relation or subquery that matches one of the specified relation aliases. The traversal does not go past beyond any view reference, with clause or subquery alias.

    This rule must happen before common table expressions.

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()
  20. object ResolveCoalesceHints

Inherited from AnyRef

Inherited from Any

Ungrouped