Hi Kulpreet,

I have seen both the repository.xml files. What I can clearly see is that u 
have not configured it to work with database. You are using file-system 
persistence managers as u mentioned in your question. 

You have configured common/shared journal for both the nodes, which is fine. 
But you should configure a common/shared 
        1. <PersistenceManager>
        2. <FileSystem>
        3. <DataStore>

Cluster will work if u have a common data storage area (either on common file 
system location OR on common database). But in your case both the Guvnors are 
keeping data in individual non-shared file system. I could be wrong if 
following paths are shared paths but they seem to be different for both the 
guvnors.
        1. ${rep.home}
        2. ${wsp.home}

MY Configurations are working fine and are based on DataBase. I am attaching my 
config file. The only differenc in guv1 and guv2 is the node name. i.e. 
<Cluster id="node1">  and <Cluster id="node2">

Regards,

Zahid


-----Original Message-----
From: rules-users-boun...@lists.jboss.org 
[mailto:rules-users-boun...@lists.jboss.org] On Behalf Of kulpreet_singh
Sent: 16 September 2013 15:18
To: rules-users@lists.jboss.org
Subject: Re: [rules-users] Synchronization issue in Guvnor Cluster Setup

Hi Zahid,
Thanks for your response. PFA both the repository.xml files for respective 
guvnor instances.

Regards,
Kulpreet Singh
Copy_of_repository_for_guv1.xml
<http://drools.46999.n3.nabble.com/file/n4025973/Copy_of_repository_for_guv1.xml>
Copy_of_repository_for_guv2.xml
<http://drools.46999.n3.nabble.com/file/n4025973/Copy_of_repository_for_guv2.xml>
  



--
View this message in context: 
http://drools.46999.n3.nabble.com/Synchronization-issue-in-Guvnor-Cluster-Setup-tp4025938p4025973.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users
<?xml version="1.0"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<!DOCTYPE Repository PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 1.4//EN"
                            "http://jackrabbit.apache.org/dtd/repository-1.4.dtd";>
<!-- Example Repository Configuration File -->
<Repository>
    <!--
        virtual file system where the repository stores global state
        (e.g. registered namespaces, custom node types, etc.)
    -->
<!--
    <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
        <param name="path" value="${rep.home}/repository"/>
    </FileSystem>
-->
    <FileSystem class="org.apache.jackrabbit.core.fs.db.OracleFileSystem">
	<param name="driver" value="javax.naming.InitialContext"/>
	<param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
	<param name="schema" value="oracle"/>
	<param name="schemaObjectPrefix" value="FS_"/>
    </FileSystem>
    <!--
        security configuration
    -->
    <Security appName="Jackrabbit">
        <!--
            access manager:
            class: FQN of class implementing the AccessManager interface
        -->
        <AccessManager class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager">
            <!-- <param name="config" value="${rep.home}/access.xml"/> -->
        </AccessManager>

        <LoginModule class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule">
           <!-- anonymous user name ('anonymous' is the default value) -->
           <!-- <param name="anonymousId" value="anonymous"/> -->
           <!--
              default user name to be used instead of the anonymous user
              when no login credentials are provided (unset by default)
           -->
           <!-- <param name="defaultUserId" value="superuser"/> -->
        </LoginModule>
    </Security>

    <!--
        location of workspaces root directory and name of default workspace
    -->
    <Workspaces rootPath="${rep.home}/workspaces" defaultWorkspace="default"/>
    <!--
        workspace configuration template:
        used to create the initial workspace if there's no workspace yet
    -->
    <Workspace name="${wsp.name}">
        <!--
            virtual file system of the workspace:
            class: FQN of class implementing the FileSystem interface
        -->

<!--
        <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
            <param name="path" value="${wsp.home}"/>
        </FileSystem>
-->

    <FileSystem class="org.apache.jackrabbit.core.fs.db.OracleFileSystem">
      <param name="driver" value="javax.naming.InitialContext"/>
      <param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
      <param name="schema" value="oracle"/>
      <param name="schemaObjectPrefix" value="FS_WS_${wsp.name}_"/>
    </FileSystem>
        <!--
            persistence manager of the workspace:
            class: FQN of class implementing the PersistenceManager interface
        -->
    <PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.OraclePersistenceManager">
      <param name="driver" value="javax.naming.InitialContext"/>
      <param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
      <param name="schema" value="oracle"/>
      <param name="tableSpace" value=""/>
      <param name="externalBLOBs" value="false"/>
      <param name="schemaObjectPrefix" value="PM_WS_${wsp.name}_" />
    </PersistenceManager>

        <!--
            Search index and the file system it uses.
            class: FQN of class implementing the QueryHandler interface
        -->
        <SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
            <param name="path" value="${wsp.home}/index"/>
            <param name="textFilterClasses" value="org.apache.jackrabbit.extractor.MsWordTextExtractor,org.apache.jackrabbit.extractor.MsExcelTextExtractor,org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,org.apache.jackrabbit.extractor.PdfTextExtractor,org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,org.apache.jackrabbit.extractor.RTFTextExtractor,org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor"/>
            <param name="extractorPoolSize" value="2"/>
            <param name="supportHighlighting" value="true"/>
        </SearchIndex>
    </Workspace>

    <!--
        Configures the versioning
    -->
    <Versioning rootPath="${rep.home}/version">
        <!--
            Configures the filesystem to use for versioning for the respective
            persistence manager
        -->
        <FileSystem class="org.apache.jackrabbit.core.fs.db.OracleFileSystem">
			<param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
			<param name="schema" value="oracle"/>
			<param name="schemaObjectPrefix" value="Versioning_FS_"/>
		</FileSystem>
        <!--
            Configures the persistence manager to be used for persisting version state.
            Please note that the current versioning implementation is based on
            a 'normal' persistence manager, but this could change in future
            implementations.
        -->
		<PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.OraclePersistenceManager">
			<param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
			<param name="schema" value="oracle"/>
			<param name="tableSpace" value=""/>
			<param name="externalBLOBs" value="false"/>
			<param name="schemaObjectPrefix" value="Versioning_PM_" />
		</PersistenceManager>
    </Versioning>

    <DataStore class="org.apache.jackrabbit.core.data.db.DbDataStore">
		<param name="driver" value="javax.naming.InitialContext"/>
        <param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
        <param name="databaseType" value="oracle"/>
        <param name="minRecordLength" value="1024"/>
        <param name="maxConnections" value="3"/>
        <param name="copyWhenReading" value="true"/>
        <param name="tablePrefix" value=""/>
        <param name="schemaObjectPrefix" value="ds_"/>
    </DataStore>

    <Cluster id="node2">
        <Journal class="org.apache.jackrabbit.core.journal.OracleDatabaseJournal">
			<param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:jboss/datasources/jdbc/jbpmStagingRWDS"/>
			<param name="databaseType" value="oracle"/>
			<param name="schemaObjectPrefix" value="journal_"/>
			<param name="revision" value="${rep.home}/revision.log" />
        </Journal>
    </Cluster>

    <!--
        Search index for content that is shared repository wide
        (/jcr:system tree, contains mainly versions)
    -->
    <SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
        <param name="path" value="${rep.home}/repository/index"/>
        <param name="textFilterClasses" value="org.apache.jackrabbit.extractor.MsWordTextExtractor,org.apache.jackrabbit.extractor.MsExcelTextExtractor,org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,org.apache.jackrabbit.extractor.PdfTextExtractor,org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,org.apache.jackrabbit.extractor.RTFTextExtractor,org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor"/>
        <param name="extractorPoolSize" value="2"/>
        <param name="supportHighlighting" value="true"/>
    </SearchIndex>
</Repository>
_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to