[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2022-06-08 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17551824#comment-17551824
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 28d31d89de607d8947fe17890b5a951dfc895299 in geode's branch 
refs/heads/feature/GEODE-7665 from zhouxh
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=28d31d89de ]

GEODE-7683: introduce BR.cmnClearRegion

Co-authored-by: Xiaojian Zhou 

GEODE-7684: Create messaging class for PR Clear (#4689)

* Added new message class and test

Co-authored-by: Benjamin Ross 
Co-authored-by: Donal Evans 

GEODE-7682: add PR.clear  API (#4755)

* GEODE-7683: introduce BR.cmnClearRegion

Co-authored-by: Xiaojian Zhou 

PR.clear's event id should be created and used in BR (#4805)

* GEODE-7857: PR.clear's event id should be created and used in BR

GEODE-7912: cacheWriter should be triggered when PR.clear (#4882)

Co-authored-by: Anil 
Co-authored-by: Xiaojian Zhou 

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)

GEODE-7676: Add PR clear with expiration tests (#4970)

Added distributed tests to verify the clear operation on Partitioned
Regions works as expected when expiration is configured.

- Added unit and distributed tests.
- Fixed LocalRegion class to clear the entryExpiryTasks Map whenever
  the cancelAllEntryExpiryTasks method is invoked.

GEODE-7667: Add a 'clear' gfsh command for PR and RR clear (#4818)

* Added clear command and modified remove functionality to clear PR

Authored-by: Benjamin Ross 

GEODE-7676: Conversion of duration to seconds.

GEODE-7894: Moving expiry tasks to AbstractRegion.

GEODE-7667: Fixing test to include PR clear help text.

GEODE-7678 (2nd PR) - Support for cache-listener and client-notification for 
Partitioned Region Clear operation  (#5124)

* GEODE-7678: Add support for cache listener and client notification for PR 
clear

The changes are made to PR clear messaging and locking mechanism to preserve
cache-listener and client-events ordering during concurrent cache operation
while clear in progress.

GEODE-7669 Test coverage for Partitioned Region clear with Overflow enabled 
(#5189)

Authored-by: Jianxia Chen 

GEODE-8173: Add unit test (coverage) for PartitionedRegionClear class. (#5208)

* GEODE-8173: Add unit test (coverage) for PartitionedRegionClear class.
Co-authored-by: anilkumar gingade 

GEODE-8334: PR.clear should sync with putAll or removeAll on rvvLock (#5365)

Co-authored-by: Xiaojian Zhou 
Co-authored-by: Anil Gingade 

GEODE-8361: Use Set instead of List to track cleared buckets (#5379)

- Refactor PartitionRegionClear to use Set instead of List
- Some other changes to remove warnings/alerts from PartitionedRegionClear and 
PartitionedRegionClearMessage

Authored-by: Donal Evans 

GEODE-7670: PR Clear with Concurrent Ops DUnitTests (#4848)

Added distributed tests to verify that the clear operation on
Partitioned Regions works as expected when there are other
concurrent operations happening on the cache (put, putAll, get,
remove, removeAll, members added and members removed).

GEODE-7680: PR.clear must be successful when interacting with rebalance (#5095)

- Added DUnit tests to confirm that clear does not interfere with
rebalance or vice versa
- Test when member departs during clear/rebalance
- Test when member joins during clear/rebalance
- Fixed typo in PartitionedRegionClearWithExpirationDUnitTest
- Fixed typo in PartitionedRegion
- Call assignBucketsToPartitions() on leader colocated region during clear
instead of target region

Authored-by: Donal Evans 

GEODE-7846: Adding Stats for Partitioned Region Clear (#5391)

Added stats to CachePerfStats for PR Clear
- Changed clears to 'regionClears' and 'bucketClears' to differentiate between 
the number of times the region was cleared and the number of times a bucket was 
cleared in a PartitionedRegion
- Added Local and Total duration stats to record how long clear has been 
running for a specific region, as well as how long it was spent clearing any 
specific member

GEODE-7672: add dunit test to verify OQL index after PR clear. (#5436)

* require rvv lock when create index

fix rebase compiling error

GEODE-7845 blocking PR region clear if one or more server versions are too old 
(#5577)

- if a server is running an old version when a PR clear is invoked
by the client, the client will receive a ServerOperationException
with a cause of ServerVersionMismatchException.

GEODE-7845: Adding a cleaner simpler test. (#5622)

- Changed the test for ServerVersionMismatchException to be more readable.

GEODE-7845: Now behaving with clients of various versions. (#5645)

- added functionality that would allow the tests to be run using various 
versions of the clients against and and new versions of the server.

GEODE-7858: PR.clear notify client should let the queue 

[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2021-04-13 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17320384#comment-17320384
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 248a56aefcf72e0c60e197b377adc6542662bdc2 in geode's branch 
refs/heads/feature/GEODE-7665 from zhouxh
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=248a56a ]

GEODE-7683: introduce BR.cmnClearRegion

Co-authored-by: Xiaojian Zhou 

GEODE-7684: Create messaging class for PR Clear (#4689)

* Added new message class and test

Co-authored-by: Benjamin Ross 
Co-authored-by: Donal Evans 

GEODE-7682: add PR.clear  API (#4755)

* GEODE-7683: introduce BR.cmnClearRegion

Co-authored-by: Xiaojian Zhou 

PR.clear's event id should be created and used in BR (#4805)

* GEODE-7857: PR.clear's event id should be created and used in BR

GEODE-7912: cacheWriter should be triggered when PR.clear (#4882)

Co-authored-by: Anil 
Co-authored-by: Xiaojian Zhou 

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)

GEODE-7676: Add PR clear with expiration tests (#4970)

Added distributed tests to verify the clear operation on Partitioned
Regions works as expected when expiration is configured.

- Added unit and distributed tests.
- Fixed LocalRegion class to clear the entryExpiryTasks Map whenever
  the cancelAllEntryExpiryTasks method is invoked.

GEODE-7667: Add a 'clear' gfsh command for PR and RR clear (#4818)

* Added clear command and modified remove functionality to clear PR

Authored-by: Benjamin Ross 

GEODE-7676: Conversion of duration to seconds.

GEODE-7894: Moving expiry tasks to AbstractRegion.

GEODE-7667: Fixing test to include PR clear help text.

GEODE-7678 (2nd PR) - Support for cache-listener and client-notification for 
Partitioned Region Clear operation  (#5124)

* GEODE-7678: Add support for cache listener and client notification for PR 
clear

The changes are made to PR clear messaging and locking mechanism to preserve
cache-listener and client-events ordering during concurrent cache operation
while clear in progress.

GEODE-7669 Test coverage for Partitioned Region clear with Overflow enabled 
(#5189)

Authored-by: Jianxia Chen 

GEODE-8173: Add unit test (coverage) for PartitionedRegionClear class. (#5208)

* GEODE-8173: Add unit test (coverage) for PartitionedRegionClear class.
Co-authored-by: anilkumar gingade 

GEODE-8334: PR.clear should sync with putAll or removeAll on rvvLock (#5365)

Co-authored-by: Xiaojian Zhou 
Co-authored-by: Anil Gingade 

GEODE-8361: Use Set instead of List to track cleared buckets (#5379)

- Refactor PartitionRegionClear to use Set instead of List
- Some other changes to remove warnings/alerts from PartitionedRegionClear and 
PartitionedRegionClearMessage

Authored-by: Donal Evans 

GEODE-7670: PR Clear with Concurrent Ops DUnitTests (#4848)

Added distributed tests to verify that the clear operation on
Partitioned Regions works as expected when there are other
concurrent operations happening on the cache (put, putAll, get,
remove, removeAll, members added and members removed).

GEODE-7680: PR.clear must be successful when interacting with rebalance (#5095)

- Added DUnit tests to confirm that clear does not interfere with
rebalance or vice versa
- Test when member departs during clear/rebalance
- Test when member joins during clear/rebalance
- Fixed typo in PartitionedRegionClearWithExpirationDUnitTest
- Fixed typo in PartitionedRegion
- Call assignBucketsToPartitions() on leader colocated region during clear
instead of target region

Authored-by: Donal Evans 

GEODE-7846: Adding Stats for Partitioned Region Clear (#5391)

Added stats to CachePerfStats for PR Clear
- Changed clears to 'regionClears' and 'bucketClears' to differentiate between 
the number of times the region was cleared and the number of times a bucket was 
cleared in a PartitionedRegion
- Added Local and Total duration stats to record how long clear has been 
running for a specific region, as well as how long it was spent clearing any 
specific member

GEODE-7672: add dunit test to verify OQL index after PR clear. (#5436)

* require rvv lock when create index

fix rebase compiling error

GEODE-7845 blocking PR region clear if one or more server versions are too old 
(#5577)

- if a server is running an old version when a PR clear is invoked
by the client, the client will receive a ServerOperationException
with a cause of ServerVersionMismatchException.

GEODE-7845: Adding a cleaner simpler test. (#5622)

- Changed the test for ServerVersionMismatchException to be more readable.

GEODE-7845: Now behaving with clients of various versions. (#5645)

- added functionality that would allow the tests to be run using various 
versions of the clients against and and new versions of the server.

GEODE-7858: PR.clear notify client should let the queue hol

[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-07-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17154925#comment-17154925
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 32f59fc78357aa5fdd28358c716cc4d7e6f5f1b7 in geode's branch 
refs/heads/feature/GEODE-8334 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=32f59fc ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-07-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17154860#comment-17154860
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 32f59fc78357aa5fdd28358c716cc4d7e6f5f1b7 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=32f59fc ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-07-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17154848#comment-17154848
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 32f59fc78357aa5fdd28358c716cc4d7e6f5f1b7 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=32f59fc ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-07-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17154835#comment-17154835
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 32f59fc78357aa5fdd28358c716cc4d7e6f5f1b7 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=32f59fc ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-07-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17154823#comment-17154823
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 32f59fc78357aa5fdd28358c716cc4d7e6f5f1b7 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=32f59fc ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-07-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17154810#comment-17154810
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 32f59fc78357aa5fdd28358c716cc4d7e6f5f1b7 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=32f59fc ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17133506#comment-17133506
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit bdfd6110222f9bb91b36a535d608a358a770700a in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=bdfd611 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17133489#comment-17133489
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit bdfd6110222f9bb91b36a535d608a358a770700a in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=bdfd611 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17133468#comment-17133468
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit bdfd6110222f9bb91b36a535d608a358a770700a in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=bdfd611 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17133453#comment-17133453
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit bdfd6110222f9bb91b36a535d608a358a770700a in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=bdfd611 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17133437#comment-17133437
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit bdfd6110222f9bb91b36a535d608a358a770700a in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=bdfd611 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-02 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17124430#comment-17124430
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 9a6cc48ea68b5a467805b4c60d1d80f7de6aea26 in geode's branch 
refs/heads/feature/GEODE-7669 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=9a6cc48 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-02 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17124413#comment-17124413
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 9a6cc48ea68b5a467805b4c60d1d80f7de6aea26 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=9a6cc48 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-02 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17124400#comment-17124400
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 9a6cc48ea68b5a467805b4c60d1d80f7de6aea26 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=9a6cc48 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-02 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17124387#comment-17124387
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 9a6cc48ea68b5a467805b4c60d1d80f7de6aea26 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=9a6cc48 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-02 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17124374#comment-17124374
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 9a6cc48ea68b5a467805b4c60d1d80f7de6aea26 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=9a6cc48 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-06-02 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17124361#comment-17124361
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 9a6cc48ea68b5a467805b4c60d1d80f7de6aea26 in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=9a6cc48 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-05-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17108558#comment-17108558
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit f61c16adaac19b0ab664b4ca27a1d0b71cf4537e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=f61c16a ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-05-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17104841#comment-17104841
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit f61c16adaac19b0ab664b4ca27a1d0b71cf4537e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=f61c16a ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-05-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17104828#comment-17104828
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit f61c16adaac19b0ab664b4ca27a1d0b71cf4537e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=f61c16a ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-05-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17104815#comment-17104815
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit f61c16adaac19b0ab664b4ca27a1d0b71cf4537e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=f61c16a ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-05-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17104802#comment-17104802
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit f61c16adaac19b0ab664b4ca27a1d0b71cf4537e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=f61c16a ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-05-11 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17104790#comment-17104790
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit f61c16adaac19b0ab664b4ca27a1d0b71cf4537e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=f61c16a ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Assignee: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
> Fix For: 1.13.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-04-14 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17083473#comment-17083473
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 81a9178201602826a4cb6639b57e6586ef8ee66e in geode's branch 
refs/heads/feature/GEODE-7665 from Xiaojian Zhou
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=81a9178 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions (#4954)



> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (GEODE-7983) Clear region writer callbacks should not be invoked for bucket regions

2020-04-13 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/GEODE-7983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17082842#comment-17082842
 ] 

ASF subversion and git services commented on GEODE-7983:


Commit 71d48811b12cdeaabf9e483941c5d8c0da8365e6 in geode's branch 
refs/heads/feature/GEODE-7983 from zhouxh
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=71d4881 ]

GEODE-7983: Clear region writer callbacks should not be invoked for bucket 
regions


> Clear region writer callbacks should not be invoked for bucket regions
> --
>
> Key: GEODE-7983
> URL: https://issues.apache.org/jira/browse/GEODE-7983
> Project: Geode
>  Issue Type: Improvement
>Reporter: Xiaojian Zhou
>Priority: Major
>  Labels: GeodeCommons
>
> Region destroy will not trigger cacheWriter for bucket region. we should keep 
> the same behavior for clear. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)