Hi, i have route where i am reading file ,splitting with parallel processing and then passing it forward to rest api with netty-http. i am using camel default thread profile, and the performance i feel is not that good. i feel the bottle neck is netty-http. my undestanding of netty was it can handle multiple requests on a single thread. At any given point of time i see only ten requests reaching to the server. is there a way i can increase number of requests that can go to netty without increasing the number of threads.
*i am using laptop with 8 cores and 16gb of ram with ssd* -- Arshid