[ 
https://issues.apache.org/jira/browse/HDFS-8542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jakob Homan updated HDFS-8542:
------------------------------
       Resolution: Fixed
    Fix Version/s: 2.8.0
     Hadoop Flags: Reviewed
           Status: Resolved  (was: Patch Available)

Jenkins isn't running against minor versions.  I've committed this to trunk and 
branch-2.  Thanks, Kanaka.  Resolving.

> WebHDFS getHomeDirectory behavior does not match specification
> --------------------------------------------------------------
>
>                 Key: HDFS-8542
>                 URL: https://issues.apache.org/jira/browse/HDFS-8542
>             Project: Hadoop HDFS
>          Issue Type: Bug
>          Components: webhdfs
>    Affects Versions: 2.6.0
>            Reporter: Jakob Homan
>            Assignee: kanaka kumar avvaru
>             Fix For: 2.8.0
>
>         Attachments: HDFS-8542-00.patch, HDFS-8542-01.patch, 
> HDFS-8542-02.patch, HDFS-8542-branch-2.7.002.patch
>
>
> Per the 
> [spec|https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/WebHDFS.html#Get_Home_Directory],
>  WebHDFS provides a REST endpoint for getting the user's home directory:
> {noformat}Submit a HTTP GET request.
> curl -i "http://<HOST>:<PORT>/webhdfs/v1/?op=GETHOMEDIRECTORY"{noformat}
> However, WebHDFSFileSystem.java does not use this, instead building the home 
> [directory 
> locally|https://github.com/apache/hadoop/blob/trunk/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L271]:
> {code}  /** @return the home directory. */
>   public static String getHomeDirectoryString(final UserGroupInformation ugi) 
> {
>     return "/user/" + ugi.getShortUserName();
>   }
>   @Override
>   public Path getHomeDirectory() {
>     return makeQualified(new Path(getHomeDirectoryString(ugi)));
>   }{code}
> The WebHDFSFileSystem client should call to the REST service to determine the 
> home directory.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to