Details
-
Feature Request
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Won't Do
-
7.11.1.GA
-
None
-
- kie-server instance installed on OCP using operator
-
False
-
False
Description
Installing a kie-server instance on OCP using operator and persistence results in the EJB timer subsystem to be configured automatically with DB persistence. Some customers would like to define the partition property in the following config snippet, in order to control on which pods timers are fired:
<timer-service thread-pool-name="default" default-data-store="ejb_timer-EJB_TIMER_ds"> <data-stores> <file-data-store name="default-file-store" path="timer-service-data" relative-to="jboss.server.data.dir"/> <database-data-store name="ejb_timer-EJB_TIMER_ds" datasource-jndi-name="java:/jboss/datasources/rhpam_EJBTimer" database="postgresql" partition="ejb_timer-EJB_TIMER_part" refresh-interval="30000"/> <!-- ##DATASTORES## --> </data-stores> </timer-service>