Jenkins build is back to normal : Hadoop-Common-0.23-Build #797

2013-11-19 Thread Apache Jenkins Server
See https://builds.apache.org/job/Hadoop-Common-0.23-Build/797/changes



Build failed in Jenkins: Hadoop-Common-trunk #956

2013-11-19 Thread Apache Jenkins Server
See https://builds.apache.org/job/Hadoop-Common-trunk/956/changes

Changes:

[sandy] YARN-584. In scheduler web UIs, queues unexpand on refresh. (Harshit 
Daga via Sandy Ryza)

[jing9] HADOOP-10107. Server.getNumOpenConnections may throw NPE. Contributed 
by Kihwal Lee.

[jing9] HDFS-5428. Under construction files deletion after 
snapshot+checkpoint+nn restart leads nn safemode. Contributed by Jing Zhao.

[vinodkv] YARN-674. Fixed ResourceManager to renew DelegationTokens on 
submission asynchronously to work around potential slowness in state-store. 
Contributed by Omkar Vinit Joshi.

[vinodkv] YARN-1210. Changed RM to start new app-attempts on RM restart only 
after ensuring that previous AM exited or after expiry time. Contributed by 
Omkar Vinit Joshi.

[arp] HDFS-5073. TestListCorruptFileBlocks fails intermittently.

[cmccabe] HDFS-5512. CacheAdmin -listPools fails with NPE when user lacks 
permissions to view all pools (awang via cmccabe)

[cmccabe] HDFS-5520. loading cache path directives from edit log doesnt update 
nextEntryId (cmccabe)

[vinodkv] YARN-709. Added tests to verify validity of delegation tokens and 
logging of appsummary after RM restart. Contributed by Jian He.

[jing9] HDFS-5393. Serve bootstrap and jQuery locally. Contributed by Haohui 
Mai.

[arp] HADOOP-10110. hadoop-auth has a build break due to missing dependency. 
(Contributed by Chuan Liu)

[jlowe] YARN-1419. TestFifoScheduler.testAppAttemptMetrics fails intermittently 
under jdk7. Contributed by Jonathan Eagles

--
[...truncated 59810 lines...]
Adding reference: maven.local.repository
[DEBUG] Initialize Maven Ant Tasks
parsing buildfile 
jar:file:/home/jenkins/.m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.7/maven-antrun-plugin-1.7.jar!/org/apache/maven/ant/tasks/antlib.xml
 with URI = 
jar:file:/home/jenkins/.m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.7/maven-antrun-plugin-1.7.jar!/org/apache/maven/ant/tasks/antlib.xml
 from a zip file
parsing buildfile 
jar:file:/home/jenkins/.m2/repository/org/apache/ant/ant/1.8.2/ant-1.8.2.jar!/org/apache/tools/ant/antlib.xml
 with URI = 
jar:file:/home/jenkins/.m2/repository/org/apache/ant/ant/1.8.2/ant-1.8.2.jar!/org/apache/tools/ant/antlib.xml
 from a zip file
Class org.apache.maven.ant.tasks.AttachArtifactTask loaded from parent loader 
(parentFirst)
 +Datatype attachartifact org.apache.maven.ant.tasks.AttachArtifactTask
Class org.apache.maven.ant.tasks.DependencyFilesetsTask loaded from parent 
loader (parentFirst)
 +Datatype dependencyfilesets org.apache.maven.ant.tasks.DependencyFilesetsTask
Setting project property: test.build.dir - 
https://builds.apache.org/job/Hadoop-Common-trunk/ws/trunk/hadoop-common-project/target/test-dir
Setting project property: test.exclude.pattern - _
Setting project property: hadoop.assemblies.version - 3.0.0-SNAPSHOT
Setting project property: test.exclude - _
Setting project property: distMgmtSnapshotsId - apache.snapshots.https
Setting project property: project.build.sourceEncoding - UTF-8
Setting project property: java.security.egd - file:///dev/urandom
Setting project property: distMgmtSnapshotsUrl - 
https://repository.apache.org/content/repositories/snapshots
Setting project property: distMgmtStagingUrl - 
https://repository.apache.org/service/local/staging/deploy/maven2
Setting project property: avro.version - 1.7.4
Setting project property: test.build.data - 
https://builds.apache.org/job/Hadoop-Common-trunk/ws/trunk/hadoop-common-project/target/test-dir
Setting project property: commons-daemon.version - 1.0.13
Setting project property: hadoop.common.build.dir - 
https://builds.apache.org/job/Hadoop-Common-trunk/ws/trunk/hadoop-common-project/../../hadoop-common-project/hadoop-common/target
Setting project property: testsThreadCount - 4
Setting project property: maven.test.redirectTestOutputToFile - true
Setting project property: jdiff.version - 1.0.9
Setting project property: distMgmtStagingName - Apache Release Distribution 
Repository
Setting project property: project.reporting.outputEncoding - UTF-8
Setting project property: build.platform - Linux-i386-32
Setting project property: protobuf.version - 2.5.0
Setting project property: failIfNoTests - false
Setting project property: protoc.path - ${env.HADOOP_PROTOC_PATH}
Setting project property: jersey.version - 1.9
Setting project property: distMgmtStagingId - apache.staging.https
Setting project property: distMgmtSnapshotsName - Apache Development Snapshot 
Repository
Setting project property: ant.file - 
https://builds.apache.org/job/Hadoop-Common-trunk/ws/trunk/hadoop-common-project/pom.xml
[DEBUG] Setting properties with prefix: 
Setting project property: project.groupId - org.apache.hadoop
Setting project property: project.artifactId - hadoop-common-project
Setting project property: project.name - Apache Hadoop Common Project
Setting project property: project.description - Apache Hadoop Common Project
Setting 

[jira] [Created] (HADOOP-10116) fix inconsistent synchronization warnings in ZlibCompressor

2013-11-19 Thread Colin Patrick McCabe (JIRA)
Colin Patrick McCabe created HADOOP-10116:
-

 Summary: fix inconsistent synchronization warnings in 
ZlibCompressor
 Key: HADOOP-10116
 URL: https://issues.apache.org/jira/browse/HADOOP-10116
 Project: Hadoop Common
  Issue Type: Bug
Reporter: Colin Patrick McCabe


Fix findbugs warnings in ZlibCompressor.  I believe these were introduced by 
HADOOP-10047.

{code}
CodeWarning
IS  Inconsistent synchronization of 
org.apache.hadoop.io.compress.zlib.ZlibCompressor.keepUncompressedBuf; locked 
57% of time
IS  Inconsistent synchronization of 
org.apache.hadoop.io.compress.zlib.ZlibCompressor.userBuf; locked 60% of time
IS  Inconsistent synchronization of 
org.apache.hadoop.io.compress.zlib.ZlibCompressor.userBufLen; locked 85% of time
IS  Inconsistent synchronization of 
org.apache.hadoop.io.compress.zlib.ZlibDecompressor.userBuf; locked 60% of time
IS  Inconsistent synchronization of 
org.apache.hadoop.io.compress.zlib.ZlibDecompressor.userBufLen; locked 77% of 
time
Dodgy Warnings

CodeWarning
DLS Dead store to pos2 in 
org.apache.hadoop.io.compress.zlib.ZlibCompressor.put(ByteBuffer, ByteBuffer)
DLS Dead store to pos2 in 
org.apache.hadoop.io.compress.zlib.ZlibDecompressor.put(ByteBuffer, ByteBuffer)
{code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (HADOOP-10117) Unable to compile source code from stable 2.2.0 release

2013-11-19 Thread Prasad Ramalingam (JIRA)
Prasad Ramalingam created HADOOP-10117:
--

 Summary: Unable to compile source code from stable 2.2.0 release
 Key: HADOOP-10117
 URL: https://issues.apache.org/jira/browse/HADOOP-10117
 Project: Hadoop Common
  Issue Type: Bug
Affects Versions: 2.2.0
 Environment: windows 7
Reporter: Prasad Ramalingam


I am trying to compile the source code but I am getting the following error.

[ERROR] D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
va:[86,13] cannot access org.mortbay.component.AbstractLifeCycle
class file for org.mortbay.component.AbstractLifeCycle not found
server = new Server(0);
[ERROR] D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
va:[96,29] cannot access org.mortbay.component.LifeCycle
class file for org.mortbay.component.LifeCycle not found
server.getConnectors()[0].setHost(host);
[ERROR] D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
va:[98,10] cannot find symbol
symbol  : method start()
location: class org.mortbay.jetty.Server
[ERROR] D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
va:[104,12] cannot find symbol
symbol  : method stop()
location: class org.mortbay.jetty.Server


Looks like the build is broken.

Please fix and let me know as to when I can download the stable version.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (HADOOP-10025) Replace HttpConfig#getSchemePrefix with implicit scheme in YARN/MR

2013-11-19 Thread Omkar Vinit Joshi (JIRA)

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

Omkar Vinit Joshi resolved HADOOP-10025.


Resolution: Won't Fix

 Replace HttpConfig#getSchemePrefix with implicit scheme in YARN/MR
 --

 Key: HADOOP-10025
 URL: https://issues.apache.org/jira/browse/HADOOP-10025
 Project: Hadoop Common
  Issue Type: Improvement
Reporter: Haohui Mai
Assignee: Omkar Vinit Joshi
 Attachments: HADOOP-10025.000.patch






--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (HADOOP-10118) CommandFormat never parse --

2013-11-19 Thread Kousuke Saruta (JIRA)
Kousuke Saruta created HADOOP-10118:
---

 Summary: CommandFormat never parse --
 Key: HADOOP-10118
 URL: https://issues.apache.org/jira/browse/HADOOP-10118
 Project: Hadoop Common
  Issue Type: Bug
  Components: fs
Affects Versions: 3.0.0
Reporter: Kousuke Saruta


We cannot use -- option to skip args following that.
CommandFormat#parse is implemented as follows.

{code}
public void parse(ListString args) {
...
  } else if (arg.equals(--)) { // force end of option processing
args.remove(pos);
break;
  }
...
{code}

But, FsShell is called through ToolRunner and ToolRunner use 
GenericOptionParser. GenericOptionParser use GnuParser, which discard -- when 
parsing args.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (HADOOP-10117) Unable to compile source code from stable 2.2.0 release

2013-11-19 Thread Chris Nauroth (JIRA)

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

Chris Nauroth resolved HADOOP-10117.


Resolution: Duplicate

This looks like a duplicate of HADOOP-10110.  A fix was committed for that 
yesterday, so if you pick up the most recent version of the code, then I expect 
the problem will go away.

 Unable to compile source code from stable 2.2.0 release
 ---

 Key: HADOOP-10117
 URL: https://issues.apache.org/jira/browse/HADOOP-10117
 Project: Hadoop Common
  Issue Type: Bug
Affects Versions: 2.2.0
 Environment: windows 7
Reporter: Prasad Ramalingam

 I am trying to compile the source code but I am getting the following error.
 [ERROR] 
 D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
 t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
 va:[86,13] cannot access org.mortbay.component.AbstractLifeCycle
 class file for org.mortbay.component.AbstractLifeCycle not found
 server = new Server(0);
 [ERROR] 
 D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
 t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
 va:[96,29] cannot access org.mortbay.component.LifeCycle
 class file for org.mortbay.component.LifeCycle not found
 server.getConnectors()[0].setHost(host);
 [ERROR] 
 D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
 t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
 va:[98,10] cannot find symbol
 symbol  : method start()
 location: class org.mortbay.jetty.Server
 [ERROR] 
 D:\hadoop-src\hadoop-2.2.0-src\hadoop-common-project\hadoop-auth\src\tes
 t\java\org\apache\hadoop\security\authentication\client\AuthenticatorTestCase.ja
 va:[104,12] cannot find symbol
 symbol  : method stop()
 location: class org.mortbay.jetty.Server
 Looks like the build is broken.
 Please fix and let me know as to when I can download the stable version.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (HADOOP-10119) Document hadoop archive -p option

2013-11-19 Thread Akira AJISAKA (JIRA)
Akira AJISAKA created HADOOP-10119:
--

 Summary: Document hadoop archive -p option
 Key: HADOOP-10119
 URL: https://issues.apache.org/jira/browse/HADOOP-10119
 Project: Hadoop Common
  Issue Type: Bug
  Components: documentation
Affects Versions: 2.2.0
Reporter: Akira AJISAKA
Priority: Minor


Now hadoop archive -p (relative parent path) option is required but the option 
is not documented.
See 
http://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/CommandsManual.html#archive
 .



--
This message was sent by Atlassian JIRA
(v6.1#6144)