Akka(5): ConsistentHashing Router - 可选定Routee的任务分配模式
上一篇讨论里我们介绍了几种任务分配(Routing)模式。Akka提供的几种现成智能化Routing模式大多数是通过对用户屏蔽具体的运算Routee选择方式来简化Router使用,提高智能程度,所以我们提到Router的运算是一种无序的运算,消息之间绝对不容许任何形式的依赖,因为向Router发送的消息可能在任何Routee上运算。但是,如果我们能够把运算任务按照任务的类型分配给专门负责处理此等类型任务的Routee,那么我们就可以充分利用Routing模式所带来的运算拓展能力来提高整体运算效率。Akka的ConsistentHashingRouter就是为了满足这样的需求而提供的。ConsistentHashingRouter是通过消息的特征来分辨消息类型,然后自动构建和管理处理各种类型消息的Routees。当然,这就要求系统的消息必须具备预先设定的特征,使ConsistentHashingRouter可以正确分辨并分配给指定的Routee去运算。如果我们确定只有一个Routee负责处理一种类型消息的话,甚至可以在这个Routee中维护某种状态。我们可以设计一个场景来示范ConsistentHashingRouter的应用:模拟一个多货币的存钱盒,分n次随意从盒里取出钱币然后统计各种货币的总额。这个场景中的特征很明显:就是货币种类了,我们把抽出的货币按币种、金额合成消息发给ConsistentHashingRouter。例子里的Routee应该是按照币种由Router自动构建的,维护各种货币当前总额作为内部状态。向ConsistentHashingRouter发送的消息被分配给相应币种的Routee去登记更新货币当前总额。这个统计金额的Routee可以如下定义:
import akka.actor._
val currencies = List("RMB","USD","EUR","JPY","GBP","DEM","HKD","FRF","CHF")
object MoneyCounter {
sealed trait Counting
case class OneHand(cur: String, amt: Double) extends Counting
case class ReportTotal(cur: String) extends Counting
}
class MoneyCounter extends Actor with ActorLogging {
import MoneyCounter._
var currency: String = "RMB"
var amount: Double =
override def receive: Receive = {
case OneHand(cur,amt) =>
currency = cur
amount += amt
log.info(s"${self.path.name} received one hand of $amt$cur")
case ReportTotal(_) =>
log.info(s"${self.path.name} has a total of $amount$currency")
}
}
MoneyCounter支持两项功能:一是统计某种货币收到的总额,二是按指令汇报当前总额。我们在前一篇讨论里了解到如果MoneyCounter是Routee类型,那它们应该被视为具相同功能的Actor。而且用户无法分辨或者直接面对某个特定的Routee。任何MoneyCounter都可以收到一手任何货币,不同的货币金额相加结果是错误的。所以我们要用Akka提供的ConsistentHashingRouter来解决这个问题。ConsistentHashingRouter的主要特点是能够分辨消息类型,然后按照消息类型对应到选定的Routee。在我们上面的例子里每个Routee负责一种货币,这样就可以保证每个Routee里的金额总数都是正确的了。ConsistentHashingRouter有三种分辨消息的方法:
1、定义ConsistentHashingRouter的hashMapping函数:这是个PartialFunction[Any,Any],如下:
object HashingRouter extends App {
import MoneyCounter._
val currencies = List("RMB","USD","EUR","JPY","GBP","DEM","HKD","FRF","CHF")
val routerSystem = ActorSystem("routerSystem")
def mcHashMapping: PartialFunction[Any,Any] = {
case OneHand(cur,_) => cur
case ReportTotal(cur) => cur
}
val router = routerSystem.actorOf(ConsistentHashingPool(
nrOfInstances = ,hashMapping = mcHashMapping,virtualNodesFactor = )
.props(MoneyCounter.props),name = "moneyCounter" )
router ! OneHand("RMB",10.00)
router ! OneHand("USD",10.00)
router ! OneHand("HKD",10.00)
router ! OneHand("RMB",10.00)
router ! OneHand("CHF",10.00)
router ! ReportTotal("RMB")
router ! ReportTotal("USD")
scala.io.StdIn.readLine()
routerSystem.terminate()
}
我们在定义router时直接把mcHashingMapping传到ConsistentHashingPool的构建器里就行了。特别要注意nrOfInstances,这个参数必须比消息类型的数量大才行,否则Router会错误引导消息。测试运算结果显示如下:
INFO] [// ::09.334] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$e] $e received one hand of 10.0RMB
[INFO] [// ::09.334] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$b] $b received one hand of 10.0USD
[INFO] [// ::09.334] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$d] $d received one hand of 10.0CHF
[INFO] [// ::09.334] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$a] $a received one hand of 10.0HKD
[INFO] [// ::09.334] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$e] $e received one hand of 10.0RMB
[INFO] [// ::09.337] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$b] $b has a total of 10.0USD
[INFO] [// ::09.337] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$e] $e has a total of 20.0RMB
Router自动调用了e,b,d,a4个Routees,并且能把消息引导到正确的Routee。
2、可以让消息继承ConsistentHashable,如此我们要在消息里实现函数constentHashKey, 如下:
object MoneyCounter {
sealed class Counting(cur: String) extends ConsistentHashable {
override def consistentHashKey: Any = cur
}
case class OneHand(cur: String, amt: Double) extends Counting(cur)
case class ReportTotal(cur: String) extends Counting(cur)
def props = Props(new MoneyCounter)
}
现在消息都是ConsistentHashable类型的了。构建新的Router来测试效果:
val router = routerSystem.actorOf(ConsistentHashingPool(
nrOfInstances = , virtualNodesFactor = ).props(
MoneyCounter.props),name = "moneyCounter") router ! OneHand("RMB",10.00)
router ! OneHand("USD",10.00)
router ! OneHand("HKD",10.00)
router ! OneHand("RMB",10.00)
router ! OneHand("CHF",10.00) router ! ReportTotal("RMB")
router ! ReportTotal("USD")
运算结果同样正确:
[INFO] [// ::29.746] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$e] $e received one hand of 10.0RMB
[INFO] [// ::29.746] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$b] $b received one hand of 10.0USD
[INFO] [// ::29.746] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$a] $a received one hand of 10.0HKD
[INFO] [// ::29.746] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$d] $d received one hand of 10.0CHF
[INFO] [// ::29.746] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$e] $e received one hand of 10.0RMB
[INFO] [// ::29.749] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$e] $e has a total of 20.0RMB
[INFO] [// ::29.749] [routerSystem-akka.actor.default-dispatcher-] [akka://routerSystem/user/moneyCounter/$b] $b has a total of 10.0USD
3、直接把消息包在ConsistentHashableEnvelope里:
router ! ConsistentHashableEnvelope(message = OneHand("RMB",23.00),hashKey = "RMB")
这种方式需要用户手工指定Routee,如果用这种方式,我们其实不必用Router,直接把消息传给专职的Actor就行了。
看来还是第二种方法比较合适。因为比起第一种方法多了类型安全和与Router的松散耦合。下面就是一个用第二种方法的完整示范源代码:
import akka.actor._
import akka.routing.ConsistentHashingRouter.{ConsistentHashMapping, ConsistentHashable, ConsistentHashableEnvelope}
import akka.routing._ object MoneyCounter {
sealed class Counting(cur: String) extends ConsistentHashable {
override def consistentHashKey: Any = cur
}
case class OneHand(cur: String, amt: Double) extends Counting(cur)
case class ReportTotal(cur: String) extends Counting(cur)
def props = Props(new MoneyCounter)
}
class MoneyCounter extends Actor with ActorLogging {
import MoneyCounter._
var currency: String = "RMB"
var amount: Double = override def receive: Receive = {
case OneHand(cur,amt) =>
currency = cur
amount += amt
log.info(s"${self.path.name} received one hand of $amt$cur")
case ReportTotal(_) =>
log.info(s"${self.path.name} has a total of $amount$currency")
}
}
object HashingRouter extends App {
import MoneyCounter._
import scala.util.Random val currencies = List("RMB","USD","EUR","JPY","GBP","DEM","HKD","FRF","CHF") val routerSystem = ActorSystem("routerSystem") val router = routerSystem.actorOf(ConsistentHashingPool(
nrOfInstances = currencies.size+, virtualNodesFactor = ).props(
MoneyCounter.props),name = "moneyCounter") ( to ).toList foreach (_ => router ! OneHand(
currencies(Random.nextInt(currencies.size-))
,Random.nextInt() * 1.00)) currencies foreach (c => router ! ReportTotal(c)) scala.io.StdIn.readLine() routerSystem.terminate()
}
Akka(5): ConsistentHashing Router - 可选定Routee的任务分配模式的更多相关文章
- (转)akka Router实例
通常在分布式任务调度系统中会有这样的需求:一组actor提供相同的服务,我们在调用任务的时候只需要选择其中一个actor进行处理即可. 其实这就是一个负载均衡或者说路由策略,akka作为一个高性能支持 ...
- AKKA Router路由
路由概念 大量的actor在并行工作的时候,处理到来的消息流,这时候就需要一个组件或者东西来引导消息从源到目的地Actor,这个组件或者东西就是Router在Akka中,router也是一种actor ...
- AKKA集群中的分布式发布订阅
集群中的分布式发布订阅 如何向一个不知道在哪个节点上运行的actor发送消息呢? 如何向集群中的所有actor发送感兴趣的主题的消息? 这种模式提供了一个中介actor,akka.cluster.pu ...
- akka框架——异步非阻塞高并发处理框架
akka actor, akka cluster akka是一系列框架,包括akka-actor, akka-remote, akka-cluster, akka-stream等,分别具有高并发处理模 ...
- Akka源码分析-Router
akak中还有一个比较重要的概念,那就是Router(路由).路由的概念,相信大家都不陌生,在akka中,它就是其他actors的一个代理,会把消息按照路由规则,分发给指定的actor.我一般喜欢把R ...
- Akka(4): Routers - 智能任务分配
Actor模式最大的优点就是每个Actor都是一个独立的任务运算器.这种模式让我们很方便地把一项大型的任务分割成若干细小任务然后分配给不同的Actor去完成.优点是在设计时可以专注实现每个Actor的 ...
- Akka(11): 分布式运算:集群-均衡负载
在上篇讨论里我们主要介绍了Akka-Cluster的基本原理.同时我们也确认了几个使用Akka-Cluster的重点:首先,Akka-Cluster集群构建与Actor编程没有直接的关联.集群构建是A ...
- Akka(13): 分布式运算:Cluster-Sharding-运算的集群分片
通过上篇关于Cluster-Singleton的介绍,我们了解了Akka为分布式程序提供的编程支持:基于消息驱动的运算模式特别适合分布式程序编程,我们不需要特别的努力,只需要按照普通的Actor编程方 ...
- Akka(22): Stream:实时操控:动态管道连接-MergeHub,BroadcastHub and PartitionHub
在现实中我们会经常遇到这样的场景:有一个固定的数据源Source,我们希望按照程序运行状态来接驳任意数量的下游接收方subscriber.又或者我需要在程序运行时(runtime)把多个数据流向某个固 ...
随机推荐
- Java容器的各种总结
Java容器指的是List,Set,Map这些类.由于翻译的问题,问到集合,Collection这些指的都是它们几个. List ArrayList 随机访问快 LinkedList 插入删除快 这个 ...
- memcached分布式缓存
1.memcached分布式简介 memcached虽然称为“分布式”缓存服务器,但服务器端并没有“分布式”功能.Memcache集群主机不能够相互通信传输数据,它的“分布式”是基于客户端的程序逻辑算 ...
- 浅谈MVC页面之间参数传递
关于MVC页面之间的传值,有多种方式,下面,我们就Html.RenderAction 方式 和 Html.RenderPartial 方式 来给大家分享一下有什么不同. 一.Html.RenderAc ...
- java复习(6)---异常处理
JAVA异常处理知识点及可运行实例 接着复习java知识点,异常处理是工程中非常重要的. 1.处理异常语句: try{ .... }catch(Exception e){ ..... } finall ...
- Linux密码保护
在之前写了Linux密码破解的方法,虽然这样对于忘记密码时很方便,但同时别人也可以很轻易的破解你的Liunx虚拟机,安全问题存在隐患. 下面给出一些Liunx密码的安全防护操作: 1.防止破解root ...
- Hive 的简单使用及调优参考文档
Hive 的简单使用及调优参考文档 HIVE的使用 命令行界面 使用一下命令查看hive的命令行页面, hive --help --service cli 简化命令为hive –h 会输出下面的这 ...
- placeholder各种浏览器兼容问题
只要在页面上引入placeholder.min文件,再以$('input,textarea').placeholder(); 就可以兼容ie等各种浏览器. placeholder.min.js文件链接 ...
- Mysql net start mysql启动,提示发生系统错误 5 拒绝访问,原因所在以及解决办法
1,Mysql net start mysql启动,提示发生系统错误 5 拒绝访问 在dos下运行net start MySQL 不能启动mysql!提示发生系统错误 5:拒绝访问!切换到管理员模式 ...
- 'k1': 大于66的所有值, 'k2': 小于66的所有值
#!/usr/bin/env python # -*- coding: utf-8 -*- #有如下值集合 [11,22,33,44,55,66,77,88,99,90...],将所有大于 66 的值 ...
- OC的内存管理(二)ARC
指针: 指向内存的地址指针变量 存放地址的变量指针变量值 变量中存放的值(地址值)指针变量指向的内存单元值 内存地址指向的值1):强指针:默认的情况下,所有的指针都是强指针,关键字strong ):弱 ...