cburgmer / greenyet

Microservices status dashboard
BSD 2-Clause "Simplified" License
11 stars 6 forks source link

Handle thread pool size #1

Closed cburgmer closed 8 years ago

cburgmer commented 8 years ago

Currently the internal thread pool size is estimate by Clojure's core.async at #processors * 2 + 42 (https://github.com/clojure/core.async/blob/master/src/main/clojure/clojure/core/async/impl/exec/threadpool.clj). We possibly want to limit this number so that the request burst is somewhat limited.

Currently the example Python server seems to complain at 6 parallel requests.

cburgmer commented 8 years ago

Don't care for now