Yes. Replicated region in all members should have the same AEQ id. It's showed
in code and I add a simple test case as following to verify:
@Test
public void testAEQIdShouldBeTheSameForReplicatedRegionInAllMembers() {
member1.invoke(() -> {
RegionFactory<String, String> factory =
cacheRule.getCache().createRegionFactory(REPLICATE);
factory.addAsyncEventQueueId("aeq1");
factory.create("ReplicateRegionWithAEQ");
});
member2.invoke(() -> {
RegionFactory<String, String> factory =
cacheRule.getCache().createRegionFactory(REPLICATE);
factory.addAsyncEventQueueId("aeq2");
factory.create("ReplicateRegionWithAEQ");
});
}
}
[ Full content available at: https://github.com/apache/geode/pull/3309 ]
This message was relayed via gitbox.apache.org for
[email protected]