HADOOP-12600. FileContext and AbstractFileSystem should be annotated as a Stable interface. Contributed by Chris Nauroth.
(cherry picked from commit b2c78536cb55c58e4d4a0ea16f648a34c7e2f88c) (cherry picked from commit 669743ce114181e5d95eb946be3ef1604de78665) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/6417121d Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/6417121d Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/6417121d Branch: refs/heads/branch-2.8 Commit: 6417121ddbc2bbbe04390e5f7c9e778d7520f768 Parents: efaef45 Author: cnauroth <[email protected]> Authored: Sat Nov 28 15:40:07 2015 -0800 Committer: cnauroth <[email protected]> Committed: Sat Nov 28 15:40:25 2015 -0800 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ .../src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java | 2 +- .../src/main/java/org/apache/hadoop/fs/FileContext.java | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/6417121d/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 594a6ec..aab2524 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -349,6 +349,9 @@ Release 2.8.0 - UNRELEASED HADOOP-10465. Fix use of generics within SortedMapWritable. (Bertrand Dechoux via wheat9) + HADOOP-12600. FileContext and AbstractFileSystem should be annotated as a + Stable interface. (cnauroth) + OPTIMIZATIONS HADOOP-11785. Reduce the number of listStatus operation in distcp http://git-wip-us.apache.org/repos/asf/hadoop/blob/6417121d/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java index 2bc3859..1fce04c 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java @@ -64,7 +64,7 @@ import com.google.common.annotations.VisibleForTesting; * to the root of the "this" file system . */ @InterfaceAudience.Public [email protected] /*Evolving for a release,to be changed to Stable */ [email protected] public abstract class AbstractFileSystem { static final Log LOG = LogFactory.getLog(AbstractFileSystem.class); http://git-wip-us.apache.org/repos/asf/hadoop/blob/6417121d/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileContext.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileContext.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileContext.java index a3b6027..cc3e9c9 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileContext.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileContext.java @@ -175,7 +175,7 @@ import org.apache.htrace.core.Tracer; */ @InterfaceAudience.Public [email protected] /*Evolving for a release,to be changed to Stable */ [email protected] public class FileContext { public static final Log LOG = LogFactory.getLog(FileContext.class);
