use of alluxio.Configuration in project zeppelin by apache.
the class AlluxioInterpreter method open.
@Override
public void open() {
logger.info("Starting Alluxio shell to connect to " + alluxioMasterHostname + " on port " + alluxioMasterPort);
System.setProperty(ALLUXIO_MASTER_HOSTNAME, alluxioMasterHostname);
System.setProperty(ALLUXIO_MASTER_PORT, alluxioMasterPort);
fs = new AlluxioShell(new Configuration());
}
Aggregations