HDDS-377. Make the ScmClient closable and stop the started threads. Contributed by Elek Marton.

This commit is contained in:
Xiaoyu Yao 2018-08-27 08:19:05 -07:00
parent 84973d1049
commit 6eecd251d8
2 changed files with 15 additions and 3 deletions

View File

@ -257,6 +257,15 @@ public Pipeline createReplicationPipeline(HddsProtos.ReplicationType type,
factor, nodePool); 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. * Deletes an existing container.
* *

View File

@ -25,6 +25,7 @@
.ContainerData; .ContainerData;
import org.apache.hadoop.hdds.protocol.proto.HddsProtos; import org.apache.hadoop.hdds.protocol.proto.HddsProtos;
import java.io.Closeable;
import java.io.IOException; import java.io.IOException;
import java.util.List; import java.util.List;
@ -39,7 +40,7 @@
* this interface will likely be removed. * this interface will likely be removed.
*/ */
@InterfaceStability.Unstable @InterfaceStability.Unstable
public interface ScmClient { public interface ScmClient extends Closeable {
/** /**
* Creates a Container on SCM and returns the pipeline. * Creates a Container on SCM and returns the pipeline.
* @return ContainerInfo * @return ContainerInfo
@ -61,7 +62,8 @@ public interface ScmClient {
* @return ContainerWithPipeline * @return ContainerWithPipeline
* @throws IOException * @throws IOException
*/ */
ContainerWithPipeline getContainerWithPipeline(long containerId) throws IOException; ContainerWithPipeline getContainerWithPipeline(long containerId)
throws IOException;
/** /**
* Close a container. * Close a container.
@ -87,7 +89,8 @@ public interface ScmClient {
* @param force - true to forcibly delete the container. * @param force - true to forcibly delete the container.
* @throws IOException * @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. * Deletes an existing container.