Fuse-DFS fails to build on Hadoop 20.203.0
------------------------------------------

                 Key: HDFS-2325
                 URL: https://issues.apache.org/jira/browse/HDFS-2325
             Project: Hadoop HDFS
          Issue Type: Bug
          Components: contrib/fuse-dfs, libhdfs
    Affects Versions: 0.20.203.0
         Environment: Ubuntu 11.04, Linux 2.6.38-11-generic x86_64
            Reporter: Charles Earl
            Priority: Minor


In building fuse-dfs, the compile fails due to an argument mismatch between 
call to hdfsConnectAsUser on line 40 of src/contrib/fuse-dfs/src/fuse_connect.c 
and an earlier definition of hdfsConnectAsUser given in src/c++/libhdfs/hdfs.h.
I suggest changing hdfs.h. I made the following change in hdfs.h in my local 
copy:

106c106,107
<      hdfsFS hdfsConnectAsUser(const char* host, tPort port, const char *user);
---
>   //     hdfsFS hdfsConnectAsUser(const char* host, tPort port, const char 
> *user);
>   hdfsFS hdfsConnectAsUser(const char* host, tPort port, const char *user, 
> const char** groups, int numgroups);

This new version successfully compiles.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to