You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/07/31 20:32:52 UTC

git commit: ACCUMULO-1481 remove warning from the shell when flushing !METADATA, since it no longer applies

Updated Branches:
  refs/heads/master a3d2673b3 -> 4313860c4


ACCUMULO-1481 remove warning from the shell when flushing !METADATA, since it no longer applies


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/4313860c
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/4313860c
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/4313860c

Branch: refs/heads/master
Commit: 4313860c41520c92cf2bc9709ac5fea91f94ecd4
Parents: a3d2673
Author: Eric Newton <ec...@apache.org>
Authored: Wed Jul 31 14:32:49 2013 -0400
Committer: Eric Newton <ec...@apache.org>
Committed: Wed Jul 31 14:32:49 2013 -0400

----------------------------------------------------------------------
 .../apache/accumulo/core/util/shell/commands/FlushCommand.java | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/4313860c/core/src/main/java/org/apache/accumulo/core/util/shell/commands/FlushCommand.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/util/shell/commands/FlushCommand.java b/core/src/main/java/org/apache/accumulo/core/util/shell/commands/FlushCommand.java
index 6bfdce2..bf4c2d7 100644
--- a/core/src/main/java/org/apache/accumulo/core/util/shell/commands/FlushCommand.java
+++ b/core/src/main/java/org/apache/accumulo/core/util/shell/commands/FlushCommand.java
@@ -41,12 +41,6 @@ public class FlushCommand extends TableOperation {
   protected void doTableOp(final Shell shellState, final String tableName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException {
     shellState.getConnector().tableOperations().flush(tableName, startRow, endRow, wait);
     Shell.log.info("Flush of table " + tableName + (wait ? " completed." : " initiated..."));
-    if (tableName.equals(MetadataTable.NAME)) {
-      Shell.log.info("  May need to flush " + MetadataTable.NAME + " table multiple times.");
-      Shell.log.info("  Flushing " + MetadataTable.NAME + " causes writes to itself and");
-      Shell.log.info("  minor compactions, which also cause writes to itself.");
-      Shell.log.info("  Check the monitor web page and give it time to settle.");
-    }
   }
   
   @Override