3

我有一些嵌套路由器,应该创建FromConfig()。我想要的是这样的:

test {
  akka.actor.deployment {
    /worker {
      router = round-robin
      nr-of-instances = 5
      /slave {
        router = broadcast
        nr-of-instances = 4
      }
    }
  }
}

但是如果我运行它,我会得到一个异常,告诉我,[akka://test/user/worker/slave]需要外部配置并建议 application.conf。

名称是正确的,并且没有它起作用的嵌套路由。我错过了什么?

编辑
我尝试了另一种配置方式:

test{
  akka.actor.deployment {
    /worker {
      router = round-robin
      nr-of-instances = 5
    }
    /worker/slave {
      router = broadcast
      nr-of-instances = 4
    }
  }
}

这也不行。我也认识到,错误的实际位置不是[akka://test/user/worker/slave],而是[akka://test/user/worker/$a/slave]。这让我更加奇怪。我明白,$a 是一个路由,但是我该如何配置它呢?

编辑 2
感谢您的快速回复。对我来说,这根本不起作用,因为我使用的是 scala 2.9.2 和 akka 2.0。有没有办法在akka 2.0中实现类似的东西?

4

1 回答 1

1

您可以在部署路径名称中使用通配符:/worker/*/slave

于 2013-01-13T16:15:12.363 回答