我们正在将应用程序从较旧的gridgain 4代码库迁移到gridgain 6.在旧的应用程序中,我们根据网格属性键" com.mycompany.workgroup"对节点进行分区。 。新版本没有topologySpi配置属性或GridAttributesTopologySpi。
推荐的方法或替代方法是什么?
是否有任何提供的示例符合我的要求?也许我在浏览它们时遗漏了一些东西。
由于
<beans profile="default">
<bean id="workerGrid"
class="org.gridgain.grid.GridSpringBean">
<property name="configuration">
<bean parent="abstractGridConfiguration">
<property name="gridName" value="${grid.name}-worker"/>
<property name="userAttributes">
<map merge="true">
<entry key="com.mycompany.master" value="false"/>
</map>
</property>
<property name="topologySpi">
<bean class="org.gridgain.grid.spi.topology.attributes.GridAttributesTopologySpi">
<property name="attributes">
<map>
<entry key="com.mycompany.workgroup" value="${grid.workgroup}"/>
</map>
</property>
</bean>
</property>
</bean>
</property>
</bean>
答案 0 :(得分:1)
另一种方法是使用GridProjection,就像这样
Grid grid = GridGain.grid();
GridProjection prj = grid.forAttribute("com.mycompany.workgroup", "workers");
GridComputeTaskFuture<?> fut = prj.compute().execute(new MyTask());
// Synchronous wait.
prj.get();