Bugzilla will be upgraded to version 5.0. The upgrade date is tentatively scheduled for 2 December 2018, pending final testing and feedback.
Bug 1156071 - Missing partition handling configuration in schema
Missing partition handling configuration in schema
Status: CLOSED CURRENTRELEASE
Product: JBoss Data Grid 6
Classification: JBoss
Component: Infinispan (Show other bugs)
6.4.0
Unspecified Unspecified
unspecified Severity low
: ER8
: 6.4.0
Assigned To: Martin Gencur
Martin Gencur
:
Depends On:
Blocks:
  Show dependency treegraph
 
Reported: 2014-10-23 10:07 EDT by Radim Vansa
Modified: 2015-02-22 18:59 EST (History)
5 users (show)

See Also:
Fixed In Version:
Doc Type: Known Issue
Doc Text:
Previously in Red Hat JBoss Data Grid, the configuration schema for embedded (library) mode did not contain configuration elements for partition handling. This issue is now resolved in JBoss Data Grid 6.4 and the configurations for partition handling are included in the configuration schema.
Story Points: ---
Clone Of:
Environment:
Last Closed: 2015-01-28 08:25:36 EST
Type: Bug
Regression: ---
Mount Type: ---
Documentation: ---
CRM:
Verified Versions:
Category: ---
oVirt Team: ---
RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: ---


Attachments (Terms of Use)

  None (edit)
Description Radim Vansa 2014-10-23 10:07:24 EDT
JDG 6.4 schema (infinispan-config-6.2.xsd) is missing partition handling configuration.
Comment 2 Martin Gencur 2014-11-14 07:11:12 EST
The configuration of partition-handling has only one element which is placed inside the configuration for replicated/distributed cache:

          <xs:element name="partition-handling" minOccurs="0" maxOccurs="1">
             <xs:annotation>
                <xs:documentation>
                   Configures the way this cache reacts to node crashes and split brains.
                </xs:documentation>
             </xs:annotation>
             <xs:complexType>
                <xs:attribute name="enabled" type="xs:boolean" use="optional">
                   <xs:annotation>
                      <xs:documentation>
                         Enable/disable the partition handling functionality. Defaults to false.
                      </xs:documentation>
                   </xs:annotation>
                </xs:attribute>
             </xs:complexType>
          </xs:element>
Comment 3 Martin Gencur 2014-11-14 07:17:05 EST
Changed the doc text to reflect that the feature can be used. It's just the configuration schema that misses information about configuration.
Comment 7 Martin Gencur 2014-12-09 06:56:50 EST
PR: https://github.com/infinispan/jdg/pull/390
Comment 8 Martin Gencur 2014-12-09 06:59:15 EST
The partition handling configuration for library mode now looks like this:
<partitionHandling enabled="true" /> ,
and is placed inside <clustering> configuration element.

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