[jira] Updated: (ZOOKEEPER-110) Build script relies on svnant, which is not compatible with subversion 1.5 working copies

2008-08-13 Thread Jakob Homan (JIRA)

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

Jakob Homan updated ZOOKEEPER-110:
--

Attachment: ZOOKEEPER-110.patch

OK, I've coded up a DOS batch file that exactly replicates the shell script 
using only Windows built-in commands, so this fixes the original problem I 
identified, removes the svnant dependency, adds no new dependencies and will 
work on Windows natively.  Huzzah!

I tested it on my OSX, Ubuntu and XP machines and they all worked.

Again, the patch doesn't reflect deleting the svnant directory and contents.
-jg

> Build script relies on svnant, which is not compatible with subversion 1.5 
> working copies
> -
>
> Key: ZOOKEEPER-110
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-110
> Project: Zookeeper
>  Issue Type: Bug
>  Components: build
>Affects Versions: 3.0.0
> Environment: Subversion 1.5 command line, or subclipse version 1.4.x
>Reporter: Jakob Homan
>Assignee: Jakob Homan
> Attachments: ZOOKEEPER-110.patch, ZOOKEEPER-110.patch
>
>
> The current build.xml ant script uses svnant to obtain the latest revision 
> number from the repo, however svnant is not compatible with subversion 1.5 
> (http://subversion.tigris.org/svn_1.5_releasenotes.html), and so the build 
> fails with working copies checked out by this version.  The build fails with 
> "this version of subversion is too old, please get a newer version..."  This 
> will become more apparent as svn 1.5 trickles out; I'm using a brand new dev 
> environment with both subclipse 1.4 and svn 1.5 client, so I got bit rather 
> quickly.
> Those with svn 1.5 can get the code from the trunk, but cannot do an ant 
> build.
> svnant hasn't been updated in more than a year and appears to be dead, so it 
> may no longer be a viable tool for the ant build.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (ZOOKEEPER-82) Make the ZooKeeperServer more DI friendly

2008-08-13 Thread Mahadev konar (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-82?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12622405#action_12622405
 ] 

Mahadev konar commented on ZOOKEEPER-82:


+1 patch looks good ... we will need to update our wiki documentation to 
reflect the changes in this patch... 

> Make the ZooKeeperServer more DI friendly
> -
>
> Key: ZOOKEEPER-82
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-82
> Project: Zookeeper
>  Issue Type: Improvement
>  Components: server
>Reporter: Hiram Chirino
>Assignee: Hiram Chirino
> Attachments: ZOOKEEPER-82-b.patch, ZOOKEEPER-82-b.patch
>
>
> Proposed changes were discussed in [this mailing list 
> thread|http://mail-archives.apache.org/mod_mbox/hadoop-zookeeper-dev/200807.mbox/[EMAIL
>  PROTECTED]:
> Basic goals are: 
> * Decouple the current configuration system from the public API.  I
> see stuff like ZooKeeperServer being coupled to ServerConfig a bit.
> * Allow the use of setter injection in addition to constructor
> injection. This is the most important thing needed to let spring more
> easily configure the objects.
> * Move the main() methods out of the ZooKeeperServer class.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (ZOOKEEPER-82) Make the ZooKeeperServer more DI friendly

2008-08-13 Thread Patrick Hunt (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-82?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12622381#action_12622381
 ] 

Patrick Hunt commented on ZOOKEEPER-82:
---

I'm +1 on this patch btw, looks like a good change.

> Make the ZooKeeperServer more DI friendly
> -
>
> Key: ZOOKEEPER-82
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-82
> Project: Zookeeper
>  Issue Type: Improvement
>  Components: server
>Reporter: Hiram Chirino
>Assignee: Hiram Chirino
> Attachments: ZOOKEEPER-82-b.patch, ZOOKEEPER-82-b.patch
>
>
> Proposed changes were discussed in [this mailing list 
> thread|http://mail-archives.apache.org/mod_mbox/hadoop-zookeeper-dev/200807.mbox/[EMAIL
>  PROTECTED]:
> Basic goals are: 
> * Decouple the current configuration system from the public API.  I
> see stuff like ZooKeeperServer being coupled to ServerConfig a bit.
> * Allow the use of setter injection in addition to constructor
> injection. This is the most important thing needed to let spring more
> easily configure the objects.
> * Move the main() methods out of the ZooKeeperServer class.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-111) significant cleanup of existing tests

2008-08-13 Thread Patrick Hunt (JIRA)

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

Patrick Hunt updated ZOOKEEPER-111:
---

Attachment: ZOOKEEPER-111.patch

same as last patch except I addressed the issues on windows:

1) concurrency/fs sucks for single core, creating the 64mb log files (5) in 
quorum test was taking 15seconds / server - resulting in client timeout when 
session was not established quickly enough

2) testHammer in quorumtest is taking upwards of 8 minutes to complete on my 
2ghz 1core windows machine

for 1) I decreased the log file prealloc in tests (tests only to 100k), and for 
2) I reworked testHammer to monitor the running hammer threads and look for 
them to complete rather than assume they complete within some bounded time. 
(still a max though to handle runaways)

tested on ubuntu and windows and tests are passing.


> significant cleanup of existing tests
> -
>
> Key: ZOOKEEPER-111
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-111
> Project: Zookeeper
>  Issue Type: Improvement
>  Components: tests
>Reporter: Patrick Hunt
>Assignee: Patrick Hunt
> Attachments: TEST-org.apache.zookeeper.test.AsyncTest.txt, 
> ZOOKEEPER-111.patch, ZOOKEEPER-111.patch, ZOOKEEPER-111.patch, 
> ZOOKEEPER-111.patch, ZOOKEEPER-111.patch
>
>
> About to submit a patch that significantly cleans up existing tests.
> 1) removed the need for "sleep" calls in the tests, instead I monitor the 
> status of the server (using the client socket "stat" command) which provides 
> a barrier to the client test operations. I use this barrier both when 
> starting and ending the test.
> 2) also fixed a number of problems in the tests where the test itself was 
> broken.
> 3) general cleanup and some refactoring to make it easier to write new tests, 
> maintain old, and track down issues if the test does find a problem.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-56) Add clover support to build.xml

2008-08-13 Thread Mahadev konar (JIRA)

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

Mahadev konar updated ZOOKEEPER-56:
---

  Resolution: Fixed
Hadoop Flags: [Reviewed]
  Status: Resolved  (was: Patch Available)

I just committed this. Thanks Patrick.

> Add clover support to build.xml
> ---
>
> Key: ZOOKEEPER-56
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-56
> Project: Zookeeper
>  Issue Type: Improvement
>  Components: build
>Reporter: Patrick Hunt
>Assignee: Patrick Hunt
> Fix For: 3.0.0
>
> Attachments: ZOOKEEPER-56.patch, ZOOKEEPER-56.patch
>
>
> Clover is what ASF uses for code coverage. We currently have cobertura, but 
> need to add support for clover (keep the existing cobertura support for 
> individual developers to use). Clover is run automatically by ASF Hudson.
> Hadoop has support for clover in their build.xml, port their clover related 
> targets into zookeeper build.xml

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-2) Synchronization issues in QuorumPeer and FastLeader election

2008-08-13 Thread Flavio Paiva Junqueira (JIRA)

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

Flavio Paiva Junqueira updated ZOOKEEPER-2:
---

Status: Patch Available  (was: Open)

Submitted a new patch with the problem that Pat pointed out fixed.

> Synchronization issues in QuorumPeer and FastLeader election
> 
>
> Key: ZOOKEEPER-2
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2
> Project: Zookeeper
>  Issue Type: Bug
>  Components: leaderElection
>Reporter: Benjamin Reed
>Assignee: Flavio Paiva Junqueira
> Attachments: patch-le-polish, patch-le-polish, ZOOKEEPER-2.patch
>
>
> There are a couple of cases of member variables that need to be marked 
> volatile or surrounded in a synchronization block. A couple of examples are:
> * QuorumPeer state should be synchronous
> * currentVote in QuorumPeer is marked volatile, but when it's members are 
> often accessed individually as if they were in an atomic unit. Such code 
> should be changed to get a reference to the currentVote and they access 
> members through that reference.
> * It looks like logicalClock in FastLeaderElection should be volatile. It 
> should either be fixed or commented to explain why it doesn't need to be.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (ZOOKEEPER-56) Add clover support to build.xml

2008-08-13 Thread Andrew Kornev (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-56?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12622334#action_12622334
 ] 

Andrew Kornev commented on ZOOKEEPER-56:


+1, looks good!

> Add clover support to build.xml
> ---
>
> Key: ZOOKEEPER-56
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-56
> Project: Zookeeper
>  Issue Type: Improvement
>  Components: build
>Reporter: Patrick Hunt
>Assignee: Patrick Hunt
> Fix For: 3.0.0
>
> Attachments: ZOOKEEPER-56.patch, ZOOKEEPER-56.patch
>
>
> Clover is what ASF uses for code coverage. We currently have cobertura, but 
> need to add support for clover (keep the existing cobertura support for 
> individual developers to use). Clover is run automatically by ASF Hudson.
> Hadoop has support for clover in their build.xml, port their clover related 
> targets into zookeeper build.xml

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: [Zookeeper-user] FW: Client Connect Exceptions - unit tests fail

2008-08-13 Thread Patrick Hunt

Feel free to update the "poweredby" page:

http://wiki.apache.org/hadoop/ZooKeeper/PoweredBy

Patrick

Mahadev Konar wrote:

That's good to hear Satish!! Can you let us know what you intend to use 
Zookeeper for?

mahadev



From: Satish Bhatti [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 13, 2008 10:05 AM

To: Mahadev Konar
Subject: Re: [Zookeeper-user] FW: Client Connect Exceptions + Zookeeper Unit 
Tests fail

Hey Mahadev,

Yeah, the same Soylatte 64 bit JDK works fine on Ubuntu. I just use a Mac as my 
dev box, and I can use JDK 1.5 for that, so I think it should be fine.  If 
ZooKeeper pans out then I will probably end up using it on several hundred 
machines!  No doubt that will bring its own set of problems, but so far I like 
it a lot. :)

Satish


On Tue, Aug 12, 2008 at 2:41 PM, Mahadev Konar <[EMAIL PROTECTED]> wrote:
Hi Satish,
  This looks like a problem with your jvm 1.6 then. We use NIO framwork in Java  for receving and sending. We have seen NIO  having some bugs on some platforms. I am pretty sure that the problem you are seeing has something to do with NIO in jvm 1.6 on mac. 


Is it possible for you to use 1.5 or if not then you would have to use java 1.6 
on linux or unbuntu. We have tested with sun's jvm 1.6 on linux and ubuntu but 
not on a mac.

mahadev



On 8/12/08 1:04 PM, "Satish Bhatti" <[EMAIL PROTECTED]> wrote:
Hey Mahadev,

So it works for me now... using JDK 1.5.  That's not so cool, because the rest 
of my code uses Java 1.6.  I was using the Soylatte 64 bit JVM.

java version "1.6.0_03-p3"
Java(TM) SE Runtime Environment (build 
1.6.0_03-p3-landonf_03_feb_2008_01_32-b00)
Java HotSpot(TM) 64-Bit Server VM (build 
1.6.0_03-p3-landonf_03_feb_2008_01_32-b00, mixed mode)

 9.4.0 Darwin Kernel Version 9.4.0: Mon Jun  9 19:30:53 PDT 2008; 
root:xnu-1228.5.20~1/RELEASE_I386 i386 i386

Satish


On Mon, Aug 11, 2008 at 10:02 AM, Mahadev Konar <[EMAIL PROTECTED]> wrote:
Hi Satish,
  This does sound a little weird since it works perfectly on my mac.  Here is my mac config-- 


9.4.0 Darwin Kernel Version 9.4.0: M

And java 


java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-237)
Java HotSpot(TM) Client VM (build 1.5.0_13-119, mixed mode, sharing)


Whats your config?

mahadev



On 8/8/08 11:16 AM, "Satish Bhatti" <[EMAIL PROTECTED]  
> wrote:
Hey Mahadev,

OK, so I downloaded the latest version from trunk, and applied the patch.  Here 
is what I get:

CLIENT
---
scbmac:~/zookeeper $ java -cp zookeeper-dev.jar:src/java/lib/log4j-1.2.15.jar:conf org.apache.zookeeper.ZooKeeper 127.0.0.1:2181    
2008-08-08 10:59:22,025 - INFO  [SendThread:[EMAIL PROTECTED] - Attempting connection to server /127.0.0.1:2181    
2008-08-08 10:59:22,029 - INFO  [SendThread:[EMAIL PROTECTED] - Priming connection to java.nio.channels.SocketChannel[connected local=/127.0.0.1:65246     remote=/127.0.0.1:2181    ]



2008-08-08 10:59:22,032 - INFO  [SendThread:[EMAIL PROTECTED] - Server 
connection successful



c2008-08-08 10:59:25,365 - WARN  [SendThread:[EMAIL PROTECTED] - Closing: 
java.io.IOException: TIMED OUT

at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:679)
null: 0--1
rea2008-08-08 10:59:26,779 - INFO  [SendThread:[EMAIL PROTECTED] - Attempting connection to server /127.0.0.1:2181    
2008-08-08 10:59:26,783 - INFO  [SendThread:[EMAIL PROTECTED] - Priming connection to java.nio.channels.SocketChannel[connected local=/127.0.0.1:65247     remote=/127.0.0.1:2181    ]



2008-08-08 10:59:26,785 - INFO  [SendThread:[EMAIL PROTECTED] - Server 
connection successful
2008-08-08 10:59:30,118 - WARN  [SendThread:[EMAIL PROTECTED] - Closing: 
java.io.IOException: TIMED OUT

at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:679)
null: 0--1
scbmac:~/zookeeper $ java -cp zookeeper-dev.jar:src/java/lib/log4j-1.2.15.jar:conf org.apache.zookeeper.ZooKeeper 127.0.0.1:21812008-08-08 11:02:25,041 - INFO  [SendThread:[EMAIL PROTECTED] - Attempting connection to server /127.0.0.1:2181    
2008-08-08 11:02:25,046 - INFO  [SendThread:[EMAIL PROTECTED] - Priming connection to java.nio.channels.SocketChannel[connected local=/127.0.0.1:65269     remote=/127.0.0.1:2181    ]



2008-08-08 11:02:25,049 - INFO  [SendThread:[EMAIL PROTECTED] - Server 
connection successful
2008-08-08 11:02:28,382 - WARN  [SendThread:[EMAIL PROTECTED] - Closing: 
java.io.IOException: TIMED OUT

at org.apache.zook

[jira] Updated: (ZOOKEEPER-25) FUSE for ZooKeeper

2008-08-13 Thread Mahadev konar (JIRA)

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

Mahadev konar updated ZOOKEEPER-25:
---

   Resolution: Fixed
Fix Version/s: 3.0.0
   Status: Resolved  (was: Patch Available)

I just committed this. Thanks Swee, Bart, Pat and Andrew.

> FUSE for ZooKeeper
> --
>
> Key: ZOOKEEPER-25
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-25
> Project: Zookeeper
>  Issue Type: New Feature
>Reporter: Patrick Hunt
>Assignee: Patrick Hunt
> Fix For: 3.0.0
>
> Attachments: configure.ac.patch, ZOOKEEPER-25.patch.gz, 
> ZOOKEEPER-25_2.patch
>
>
> Moved from SourceForge to Apache.
> http://sourceforge.net/tracker/index.php?func=detail&aid=1873981&group_id=209147&atid=1008547

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-25) FUSE for ZooKeeper

2008-08-13 Thread Mahadev konar (JIRA)

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

Mahadev konar updated ZOOKEEPER-25:
---

Attachment: ZOOKEEPER-25_2.patch

this patch has changes with authors.txt removed and changelog cleaned up./

> FUSE for ZooKeeper
> --
>
> Key: ZOOKEEPER-25
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-25
> Project: Zookeeper
>  Issue Type: New Feature
>Reporter: Patrick Hunt
>Assignee: Patrick Hunt
> Attachments: configure.ac.patch, ZOOKEEPER-25.patch.gz, 
> ZOOKEEPER-25_2.patch
>
>
> Moved from SourceForge to Apache.
> http://sourceforge.net/tracker/index.php?func=detail&aid=1873981&group_id=209147&atid=1008547

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



RE: [Zookeeper-user] FW: Client Connect Exceptions - unit tests fail

2008-08-13 Thread Mahadev Konar
That's good to hear Satish!! Can you let us know what you intend to use 
Zookeeper for?

mahadev



From: Satish Bhatti [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 13, 2008 10:05 AM
To: Mahadev Konar
Subject: Re: [Zookeeper-user] FW: Client Connect Exceptions + Zookeeper Unit 
Tests fail

Hey Mahadev,

Yeah, the same Soylatte 64 bit JDK works fine on Ubuntu. I just use a Mac as my 
dev box, and I can use JDK 1.5 for that, so I think it should be fine.  If 
ZooKeeper pans out then I will probably end up using it on several hundred 
machines!  No doubt that will bring its own set of problems, but so far I like 
it a lot. :)

Satish


On Tue, Aug 12, 2008 at 2:41 PM, Mahadev Konar <[EMAIL PROTECTED]> wrote:
Hi Satish,
  This looks like a problem with your jvm 1.6 then. We use NIO framwork in Java 
 for receving and sending. We have seen NIO  having some bugs on some 
platforms. I am pretty sure that the problem you are seeing has something to do 
with NIO in jvm 1.6 on mac. 

Is it possible for you to use 1.5 or if not then you would have to use java 1.6 
on linux or unbuntu. We have tested with sun's jvm 1.6 on linux and ubuntu but 
not on a mac.

mahadev



On 8/12/08 1:04 PM, "Satish Bhatti" <[EMAIL PROTECTED]> wrote:
Hey Mahadev,

So it works for me now... using JDK 1.5.  That's not so cool, because the rest 
of my code uses Java 1.6.  I was using the Soylatte 64 bit JVM.

java version "1.6.0_03-p3"
Java(TM) SE Runtime Environment (build 
1.6.0_03-p3-landonf_03_feb_2008_01_32-b00)
Java HotSpot(TM) 64-Bit Server VM (build 
1.6.0_03-p3-landonf_03_feb_2008_01_32-b00, mixed mode)

 9.4.0 Darwin Kernel Version 9.4.0: Mon Jun  9 19:30:53 PDT 2008; 
root:xnu-1228.5.20~1/RELEASE_I386 i386 i386

Satish


On Mon, Aug 11, 2008 at 10:02 AM, Mahadev Konar <[EMAIL PROTECTED]> wrote:
Hi Satish,
  This does sound a little weird since it works perfectly on my mac.  Here is 
my mac config-- 

9.4.0 Darwin Kernel Version 9.4.0: M

And java 

java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-237)
Java HotSpot(TM) Client VM (build 1.5.0_13-119, mixed mode, sharing)


Whats your config?

mahadev



On 8/8/08 11:16 AM, "Satish Bhatti" <[EMAIL PROTECTED]  > wrote:
Hey Mahadev,

OK, so I downloaded the latest version from trunk, and applied the patch.  Here 
is what I get:

CLIENT
---
scbmac:~/zookeeper $ java -cp 
zookeeper-dev.jar:src/java/lib/log4j-1.2.15.jar:conf 
org.apache.zookeeper.ZooKeeper 127.0.0.1:2181   
 
2008-08-08 10:59:22,025 - INFO  [SendThread:[EMAIL PROTECTED] - Attempting 
connection to server /127.0.0.1:2181   
 
2008-08-08 10:59:22,029 - INFO  [SendThread:[EMAIL PROTECTED] - Priming 
connection to java.nio.channels.SocketChannel[connected local=/127.0.0.1:65246 
    remote=/127.0.0.1:2181 
   ]


2008-08-08 10:59:22,032 - INFO  [SendThread:[EMAIL PROTECTED] - Server 
connection successful



c2008-08-08 10:59:25,365 - WARN  [SendThread:[EMAIL PROTECTED] - Closing: 
java.io.IOException: TIMED OUT
at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:679)
null: 0--1
rea2008-08-08 10:59:26,779 - INFO  [SendThread:[EMAIL PROTECTED] - Attempting 
connection to server /127.0.0.1:2181   
 
2008-08-08 10:59:26,783 - INFO  [SendThread:[EMAIL PROTECTED] - Priming 
connection to java.nio.channels.SocketChannel[connected local=/127.0.0.1:65247 
    remote=/127.0.0.1:2181 
   ]


2008-08-08 10:59:26,785 - INFO  [SendThread:[EMAIL PROTECTED] - Server 
connection successful
2008-08-08 10:59:30,118 - WARN  [SendThread:[EMAIL PROTECTED] - Closing: 
java.io.IOException: TIMED OUT
at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:679)
null: 0--1
scbmac:~/zookeeper $ java -cp 
zookeeper-dev.jar:src/java/lib/log4j-1.2.15.jar:conf 
org.apache.zookeeper.ZooKeeper 127.0.0.1:21812008-08-08 11:02:25,041 - INFO  
[SendThread:[EMAIL PROTECTED] - Attempting connection to server /127.0.0.1:2181 
   
2008-08-08 11:02:25,046 - INFO  [SendThread:[EMAIL PROTECTED] - Priming 
connection to java.nio.channels.SocketChannel[connected local=/127.0.0.1:65269 
    remote=/127.0.0.1:2181 
   ]


2008-08-08 11:02:25,049 - INFO  [SendThread:[EMAIL PROTECTED] - Server 
connection successful
2008-08-08 11:02:28,382 - WARN  [SendThread:[EMAIL PROTECTED] - Closing: 
java.io.IOException: TIMED OUT
at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:679)
null: 0--1
2008-08-08 11:02:29,506 - INFO  [SendThread:[EMA

Build failed in Hudson: ZooKeeper-trunk #52

2008-08-13 Thread Apache Hudson Server
See http://hudson.zones.apache.org/hudson/job/ZooKeeper-trunk/52/changes

--
[...truncated 17553 lines...]
[junit] Running org.apache.zookeeper.test.SyncCallTest
[junit] 2008-08-13 10:43:35,206 - INFO  [main:[EMAIL PROTECTED] - Client 
test setup
[junit] 2008-08-13 10:43:40,307 - INFO  [main:[EMAIL PROTECTED] - Client 
test setup finished
[junit] 2008-08-13 10:43:40,309 - INFO  [main:[EMAIL PROTECTED] - Starting 
ZK:Wed Aug 13 10:43:40 UTC 2008
[junit] 2008-08-13 10:43:40,324 - INFO  [SendThread:[EMAIL PROTECTED] - 
Attempting connection to server /127.0.0.1:33221
[junit] 2008-08-13 10:43:40,325 - INFO  [SendThread:[EMAIL PROTECTED] - 
Priming connection to java.nio.channels.SocketChannel[connected 
local=/127.0.0.1:39281 remote=/127.0.0.1:33221]
[junit] 2008-08-13 10:43:40,334 - WARN  [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - Connected to /127.0.0.1:39281 lastZxid 0
[junit] 2008-08-13 10:43:40,336 - WARN  [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - Creating new session 11bbba9d8ed
[junit] 2008-08-13 10:43:40,379 - WARN  [SyncThread:[EMAIL PROTECTED] - 
Finished init of 11bbba9d8ed: true
[junit] 2008-08-13 10:43:40,380 - INFO  [main:[EMAIL PROTECTED] - Beginning 
test:Wed Aug 13 10:43:40 UTC 2008
[junit] 2008-08-13 10:43:40,398 - INFO  [main:[EMAIL PROTECTED] - Submitted 
all operations:Wed Aug 13 10:43:40 UTC 2008
[junit] 2008-08-13 10:43:40,602 - INFO  [main:[EMAIL PROTECTED] - Clent 
test shutdown
[junit] 2008-08-13 10:43:40,604 - WARN  [SendThread:[EMAIL PROTECTED] - 
Closing: 
[junit] java.io.IOException: Read error rc = -1 
java.nio.DirectByteBuffer[pos=0 lim=4 cap=4]
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.doIO(ClientCnxn.java:491)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:718)
[junit] 2008-08-13 10:43:40,612 - ERROR [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - => Goodbye cruel world <==
[junit] 2008-08-13 10:43:40,613 - INFO  [main:[EMAIL PROTECTED] - Client 
test shutdown finished
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.519 sec
[junit] Running org.apache.zookeeper.test.WatcherFuncTest
[junit] 2008-08-13 10:43:41,196 - INFO  [main:[EMAIL PROTECTED] - Client 
test setup
[junit] 2008-08-13 10:43:46,287 - INFO  [main:[EMAIL PROTECTED] - Client 
test setup finished
[junit] 2008-08-13 10:43:46,304 - INFO  [SendThread:[EMAIL PROTECTED] - 
Attempting connection to server /127.0.0.1:33221
[junit] 2008-08-13 10:43:46,305 - INFO  [SendThread:[EMAIL PROTECTED] - 
Priming connection to java.nio.channels.SocketChannel[connected 
local=/127.0.0.1:39289 remote=/127.0.0.1:33221]
[junit] 2008-08-13 10:43:46,313 - WARN  [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - Connected to /127.0.0.1:39289 lastZxid 0
[junit] 2008-08-13 10:43:46,315 - WARN  [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - Creating new session 11bbba9f058
[junit] 2008-08-13 10:43:46,337 - WARN  [SyncThread:[EMAIL PROTECTED] - 
Finished init of 11bbba9f058: true
[junit] 2008-08-13 10:43:46,338 - INFO  [SendThread:[EMAIL PROTECTED] - 
Attempting connection to server /127.0.0.1:33221
[junit] 2008-08-13 10:43:46,339 - INFO  [SendThread:[EMAIL PROTECTED] - 
Priming connection to java.nio.channels.SocketChannel[connected 
local=/127.0.0.1:39290 remote=/127.0.0.1:33221]
[junit] 2008-08-13 10:43:46,340 - WARN  [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - Connected to /127.0.0.1:39290 lastZxid 0
[junit] 2008-08-13 10:43:46,341 - WARN  [NIOServerCxn.Factory:[EMAIL 
PROTECTED] - Creating new session 11bbba9f0580001
[junit] 2008-08-13 10:43:46,352 - WARN  [SyncThread:[EMAIL PROTECTED] - 
Finished init of 11bbba9f0580001: true
[junit] 2008-08-13 10:43:46,472 - INFO  [ProcessThread:[EMAIL PROTECTED] - 
Processed session termination request for id: 11bbba9f058
[junit] 2008-08-13 10:43:46,485 - WARN  [SendThread:[EMAIL PROTECTED] - 
Closing: 
[junit] java.io.IOException: Read error rc = -1 
java.nio.DirectByteBuffer[pos=0 lim=4 cap=4]
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.doIO(ClientCnxn.java:491)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:718)
[junit] 2008-08-13 10:43:46,588 - INFO  [ProcessThread:[EMAIL PROTECTED] - 
Processed session termination request for id: 11bbba9f0580001
[junit] 2008-08-13 10:43:46,609 - WARN  [SendThread:[EMAIL PROTECTED] - 
Closing: 
[junit] java.io.IOException: Read error rc = -1 
java.nio.DirectByteBuffer[pos=0 lim=4 cap=4]
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.doIO(ClientCnxn.java:491)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:718)
[junit] 2008-08-13 10:43:47,847 - INFO  [SendThread:[EMAIL PROTECTED] - 
Attempting connection to server /127.0.0.1:33221
[junit] 2008-08-13 10:43:47,848 - INFO  [SendThread:[EMAIL PROTEC