rest - How it's possible to override Dropwizard / Jetty parameters in Java for high performance? -
my use case configure dropwizard , / or embedded jetty high volume of rest requests.
jetty tuning possible connectors (for instance). i've found selectchannelconnector interesting, official dropwizard documentation not mention it.
http://www.dropwizard.io/manual/configuration.html
this connector uses efficient nio buffers non-blocking threading model. jetty uses direct nio buffers, , allocates threads connections requests.
any suggestions yaml or java configuration? thanks.
selectchannelconnector
jetty versions 6 thru 8. all of eol (end of life).
starting jetty 9, there serverconnector
nio connector (jetty 9 dropped bio connectors).
dropwizard uses jetty 9 serverconnector
, , doesn't use older, eol connector types.
Comments
Post a Comment