alluxio.client.lineage.LineageContext Maven / Gradle / Ivy
/*
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
* (the “License”). You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied, as more fully set forth in the License.
*
* See the NOTICE file distributed with this work for information regarding copyright ownership.
*/
package alluxio.client.lineage;
import alluxio.client.ClientContext;
import javax.annotation.concurrent.ThreadSafe;
/**
* A shared context in each client JVM for common lineage master client functionality such as a pool
* of lineage master clients. Any remote clients will be created and destroyed on a per use basis.
*/
@ThreadSafe
public enum LineageContext {
INSTANCE;
private LineageMasterClientPool mLineageMasterClientPool;
/**
* Creates a new lineage context.
*/
LineageContext() {
reset();
}
/**
* Acquires a lineage master client from the lineage master client pool.
*
* @return the acquired lineage master client
*/
public LineageMasterClient acquireMasterClient() {
return mLineageMasterClientPool.acquire();
}
/**
* Releases a lineage master client into the lineage master client pool.
*
* @param masterClient a lineage master client to release
*/
public void releaseMasterClient(LineageMasterClient masterClient) {
mLineageMasterClientPool.release(masterClient);
}
/**
* Re-initializes the {@link LineageContext}. This method should only be used in
* {@link ClientContext}.
*/
public void reset() {
if (mLineageMasterClientPool != null) {
mLineageMasterClientPool.close();
}
mLineageMasterClientPool = new LineageMasterClientPool(ClientContext.getMasterAddress());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy