[jira] Commented: (ZOOKEEPER-337) improve logging in leader election lookForLeader method when address resolution fails

2009-04-08 Thread Hadoop QA (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12696907#action_12696907 ] Hadoop QA commented on ZOOKEEPER-337: - +1 overall. Here are the results of testing

[jira] Commented: (ZOOKEEPER-347) zkfuse uses non-standard String

2009-04-08 Thread Hadoop QA (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-347?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12696925#action_12696925 ] Hadoop QA commented on ZOOKEEPER-347: - -1 overall. Here are the results of testing

[jira] Updated: (ZOOKEEPER-370) Fix critical problems reported by findbugs

2009-04-08 Thread Flavio Paiva Junqueira (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Flavio Paiva Junqueira updated ZOOKEEPER-370: - Status: Open (was: Patch Available) There is no hudson report after

[jira] Updated: (ZOOKEEPER-370) Fix critical problems reported by findbugs

2009-04-08 Thread Flavio Paiva Junqueira (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Flavio Paiva Junqueira updated ZOOKEEPER-370: - Status: Patch Available (was: Open) Fix critical problems reported

[jira] Created: (ZOOKEEPER-371) to implement jdiff

2009-04-08 Thread Giridharan Kesavan (JIRA)
to implement jdiff --- Key: ZOOKEEPER-371 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-371 Project: Zookeeper Issue Type: Improvement Components: build Affects Versions: 3.2.0 Environment: to

[jira] Commented: (ZOOKEEPER-347) zkfuse uses non-standard String

2009-04-08 Thread Patrick Hunt (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-347?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697080#action_12697080 ] Patrick Hunt commented on ZOOKEEPER-347: this fixes a C code gcc compiler

[jira] Updated: (ZOOKEEPER-29) Flexible quorums

2009-04-08 Thread Flavio Paiva Junqueira (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-29?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Flavio Paiva Junqueira updated ZOOKEEPER-29: Attachment: ZOOKEEPER-29.patch This new patch is partially functional.

[jira] Commented: (ZOOKEEPER-29) Flexible quorums

2009-04-08 Thread Mahadev konar (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-29?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697112#action_12697112 ] Mahadev konar commented on ZOOKEEPER-29: flavio, i just took a cursory look at

[jira] Commented: (ZOOKEEPER-370) Fix critical problems reported by findbugs

2009-04-08 Thread Hadoop QA (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697162#action_12697162 ] Hadoop QA commented on ZOOKEEPER-370: - -1 overall. Here are the results of testing

Re: Preventing SessionExpired events

2009-04-08 Thread Nitay
Also, I should mention that some of the errors Andrew was seeing are related to ZOOKEEPER-344: I see this kind of stuff: 2009-04-07 17:58:13,344 - WARN [NIOServerCxn.Factory:2181: nioserverc...@417] - Exception causing close of session 0x2208296c38e due to java.io.IOException: Read error

Re: Preventing SessionExpired events

2009-04-08 Thread Patrick Hunt
What are you running for a session timeout on your clients? Can you run with something like jvisualvm or jconsole, and watch the gc activity when the session timeouts occur? Might give you some insight. Have you tried one of the alternative GC's available in the VM?

Re: Preventing SessionExpired events

2009-04-08 Thread Patrick Hunt
This is good to know. It will allow us to try an replicate the situation, which we haven't been able to do. I'm hoping we can come up with something that we can proactively do to address this... Patrick Nitay wrote: Also, I should mention that some of the errors Andrew was seeing are

[jira] Commented: (ZOOKEEPER-29) Flexible quorums

2009-04-08 Thread Flavio Paiva Junqueira (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-29?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697182#action_12697182 ] Flavio Paiva Junqueira commented on ZOOKEEPER-29: - Mahadev, I'm ok with

Re: Preventing SessionExpired events

2009-04-08 Thread Nitay
The default session timeout in HBase is currently 10 seconds. Bumping it up to 30 and 60 reduced SessionExpired exceptions, according to Andrew. I believe Andrew did run it under jconsole. He was also tuning GC parameters. He mentioned running using incremental garbage collector

Re: Preventing SessionExpired events

2009-04-08 Thread Mahadev Konar
Nitay, Thanks for sending us the info. We have experienced such gc problem in our HDFS (hadoop file system) setups. The gc had been quite a problem for us with the Namenode (hadoop hdfs) process. We have seen the namenode just stalling for minutes doing garbage collection. We currently run the

Re: Preventing SessionExpired events

2009-04-08 Thread Joey Echeverria
Nitay is correct about the native threads. Using the pure Java API, the garbage collector will occasionally pause other Java threads to do a full mark and sweep. Even switching to the concurrent collector only delays the problem. The issues is mixing a high throughput application (HBase) with a

[jira] Commented: (ZOOKEEPER-29) Flexible quorums

2009-04-08 Thread Stu Hood (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-29?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697220#action_12697220 ] Stu Hood commented on ZOOKEEPER-29: --- Two comments: This ticket seems to overlap

[jira] Updated: (ZOOKEEPER-347) zkfuse uses non-standard String

2009-04-08 Thread Mahadev konar (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mahadev konar updated ZOOKEEPER-347: Resolution: Fixed Hadoop Flags: [Reviewed] Status: Resolved (was: Patch

RE: Preventing SessionExpired events

2009-04-08 Thread Benjamin Reed
I'm curious about your session scenario. If your servers can hang for X seconds without a problem and Y is your session timeout, why would you set Y X? In your case if you set your session timeout to 5 secs for example, but your server can hang for 20 seconds doing GC, your clients cannot

[jira] Commented: (ZOOKEEPER-78) added a high level protocol/feature - for easy Leader Election or exclusive Write Lock creation

2009-04-08 Thread Patrick Hunt (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697277#action_12697277 ] Patrick Hunt commented on ZOOKEEPER-78: --- These comments are relative to the java

[jira] Commented: (ZOOKEEPER-369) remove multiple configs in server/quorums.

2009-04-08 Thread Patrick Hunt (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12697294#action_12697294 ] Patrick Hunt commented on ZOOKEEPER-369: It would be great if we could ping the