我无法理解 Hazelcast 分布式执行的概念。据说能够对特定密钥的所有者实例执行执行。
从文档:
<T> Future<T> submitToKeyOwner(Callable<T> task, Object key)
Submits task to owner of the specified key and returns a Future representing that task.
Parameters:
task - task
key - key
Returns:
a Future representing pending completion of the task
我相信我并不孤单地拥有一个由多个地图构建的集群,这些地图实际上可能将相同的密钥用于不同的目的,持有不同的对象(例如,以下设置中的一些东西):
IMap<String, ObjectTypeA> firstMap = HazelcastInstance.getMap("firstMap");
IMap<String, ObjectTypeA_AppendixClass> secondMap = HazelcastInstance.getMap("secondMap");
对我来说,文档中关于密钥所有者的内容似乎很令人困惑。我真正的沮丧是我不知道它指的是哪个 - 在哪个地图中 - 键?
该文档还提供了这种方法的“演示”:
import com.hazelcast.core.Member;
import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.IExecutorService;
import java.util.concurrent.Callable;
import java.util.concurrent.Future;
import java.util.Set;
import com.hazelcast.config.Config;
public void echoOnTheMemberOwningTheKey(String input, Object key) throws Exception {
Callable<String> task = new Echo(input);
HazelcastInstance hz = Hazelcast.newHazelcastInstance();
IExecutorService executorService = hz.getExecutorService("default");
Future<String> future = executorService.submitToKeyOwner(task, key);
String echoResult = future.get();
}
这是文档站点的链接:Hazelcast MultiHTML Documentation 3.0 - Distributed Execution
你们中的任何人过去是否知道它想要什么键?