use of alluxio.master.job.JobMasterRpcHealthCheckClient in project alluxio by Alluxio.
the class JobMasterHealthCheckClientIntegrationTest method before.
@Before
public final void before() throws Exception {
mLocalAlluxioJobCluster = new LocalAlluxioJobCluster();
mLocalAlluxioJobCluster.start();
InetSocketAddress address = mLocalAlluxioJobCluster.getMaster().getRpcAddress();
mHealthCheckClient = new JobMasterRpcHealthCheckClient(address, () -> new CountingRetry(1), ServerConfiguration.global());
}
Aggregations