Hi Team,

1. What is the best way to handle multiple pools each connecting to unique
server group though sharing same set of locators?

<gfe:pool id="myPool1" subscription-enabled="true" server-group="s1">
<gfe:locator host="${gemfire.locator.host}" port="${gemfire.locator.port}"/>
</gfe:pool>

<gfe:pool id="myPool2" subscription-enabled="true" server-group="s2">
<gfe:locator host="${gemfire.locator.host}" port="${gemfire.locator.port}"/>
</gfe:pool>

Do i still need below code? As we can not give multiple pools in
<gfe:client-cache> element so unnecessarily we have to create locatorPool
as well

<gfe:pool id="locatorPool">
<gfe:locator host="${gemfire.locator.host}" port="${gemfire.locator.port}"/>
</gfe:pool>

<gfe:client-cache pool-name="localtor-pool" />

2. Is there any way to handle multiple pools in single data source
(gfe-data:datasource)?


3. With Single spring data geode client >>
3.1 If i have partition region(gfe:partitioned-region) defined with same
name in both server group s1 & s2 as shown above in point-1, how would CQ
events be delivered?
3.2 Can we create 2 proxy regions for that single partitioned region
defined in both server group using same name in each pool?

Thanks,
- Dharam Thacker

Reply via email to