Jagmohan Sharma
Jagmohan Sharma
We have configured thread pool with multithreading behaviour. As of now I am providing hystrix.stream data for thread pool , please let me know if this would be fine to...
@bltb Yes we are handling around ~150 rps with hystrix protected way. And this issue occurred when we deployed a new version of our service and activated that. So it...
@bltb it was around ~150 rps on a single node when we activated the new version for receiving the requests.
@mattrjacobs this can be reproduced in any hystrix enabled services. As when I start the application and just after that start hitting the endpoint with 100 concurrent calls. which are...
@spencergibb @mattrjacobs This more looks like issue with ThreadPoolExecutor as Threadpool gets created threads based on tasks being submitted to it. in our java util concurrent ThreadPoolExecutor , we have...
@mattrjacobs In these situation like bursting of requests as we can use queue or increase the pool(maximum pool size) , do we have any other option to accommodate this by...