HDDS-377. Make the ScmClient closable and stop the started threads. Contributed by Elek Marton.
This commit is contained in:
parent
84973d1049
commit
6eecd251d8
@ -257,6 +257,15 @@ public Pipeline createReplicationPipeline(HddsProtos.ReplicationType type,
|
||||
factor, nodePool);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
try {
|
||||
xceiverClientManager.close();
|
||||
} catch (Exception ex) {
|
||||
LOG.error("Can't close " + this.getClass().getSimpleName(), ex);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes an existing container.
|
||||
*
|
||||
|
@ -25,6 +25,7 @@
|
||||
.ContainerData;
|
||||
import org.apache.hadoop.hdds.protocol.proto.HddsProtos;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
@ -39,7 +40,7 @@
|
||||
* this interface will likely be removed.
|
||||
*/
|
||||
@InterfaceStability.Unstable
|
||||
public interface ScmClient {
|
||||
public interface ScmClient extends Closeable {
|
||||
/**
|
||||
* Creates a Container on SCM and returns the pipeline.
|
||||
* @return ContainerInfo
|
||||
@ -61,7 +62,8 @@ public interface ScmClient {
|
||||
* @return ContainerWithPipeline
|
||||
* @throws IOException
|
||||
*/
|
||||
ContainerWithPipeline getContainerWithPipeline(long containerId) throws IOException;
|
||||
ContainerWithPipeline getContainerWithPipeline(long containerId)
|
||||
throws IOException;
|
||||
|
||||
/**
|
||||
* Close a container.
|
||||
@ -87,7 +89,8 @@ public interface ScmClient {
|
||||
* @param force - true to forcibly delete the container.
|
||||
* @throws IOException
|
||||
*/
|
||||
void deleteContainer(long containerId, Pipeline pipeline, boolean force) throws IOException;
|
||||
void deleteContainer(long containerId, Pipeline pipeline, boolean force)
|
||||
throws IOException;
|
||||
|
||||
/**
|
||||
* Deletes an existing container.
|
||||
|
Loading…
Reference in New Issue
Block a user