use of alluxio.worker.file.FileSystemMasterClient in project alluxio by Alluxio.
the class TableMasterClientTest method before.
@Before
public final void before() throws Exception {
mFileSystem = mLocalAlluxioClusterResource.get().getClient();
MasterClientContext context = MasterClientContext.newBuilder(ClientContext.create(ServerConfiguration.global())).build();
mTableMasterClient = new RetryHandlingTableMasterClient(context);
mFSMasterClient = new FileSystemMasterClient(context);
}
Aggregations