gpt4 book ai didi

java - 如何修复 Hazelcast 为 EntryProcessor 抛出 'java.lang.IllegalStateException: User Code Deployment is not enabled'

转载 作者:行者123 更新时间:2023-12-02 01:40:39 31 4
gpt4 key购买 nike

我正在尝试使用 EntryProcessor 为我们的应用程序设置 Hazelcast 的代码。为了分析为什么 EntryProcessor 的代码在我们的应用程序中不起作用,我尝试在本地计算机上设置一个类似的示例来重现该问题。然而,即使在我能够重现相同的问题之前,我也面临着另一个问题,该问题应该可以重现如下:

  1. here 下载 Hazelcast IMDG 3.10.6 。并解压它。
  2. 创建一个新的 Java 应用程序并添加在 main page 的 Java Client --> EntryProcessor 下给出的代码.
  3. 添加解压后的 hazelcast 文件夹的 lib 文件夹下的 hazelcast-3.10.6 和 hazelcast-client-3.10.6 jar。
  4. 从 bin 文件夹下的 start.bat 文件启动 hazelcast 成员(服务器)。
  5. 运行步骤 2 中给出的 Java 客户端代码。

我也在下面粘贴了 Java 客户端代码以供引用。

package client;
import com.hazelcast.client.HazelcastClient;
import com.hazelcast.client.config.ClientConfig;
import com.hazelcast.client.config.ClientUserCodeDeploymentConfig;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IMap;
import com.hazelcast.map.AbstractEntryProcessor;

import java.io.Serializable;
import java.util.Map;

public class EntryProcessorSample {

public static class IncEntryProcessor extends AbstractEntryProcessor<String, Integer> implements Serializable {
@Override
public Object process(Map.Entry<String, Integer> entry) {
// Get the value passed
int oldValue = entry.getValue();
// Update the value
int newValue = oldValue + 1;
// Update the value back to the entry stored in the Hazelcast Member this EntryProcessor is running on.
entry.setValue(newValue);
// No need to return anything back to the caller, we can return whatever we like here.
return null;
}
}

public static void main(String[] args) {
// Enable Code Deployment from this Client classpath to the Cluster Members classpath
// User Code Deployment needs to be enabled on the Cluster Members as well.
ClientConfig config = new ClientConfig();
ClientUserCodeDeploymentConfig userCodeDeploymentConfig = config.getUserCodeDeploymentConfig();
userCodeDeploymentConfig.setEnabled(true);
userCodeDeploymentConfig.addClass(EntryProcessorSample.IncEntryProcessor.class);
// Start the Hazelcast Client and connect to an already running Hazelcast Cluster on 127.0.0.1
HazelcastInstance hz = HazelcastClient.newHazelcastClient(config);
// Get the Distributed Map from Cluster.
IMap<String, Integer> map = hz.getMap("my-distributed-map");
// Put the integer value of 0 into the Distributed Map
map.put("key", 0);
// Run the IncEntryProcessor class on the Hazelcast Cluster Member holding the key called "key"
map.executeOnKey("key", new IncEntryProcessor());
// Show that the IncEntryProcessor updated the value.
System.out.println("new value:" + map.get("key"));
// Shutdown this Hazelcast Client
hz.shutdown();
}
}

我希望代码运行时不会出现任何问题,因为 hazelcast site 中为 Java 客户端提供了 Map 示例。工作得很好。此外,由于我们明确为 ClientConfig 启用用户代码部署,我不明白为什么我们会遇到此问题。

最佳答案

您需要启用User Code Deployment在成员(member)方面也是如此。

关于java - 如何修复 Hazelcast 为 EntryProcessor 抛出 'java.lang.IllegalStateException: User Code Deployment is not enabled',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54475002/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com