From cb02c6841b7023208b63224635628521188ca24d Mon Sep 17 00:00:00 2001 From: Paul Baclace Date: Tue, 6 Nov 2012 15:30:46 -0800 Subject: [PATCH] removed recursive zpath listing from DruidSetup dump command. --- server/src/main/java/com/metamx/druid/utils/DruidSetup.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/src/main/java/com/metamx/druid/utils/DruidSetup.java b/server/src/main/java/com/metamx/druid/utils/DruidSetup.java index 9b96e1d88a1..6ef2432e5a7 100644 --- a/server/src/main/java/com/metamx/druid/utils/DruidSetup.java +++ b/server/src/main/java/com/metamx/druid/utils/DruidSetup.java @@ -177,10 +177,10 @@ public class DruidSetup out.println(); } } - out.println("Zookeeper znodes and zpaths for " + zkConnect + " (showing all zpaths)"); + //out.println("Zookeeper znodes and zpaths for " + zkConnect + " (showing all zpaths)"); // list all znodes // (not ideal since recursive listing starts at / instead of at baseZkPath) - zkClient.showFolders(out); + //zkClient.showFolders(out); } /** @@ -399,7 +399,7 @@ public class DruidSetup + " and should be equal to property druid.zk.paths.base\n" + " propfile: Java properties file with common properties for all services in ensemble\n" + " Notes:\n" - + " dump command makes no modifications and shows zk path listing and zk properties.\n" + + " dump command makes no modifications and shows zk properties at baseZkPath.\n" + " put command can safely be invoked more than once, will not disturb existing queues,\n" + " and properties are not cumulative.\n" + " A zookeeper can service more than one Druid ensemble if baseZkPath is distinct.\n"