Bug 794765
| Summary: | [as7 plugin] add maxThreads trait to JBossAS Embedded JBossWeb Connector Resources | ||
|---|---|---|---|
| Product: | [Other] RHQ Project | Reporter: | Ian Springer <ian.springer> |
| Component: | Plugins | Assignee: | Heiko W. Rupp <hrupp> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Mike Foley <mfoley> |
| Severity: | low | Docs Contact: | |
| Priority: | urgent | ||
| Version: | 3.0.1 | CC: | ccrouch, dsteigne, hrupp, loleary, mbenmans, sappleto, spinder |
| Target Milestone: | --- | ||
| Target Release: | RHQ 4.4.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 769861 | Environment: | |
| Last Closed: | 2013-08-31 09:55:57 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 769861 | ||
| Bug Blocks: | 707223 | ||
|
Comment 1
Charles Crouch
2012-02-21 21:16:01 UTC
This issue is currently blocked by AS7 bug: https://issues.jboss.org/browse/JBPAPP-8188 Tidied up blocker bugs and set to Urgent. Whats the next step now JBPAPP-8188 has been resolved? The original fix now needs to be applied using max-connections wherever max-threads would have applied. max-connections is a configuration entry, not a metric
"max-connections" => {
"type" => INT,
"description" => "Amount of concurrent connections that can be processed by the connector with optimum performance. The default value depends on the connector used.",
"expressions-allowed" => false,
"nillable" => true,
"min" => 1L,
"max" => 2147483647L,
"access-type" => "read-write",
"storage" => "configuration",
"restart-required" => "all-services"
},
I have reopened https://issues.jboss.org/browse/AS7-4115
Trait will query the metric on as . If it returns null, we return some default. Defaults (from JCF) are 512 * number of cpu cores for JIO. 32 * number of cpu cores for APR. master 50dcfe774c99 Installed as 7 server and verified Trait was now available |