0

我想知道如何在alluxio 2.0 java api中设置master的主机名和rpc_port。

当我使用在alluxio 1.8 中工作的代码时,我发现它在alluxio 2.0 中不起作用。

这是我的代码,它不起作用。我不知道如何在alluxio 2.0 java api中编写正确的代码: 在此处输入图像描述

4

1 回答 1

0

在 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);
于 2019-04-11T08:32:49.900 回答