Hi Sudhir, Are you getting a ConflictingPersistentDataException, like is shown in the link you sent?
Generally that is caused by creating to completely different copies of a region, using the method Barry described. The other cause might be revoking members than then trying to bring them back into the system after they were revoked. Just running out of disk space on one of your members should not cause the issue. In all cases, when you get a ConflictingPersistentDataException, you need will need to throw away the data from one of the members involved on the conflict. You should look at which two members and see which one you want to throw away. Is one of the members involved a member that you just added to expand the system, for example? You can also use the describe offline disk store command to look at the two conflicting disk stores and see if one of them doesn't actually have data: https://geode.apache.org/docs/guide/latest/tools_modules/gfsh/command-pages/describe.html#topic_kys_yvk_2l -Dan On Tue, Jan 30, 2018 at 10:00 AM, Udo Kohlmeyer <[email protected]> wrote: > Hi there Sudhir, > > When you say disk full issue, is this the critical disk usage exception or > is this where you physically have no more space on the disk. If you have > the critical disk usage percentage exception thrown, you could temporarily > disable this, by setting the percentage to 0. > https://geode.apache.org/docs/guide/11/tools_modules/gfsh/ > command-pages/create.html#topic_bkn_zty_ck > > This of course is there to protect the system before it runs out of space. > BUT if you have some usable space available (let's say 10-20GB) then you > could potentially start without the check and then start clearing some data. > > If you have physically run out of space `du -hs` tells you that you no > space left, you are unfortunately left with the option to attach larger > disks or reduce data stored. > > You could potentially look into compacting the diskstores, > https://geode.apache.org/docs/guide/11/tools_modules/gfsh/ > command-pages/compact.html, which might free up some space, BUT this > would required 2x the existing used space to complete. > > --Udo > > On Tue, Jan 30, 2018 at 6:28 AM, Sudhir Babu Pothineni < > [email protected]> wrote: > >> >> Because of disk full issue, the servers are not starting, this is similar >> to problem described here: https://discuss.pivotal. >> io/hc/en-us/community/posts/205143537--ConflictingPersistent >> DataException-Region-PdxTypes?mobile_site=true >> >> Any solution to get out of this state of the cluster? >> >> Thanks >> Sudhir >> > >
