use of alluxio.master.LocalAlluxioJobCluster in project alluxio by Alluxio.
the class LostWorkerIntegrationTest method before.
@Before
public void before() throws Exception {
mLocalAlluxioJobCluster = new LocalAlluxioJobCluster();
mLocalAlluxioJobCluster.start();
}
use of alluxio.master.LocalAlluxioJobCluster in project alluxio by Alluxio.
the class JobMasterRestApiTest method before.
@Before
public void before() throws Exception {
mJobCluster = new LocalAlluxioJobCluster();
mJobCluster.start();
mHostname = mJobCluster.getHostname();
mPort = mJobCluster.getMaster().getWebAddress().getPort();
mServicePrefix = AlluxioJobMasterRestServiceHandler.SERVICE_PREFIX;
}
use of alluxio.master.LocalAlluxioJobCluster in project alluxio by Alluxio.
the class AbstractFileOutStreamIntegrationTest method before.
@Before
public void before() throws Exception {
mLocalAlluxioJobCluster = new LocalAlluxioJobCluster();
mLocalAlluxioJobCluster.start();
mFileSystem = mLocalAlluxioClusterResource.get().getClient();
}
use of alluxio.master.LocalAlluxioJobCluster in project alluxio by Alluxio.
the class DistributedLoadCommandTest method beforeClass.
@BeforeClass
public static void beforeClass() throws Exception {
sLocalAlluxioCluster = sResource.get();
sLocalAlluxioJobCluster = new LocalAlluxioJobCluster();
sLocalAlluxioJobCluster.start();
sFileSystem = sLocalAlluxioCluster.getClient();
sJobMaster = sLocalAlluxioJobCluster.getMaster().getJobMaster();
sJobShell = new alluxio.cli.job.JobShell(ServerConfiguration.global());
sFsShell = new FileSystemShell(ServerConfiguration.global());
}
use of alluxio.master.LocalAlluxioJobCluster in project alluxio by Alluxio.
the class JobWorkerHealthCheckClientIntegrationTest method before.
@Before
public final void before() throws Exception {
mLocalAlluxioJobCluster = new LocalAlluxioJobCluster();
mLocalAlluxioJobCluster.start();
InetSocketAddress address = mLocalAlluxioJobCluster.getWorker().getRpcAddress();
mHealthCheckClient = new JobWorkerHealthCheckClient(address, () -> new CountingRetry(1), ServerConfiguration.global());
}
Aggregations