如何限制Akka(2.1.2)中的消息?

时间:2013-04-15 03:39:04

标签: scala akka scala-2.10

你们可以在Akka中展示限制信息的例子吗?

这是我的代码

object Program {
  def main(args: Array[String]) {
    val system = ActorSystem()
    val actor: ActorRef = system.actorOf(Props[HelloActor].withDispatcher("akka.actor.my-thread-pool-dispatcher"))

    val zzz : Function0[Unit] = () => {
      println(System.currentTimeMillis())
      Thread.sleep(5000)
    }

    var i: Int = 0
    while (i < 100) {
      actor ! zzz
      i += 1
    }

    println("DONE")

//    system.shutdown()
  }
}

class HelloActor extends Actor {
  def receive = {
    case func : Function0[Unit] => func()
  }
}

这是我的配置

akka {
  actor {
    my-thread-pool-dispatcher {
      type = Dispatcher
      executor = "thread-pool-executor"
      thread-pool-executor {
        task-queue-type = "array"
        task-queue-size = 4
      }
    }
  }
}

但是当我运行它时,它似乎是单线程的,因为我希望同时处理4条消息。

我在这里缺少什么?

2 个答案:

答案 0 :(得分:7)

我没有看到问题标题和内容之间的联系。

这是一篇关于在Akka中限制邮件的文章:

http://letitcrash.com/post/28901663062/throttling-messages-in-akka-2

但是,您似乎对您的演员一次只处理一条消息这一事实感到困惑。但这就是Akka演员的工作方式。它们只有一个消息邮箱,它们在连续循环中一次只处理一条消息。

如果你想同时使用同一个工作处理单元处理多个任务,我建议你看看路由器:

http://doc.akka.io/docs/akka/2.1.2/scala/routing.html

答案 1 :(得分:1)

Typesafe最近宣布了akka反应流。可以使用其背压功能实现节流。

http://java.dzone.com/articles/reactive-queue-akka-reactive