You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/07/08 19:09:26 UTC

[1/3] accumulo git commit: ACCUMULO-3934 Automatic formatting.

Repository: accumulo
Updated Branches:
  refs/heads/master a7021b67b -> 8dfcbc266


ACCUMULO-3934 Automatic formatting.


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

Branch: refs/heads/master
Commit: 8dfcbc2667ed1e56cad05355551ee908e887af58
Parents: ce0a31d
Author: Josh Elser <el...@apache.org>
Authored: Wed Jul 8 13:08:49 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jul 8 13:09:12 2015 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/core/client/BatchScanner.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/8dfcbc26/core/src/main/java/org/apache/accumulo/core/client/BatchScanner.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/client/BatchScanner.java b/core/src/main/java/org/apache/accumulo/core/client/BatchScanner.java
index de82d2f..494bf56 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/BatchScanner.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/BatchScanner.java
@@ -30,9 +30,8 @@ import org.apache.accumulo.core.data.Range;
  * If you want to lookup a few ranges and expect those ranges to contain a lot of data, then use the Scanner instead. Also, the Scanner will return data in
  * sorted order, this will not.
  *
- * A BatchScanner instance will use no more threads than provided in the construction of the BatchScanner
- * implementation. Multiple invocations of <code>iterator()</code> will all share the same resources of the instance.
- * A new BatchScanner instance should be created to use allocate additional threads.
+ * A BatchScanner instance will use no more threads than provided in the construction of the BatchScanner implementation. Multiple invocations of
+ * <code>iterator()</code> will all share the same resources of the instance. A new BatchScanner instance should be created to use allocate additional threads.
  */
 public interface BatchScanner extends ScannerBase {
 


[3/3] accumulo git commit: ACCUMULO-3409 Move fixed ports out of ephemeral range

Posted by el...@apache.org.
ACCUMULO-3409 Move fixed ports out of ephemeral range


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

Branch: refs/heads/master
Commit: 1c091b34911f447132836b9fa7b125a603318d3f
Parents: a7021b6
Author: Josh Elser <el...@apache.org>
Authored: Wed Jul 8 12:11:37 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jul 8 13:09:12 2015 -0400

----------------------------------------------------------------------
 INSTALL.md                                                     | 4 ++--
 core/src/main/java/org/apache/accumulo/core/conf/Property.java | 4 ++--
 docs/src/main/asciidoc/chapters/administration.txt             | 6 +++---
 docs/src/main/asciidoc/chapters/design.txt                     | 2 +-
 docs/src/main/asciidoc/chapters/troubleshooting.txt            | 4 ++--
 docs/src/main/resources/examples/README.helloworld             | 2 +-
 6 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/1c091b34/INSTALL.md
----------------------------------------------------------------------
diff --git a/INSTALL.md b/INSTALL.md
index 32f74ca..ae31de3 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -142,9 +142,9 @@ Accumulo shell.
 
     ./bin/accumulo shell -u root
 
-Use your web browser to connect the Accumulo monitor page on port 50095.
+Use your web browser to connect the Accumulo monitor page on port 9995.
 
-    http://<hostname in conf/monitor>:50095/
+    http://<hostname in conf/monitor>:9995/
 
 When finished, use the following command to stop Accumulo.
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/1c091b34/core/src/main/java/org/apache/accumulo/core/conf/Property.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
index c15dabc..cde6a9f 100644
--- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java
+++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
@@ -340,7 +340,7 @@ public enum Property {
   GC_CYCLE_START("gc.cycle.start", "30s", PropertyType.TIMEDURATION, "Time to wait before attempting to garbage collect any old files."),
   GC_CYCLE_DELAY("gc.cycle.delay", "5m", PropertyType.TIMEDURATION, "Time between garbage collection cycles. In each cycle, old files "
       + "no longer in use are removed from the filesystem."),
-  GC_PORT("gc.port.client", "50091", PropertyType.PORT, "The listening port for the garbage collector's monitor service"),
+  GC_PORT("gc.port.client", "9998", PropertyType.PORT, "The listening port for the garbage collector's monitor service"),
   GC_DELETE_THREADS("gc.threads.delete", "16", PropertyType.COUNT, "The number of threads used to delete files"),
   GC_TRASH_IGNORE("gc.trash.ignore", "false", PropertyType.BOOLEAN, "Do not use the Trash, even if it is configured."),
   GC_FILE_ARCHIVE("gc.file.archive", "false", PropertyType.BOOLEAN, "Archive any files/directories instead of moving to the HDFS trash or deleting."),
@@ -348,7 +348,7 @@ public enum Property {
 
   // properties that are specific to the monitor server behavior
   MONITOR_PREFIX("monitor.", null, PropertyType.PREFIX, "Properties in this category affect the behavior of the monitor web server."),
-  MONITOR_PORT("monitor.port.client", "50095", PropertyType.PORT, "The listening port for the monitor's http service"),
+  MONITOR_PORT("monitor.port.client", "9995", PropertyType.PORT, "The listening port for the monitor's http service"),
   MONITOR_LOG4J_PORT("monitor.port.log4j", "4560", PropertyType.PORT, "The listening port for the monitor's log4j logging collection."),
   MONITOR_BANNER_TEXT("monitor.banner.text", "", PropertyType.STRING, "The banner text displayed on the monitor page."),
   MONITOR_BANNER_COLOR("monitor.banner.color", "#c4c4c4", PropertyType.STRING, "The color of the banner text displayed on the monitor page."),

http://git-wip-us.apache.org/repos/asf/accumulo/blob/1c091b34/docs/src/main/asciidoc/chapters/administration.txt
----------------------------------------------------------------------
diff --git a/docs/src/main/asciidoc/chapters/administration.txt b/docs/src/main/asciidoc/chapters/administration.txt
index f5f16bb..1300be1 100644
--- a/docs/src/main/asciidoc/chapters/administration.txt
+++ b/docs/src/main/asciidoc/chapters/administration.txt
@@ -49,12 +49,12 @@ their value in conf/accumulo-site.xml.
 |Port | Description | Property Name
 |4445 | Shutdown Port (Accumulo MiniCluster) | n/a
 |4560 | Accumulo monitor (for centralized log display) | monitor.port.log4j
+|9995 | Accumulo HTTP monitor | monitor.port.client
 |9997 | Tablet Server | tserver.port.client
+|9998 | Accumulo GC | gc.port.client
 |9999 | Master Server | master.port.client
 |12234 | Accumulo Tracer | trace.port.client
 |42424 | Accumulo Proxy Server | n/a
-|50091 | Accumulo GC | gc.port.client
-|50095 | Accumulo HTTP monitor | monitor.port.client
 |10001 | Master Replication service | master.replication.coordinator.port
 |10002 | TabletServer Replication service | replication.receipt.service.port
 |====
@@ -434,7 +434,7 @@ when the tablets are re-hosted.
 ==== Accumulo Monitor
 The Accumulo Monitor provides an interface for monitoring the status and health of
 Accumulo components. The Accumulo Monitor provides a web UI for accessing this information at
-+http://_monitorhost_:50095/+.
++http://_monitorhost_:9995/+.
 
 Things highlighted in yellow may be in need of attention.
 If anything is highlighted in red on the monitor page, it is something that definitely needs attention.

http://git-wip-us.apache.org/repos/asf/accumulo/blob/1c091b34/docs/src/main/asciidoc/chapters/design.txt
----------------------------------------------------------------------
diff --git a/docs/src/main/asciidoc/chapters/design.txt b/docs/src/main/asciidoc/chapters/design.txt
index 34cd459..6c77cb6 100644
--- a/docs/src/main/asciidoc/chapters/design.txt
+++ b/docs/src/main/asciidoc/chapters/design.txt
@@ -175,6 +175,6 @@ grouped by tablet.  TabletServers can quickly apply the mutations from the sorte
 that are destined for the tablets they have now been assigned.
 
 TabletServer failures are noted on the Master's monitor page, accessible via
-+http://master-address:50095/monitor+.
++http://master-address:9995/monitor+.
 
 image::failure_handling.png[width=500]

http://git-wip-us.apache.org/repos/asf/accumulo/blob/1c091b34/docs/src/main/asciidoc/chapters/troubleshooting.txt
----------------------------------------------------------------------
diff --git a/docs/src/main/asciidoc/chapters/troubleshooting.txt b/docs/src/main/asciidoc/chapters/troubleshooting.txt
index cd2923c..ada0fbf 100644
--- a/docs/src/main/asciidoc/chapters/troubleshooting.txt
+++ b/docs/src/main/asciidoc/chapters/troubleshooting.txt
@@ -44,7 +44,7 @@ There's a small web server that collects information about all the
 components that make up a running Accumulo instance. It will highlight
 unusual or unexpected conditions.
 
-*A*: Point your browser to the monitor (typically the master host, on port 50095).  Is anything red or yellow?
+*A*: Point your browser to the monitor (typically the master host, on port 9995).  Is anything red or yellow?
 
 *Q*: My browser is reporting connection refused, and I cannot get to the monitor
 
@@ -65,7 +65,7 @@ from your browser.
 It is sometimes helpful to use a text-only browser to sanity-check the
 monitor while on the machine running the monitor:
 
-    $ links http://localhost:50095
+    $ links http://localhost:9995
 
 *A*: Verify that you are not firewalled from the monitor if it is running on a remote host.
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/1c091b34/docs/src/main/resources/examples/README.helloworld
----------------------------------------------------------------------
diff --git a/docs/src/main/resources/examples/README.helloworld b/docs/src/main/resources/examples/README.helloworld
index 7d41ba3..618e301 100644
--- a/docs/src/main/resources/examples/README.helloworld
+++ b/docs/src/main/resources/examples/README.helloworld
@@ -35,7 +35,7 @@ Launch a Java program that inserts data with a BatchWriter:
 
 On the accumulo status page at the URL below (where 'master' is replaced with the name or IP of your accumulo master), you should see 50K entries
 
-    http://master:50095/
+    http://master:9995/
 
 To view the entries, use the shell to scan the table:
 


[2/3] accumulo git commit: ACCUMULO-3936 Automatic formatting.

Posted by el...@apache.org.
ACCUMULO-3936 Automatic formatting.


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

Branch: refs/heads/master
Commit: ce0a31d3068f16a48c70f2db5c92ceedd0fc60fc
Parents: 1c091b3
Author: Josh Elser <el...@apache.org>
Authored: Wed Jul 8 13:08:26 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jul 8 13:09:12 2015 -0400

----------------------------------------------------------------------
 test/src/main/java/org/apache/accumulo/test/PerformanceTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/ce0a31d3/test/src/main/java/org/apache/accumulo/test/PerformanceTest.java
----------------------------------------------------------------------
diff --git a/test/src/main/java/org/apache/accumulo/test/PerformanceTest.java b/test/src/main/java/org/apache/accumulo/test/PerformanceTest.java
index 70cc906..ab652c1 100644
--- a/test/src/main/java/org/apache/accumulo/test/PerformanceTest.java
+++ b/test/src/main/java/org/apache/accumulo/test/PerformanceTest.java
@@ -19,8 +19,8 @@ package org.apache.accumulo.test;
 /**
  * Annotate integration tests which test performance-related aspects of Accumulo or are sensitive to timings and hardware capabilities.
  * <p>
- * Intended to be used with the JUnit Category annotation on integration test classes. The Category annotation should be
- * placed at the class-level. Test class names should still be suffixed with 'IT' as the rest of the integration tests.
+ * Intended to be used with the JUnit Category annotation on integration test classes. The Category annotation should be placed at the class-level. Test class
+ * names should still be suffixed with 'IT' as the rest of the integration tests.
  */
 public interface PerformanceTest {