如何在Alluxio 2.0 java api中设置master地址和19998端口?
How to set master address and 19998 port in Alluxio 2.0 java api?
我想知道如何在 alluxio 2.0 中设置 master 的主机名和 rpc_port java api.
当我使用适用于 alluxio 1.8 的代码时,我发现它不适用于 alluxio 2.0。
这是我的代码,它不起作用。我不知道如何在 alluxio 2.0 java api 中编写正确的代码:
在 Alluxio 2 中,您可以创建一个配置对象,然后将其传递给 FileSystem.Factory.create()。
例如:
InstancedConfiguration conf = new InstancedConfiguration(ConfigurationUtils.defaults());
conf.set(PropertyKey.MASTER_HOSTNAME, alluxioMaster);
conf.set(PropertyKey.MASTER_RPC_PORT, ...);
return FileSystem.Factory.create(conf);
我想知道如何在 alluxio 2.0 中设置 master 的主机名和 rpc_port java api.
当我使用适用于 alluxio 1.8 的代码时,我发现它不适用于 alluxio 2.0。
这是我的代码,它不起作用。我不知道如何在 alluxio 2.0 java api 中编写正确的代码:
在 Alluxio 2 中,您可以创建一个配置对象,然后将其传递给 FileSystem.Factory.create()。
例如:
InstancedConfiguration conf = new InstancedConfiguration(ConfigurationUtils.defaults());
conf.set(PropertyKey.MASTER_HOSTNAME, alluxioMaster);
conf.set(PropertyKey.MASTER_RPC_PORT, ...);
return FileSystem.Factory.create(conf);