[jira] [Created] (HADOOP-10577) Fix some minors error and compile on macosx

2014-05-06 Thread Binglin Chang (JIRA)
Binglin Chang created HADOOP-10577:
--

 Summary: Fix some minors error and compile on macosx
 Key: HADOOP-10577
 URL: https://issues.apache.org/jira/browse/HADOOP-10577
 Project: Hadoop Common
  Issue Type: Sub-task
Reporter: Binglin Chang
Assignee: Binglin Chang
Priority: Minor






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (HADOOP-10573) fix hadoop native client CMakeLists.txt issue with older cmakes

2014-05-06 Thread Colin Patrick McCabe (JIRA)

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

Colin Patrick McCabe resolved HADOOP-10573.
---

Resolution: Fixed

 fix hadoop native client CMakeLists.txt issue with older cmakes
 ---

 Key: HADOOP-10573
 URL: https://issues.apache.org/jira/browse/HADOOP-10573
 Project: Hadoop Common
  Issue Type: Sub-task
  Components: native
Affects Versions: HADOOP-10388
Reporter: Wenwu Peng
Assignee: Wenwu Peng
 Attachments: HADOOP-10573.1.patch, HADOOP-10573.2.patch


 In GeneratProtobufs.cmake, use variable CMAKE_CURRENT_LIST_DIR, it is new for 
 cmake version 2.8, so we should change cmake_minimum_required(VERSION 2.6) to 
 (VERSION 2.8) in CMakeLists.txt



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (HADOOP-10578) Find command - add navigation and execution expressions to find command

2014-05-06 Thread Jonathan Allen (JIRA)
Jonathan Allen created HADOOP-10578:
---

 Summary: Find command - add navigation and execution expressions 
to find command
 Key: HADOOP-10578
 URL: https://issues.apache.org/jira/browse/HADOOP-10578
 Project: Hadoop Common
  Issue Type: Task
Reporter: Jonathan Allen
Assignee: Jonathan Allen
Priority: Minor


Add the navigation and execution expressions to the find command created under 
HADOOP-8989, e.g.
- exec
- maxDepth
- minDepth
- prune
- depth



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (HADOOP-10580) Find command - add documentation and CLI tests to find command

2014-05-06 Thread Jonathan Allen (JIRA)
Jonathan Allen created HADOOP-10580:
---

 Summary: Find command - add documentation and CLI tests to find 
command
 Key: HADOOP-10580
 URL: https://issues.apache.org/jira/browse/HADOOP-10580
 Project: Hadoop Common
  Issue Type: Sub-task
Reporter: Jonathan Allen
Assignee: Jonathan Allen
Priority: Minor


Add documentation and CLI tests to the find command created under HADOOP-8989.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (HADOOP-10579) Find command - add match expressions to find command

2014-05-06 Thread Jonathan Allen (JIRA)
Jonathan Allen created HADOOP-10579:
---

 Summary: Find command - add match expressions to find command
 Key: HADOOP-10579
 URL: https://issues.apache.org/jira/browse/HADOOP-10579
 Project: Hadoop Common
  Issue Type: Sub-task
Reporter: Jonathan Allen
Assignee: Jonathan Allen
Priority: Minor


Add match expressions to the find command created under HADOOP-8989, e.g.:
- atime
- empty
- group
- mtime
- newer
- nogroup
- nouser
- perm
- regex
- size
- user



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (HADOOP-10581) TestUserGroupInformation#testGetServerSideGroups fails because groups stored in Set and ArrayList are compared

2014-05-06 Thread Mit Desai (JIRA)
Mit Desai created HADOOP-10581:
--

 Summary: TestUserGroupInformation#testGetServerSideGroups fails 
because groups stored in Set and ArrayList are compared
 Key: HADOOP-10581
 URL: https://issues.apache.org/jira/browse/HADOOP-10581
 Project: Hadoop Common
  Issue Type: Bug
Affects Versions: 3.0.0, 2.4.1
Reporter: Mit Desai
Assignee: Mit Desai


The test fails on some machines that has variety of user groups.
Initially the groups are extracted and stored in a set
{{SetString groups = new LinkedHashSetString ();}}
when the user groups are collected by calling the {{login.getGroupNames()}}, 
they are stored in an array list
{{String[] gi = login.getGroupNames();}}
Because these groups are stored in different structure, there will be 
inconsistency in the group count. Sets have unique list of keys while array 
list emits everything they have.
{{assertEquals(groups.size(), gi.length);}} fails when there are more than one 
groups with same name as the count in sets will be less than the arraylist.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (HADOOP-10582) TestFsShellCopy doesn't test which we expect

2014-05-06 Thread Kousuke Saruta (JIRA)
Kousuke Saruta created HADOOP-10582:
---

 Summary: TestFsShellCopy doesn't test which we expect
 Key: HADOOP-10582
 URL: https://issues.apache.org/jira/browse/HADOOP-10582
 Project: Hadoop Common
  Issue Type: Bug
  Components: fs
Affects Versions: 3.0.0
Reporter: Kousuke Saruta
Priority: Minor


In TestFsShellCopy#prepTest, there is a following code.

{code}
final Path dstPath = new Path(path);
final Path childPath = new Path(dstPath, childPath);

...

// copy to non-existent subdir
prepPut(childPath, false, false);
checkPut(1, srcPath, dstPath, useWindowsPath);
{code}

The code expect to test the case when we put a file to non-exsistent directory. 
But the code delete childPath and then copy to its parent directory (dstPath).



--
This message was sent by Atlassian JIRA
(v6.2#6252)