multithreading - Thread pooling configurability in Finagle -
let's assume i've got 2 finagle services, per below
val service1: service[http.request, http.response] = ??? val service2: service[http.request, http.response] = ??? and run them both against different ports
val server1 = http.serve(":9090", service1) val server2 = http.serve(":8080", service2) - would requests coming these 2 servers handled different netty worker/thread pools?
- if not, there way configure finagle handled different netty worker/thread pools?
Comments
Post a Comment