我想知道如何在alluxio 2.0 java api中设置master的主机名和rpc_port。
当我使用在alluxio 1.8 中工作的代码时,我发现它在alluxio 2.0 中不起作用。
我想知道如何在alluxio 2.0 java api中设置master的主机名和rpc_port。
当我使用在alluxio 1.8 中工作的代码时,我发现它在alluxio 2.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);