Skip to content
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

Semaphore circuit thread pool metrics regression #1330

Closed
mattnelson opened this issue Aug 23, 2016 · 2 comments
Closed

Semaphore circuit thread pool metrics regression #1330

mattnelson opened this issue Aug 23, 2016 · 2 comments
Milestone

Comments

@mattnelson
Copy link

When upgrading from 1.5.3 to 1.5.5 semaphore circuits now contain a thread pool entry in the hystrix-metrics-event-stream. It looks like this is only a stream regression as I don't see a corresponding increase in the number of threads.

1.5.5 stream

data: {
  "type": "HystrixCommand",
  "name": "circuit155",
  "group": "circuit155",
  "rollingCountSemaphoreRejected": 0,
  "rollingCountThreadPoolRejected": 0,
  "propertyValue_executionIsolationStrategy": "SEMAPHORE",
  "propertyValue_executionIsolationThreadTimeoutInMilliseconds": 60000,
  "propertyValue_executionIsolationThreadInterruptOnTimeout": true,
  "propertyValue_executionIsolationThreadPoolKeyOverride": null,
  "propertyValue_executionIsolationSemaphoreMaxConcurrentRequests": 100,
  "propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests": 10,
  "threadPool": "circuit155"
}

data: {
  "type": "HystrixThreadPool",
  "name": "circuit155"
}

1.5.3 stream

data: {
  "type": "HystrixCommand",
  "name": "circuit153",
  "group": "circuit153",
  "rollingCountSemaphoreRejected": 0,
  "rollingCountThreadPoolRejected": 0,
  "propertyValue_executionIsolationStrategy": "SEMAPHORE",
  "propertyValue_executionIsolationThreadTimeoutInMilliseconds": 60000,
  "propertyValue_executionIsolationThreadInterruptOnTimeout": true,
  "propertyValue_executionIsolationThreadPoolKeyOverride": null,
  "propertyValue_executionIsolationSemaphoreMaxConcurrentRequests": 100,
  "propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests": 10,
  "threadPool": "circuit153"
}
@mattrjacobs
Copy link
Contributor

Thanks for the report @mattnelson . I'll get this fixed in the 1.5.6 release. It's likely related to the refactoring I did to move metrics serialization to a single place.

@mattrjacobs
Copy link
Contributor

Fixed in #1363

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants