Skip to content

Commit

Permalink
[RHPAM-3528] Increase KieExecutorMDB threads in RHPAM image
Browse files Browse the repository at this point in the history
Signed-off-by: desmax74 <[email protected]>
  • Loading branch information
desmax74 committed Mar 16, 2022
1 parent 5f87dde commit 1b1cc18
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 10 deletions.
11 changes: 9 additions & 2 deletions deploy/crds/kieapp.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,10 @@ spec:
set, or for multiple sets if deployments is set to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor session,
it must be lower than the value of max-pool-size passed
as jboss.mdb.strict.max.pool.size, if leaved empty if
leaved empty the max.pool.size will be set to 60
type: integer
build:
description: KieAppBuildObject Data to define how to build
Expand Down Expand Up @@ -4502,7 +4505,11 @@ spec:
to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor
session, it must be lower than the value of max-pool-size
passed as jboss.mdb.strict.max.pool.size, if leaved
empty if leaved empty the max.pool.size will be set
to 60
type: integer
build:
description: KieAppBuildObject Data to define how to
Expand Down
11 changes: 9 additions & 2 deletions deploy/olm-catalog/dev/7.12.1-1/manifests/kieapp.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,10 @@ spec:
set, or for multiple sets if deployments is set to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor session,
it must be lower than the value of max-pool-size passed
as jboss.mdb.strict.max.pool.size, if leaved empty if
leaved empty the max.pool.size will be set to 60
type: integer
build:
description: KieAppBuildObject Data to define how to build
Expand Down Expand Up @@ -4502,7 +4505,11 @@ spec:
to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor
session, it must be lower than the value of max-pool-size
passed as jboss.mdb.strict.max.pool.size, if leaved
empty if leaved empty the max.pool.size will be set
to 60
type: integer
build:
description: KieAppBuildObject Data to define how to
Expand Down
11 changes: 9 additions & 2 deletions deploy/olm-catalog/prod/7.12.1-1/manifests/kieapp.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,10 @@ spec:
set, or for multiple sets if deployments is set to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor session,
it must be lower than the value of max-pool-size passed
as jboss.mdb.strict.max.pool.size, if leaved empty if
leaved empty the max.pool.size will be set to 60
type: integer
build:
description: KieAppBuildObject Data to define how to build
Expand Down Expand Up @@ -4502,7 +4505,11 @@ spec:
to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor
session, it must be lower than the value of max-pool-size
passed as jboss.mdb.strict.max.pool.size, if leaved
empty if leaved empty the max.pool.size will be set
to 60
type: integer
build:
description: KieAppBuildObject Data to define how to
Expand Down
11 changes: 9 additions & 2 deletions deploy/olm-catalog/test/7.12.1-1/manifests/kieapp.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,10 @@ spec:
set, or for multiple sets if deployments is set to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor session,
it must be lower than the value of max-pool-size passed
as jboss.mdb.strict.max.pool.size, if leaved empty if
leaved empty the max.pool.size will be set to 60
type: integer
build:
description: KieAppBuildObject Data to define how to build
Expand Down Expand Up @@ -4502,7 +4505,11 @@ spec:
to >1
properties:
MDBMaxSession:
description: MDBMaxSession number of KIE Executor sessions
description: MDBMaxSession number of max KIE Executor
session, it must be lower than the value of max-pool-size
passed as jboss.mdb.strict.max.pool.size, if leaved
empty if leaved empty the max.pool.size will be set
to 60
type: integer
build:
description: KieAppBuildObject Data to define how to
Expand Down
2 changes: 1 addition & 1 deletion deploy/ui/form.json
Original file line number Diff line number Diff line change
Expand Up @@ -1733,7 +1733,7 @@
"required": false,
"jsonPath": "$.spec.objects.servers[*].MDBMaxSession",
"originalJsonPath": "$.spec.objects.servers[*].MDBMaxSession",
"description": "Number of max session used by the JMS Executor."
"description": "Number of max session used by the JMS Executor, it must be lower than the value of max-pool-size passed as jboss.mdb.strict.max.pool.size, if leaved empty the max.pool.size will be set to 60."
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/app/v2/kieapp_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ type KieServerSet struct {
Kafka *KafkaExtObject `json:"kafka,omitempty"`
KafkaJbpmEventEmitters *KafkaJBPMEventEmittersObject `json:"kafkaJbpmEventEmitters,omitempty"`
Cors *CORSFiltersObject `json:"cors,omitempty"`
// MDBMaxSession number of KIE Executor sessions
// MDBMaxSession number of max KIE Executor session, it must be lower than the value of max-pool-size passed as jboss.mdb.strict.max.pool.size, if leaved empty if leaved empty the max.pool.size will be set to 60
MDBMaxSession *int `json:"MDBMaxSession,omitempty"`
}

Expand Down

0 comments on commit 1b1cc18

Please sign in to comment.