You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Owen Nichols (JIRA)" <ji...@apache.org> on 2019/04/24 22:23:14 UTC

[jira] [Closed] (GEODE-6322) CreateRegionCommand generates unexpected region attributes

     [ https://issues.apache.org/jira/browse/GEODE-6322?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Owen Nichols closed GEODE-6322.
-------------------------------

> CreateRegionCommand generates unexpected region attributes
> ----------------------------------------------------------
>
>                 Key: GEODE-6322
>                 URL: https://issues.apache.org/jira/browse/GEODE-6322
>             Project: Geode
>          Issue Type: Bug
>          Components: gfsh
>            Reporter: Jinmei Liao
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.9.0
>
>          Time Spent: 2h 20m
>  Remaining Estimate: 0h
>
> For example, when creating PARTITION or REPLICATE regions, the following xml is persisted:
> {code:xml}
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <cache xmlns="http://geode.apache.org/schema/cache" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd">
>     <region name="PARTITION">
>         <region-attributes cloning-enabled="false" concurrency-checks-enabled="true" concurrency-level="16" data-policy="partition" disk-synchronous="true" enable-async-conflation="false" enable-subscription-conflation="false" multicast-enabled="false" off-heap="false" statistics-enabled="false">
>             <partition-attributes local-max-memory="441" recovery-delay="-1" redundant-copies="0" startup-recovery-delay="0" total-max-memory="2147483647" total-num-buckets="113"/>
>         </region-attributes>
>     </region>
>     <region name="REPLICATE">
>         <region-attributes cloning-enabled="false" concurrency-checks-enabled="true" concurrency-level="16" data-policy="replicate" disk-synchronous="true" enable-async-conflation="false" enable-subscription-conflation="false" multicast-enabled="false" off-heap="false" scope="distributed-ack" statistics-enabled="false"/>
>     </region>
> </cache>
> {code}
> Instead, it should be:
> {code:xml}
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <cache xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd" xmlns="http://geode.apache.org/schema/cache" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
> <region name="PARTITION">
>     <region-attributes data-policy="partition"/>
>   </region>
>   <region name="REPLICATE">
>       <region-attributes data-policy="replicate" scope="distributed-ack"/>
>     </region>
> </cache>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)