com.twitter.finagle.thrift.exp.partitioning
PartitioningStrategy
Companion trait PartitioningStrategy
object PartitioningStrategy
- Alphabetic
- By Inheritance
- PartitioningStrategy
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
RequestMerger[Req <: ThriftStructIface] = (Seq[Req]) ⇒ Req
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(";"))
-
final
class
RequestMergerRegistry extends AnyRef
Maintain a map of method name to method's RequestMerger.
-
type
ResponseMerger[Rep] = (Seq[Rep], Seq[Throwable]) ⇒ Try[Rep]
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)
-
final
class
ResponseMergerRegistry extends AnyRef
Maintain a map of method name to method's ResponseMerger.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()