当演员被大量使用时,akka-http停止接受传入连接

时间:2016-06-09 19:28:17

标签: scala akka akka-http

当我的一个演员忙碌时,

akka-http停止接受传入的连接。我怀疑我在演员或其他类似的事情中长时间阻挡。如何调试它以查明问题?

我的配置中没有多少内容

akka {
  loggers = ["akka.event.slf4j.Slf4jLogger"]
  loglevel = DEBUG
  http.host-connection-pool {
    max-connections = 8
    client {
      proxy {
        http {
          host = localhost
          port = 8888
        }
      }
    }
  }
}

http {
  interface = "0.0.0.0"
  port = 8080
}

services {
  proxyHost = "localhost"
  proxyPort = 8118
}

bounded-mailbox {
  mailbox-type = "akka.dispatch.BoundedMailbox"
  mailbox-capacity = 100
  mailbox-push-timeout-time = 5000ms
}

我将bounded-mailbox用于执行数据库扩展工作的actor。我是在akka 2.4.6

0 个答案:

没有答案