-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Javanica threadpool properties per class are applied to all thread pools #926
Comments
Hi, @HystrixCommand(threadPoolKey="thp1")
public Response getAll(Long someParam) {}
@HystrixCommand(threadPoolKey="thp2")
public Response getStuff() {} Thanks |
Well adding the threadPoolKey seems to have worked... I am wondering if it is indeed a bug and this is a workaround. Thanks |
it looks like a bug, currently I'm working on #907 bug and at the same time will check this one |
Actually we have the tests to check command properties including threadPoolKey and it works well: test, I've added more tests but failed to reproduce the issue. |
Ok, I found root cause of the issue, actually it's the same for #782 and should be fixed altogether |
@mattrjacobs hi, you can close it |
you can set tomcat's max-thread to solve the question. |
On our project we have 2 classes Annotated with
@HystrixCommand
The other class uses defaults for thread pool properties:
However when we check the Dashboard both thread pools have poolSize set to 75.
Is this expected?
The text was updated successfully, but these errors were encountered: