Bug 1005270 - Need to add working sample cluster configuration files for SOA6 RT Gov
Summary: Need to add working sample cluster configuration files for SOA6 RT Gov
Keywords:
Status: NEW
Alias: None
Product: JBoss Fuse Service Works 6
Classification: JBoss
Component: RT Governance
Version: 6.0.0
Hardware: Unspecified
OS: Unspecified
unspecified
urgent
Target Milestone: ---
: FUTURE
Assignee: Julian Coleman
QA Contact: Matej Melko
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-09-06 14:39 UTC by Len DiMaggio
Modified: 2021-10-15 11:51 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
The product lacks a working sample cluster configuration file for RTGov. As a result, users do not have an example to study or use.
Clone Of:
Environment:
Last Closed:
Type: Bug


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Bugzilla 1005264 1 None None None 2021-01-20 06:05:38 UTC

Internal Links: 1005264

Description Len DiMaggio 2013-09-06 14:39:16 UTC
Description of problem:

We support clustered environments for RTGov, but we do not yet provide users a working sample (configuration files, user docs).

Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.

Actual results:


Expected results:


Additional info:

Comment 6 Gary Brown 2013-10-09 15:06:27 UTC
The following changes can be made, to include a pre-configured cache container and cache for 'Principals':

overlord-rtgov.properties: Uncomment the infinispan.container property, with the following value,

infinispan.container=java:jboss/infinispan/container/rtgov


standalone-full.xml: include the following cache container in the infinispan subsystem,

            <cache-container name="rtgov" jndi-name="java:jboss/infinispan/container/rtgov" start="EAGER">
                <local-cache name="Principals">
                    <transaction mode="NONE"/>
                    <eviction strategy="NONE"/>
                </local-cache>
            </cache-container>


standalone-full-ha.xml: include the following cache container in the infinispan subsystem,

            <cache-container name="rtgov" jndi-name="java:jboss/infinispan/container/rtgov" start="EAGER">
                <transport lock-timeout="60000"/>
                <replicated-cache name="Principals" mode="SYNC">
                    <locking isolation="REPEATABLE_READ"/>
                    <transaction mode="FULL_XA" locking="PESSIMISTIC"/>
                </replicated-cache>
            </cache-container>


If this change is applied to the product, then doc team need to be informed, so that they can reference it if necessary as an example.

Comment 7 Gary Brown 2013-10-09 15:27:57 UTC
Note: the policy sync quickstart has an issue with the clustered cache (https://bugzilla.redhat.com/show_bug.cgi?id=1017304) - it doesn't block this issue from being applied, but just means the policy sync quickstart cannot be used until the other issue is resolved.


Note You need to log in before you can comment on or make changes to this bug.