Object/Trait

com.twitter.finagle.thrift.exp.partitioning

PartitioningStrategy

Related Docs: trait PartitioningStrategy | package partitioning

Permalink

object PartitioningStrategy

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

Type Members

  1. type RequestMerger[Req <: ThriftStructIface] = (Seq[Req]) ⇒ Req

    Permalink

    A request merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    A request merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    This is used for HashingPartitioningStrategy, which applies a consistent hashing partitioning strategy under the hood. Note that more than one request may fall in the same HashNode, even though they're assigned with different hashing keys. It merges a collection of requests to a final request which matches the Thrift IDL definition. RequestMerger is registered through RequestMergerRegistry

    for example:

    i32 example(1: string in)
    
    val requestMerger: RequestMerger[Example.Args] = listArgs =>
      Example.Args(in = listArgs.map(_.in).mkString(";"))
  2. final class RequestMergerRegistry extends AnyRef

    Permalink

    Maintain a map of method name to method's RequestMerger.

  3. type ResponseMerger[Rep] = (Seq[Rep], Seq[Throwable]) ⇒ Try[Rep]

    Permalink

    A response merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    A response merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    This is used for messaging fan-out, it merges a collection of successful responses and a collection of failures to a final response which matches the Thrift IDL definition. ResponseMerger is registered through ResponseMergerRegistry.

    Failing sub-responses are expected to be handled by the application (proper logging, exception handling, etc),

    for example:

    string example(1: i32 a)
    
    val responseMerger: ResponseMerger[String] = (successes, failures) =>
      if (successes.nonEmpty) Return(successes.mkString(";"))
      else Throw(failures.head)
  4. final class ResponseMergerRegistry extends AnyRef

    Permalink

    Maintain a map of method name to method's ResponseMerger.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped