[jira] Created: (ZOOKEEPER-753) log4j dependency in the pom needs to have exclusion lists

2010-04-26 Thread Kay Kay (JIRA)
log4j dependency in the pom needs to have exclusion lists
-

 Key: ZOOKEEPER-753
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-753
 Project: Zookeeper
  Issue Type: Bug
Reporter: Kay Kay
 Fix For: 3.3.1


http://repo2.maven.org/maven2/org/apache/hadoop/zookeeper/3.3.0/zookeeper-3.3.0.pom
 

The pom contains log4j dependency as itself. 

  dependency 
  groupIdlog4j/groupId 
  artifactIdlog4j/artifactId 
  version1.2.15/version 
  scopecompile/scope 
/dependency 

This is broken without an exclusion list, since the pending dependencies of 
javax.mail. etc. are not necessary for the most part. 

Please fix this along with 3.3.1 and republish new dependencies , since at its 
current state , it is usable by some projects (to host in central , say). 

Correct dependency for log4j: 


dependency 
  groupIdlog4j/groupId 
  artifactIdlog4j/artifactId 
  version1.2.15/version 
  scopecompile/scope 
  exclusions 
exclusion 
  groupIdjavax.mail/groupId 
  artifactIdmail/artifactId 
/exclusion 
exclusion 
  groupIdjavax.jms/groupId 
  artifactIdjms/artifactId 
/exclusion 
exclusion 
  groupIdcom.sun.jdmk/groupId 
  artifactIdjmxtools/artifactId 
/exclusion 
exclusion 
  groupIdcom.sun.jmx/groupId 
  artifactIdjmxri/artifactId 
/exclusion 
  /exclusions 
/dependency 


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



[jira] Updated: (ZOOKEEPER-753) log4j dependency in the pom needs to have exclusion lists

2010-04-26 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-753:
--

Fix Version/s: 3.4.0
   (was: 3.3.1)

Reassigning versions to 3.4.0 , since a workaround is available, which is 
basically to paste another dependency of the log4j exclusion in the pom along 
with zookeeper. Not pleasant, but not urgent for the next minor release. 

It seems an ivy-mvn conversion is happening in zk. Need to work on the same to 
provide a patch to incorporate this later. 

 log4j dependency in the pom needs to have exclusion lists
 -

 Key: ZOOKEEPER-753
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-753
 Project: Zookeeper
  Issue Type: Bug
Reporter: Kay Kay
 Fix For: 3.4.0


 http://repo2.maven.org/maven2/org/apache/hadoop/zookeeper/3.3.0/zookeeper-3.3.0.pom
  
 The pom contains log4j dependency as itself. 
   dependency 
   groupIdlog4j/groupId 
   artifactIdlog4j/artifactId 
   version1.2.15/version 
   scopecompile/scope 
 /dependency 
 This is broken without an exclusion list, since the pending dependencies of 
 javax.mail. etc. are not necessary for the most part. 
 Please fix this along with 3.3.1 and republish new dependencies , since at 
 its current state , it is usable by some projects (to host in central , say). 
 Correct dependency for log4j: 
 dependency 
   groupIdlog4j/groupId 
   artifactIdlog4j/artifactId 
   version1.2.15/version 
   scopecompile/scope 
   exclusions 
 exclusion 
   groupIdjavax.mail/groupId 
   artifactIdmail/artifactId 
 /exclusion 
 exclusion 
   groupIdjavax.jms/groupId 
   artifactIdjms/artifactId 
 /exclusion 
 exclusion 
   groupIdcom.sun.jdmk/groupId 
   artifactIdjmxtools/artifactId 
 /exclusion 
 exclusion 
   groupIdcom.sun.jmx/groupId 
   artifactIdjmxri/artifactId 
 /exclusion 
   /exclusions 
 /dependency 

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



[jira] Commented: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-15 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12857289#action_12857289
 ] 

Kay Kay commented on ZOOKEEPER-729:
---

Thanks Henry for committing this / Patrick for helping review this. 

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-14 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12857012#action_12857012
 ] 

Kay Kay commented on ZOOKEEPER-729:
---

so - good to go here ? 

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-13 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Attachment: ZOOKEEPER-729.patch

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-13 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Status: Open  (was: Patch Available)

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-13 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Attachment: (was: ZOOKEEPER-729.patch)

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-13 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Attachment: ZOOKEEPER-729.patch

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-13 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Status: Patch Available  (was: Open)

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-13 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12856612#action_12856612
 ] 

Kay Kay commented on ZOOKEEPER-729:
---

fyi - build # 55 is green with the latest patch. 



 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (ZOOKEEPER-739) use a simple command-line parsing library for flexibility in command-line arguments

2010-04-12 Thread Kay Kay (JIRA)
use a simple command-line parsing library for flexibility in command-line 
arguments 


 Key: ZOOKEEPER-739
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-739
 Project: Zookeeper
  Issue Type: Improvement
Reporter: Kay Kay


JOpt is being used by HBase team and very light-weight.  

http://jopt-simple.sourceforge.net/examples.html 

 jopt.version3.2/jopt.version 


mvn artifacts are available in public repositories, so integrating with ivy 
should not be an issue either. 

Check if that makes sense. 


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-12 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12856222#action_12856222
 ] 

Kay Kay commented on ZOOKEEPER-729:
---

The build seems to have failed, although the tests seem to have passed. 

http://hudson.zones.apache.org/hudson/job/Zookeeper-Patch-h1.grid.sp2.yahoo.net/51/testReport/org.apache.zookeeper/ZooKeeperTest/
   . 

Any idea why the build failed ? 


 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-12 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Status: Open  (was: Patch Available)

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-12 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12856232#action_12856232
 ] 

Kay Kay commented on ZOOKEEPER-729:
---

release audit warnings mentions about - ZookeeperTest . 

http://hudson.zones.apache.org/hudson/job/Zookeeper-Patch-h1.grid.sp2.yahoo.net/51/artifact/trunk/patchprocess/releaseAuditDiffWarnings.txt
 . 

New patch added - that hopefully addresses the issue. 

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-12 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Status: Patch Available  (was: Open)

 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-09 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Attachment: ZOOKEEPER-729.patch

1 /2 . Fixed
3. Renamed the method with BFS suffix.  Strategy of tree crawling can come in a 
subsequent patch, I guess and would be out of scope for this one. 
4.5. comments added. 
6. Left as it is . 
7. TODO-s should be out. 

ZooKeeperTest added with method - testDeleteRecursive() . 

callback for async of delete recursive needs to be more meaningful than what it 
is now.  


 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch, 
 ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

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



[jira] Commented: (ZOOKEEPER-729) Recursively delete a znode - zkCli.sh rmr /node

2010-04-08 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12855254#action_12855254
 ] 

Kay Kay commented on ZOOKEEPER-729:
---

Thanks Henry / Patrick for the review. Tests is something that I was looking to 
add, but could not find a template to start with. Will look into that a bit 
more over the w/e. 

Henry:  as far as the command args goes, please see the couple of my comments 
above. I don't have a preference with rmr / -r , but I believe some 
light-weight library would help us a lot here and in the future to be more 
flexible. Will  take care of the rest in the next patch. 


 Recursively delete a znode  - zkCli.sh rmr /node
 

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
  Components: java client
Reporter: Kay Kay
Assignee: Kay Kay
 Fix For: 3.4.0

 Attachments: ZOOKEEPER-729.patch, ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 $ ./zkCli.sh rmr /node 

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



[jira] Updated: (ZOOKEEPER-729) Recursively Delete a znode

2010-03-26 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-729:
--

Description: 
Recursively delete a given znode in zookeeper, from the command-line. 

New operation rmr added to zkclient. 

usage:

$ zkCli.sh rmr /node

  was:
Recursively delete a given znode in zookeeper, from the command-line. 

New operation rmr added to zkclient. 

Summary: Recursively Delete a znode   (was: zkCli.sh -rmr /node)

 Recursively Delete a znode 
 ---

 Key: ZOOKEEPER-729
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-729
 Project: Zookeeper
  Issue Type: New Feature
Reporter: Kay Kay
 Fix For: 3.3.1, 3.4.0

 Attachments: ZOOKEEPER-729.patch


 Recursively delete a given znode in zookeeper, from the command-line. 
 New operation rmr added to zkclient. 
 usage:
 $ zkCli.sh rmr /node

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



[jira] Created: (ZOOKEEPER-671) Lot of [tbd]-s ( missing links ? ) in the overview page

2010-02-15 Thread Kay Kay (JIRA)
Lot of [tbd]-s ( missing links ? )   in the overview page
-

 Key: ZOOKEEPER-671
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-671
 Project: Zookeeper
  Issue Type: Improvement
  Components: documentation
Reporter: Kay Kay


The zk documentation at - 
http://hadoop.apache.org/zookeeper/docs/r3.2.2/zookeeperOver.html , has quite a 
number of [tbd] in place of missing links in it. 

It would be nice to see those links fixed to add value to the documentation / 
overview. 

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



[jira] Updated: (ZOOKEEPER-672) typo nits across documentation

2010-02-15 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-672:
--

Attachment: ZOOKEEPER-672.patch

 typo nits across documentation 
 ---

 Key: ZOOKEEPER-672
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-672
 Project: Zookeeper
  Issue Type: Improvement
  Components: documentation
Affects Versions: 3.2.2
Reporter: Kay Kay
 Attachments: ZOOKEEPER-672.patch


 some typo nits across the documentation.  relevant forrest.xml files fixed. 

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



[jira] Updated: (ZOOKEEPER-672) typo nits across documentation

2010-02-15 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-672:
--

Status: Patch Available  (was: Open)

 typo nits across documentation 
 ---

 Key: ZOOKEEPER-672
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-672
 Project: Zookeeper
  Issue Type: Improvement
  Components: documentation
Affects Versions: 3.2.2
Reporter: Kay Kay
 Attachments: ZOOKEEPER-672.patch


 some typo nits across the documentation.  relevant forrest.xml files fixed. 

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



[jira] Created: (ZOOKEEPER-672) typo nits across documentation

2010-02-15 Thread Kay Kay (JIRA)
typo nits across documentation 
---

 Key: ZOOKEEPER-672
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-672
 Project: Zookeeper
  Issue Type: Improvement
  Components: documentation
Affects Versions: 3.2.2
Reporter: Kay Kay
 Attachments: ZOOKEEPER-672.patch

some typo nits across the documentation.  relevant forrest.xml files fixed. 

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



[jira] Updated: (ZOOKEEPER-655) StringBuffer - StringBuilder - conversion of references as necessary

2010-01-23 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-655:
--

Status: Patch Available  (was: Open)

 StringBuffer - StringBuilder - conversion of references as necessary
 -

 Key: ZOOKEEPER-655
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-655
 Project: Zookeeper
  Issue Type: Improvement
Reporter: Kay Kay
 Attachments: ZOOKEEPER-655.patch


 Some of the 'StringBuffer' references that do not escape the scope of the 
 method can be better typed as StringBuilder  as concurrency is not needed in 
 that case. 

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



[jira] Created: (ZOOKEEPER-656) SledgeHammer test - thread.run() deprecated

2010-01-23 Thread Kay Kay (JIRA)
SledgeHammer test - thread.run() deprecated 


 Key: ZOOKEEPER-656
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-656
 Project: Zookeeper
  Issue Type: Bug
  Components: tests
Reporter: Kay Kay
 Attachments: ZOOKEEPER-656.patch

Thread.run() used instead of Thread.start() . 

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



[jira] Updated: (ZOOKEEPER-656) SledgeHammer test - thread.run() deprecated

2010-01-23 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-656:
--

Attachment: ZOOKEEPER-656.patch

 SledgeHammer test - thread.run() deprecated 
 

 Key: ZOOKEEPER-656
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-656
 Project: Zookeeper
  Issue Type: Bug
  Components: tests
Reporter: Kay Kay
 Attachments: ZOOKEEPER-656.patch


 Thread.run() used instead of Thread.start() . 

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



[jira] Updated: (ZOOKEEPER-656) SledgeHammer test - thread.run() deprecated

2010-01-23 Thread Kay Kay (JIRA)

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

Kay Kay updated ZOOKEEPER-656:
--

Status: Patch Available  (was: Open)

 SledgeHammer test - thread.run() deprecated 
 

 Key: ZOOKEEPER-656
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-656
 Project: Zookeeper
  Issue Type: Bug
  Components: tests
Reporter: Kay Kay
 Attachments: ZOOKEEPER-656.patch


 Thread.run() used instead of Thread.start() . 

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



[jira] Commented: (ZOOKEEPER-656) SledgeHammer test - thread.run() deprecated

2010-01-23 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-656?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12804184#action_12804184
 ] 

Kay Kay commented on ZOOKEEPER-656:
---

courtesy: findbugs report 

 SledgeHammer test - thread.run() deprecated 
 

 Key: ZOOKEEPER-656
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-656
 Project: Zookeeper
  Issue Type: Bug
  Components: tests
Reporter: Kay Kay
 Attachments: ZOOKEEPER-656.patch


 Thread.run() used instead of Thread.start() . 

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



[jira] Created: (ZOOKEEPER-646) Namespace partitioning in ZK

2010-01-15 Thread Kay Kay (JIRA)
Namespace partitioning in ZK 
-

 Key: ZOOKEEPER-646
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-646
 Project: Zookeeper
  Issue Type: New Feature
Reporter: Kay Kay


Tracking JIRA for namespace partitioning in ZK 


From the mailing list (- courtesy: Mahadev / Flavio ) , discussion during Jan 
2010 - 

Hi, Mahadev said it all, we have been thinking about it for a while, but
 haven't had time to work on it. I also don't think we have a jira open for
 it; at least I couldn't find one. But, we did put together some comments:

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

 One of the main issues we have observed there is that partitioning will
 force us to change our consistency guarantees, which is far from ideal.
 However, some users seem to be ok with it, but I'm not sure we have
 agreement.

 In any case, please feel free to contribute or simply express your
 interests so that we can take them into account.

 Thanks,
 -Flavio


 On Jan 15, 2010, at 12:49 AM, Mahadev Konar wrote:

  Hi kay,
   the namespace partitioning in zookeeper has been on a back burner for a
  long time. There isnt any jira open on it. There had been some
  discussions
  on this but no real work. Flavio/Ben have had this on there minds for a
  while but no real work/proposal is out yet.
 
  May I know is this something you are looking for in production?
 
  Thanks
  mahadev


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



[jira] Commented: (ZOOKEEPER-224) Deploy ZooKeeper jars/artifacts to a Maven Repository

2010-01-02 Thread Kay Kay (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12795911#action_12795911
 ] 

Kay Kay commented on ZOOKEEPER-224:
---

Are we going to have a 3.2.1 with the artifacts published to be used. That 
would be very useful.

 Deploy ZooKeeper jars/artifacts to a Maven Repository
 -

 Key: ZOOKEEPER-224
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-224
 Project: Zookeeper
  Issue Type: Task
  Components: build
Affects Versions: 3.0.0
Reporter: Hiram Chirino
Assignee: Benjamin Reed
Priority: Critical
 Fix For: 3.3.0


 I've created the maven poms needed for the 3.0.0 release.  
 The directory structure and artifacts located at:
 http://people.apache.org/~chirino/zk-repo/
 aka
 people.apache.org:/x1/users/chirino/public_html/zk-repo
 Just need sto get GPG signed by the project KEY and deployed to:
 people.apache.org:/www/people.apache.org/repo/m2-ibiblio-rsync-repository
 Who's the current ZooKeeper release manager?

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