我想知道如何在alluxio 2.0 java api中设置master的主机名和rpc_port。
当我使用适用于alluxio 1.8的代码时,我发现它不适用于alluxio 2.0。
答案 0 :(得分: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);