HDFS-2931. Switch DataNode's BlockVolumeChoosingPolicy to private-audience. Contributed by harsh
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1242891 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e32744287
commit
83fd3160da
|
@ -216,6 +216,9 @@ Release 0.23.2 - UNRELEASED
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
|
HDFS-2931. Switch DataNode's BlockVolumeChoosingPolicy to private-audience.
|
||||||
|
(harsh via szetszwo)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -29,9 +29,11 @@ import org.apache.hadoop.hdfs.server.datanode.FSDatasetInterface.FSVolumeInterfa
|
||||||
* specify what policy is to be used while choosing
|
* specify what policy is to be used while choosing
|
||||||
* a volume for a block request.
|
* a volume for a block request.
|
||||||
*
|
*
|
||||||
|
* Note: This is an evolving i/f and is only for
|
||||||
|
* advanced use.
|
||||||
|
*
|
||||||
***************************************************/
|
***************************************************/
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Private
|
||||||
@InterfaceStability.Evolving
|
|
||||||
public interface BlockVolumeChoosingPolicy {
|
public interface BlockVolumeChoosingPolicy {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue