HADOOP-12600. FileContext and AbstractFileSystem should be annotated as a Stable interface. Contributed by Chris Nauroth.
(cherry picked from commitb2c78536cb
) (cherry picked from commit669743ce11
)
This commit is contained in:
parent
efaef45a24
commit
6417121ddb
|
@ -349,6 +349,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HADOOP-10465. Fix use of generics within SortedMapWritable.
|
HADOOP-10465. Fix use of generics within SortedMapWritable.
|
||||||
(Bertrand Dechoux via wheat9)
|
(Bertrand Dechoux via wheat9)
|
||||||
|
|
||||||
|
HADOOP-12600. FileContext and AbstractFileSystem should be annotated as a
|
||||||
|
Stable interface. (cnauroth)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
||||||
|
|
|
@ -64,7 +64,7 @@ import com.google.common.annotations.VisibleForTesting;
|
||||||
* to the root of the "this" file system .
|
* to the root of the "this" file system .
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Public
|
||||||
@InterfaceStability.Evolving /*Evolving for a release,to be changed to Stable */
|
@InterfaceStability.Stable
|
||||||
public abstract class AbstractFileSystem {
|
public abstract class AbstractFileSystem {
|
||||||
static final Log LOG = LogFactory.getLog(AbstractFileSystem.class);
|
static final Log LOG = LogFactory.getLog(AbstractFileSystem.class);
|
||||||
|
|
||||||
|
|
|
@ -175,7 +175,7 @@ import org.apache.htrace.core.Tracer;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Public
|
||||||
@InterfaceStability.Evolving /*Evolving for a release,to be changed to Stable */
|
@InterfaceStability.Stable
|
||||||
public class FileContext {
|
public class FileContext {
|
||||||
|
|
||||||
public static final Log LOG = LogFactory.getLog(FileContext.class);
|
public static final Log LOG = LogFactory.getLog(FileContext.class);
|
||||||
|
|
Loading…
Reference in New Issue