use of alluxio.worker.job.JobWorkerHealthCheckClient 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