[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-04-26 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new cec1eb0a Automatic Site Publish by Buildbot
cec1eb0a is described below

commit cec1eb0a84a0ef0f372ca63302945c3f1d15f5ac
Author: buildbot 
AuthorDate: Wed Apr 26 16:57:21 2023 +

Automatic Site Publish by Buildbot
---
 output/Dockerfile | 34 ++
 output/README.md  | 44 
 output/feed.xml   |  4 ++--
 3 files changed, 80 insertions(+), 2 deletions(-)

diff --git a/output/Dockerfile b/output/Dockerfile
new file mode 100644
index ..249f779c
--- /dev/null
+++ b/output/Dockerfile
@@ -0,0 +1,34 @@
+# This Dockerfile builds an ruby environment for jekyll that empowers
+# making updates to the accumulo website without requiring the dev
+# to maintain a local ruby development environment.
+
+FROM ruby:2.7.8-slim-bullseye as base
+
+RUN apt-get update && apt-get install -y --no-install-recommends \
+build-essential \
+git \
+curl \
+&& rm -rf /var/lib/apt/lists/*
+
+WORKDIR /mnt/workdir
+
+# Copy over the Gemfiles so that all build dependencies are installed
+# during the docker build. At runtime, these will be available to Jekyll
+# from the mounted directory. But that's not available during the
+# docker build, so we need to copy them in to pre-install the Gems
+
+COPY Gemfile ./Gemfile
+COPY Gemfile.lock ./Gemfile.lock
+
+# Gems will be installed under GEM_HOME which is set by the ruby image.
+# See https://hub.docker.com/_/ruby for details.
+
+RUN gem update --system && bundle install && gem cleanup
+
+ENV HOST=0.0.0.0
+ENV PORT=4000
+
+EXPOSE $PORT
+
+# Configure the default command to build from the mounted repository.
+CMD bundle exec jekyll serve --force-polling -H $HOST -P $PORT
diff --git a/output/README.md b/output/README.md
index b064a77a..65e2cf45 100644
--- a/output/README.md
+++ b/output/README.md
@@ -108,6 +108,50 @@ HTML styled "just right".
 Jekyll will print a local URL where the site can be viewed (usually,
 [http://0.0.0.0:4000/](http://0.0.0.0:4000/)).
 
+### Testing using Docker environment 
+
+A containerized development environment can be built using the local
+Dockerfile.
+
+
+A containerized development environment can be built using the local
+Dockerfile. You can build it with the following command:
+
+```bash
+docker build -t webdev .
+```
+
+This action will produce a `webdev` image, with all the website's build
+prerequisites preinstalled. When a container is run from this image, it
+will perform a `jekyll serve` command with the polling option enabled,
+so that changes you make locally will be immediately reflected.
+
+When you run a container using the webdev image, your current working
+directory will be mounted, so that any changes made by the build inside
+the container will be reflected in your local workspace. This is done with
+the `-v` flag. To run the container, execute the following command:
+
+```bash
+docker run -d -v "$PWD":/mnt/workdir -p 4000:4000 webdev
+```
+
+While this container is running, you will be able to review the rendered 
website
+in your local browser at [http://127.0.0.1:4000/](http://127.0.0.1:4000/).
+
+
+Shell access can be obtained by overriding the default container command.
+
+This is useful for adding new gems, or modifying the Gemfile.lock for updating
+existing dependencies.
+
+When using shell access the local directory must be mounted to ensure
+the Gemfile and Gemfile.lock updates are reflected in your local
+environment so you can create a commit and submit a PR.
+
+```bash
+docker run -v "$PWD":/mnt/workdir -it webdev /bin/bash
+```
+
 ## Publishing
 
 ### Automatic Staging
diff --git a/output/feed.xml b/output/feed.xml
index f39c0391..284af567 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 17 Apr 2023 16:30:18 +
-Mon, 17 Apr 2023 16:30:18 +
+Wed, 26 Apr 2023 16:57:14 +
+Wed, 26 Apr 2023 16:57:14 +
 Jekyll v4.3.1
 
 



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-04-17 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 51632131 Automatic Site Publish by Buildbot
51632131 is described below

commit 51632131bda49127572fc01f5a98d565c287b404
Author: buildbot 
AuthorDate: Mon Apr 17 16:30:26 2023 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/development/iterators.html | 16 ++--
 output/feed.xml|  4 ++--
 output/search_data.json|  2 +-
 3 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/output/docs/2.x/development/iterators.html 
b/output/docs/2.x/development/iterators.html
index ada4e834..442082c1 100644
--- a/output/docs/2.x/development/iterators.html
+++ b/output/docs/2.x/development/iterators.html
@@ -832,12 +832,16 @@ always see all intended data that is generated.
 
 Teardown
 
-As mentioned, instance of Iterators may be torn down inside of the server 
transparently. When a complex
-collection of iterators is performing some advanced functionality, they will 
not be torn down until a Key-Value
-pair is returned out of the “stack” of Iterators (and added into the batch of 
Key-Values to be returned
-to the caller). Being torn-down is equivalent to a new instance of the 
Iterator being creating and deepCopy
-being called on the new instance with the old instance provided as the 
argument to deepCopy. 
References
-to the old instance are removed and the object is lazily garbage collected by 
the JVM.
+Instances of iterators may be torn down inside the server transparently. 
When a complex collection
+of iterators is performing advanced functionality, they will not be torn down 
until a Key-Value pair
+is returned out of the “stack” of iterators (and added into the batch of 
Key-Values to be returned
+to the caller), or the iterator is yielded.
+
+When an iterator is torn down, the entire stack is dropped and no state is 
preserved. Only the last
+key returned (or the yielded position), original options, and seek range are 
retained. When the scan
+is continued, the iterator stack is rebuilt and re-initialized using the 
original options. The stack
+is then seeked with the original range, and the start key is replaced by the 
last key returned (or
+the yielded position), non-inclusive.
 
 Compaction-time Iterators
 
diff --git a/output/feed.xml b/output/feed.xml
index 9caa23df..f39c0391 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 07 Apr 2023 13:25:00 +
-Fri, 07 Apr 2023 13:25:00 +
+Mon, 17 Apr 2023 16:30:18 +
+Mon, 17 Apr 2023 16:30:18 +
 Jekyll v4.3.1
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 43095f00..2c424e3a 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -114,7 +114,7 @@
   
 "docs-2-x-development-iterators": {
   "title": "Iterators",
-  "content": "Accumulo SortedKeyValueIterators, commonly referred to as 
Iterators for short, are server-side programming constructsthat allow users to 
implement custom retrieval or computational purpose within Accumulo 
TabletServers.  The name rightlybrings forward similarities to the Java 
Iterator interface; however, Accumulo Iterators are more complex than 
JavaIterators. Notably, in addition to the expected methods to retrieve the 
current element and advance to the next elementin t [...]
+  "content": "Accumulo SortedKeyValueIterators, commonly referred to as 
Iterators for short, are server-side programming constructsthat allow users to 
implement custom retrieval or computational purpose within Accumulo 
TabletServers.  The name rightlybrings forward similarities to the Java 
Iterator interface; however, Accumulo Iterators are more complex than 
JavaIterators. Notably, in addition to the expected methods to retrieve the 
current element and advance to the next elementin t [...]
   "url": " /docs/2.x/development/iterators",
   "categories": "development"
 },



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-04-07 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new b5c6def6 Automatic Site Publish by Buildbot
b5c6def6 is described below

commit b5c6def61e60293ee26ee006471b915f9574f1e3
Author: buildbot 
AuthorDate: Fri Apr 7 13:25:07 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 output/how-to-contribute/index.html | 3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index fc15ac47..9caa23df 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 03 Apr 2023 00:05:05 +
-Mon, 03 Apr 2023 00:05:05 +
+Fri, 07 Apr 2023 13:25:00 +
+Fri, 07 Apr 2023 13:25:00 +
 Jekyll v4.3.1
 
 
diff --git a/output/how-to-contribute/index.html 
b/output/how-to-contribute/index.html
index 7b81d04f..85407aa7 100644
--- a/output/how-to-contribute/index.html
+++ b/output/how-to-contribute/index.html
@@ -147,6 +147,7 @@ there are other ways to contribute to Accumulo:
 
 
   communicate on one of the mailing 
lists
+  view/draft/comment on designs or other docs in https://cwiki.apache.org/confluence/display/ACCUMULO/Apache+Accumulo+Home;>Confluence
   review https://github.com/apache/accumulo/pulls;>pull 
requests
   verify and test new releases
   update the https://github.com/apache/accumulo-website;>Accumulo 
website and documentation
@@ -248,6 +249,8 @@ there are other ways to contribute to Accumulo:
 
   Build resources - https://builds.apache.org/view/A/view/Accumulo;>Jenkins
   Releases - Making 
a release, Verifying a 
release
+  Confluence - https://cwiki.apache.org/confluence/display/ACCUMULO/Apache+Accumulo+Home;>Accumulo
 Confluence Space provides a collaboration space for design documents. If 
you require write
+access, please contact us with your Confluence 
username and request details.
 
 
 For more information, see the contributor 
guide.



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-04-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 979024d2 Automatic Site Publish by Buildbot
979024d2 is described below

commit 979024d286b0b2d5d26b3060526ae3c086eba6db
Author: buildbot 
AuthorDate: Mon Apr 3 00:05:12 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/people/index.html | 10 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 3dec89ab..fc15ac47 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 31 Mar 2023 19:50:01 +
-Fri, 31 Mar 2023 19:50:01 +
+Mon, 03 Apr 2023 00:05:05 +
+Mon, 03 Apr 2023 00:05:05 +
 Jekyll v4.3.1
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 9754fd38..8091e661 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -142,9 +142,9 @@
   
   
 
-// convert Apache IDs for PMC members into links to their Apache profile on 
people.apache.org
+// convert Apache IDs for committers into links to their Apache profile on 
people.apache.org
 $(function() {
-  $('table#pmc tbody tr td:first-child').each(function(i, obj) {
+  $('table.committers tbody tr td:first-child').each(function(i, obj) {
 var apacheid = $(obj).text();
 $(obj).html('https://people.apache.org/phonebook.html?uid=' + 
apacheid + '">' + apacheid + '');
   });
@@ -152,9 +152,9 @@ $(function() {
 
 
 
-PMC and Committers
+Committers and Current PMC 
Members
 
-
+
   
 
   apache id
@@ -397,7 +397,7 @@ $(function() {
 
 Committers Only (PMC Emeritus)
 
-
+
   
 
   apache id



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-03-31 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9d15a36f Automatic Site Publish by Buildbot
9d15a36f is described below

commit 9d15a36ff8fbfbe208c3d01f502b56affce74fbd
Author: buildbot 
AuthorDate: Fri Mar 31 19:50:08 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/people/index.html | 39 +++
 2 files changed, 29 insertions(+), 14 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index d207c773..3dec89ab 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 21 Mar 2023 13:14:18 +
-Tue, 21 Mar 2023 13:14:18 +
+Fri, 31 Mar 2023 19:50:01 +
+Fri, 31 Mar 2023 19:50:01 +
 Jekyll v4.3.1
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 2ee9c8f5..9754fd38 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -188,12 +188,6 @@ $(function() {
   https://www.atg-us.com;>Applied Technology Group
   https://www.timeanddate.com/time/zones/et;>ET
 
-
-  arvindsh
-  Arvind Shyamsundar
-  https://www.microsoft.com;>Microsoft
-  https://www.timeanddate.com/time/zones/pt;>PT
-
 
   bhavanki
   Bill Havanki
@@ -332,12 +326,6 @@ $(function() {
   https://www.cloudera.com;>Cloudera
   https://www.timeanddate.com/time/zones/et;>ET
 
-
-  medined
-  David Medinets
-   
-   
-
 
   mjwall
   Michael Wall
@@ -407,6 +395,33 @@ $(function() {
   
 
 
+Committers Only (PMC Emeritus)
+
+
+  
+
+  apache id
+  name
+  organization
+  timezone
+
+  
+  
+
+  arvindsh
+  Arvind Shyamsundar
+  https://www.microsoft.com;>Microsoft
+  https://www.timeanddate.com/time/zones/pt;>PT
+
+
+  medined
+  David Medinets
+   
+   
+
+  
+
+
 Contributors
 
 GitHub also has a https://github.com/apache/accumulo/graphs/contributors;>contributor 
list based on commits.



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-03-21 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 1d7f9ac7 Automatic Site Publish by Buildbot
1d7f9ac7 is described below

commit 1d7f9ac701a560b6ec823b6565a015dadb7f2870
Author: buildbot 
AuthorDate: Tue Mar 21 13:14:26 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 3e6c2ccf..d207c773 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 03 Mar 2023 15:38:06 +
-Fri, 03 Mar 2023 15:38:06 +
+Tue, 21 Mar 2023 13:14:18 +
+Tue, 21 Mar 2023 13:14:18 +
 Jekyll v4.3.1
 
 
diff --git a/output/people/index.html b/output/people/index.html
index e9d00fc3..2ee9c8f5 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -317,7 +317,7 @@ $(function() {
 
   kturner
   https://github.com/keith-turner;>Keith Turner
-  https://www.microsoft.com;>Microsoft
+  https://wrench.io;>Wrench.io, LLC
   https://www.timeanddate.com/time/zones/et;>ET
 
 



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-03-03 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 25dd01c0 Automatic Site Publish by Buildbot
25dd01c0 is described below

commit 25dd01c08eb3027da9117823a450318892950d19
Author: buildbot 
AuthorDate: Fri Mar 3 15:38:14 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.1/index.html | 1 +
 output/search_data.json  | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 7ef1a75c..3e6c2ccf 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 23 Feb 2023 13:41:20 +
-Thu, 23 Feb 2023 13:41:20 +
+Fri, 03 Mar 2023 15:38:06 +
+Fri, 03 Mar 2023 15:38:06 +
 Jekyll v4.3.1
 
 
diff --git a/output/release/accumulo-2.1.1/index.html 
b/output/release/accumulo-2.1.1/index.html
index d72e361a..c7d53fb2 100644
--- a/output/release/accumulo-2.1.1/index.html
+++ b/output/release/accumulo-2.1.1/index.html
@@ -207,6 +207,7 @@ that will improve the underlying implementation when 
resolved.
   https://github.com/apache/accumulo/issues/3023;>#3023, https://github.com/apache/accumulo/issues/3053;>#3053 Prevent 
excessive logging when an ExternalCompaction
 is cancelled for cause and around the ThreadPools
   https://github.com/apache/accumulo/issues/3057;>#3057 
Modified Monitor to direct DataTable errors to console
+  https://github.com/apache/accumulo/issues/3205;>#3205 
Support writing cluster config parser output to a file
 
 
 Bug Fixes
diff --git a/output/search_data.json b/output/search_data.json
index bee35537..43095f00 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -334,7 +334,7 @@
   
 "release-accumulo-2-1-1": {
   "title": "Apache Accumulo 2.1.1",
-  "content": "AboutApache Accumulo 2.1.1 is a patch release of the 2.1.0 
LTM line.Major ImprovementsMinor Improvements  #3180 Enable users to provide 
per-volume Hadoop Filesystem configurationoverrides via the Accumulo 
configuration. Hadoop Filesystem objects are configuredby the standard Hadoop 
mechanisms (default configuration, core-site.xml,hdfs-site.xml, etc.), but 
these configuration files don’t allow for the sameproperty to be specified with 
different values for different names [...]
+  "content": "AboutApache Accumulo 2.1.1 is a patch release of the 2.1.0 
LTM line.Major ImprovementsMinor Improvements  #3180 Enable users to provide 
per-volume Hadoop Filesystem configurationoverrides via the Accumulo 
configuration. Hadoop Filesystem objects are configuredby the standard Hadoop 
mechanisms (default configuration, core-site.xml,hdfs-site.xml, etc.), but 
these configuration files don’t allow for the sameproperty to be specified with 
different values for different names [...]
   "url": " /release/accumulo-2.1.1/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-02-23 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 4df3a3e9 Automatic Site Publish by Buildbot
4df3a3e9 is described below

commit 4df3a3e9dd3a319e5f8a014b9c5790beba312fa8
Author: buildbot 
AuthorDate: Thu Feb 23 13:41:27 2023 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/compaction.html | 2 +-
 output/feed.xml| 4 ++--
 output/search_data.json| 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/output/docs/2.x/administration/compaction.html 
b/output/docs/2.x/administration/compaction.html
index 3be8f80a..f0f85515 100644
--- a/output/docs/2.x/administration/compaction.html
+++ b/output/docs/2.x/administration/compaction.html
@@ -482,7 +482,7 @@ of this documentation only applies to Accumulo 2.1 and 
later.
 config -s 
'tserver.compaction.major.service.cs1.planner.opts.executors=[{"name":"small","type":"internal","maxSize":"16M","numThreads":8},{"name":"medium","type":"internal","maxSize":"128M","numThreads":4},{"name":"large","type":"internal","numThreads":2}]'
 config -s 
tserver.compaction.major.service.cs2.planner=org.apache.accumulo.core.spi.compaction.DefaultCompactionPlanner
 config -s 
'tserver.compaction.major.service.cs2.planner.opts.executors=[{"name":"small","type":"internal","maxSize":"16M","numThreads":4},{"name":"medium","type":"internal","maxSize":"128M","numThreads":2},{"name":"large","type":"internal","numThreads":1}]'
-config -s tserver.compaction.major.service.cs2.throughput=40M
+config -s tserver.compaction.major.service.cs2.rate.limit=40M
 config -t ci -s 
table.compaction.dispatcher=org.apache.accumulo.core.spi.compaction.SimpleCompactionDispatcher
 config -t ci -s table.compaction.dispatcher.opts.service=cs1
 config -t ci -s table.compaction.dispatcher.opts.service.user=cs2
diff --git a/output/feed.xml b/output/feed.xml
index cc8f6ebe..7ef1a75c 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 16 Feb 2023 16:13:18 +
-Thu, 16 Feb 2023 16:13:18 +
+Thu, 23 Feb 2023 13:41:20 +
+Thu, 23 Feb 2023 13:41:20 +
 Jekyll v4.3.1
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 9a6a2df9..bee35537 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -9,7 +9,7 @@
   
 "docs-2-x-administration-compaction": {
   "title": "Compactions",
-  "content": "In Accumulo each tablet has a list of files associated with 
it.  As data iswritten to Accumulo it is buffered in memory. The data buffered 
in memory iseventually written to files in DFS on a per-tablet basis. Files can 
also beadded to tablets directly by bulk import. In the background tablet 
servers runmajor compactions to merge multiple files into one. The tablet 
server has todecide which tablets to compact and which files within a tablet to 
compact.Within each tablet  [...]
+  "content": "In Accumulo each tablet has a list of files associated with 
it.  As data iswritten to Accumulo it is buffered in memory. The data buffered 
in memory iseventually written to files in DFS on a per-tablet basis. Files can 
also beadded to tablets directly by bulk import. In the background tablet 
servers runmajor compactions to merge multiple files into one. The tablet 
server has todecide which tablets to compact and which files within a tablet to 
compact.Within each tablet  [...]
   "url": " /docs/2.x/administration/compaction",
   "categories": "administration"
 },



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-02-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new f4932958 Automatic Site Publish by Buildbot
f4932958 is described below

commit f4932958c7bff3ea3f6e0c47601383c9074b2099
Author: buildbot 
AuthorDate: Thu Feb 16 16:13:25 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 4d1bfc4f..cc8f6ebe 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 14 Feb 2023 20:20:19 +
-Tue, 14 Feb 2023 20:20:19 +
+Thu, 16 Feb 2023 16:13:18 +
+Thu, 16 Feb 2023 16:13:18 +
 Jekyll v4.3.1
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 48015eb6..e9d00fc3 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -525,6 +525,11 @@ $(function() {
    
   https://www.timeanddate.com/time/zones/et;>ET
 
+
+  Daniel Roberts
+  https://sentinel-corp.com;>Sentinel Solutions
+  https://www.timeanddate.com/time/zones/et;>ET
+
 
   Dave Wang
   https://www.cloudera.com;>Cloudera



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-02-14 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 945824c0 Automatic Site Publish by Buildbot
945824c0 is described below

commit 945824c01d25bca158a6c8a4193bf254e6d46c78
Author: buildbot 
AuthorDate: Tue Feb 14 20:20:26 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml|  4 +-
 output/release/accumulo-1.10.2/index.html  |  4 +-
 .../index.html | 49 ++
 output/release/accumulo-2.0.0-alpha-1/index.html   |  4 +-
 output/release/accumulo-2.1.1/index.html   | 22 ++
 .../{accumulo-2.1.1 => accumulo-3.0.0}/index.html  | 79 ++
 output/release/index.html  | 26 +++
 output/search_data.json| 18 -
 8 files changed, 129 insertions(+), 77 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index c48659fb..4d1bfc4f 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 06 Feb 2023 19:30:10 +
-Mon, 06 Feb 2023 19:30:10 +
+Tue, 14 Feb 2023 20:20:19 +
+Tue, 14 Feb 2023 20:20:19 +
 Jekyll v4.3.1
 
 
diff --git a/output/release/accumulo-1.10.2/index.html 
b/output/release/accumulo-1.10.2/index.html
index cafa5e3a..0e278a0e 100644
--- a/output/release/accumulo-1.10.2/index.html
+++ b/output/release/accumulo-1.10.2/index.html
@@ -151,7 +151,7 @@
   
 
   
-Apache 
Accumulo 2.0.0-alpha-1
+Apache Accumulo 
1.10.3
   
 
 
@@ -236,7 +236,7 @@ applicable to this version.
   
 
   
-Apache 
Accumulo 2.0.0-alpha-1
+Apache Accumulo 
1.10.3
   
 
 
diff --git a/output/release/accumulo-1.10.2/index.html 
b/output/release/accumulo-1.10.3/index.html
similarity index 79%
copy from output/release/accumulo-1.10.2/index.html
copy to output/release/accumulo-1.10.3/index.html
index cafa5e3a..d9237362 100644
--- a/output/release/accumulo-1.10.2/index.html
+++ b/output/release/accumulo-1.10.3/index.html
@@ -25,7 +25,7 @@
 https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
 
 
-Apache Accumulo 1.10.2
+Apache Accumulo 1.10.3
 
 https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
 https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
@@ -140,14 +140,14 @@
 
 
   
-  Apache Accumulo 1.10.2
+  Apache Accumulo 1.10.3
   
   
 
-13 Feb 2022
+14 Feb 2023
 
   
-Apache Accumulo 1.10.1
+Apache Accumulo 1.10.2
   
 
   
@@ -156,6 +156,11 @@
 
 
 
+
+  These are draft release notes for a future release of 
Accumulo!
+  Please view the 
latest release notes.
+
+
 
 
 
@@ -165,13 +170,13 @@
 
 About
 
-Apache Accumulo 1.10.2 is a bug fix release of the 1.10 LTM release 
line.
+Apache Accumulo 1.10.3 is a bug fix release of the 1.10 LTM release 
line.
 
-These release notes are highlights of the changes since 1.10.1. The full
+These release notes are highlights of the changes since 1.10.2. The full
 detailed changes can be seen in the git history. If anything important is
 missing from this list, please contact us to have it 
included.
 
-Users of 1.10.1 or earlier are encouraged to upgrade to 1.10.2, as this is a
+Users of 1.10.2 or earlier are encouraged to upgrade to 1.10.3, as this is a
 continuation of the 1.10 LTM release line with bug fixes and improvements, and
 it supersedes any prior 1.x version. Users are also encouraged to consider
 migrating to a 2.x version when one that is suitable for their needs becomes
@@ -184,31 +189,19 @@ issues similar to https://issues.apache.org/jira/projects/VFS/issues/VF
 
 Major Improvements
 
-This release bundles https://reload4j.qos.ch/;>reload4j (https://github.com/apache/accumulo/issues/2458;>#2458) in
-the convenience binary and uses that instead of log4j 1.2. This is to make it
-easier for users to avoid the many CVEs that apply to log4j 1.2, which is no
-longer being maintained. Accumulo 2.x versions will have already switched to
-use the latest log4j 2. However, doing so required making some breaking API
-changes and other substantial changes, so that can’t be done for Accumulo 1.10.
-Using reload4j instead, was deemed to be a viable interim solution until
-Accumulo 2.x.
-
 Other Improvements
 
 
-  https://github.com/apache/accumulo/issues/1808;>#1808 
Re-throw 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-02-06 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 5cea24d0 Automatic Site Publish by Buildbot
5cea24d0 is described below

commit 5cea24d072da1f2ce1e539373ef79ba1fc80dc43
Author: buildbot 
AuthorDate: Mon Feb 6 19:30:17 2023 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/fate.html | 10 +-
 output/feed.xml  |  4 ++--
 output/search_data.json  |  2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/output/docs/2.x/administration/fate.html 
b/output/docs/2.x/administration/fate.html
index f0518a11..528c20c7 100644
--- a/output/docs/2.x/administration/fate.html
+++ b/output/docs/2.x/administration/fate.html
@@ -495,9 +495,17 @@ running or the next REPO that will start on the next 
execution. The REPO with th
 For example, a command that is not completing could be blocked on the 
execution of another
 operation. Accumulo provides an Accumulo shell command to interact with 
fate.
 
-The fate shell 
command accepts a number of arguments for different functionality:
+The fate admin 
command accepts a number of arguments for different functionality:
 list/print, summary, cancel, fail, delete, dump.
 
+The command for launching the fate admin command is:
+
+ accumulo admin fate --[option]
+
+
+The Accumulo admin help command option accumulo admin -h shows the expected usage 
information for the fate and
+other admin commands.
+
 List/Print
 
 Without any additional arguments, this command will print all operations 
that still exist in
diff --git a/output/feed.xml b/output/feed.xml
index 5af5bd1c..c48659fb 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 06 Feb 2023 19:27:52 +
-Mon, 06 Feb 2023 19:27:52 +
+Mon, 06 Feb 2023 19:30:10 +
+Mon, 06 Feb 2023 19:30:10 +
 Jekyll v4.3.1
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 703028f9..b6ca2da4 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -23,7 +23,7 @@
   
 "docs-2-x-administration-fate": {
   "title": "FATE",
-  "content": "Accumulo must implement a number of distributed, multi-step 
operations to supportthe client API. Creating a new table is a simple example 
of an atomic client callwhich requires multiple steps in the implementation: 
get a unique table ID, configuredefault table permissions, populate information 
in ZooKeeper to record the table’sexistence, create directories in HDFS for the 
table’s data, etc. Implementing thesesteps in a way that is tolerant to node 
failure and other conc [...]
+  "content": "Accumulo must implement a number of distributed, multi-step 
operations to supportthe client API. Creating a new table is a simple example 
of an atomic client callwhich requires multiple steps in the implementation: 
get a unique table ID, configuredefault table permissions, populate information 
in ZooKeeper to record the table’sexistence, create directories in HDFS for the 
table’s data, etc. Implementing thesesteps in a way that is tolerant to node 
failure and other conc [...]
   "url": " /docs/2.x/administration/fate",
   "categories": "administration"
 },



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-02-06 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 010f8f92 Automatic Site Publish by Buildbot
010f8f92 is described below

commit 010f8f92e0a1197c4f0bc813073f903416c7640b
Author: buildbot 
AuthorDate: Mon Feb 6 19:27:59 2023 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/upgrading.html  |  2 ++
 output/docs/2.x/troubleshooting/tools.html | 35 ++
 output/docs/2.x/troubleshooting/zookeeper.html | 41 +-
 output/feed.xml|  4 +--
 output/search_data.json|  6 ++--
 5 files changed, 82 insertions(+), 6 deletions(-)

diff --git a/output/docs/2.x/administration/upgrading.html 
b/output/docs/2.x/administration/upgrading.html
index 919d8965..d62ece8c 100644
--- a/output/docs/2.x/administration/upgrading.html
+++ b/output/docs/2.x/administration/upgrading.html
@@ -446,7 +446,9 @@ this writing and is recommended).
   stop Accumulo 1.10 or 2.0
   prepare your installation of Accumulo 2.1 through whatever means you 
obtain the binaries and
 configure it in your environment
+  start ZooKeeper and HDFS.
   (optional - but recommended) create a ZooKeeper snapshot
+  (optional - but recommended) validate the ZooKeeper ACLs. See ZooKeeper ACLs
   (required if not using the provided scripts to start 2.1) run the RenameMasterDirInZK 
utility
   (optional) run the pre-upgrade utility to convert the configuration in 
ZooKeeper
   start Accumulo 2.1 for the first time to complete the upgrade
diff --git a/output/docs/2.x/troubleshooting/tools.html 
b/output/docs/2.x/troubleshooting/tools.html
index 40b01ce8..b8f0bf70 100644
--- a/output/docs/2.x/troubleshooting/tools.html
+++ b/output/docs/2.x/troubleshooting/tools.html
@@ -719,6 +719,7 @@ mode options:
 --print-instances
 --print-id-map
 --print-props [--system] [-ns | --namespaces list] [-t | --tables list]
+--print-acls
 
 
 mode: print instances
@@ -821,6 +822,40 @@ 
table.iterator.majc.vers=20,org.apache.accumulo.core.iterators.user.VersioningIt
 ---
 
 
+mode: print ACLs (new in 2.1.1)
+
+With 2.1.1, the zoo-info-viewer option --print-acls will print the 
ZooKeeper ACLs for all nodes under
+the /accumulo/INSTANCE_ID] path.
+
+See troubleshooting 
ZooKeeper for more information on the tool output and expected ACLs.
+
+$ accumulo zoo-info-viewer  --print-acls
+
+---
+Report Time: 2023-01-27T23:00:26.079546Z
+---
+Output format:
+ACCUMULO_PERM:OTHER_PERM path user_acls...
+
+ZooKeeper acls for instance ID: f491223b-1413-494e-b75a-c2ca018db00f
+
+ACCUMULO_OKAY:NOT_PRIVATE /accumulo/f491223b-1413-494e-b75a-c2ca018db00f 
cdrwa:accumulo, r:anyone
+ACCUMULO_OKAY:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/bulk_failed_copyq 
cdrwa:accumulo, r:anyone
+ACCUMULO_OKAY:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/bulk_failed_copyq/locks 
cdrwa:accumulo, r:anyone
+ACCUMULO_OKAY:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/compactors cdrwa:accumulo, 
r:anyone
+ACCUMULO_OKAY:PRIVATE /accumulo/f491223b-1413-494e-b75a-c2ca018db00f/config 
cdrwa:accumulo
+ACCUMULO_OKAY:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/coordinators cdrwa:accumulo, 
r:anyone
+...
+ERROR_ACCUMULO_MISSING_SOME:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/users/root/Namespaces 
r:accumulo, r:anyone
+...
+ACCUMULO_OKAY:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/wals/localhost:9997[13d35cc0004]/643b14db-b929-4570-b226-620bc5ac85ff
 cdrwa:accumulo, r:anyone
+ACCUMULO_OKAY:NOT_PRIVATE 
/accumulo/f491223b-1413-494e-b75a-c2ca018db00f/wals/localhost:9997[13d35cc0004]/ad26be2a-dc52-4e0e-8e78-8fc8c3323d51
 cdrwa:accumulo, r:anyone
+ACCUMULO_OKAY:NOT_PRIVATE /accumulo/instances cdrwa:anyone
+ACCUMULO_OKAY:NOT_PRIVATE /accumulo/instances/uno cdrwa:accumulo, r:anyone
+
+
+
+
 
 
   Find documentation for all releases in 
the archive
diff --git a/output/docs/2.x/troubleshooting/zookeeper.html 
b/output/docs/2.x/troubleshooting/zookeeper.html
index b2eabb1f..8030f051 100644
--- a/output/docs/2.x/troubleshooting/zookeeper.html
+++ b/output/docs/2.x/troubleshooting/zookeeper.html
@@ -430,7 +430,46 @@
 
 
 
-ACL errors during upgrade
+ZooKeeper ACLs
+
+Accumulo requires full access to nodes in ZooKeeper under the /accumulo 
path.  The ACLs can be examined using the
+ZooKeeper cli getAcl 
and modified with setAcl commands.  With 2.1.1, the zoo-info-viewer 
utility has an option
+that will print all of the ACLs for the nodes under /accumulo/[INSTANCE_ID] 
(See [zoo-info-viewer]).
+To run the utility, only ZooKeeper needs to be 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-12-19 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new f8593fe8 Automatic Site Publish by Buildbot
f8593fe8 is described below

commit f8593fe8a17845ecf090a272ff49477d8cdc6469
Author: buildbot 
AuthorDate: Mon Dec 19 18:51:46 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.1/index.html | 18 +++---
 output/search_data.json  |  2 +-
 3 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 89fb2578..7f0a1fbf 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 08 Dec 2022 12:05:35 +
-Thu, 08 Dec 2022 12:05:35 +
+Mon, 19 Dec 2022 18:51:38 +
+Mon, 19 Dec 2022 18:51:38 +
 Jekyll v4.3.1
 
 
diff --git a/output/release/accumulo-2.1.1/index.html 
b/output/release/accumulo-2.1.1/index.html
index c5e55e94..051f3c28 100644
--- a/output/release/accumulo-2.1.1/index.html
+++ b/output/release/accumulo-2.1.1/index.html
@@ -175,13 +175,17 @@
 Minor Improvements
 
 
-  https://github.com/apache/accumulo/issues/3077;>#3077, https://github.com/apache/accumulo/issues/3079;>#3079, https://github.com/apache/accumulo/issues/3083;>#3083 Avoid filling 
OS page cache by setting the
-FSDataOutputStream.setDropBehind flag when performing 
likely one-time file
-accesses, as with WAL input and output files and major compaction input files. 
This should allow
-files that might benefit more from caching to stay in the cache longer. https://github.com/apache/accumulo/issues/3083;>#3083
-introduces a new property, table.compaction.major.output.drop.cache, for 
dropping pages
-from the OS page cache for major compaction output files. These changes will 
only have an
-impact on HDFS FileSystem implementations and operating systems that support 
them.
+  https://github.com/apache/accumulo/issues/3077;>#3077, https://github.com/apache/accumulo/issues/3079;>#3079, https://github.com/apache/accumulo/issues/3083;>#3083, https://github.com/apache/accumulo/issues/3123;>#3123 Avoid filling
+OS page cache by calling setDropBehind on the FS data stream when
+performing likely one-time file accesses, as with WAL and compaction input
+and output files. This should allow files that might benefit more from
+caching to stay in the cache longer. https://github.com/apache/accumulo/issues/3083;>#3083 and https://github.com/apache/accumulo/issues/3123;>#3123
+introduces new properties, table.compaction.major.output.drop.cache and 
+table.compaction.minor.output.drop.cache, for dropping pages from the OS
+page cache for compaction output files. These changes will only have an
+impact on HDFS FileSystem implementations and operating systems that support
+the underlying OS system call. See associated HDFS https://issues.apache.org/jira/browse/HDFS-16864;>issue
+that will improve the underlying implementation when resolved.
   https://github.com/apache/accumulo/issues/3023;>#3023, https://github.com/apache/accumulo/issues/3053;>#3053 Prevent 
excessive logging when an ExternalCompaction
 is cancelled for cause and around the ThreadPools
   https://github.com/apache/accumulo/issues/3057;>#3057 
Modified Monitor to direct DataTable errors to console
diff --git a/output/search_data.json b/output/search_data.json
index c796c6c1..6e4c975d 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -318,7 +318,7 @@
   
 "release-accumulo-2-1-1": {
   "title": "Apache Accumulo 2.1.1",
-  "content": "AboutApache Accumulo 2.1.1 is a patch release of the 2.1.0 
LTM line.Major ImprovementsMinor Improvements  #3077, #3079, #3083 Avoid 
filling OS page cache by setting theFSDataOutputStream.setDropBehind flag when 
performing likely one-time fileaccesses, as with WAL input and output files and 
major compaction input files. This should allowfiles that might benefit more 
from caching to stay in the cache longer. #3083introduces a new property, 
table.compaction.major.output.dr [...]
+  "content": "AboutApache Accumulo 2.1.1 is a patch release of the 2.1.0 
LTM line.Major ImprovementsMinor Improvements  #3077, #3079, #3083, #3123 Avoid 
fillingOS page cache by calling setDropBehind on the FS data stream 
whenperforming likely one-time file accesses, as with WAL and compaction 
inputand output files. This should allow files that might benefit more 
fromcaching to stay in the cache longer. #3083 and #3123introduces new 
properties, table.compaction.major.output.drop.cache [...]
   "url": " /release/accumulo-2.1.1/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-12-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new daa1a0ac Automatic Site Publish by Buildbot
daa1a0ac is described below

commit daa1a0ac604927d2fffdf66641494a180e99ddd9
Author: buildbot 
AuthorDate: Thu Dec 8 12:05:42 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.1/index.html | 17 ++---
 output/search_data.json  |  2 +-
 3 files changed, 9 insertions(+), 14 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 30e9..89fb2578 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 18 Nov 2022 15:37:45 +
-Fri, 18 Nov 2022 15:37:45 +
+Thu, 08 Dec 2022 12:05:35 +
+Thu, 08 Dec 2022 12:05:35 +
 Jekyll v4.3.1
 
 
diff --git a/output/release/accumulo-2.1.1/index.html 
b/output/release/accumulo-2.1.1/index.html
index 92e27726..c5e55e94 100644
--- a/output/release/accumulo-2.1.1/index.html
+++ b/output/release/accumulo-2.1.1/index.html
@@ -175,23 +175,18 @@
 Minor Improvements
 
 
-  https://github.com/apache/accumulo/issues/3077;>#3077, https://github.com/apache/accumulo/issues/3079;>#3079 Avoid filling 
OS file caches by setting the
+  https://github.com/apache/accumulo/issues/3077;>#3077, https://github.com/apache/accumulo/issues/3079;>#3079, https://github.com/apache/accumulo/issues/3083;>#3083 Avoid filling 
OS page cache by setting the
 FSDataOutputStream.setDropBehind flag when performing 
likely one-time file
-accesses, as with WAL files and major compaction input files. This should allow
-files that might benefit more from caching to stay in the cache longer.
+accesses, as with WAL input and output files and major compaction input files. 
This should allow
+files that might benefit more from caching to stay in the cache longer. https://github.com/apache/accumulo/issues/3083;>#3083
+introduces a new property, table.compaction.major.output.drop.cache, for 
dropping pages
+from the OS page cache for major compaction output files. These changes will 
only have an
+impact on HDFS FileSystem implementations and operating systems that support 
them.
   https://github.com/apache/accumulo/issues/3023;>#3023, https://github.com/apache/accumulo/issues/3053;>#3053 Prevent 
excessive logging when an ExternalCompaction
 is cancelled for cause and around the ThreadPools
   https://github.com/apache/accumulo/issues/3057;>#3057 
Modified Monitor to direct DataTable errors to console
 
 
-Behavior Changes
-
-
-  https://github.com/apache/accumulo/issues/3082;>#3082 
ScanServers can now scan offline tables. The AccumuloClient will no longer
-throw a TableOfflineException when creating a Scanner or BatchScanner against 
an offline table.
-Instead, an error will be thrown on the call to iterator() if it can’t be 
scanned because it is offline.
-
-
 Bug Fixes
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 2bb27605..c796c6c1 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -318,7 +318,7 @@
   
 "release-accumulo-2-1-1": {
   "title": "Apache Accumulo 2.1.1",
-  "content": "AboutApache Accumulo 2.1.1 is a patch release of the 2.1.0 
LTM line.Major ImprovementsMinor Improvements  #3077, #3079 Avoid filling OS 
file caches by setting theFSDataOutputStream.setDropBehind flag when performing 
likely one-time fileaccesses, as with WAL files and major compaction input 
files. This should allowfiles that might benefit more from caching to stay in 
the cache longer.  #3023, #3053 Prevent excessive logging when an 
ExternalCompactionis cancelled for caus [...]
+  "content": "AboutApache Accumulo 2.1.1 is a patch release of the 2.1.0 
LTM line.Major ImprovementsMinor Improvements  #3077, #3079, #3083 Avoid 
filling OS page cache by setting theFSDataOutputStream.setDropBehind flag when 
performing likely one-time fileaccesses, as with WAL input and output files and 
major compaction input files. This should allowfiles that might benefit more 
from caching to stay in the cache longer. #3083introduces a new property, 
table.compaction.major.output.dr [...]
   "url": " /release/accumulo-2.1.1/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-18 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 27f18de3 Automatic Site Publish by Buildbot
27f18de3 is described below

commit 27f18de33c7eec5d5547f5108e330d0b354fd3f1
Author: buildbot 
AuthorDate: Fri Nov 18 15:37:52 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |   4 +-
 output/release/accumulo-2.1.0/index.html |   4 +
 output/release/accumulo-2.1.1/index.html | 253 +++
 output/release/index.html|  11 ++
 output/search_data.json  |   8 +
 5 files changed, 278 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index f2dee3b9..30e9 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 16 Nov 2022 05:21:38 +
-Wed, 16 Nov 2022 05:21:38 +
+Fri, 18 Nov 2022 15:37:45 +
+Fri, 18 Nov 2022 15:37:45 +
 Jekyll v4.3.1
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 4ac4c622..a634fc98 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -151,6 +151,8 @@
   
 
   
+Apache Accumulo 
2.1.1
+  
 
 
 
@@ -591,6 +593,8 @@ coordinator is offline
   
 
   
+Apache Accumulo 
2.1.1
+  
 
 
 
diff --git a/output/release/accumulo-2.1.1/index.html 
b/output/release/accumulo-2.1.1/index.html
new file mode 100644
index ..92e27726
--- /dev/null
+++ b/output/release/accumulo-2.1.1/index.html
@@ -0,0 +1,253 @@
+
+
+
+
+
+
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/paper/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-awusxf8AUojygHf2+joICySzB780jVvQaVCAt1clU3QsyAitLGul28Qxb2r1e5g+"
 crossorigin="anonymous">
+
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
+
+
+Apache Accumulo 2.1.1
+
+https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.js";>
+https://www.apachecon.com/event-images/snippet.js";>
+
+  // show location of canonical site if not currently on the canonical site
+  $(function() {
+var host = window.location.host;
+if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
+  $('#non-canonical').show();
+}
+  });
+
+  $(function() {
+// decorate section headers with anchors
+return $("h2, h3, h4, h5, h6").each(function(i, el) {
+  var $el, icon, id;
+  $el = $(el);
+  id = $el.attr('id');
+  icon = '';
+  if (id) {
+return $el.append($("").addClass("header-link").attr("href", "#" 
+ id).html(icon));
+  }
+});
+  });
+
+  // fix sidebar width in documentation
+  $(function() {
+var $affixElement = $('div[data-spy="affix"]');
+$affixElement.width($affixElement.parent().width());
+  });
+
+
+
+
+
+  
+  
+
+  
+Toggle navigation
+
+
+
+  
+  
+
+
+  
+Download
+Tour
+
+  Releases
+  
+2.1.0 (Latest)
+1.10.2
+Archive
+  
+
+
+  Documentation
+  
+User Manual (2.x)
+Javadocs (2.x)
+Public API
+Quickstart (1.x)
+Accumulo Maven 
Plugin
+User Manual 
(1.10)
+Javadocs (1.10)
+External Docs
+Archive
+  
+
+
+  Community
+  
+Contact Us
+How To Contribute
+People
+Related Projects
+  
+
+Search
+  
+  
+
+  https://www.apache.org/foundation/press/kit/feather.svg; width="15"/>
+  
+https://www.apache.org;>Apache Homepage 
+https://www.apache.org/licenses/;>License 
+https://www.apache.org/foundation/sponsorship;>Sponsorship 
+https://www.apache.org/security;>Security 
+https://www.apache.org/foundation/thanks;>Thanks 
+https://www.apache.org/foundation/policies/conduct;>Code of Conduct 
+https://www.apache.org/events/current-event.html;>Current Event 
+  
+
+  

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-15 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 7d2b63ee Automatic Site Publish by Buildbot
7d2b63ee is described below

commit 7d2b63ee96b4494e9d8f3b19e8b4b9d0f25d5bc6
Author: buildbot 
AuthorDate: Wed Nov 16 05:21:45 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/upgrading.html   | 158 
 output/docs/2.x/getting-started/quickstart.html |   6 +-
 output/docs/2.x/troubleshooting/tools.html  |   2 +-
 output/feed.xml |   4 +-
 output/search_data.json |   4 +-
 5 files changed, 90 insertions(+), 84 deletions(-)

diff --git a/output/docs/2.x/administration/upgrading.html 
b/output/docs/2.x/administration/upgrading.html
index 5b6b96c0..18d4f1f8 100644
--- a/output/docs/2.x/administration/upgrading.html
+++ b/output/docs/2.x/administration/upgrading.html
@@ -430,103 +430,95 @@
 
 
 
-Upgrading from 1.10.x or 2.0.x 
to 2.1
+Upgrading from 1.10 or 2.0 to 
2.1
 
-The recommended way to upgrade from a prior 1.10.x or 2.0.x release is to 
stop Accumulo, upgrade
-to 2.1 and then start 2.1. To upgrade from a release prior to 1.10, follow the
-below steps to upgrade to at least 
1.10 and then perform the upgrade to 2.1. A
-direct upgrade from releases prior to 1.10 has not been tested.
+Please read these directions in their entirety before beginning. Please contact us with any
+questions you have about this process.
 
-Important: before starting any upgrade process you need to make sure there 
are no outstanding FATE transactions. This
-includes transactions that have completed with SUCCESS or FAILED but have not been removed by the automatic 
clean-up 
-process.  This is required because the internal serialization of FATE 
transactions is not guaranteed to be compatible 
-between versions, so ANY FATE transaction that is present will fail 
the upgrade.  Procedures to manage FATE 
-transactions, including commands to fail and delete transactions, are included 
in the Accumulo documentation 
-FATE - 
Administration
+IMPORTANT! Before running any Accumulo 2.1 upgrade 
utilities or services, you will need to
+upgrade to Java 11, Hadoop 3, and at least ZooKeeper 3.5 (at least 3.8 was 
current at the time of
+this writing and is recommended).
 
-Two significant changes from 1.10.x/2.0 to 2.1 that are important to 
note:
+The basic upgrade sequence is:
+
+
+  upgrade to at least Accumulo 1.10 first (if necessary)
+  stop Accumulo 1.10 or 2.0
+  prepare your installation of Accumulo 2.1 through whatever means you 
obtain the binaries and
+configure it in your environment
+  (optional - but recommended) create a ZooKeeper snapshot
+  (required if not using the provided scripts to start 2.1) run the RenameMasterDirInZK 
utility
+  (optional) run the pre-upgrade utility to convert the configuration in 
ZooKeeper
+  start Accumulo 2.1 for the first time to complete the upgrade
+
+
+IMPORTANT! before starting any upgrade process you need to 
make sure there are no outstanding
+FATE transactions. This includes transactions that have completed with SUCCESS or FAILED but
+have not been removed by the automatic clean-up process. This is required 
because the internal
+serialization of FATE transactions is not guaranteed to be compatible between 
versions, so ANY
+FATE transaction that is present will fail the upgrade. Procedures to manage 
FATE transactions,
+including commands to fail and delete transactions, are included in the FATE Administration
+documentation.
+
+Two significant changes occurred in 2.1 that are particularly important to 
note for upgrades:
 
 
   properties and services that referenced master are renamed manager and
-  the property storage in ZooKeeper has changed from a ZooKeeper node per 
property to a single node for all 
-properties with a single ZooKeeper property node for each table, namespace. 
and the system config properties.
+  the internal property storage format in ZooKeeper has changed - instead 
of each table, namespace,
+and the system configuration using separate ZooKeeper nodes for each of their 
properties, they
+each now use only a single ZooKeeper node for all of their respective 
properties.
 
 
-Before upgrading to 2.1, it is suggested that you create a snapshot of the 
current ZooKeeper contents to be a backup 
-in case issues occur and you need to rollback.  There are no provisions to 
roll back to a previous Accumulo version
-once an upgrade process has been completed other than restoring from a 
snapshot of ZooKeeper.
+Details on renaming the properties and the ZooKeeper property conversion 
are provided in the
+following sections. Additional information on configuring 2.1 is available here.
 
-Details on renaming the 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-15 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e438900b Automatic Site Publish by Buildbot
e438900b is described below

commit e438900b20f0ad1ff95484ad110146539e0046db
Author: buildbot 
AuthorDate: Wed Nov 16 05:20:28 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/upgrading.html   | 86 -
 output/docs/2.x/getting-started/quickstart.html |  7 +-
 output/feed.xml |  4 +-
 output/search_data.json |  4 +-
 4 files changed, 94 insertions(+), 7 deletions(-)

diff --git a/output/docs/2.x/administration/upgrading.html 
b/output/docs/2.x/administration/upgrading.html
index e803e7e2..5b6b96c0 100644
--- a/output/docs/2.x/administration/upgrading.html
+++ b/output/docs/2.x/administration/upgrading.html
@@ -434,9 +434,30 @@
 
 The recommended way to upgrade from a prior 1.10.x or 2.0.x release is to 
stop Accumulo, upgrade
 to 2.1 and then start 2.1. To upgrade from a release prior to 1.10, follow the
-below steps to upgrade to 2.0 and then 
perform the upgrade to 2.1. A
+below steps to upgrade to at least 
1.10 and then perform the upgrade to 2.1. A
 direct upgrade from releases prior to 1.10 has not been tested.
 
+Important: before starting any upgrade process you need to make sure there 
are no outstanding FATE transactions. This
+includes transactions that have completed with SUCCESS or FAILED but have not been removed by the automatic 
clean-up 
+process.  This is required because the internal serialization of FATE 
transactions is not guaranteed to be compatible 
+between versions, so ANY FATE transaction that is present will fail 
the upgrade.  Procedures to manage FATE 
+transactions, including commands to fail and delete transactions, are included 
in the Accumulo documentation 
+FATE - 
Administration
+
+Two significant changes from 1.10.x/2.0 to 2.1 that are important to 
note:
+
+
+  properties and services that referenced master are renamed manager and
+  the property storage in ZooKeeper has changed from a ZooKeeper node per 
property to a single node for all 
+properties with a single ZooKeeper property node for each table, namespace. 
and the system config properties.
+
+
+Before upgrading to 2.1, it is suggested that you create a snapshot of the 
current ZooKeeper contents to be a backup 
+in case issues occur and you need to rollback.  There are no provisions to 
roll back to a previous Accumulo version
+once an upgrade process has been completed other than restoring from a 
snapshot of ZooKeeper.
+
+Details on renaming the properties and the ZooKeeper property conversion 
provided in sections that follow.
+
 Rename 
master Properties, Config Files, and Script References
 
 Although not required until at least release 3.0, it is strongly 
recommended as a part of the
@@ -463,7 +484,68 @@ will then need to transfer the contents of the current 
individual files to this
 Warning: Upgrading a previously encrypted instance is not 
supported as the implementation
 and properties have changed.
 
-Upgrading from 1.8/9 to 2.0
+Upgrading from 1.9/1.10/2.0 to 2.1
+
+Note: the process for upgrading to 2.1 assumes that you have already 
upgraded to 1.10 or 2.0.  Upgrading from a 
+version prior to 1.10 may work, but is unsupported and untested.  If you are 
upgrading from 1.10 make sure
+that you have adjusted for the master to manager and other configuration changes as described 
in the
+Upgrading from 1.8/9/10 to 2.0 below 
steps.
+
+Additional information on configuring 2.1 is available at 
(/docs/2.x//in-depth-installation)
+
+The particular order for your installation will differ depending on how you 
choose to install Accumulo.
+The key part being that the upgrade utilities need to be run with 2.1 code on 
a stopped 1.10 / 2.0 instance.
+
+You can elect to stop your current instance, install and configure the 2.1 
binaries, optionally run the upgrade 
+utilities and then start 2.1, or you could install and configure the 2.1 
binaries while your instance remains 
+running and then when ready, stop your instance, optionally run the upgrade 
utilities and then start 2.1.
+
+The basic upgrade sequence is to:
+
+
+  stop Accumulo (1.10/2.0)
+  update your environment to point to 2.1 executable path.
+  (optional - but recommended) create a ZooKeeper snapshot
+  (optional) run the configuration upgrade utility
+  start Accumulo 2.1
+
+
+Create ZooKeeper 
snapshot (optional - but recommended)
+
+$ACCUMULO_HOME/bin/accumulo dump-zoo --xml --root 
/accumulo | tee PATH_TO_SNAPSHOT
+
+
+If you need to restore from the ZooKeeper snapshot see 
(/docs/2.x/troubleshooting/tools )
+
+Upgrade the 
property storage in ZooKeeper (optional)
+
+The property conversion can be done 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 487f2ee7 Automatic Site Publish by Buildbot
487f2ee7 is described below

commit 487f2ee777812e91a95a71ca0515759cc67830f8
Author: buildbot 
AuthorDate: Wed Nov 2 21:26:37 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/caching.html|  2 +-
 output/docs/2.x/administration/compaction.html | 12 ++---
 output/docs/2.x/administration/fate.html   |  6 +--
 .../docs/2.x/administration/in-depth-install.html  | 12 ++---
 output/docs/2.x/administration/multivolume.html|  2 +-
 output/docs/2.x/administration/replication.html|  4 +-
 output/docs/2.x/administration/scan-executors.html |  8 ++--
 output/docs/2.x/administration/upgrading.html  | 10 ++--
 output/docs/2.x/configuration/files.html   |  6 +--
 output/docs/2.x/configuration/overview.html|  4 +-
 .../docs/2.x/configuration/server-properties.html  |  2 +-
 output/docs/2.x/development/iterators.html |  6 +--
 output/docs/2.x/development/sampling.html  |  2 +-
 output/docs/2.x/development/summaries.html |  6 +--
 output/docs/2.x/getting-started/clients.html   | 14 +++---
 output/docs/2.x/getting-started/design.html|  4 +-
 output/docs/2.x/getting-started/features.html  |  8 ++--
 output/docs/2.x/getting-started/glossary.html  |  2 +-
 output/docs/2.x/getting-started/quickstart.html|  6 +--
 .../2.x/getting-started/table_configuration.html   | 14 +++---
 output/docs/2.x/security/authorizations.html   |  4 +-
 output/docs/2.x/security/kerberos.html | 10 ++--
 output/docs/2.x/security/on-disk-encryption.html   |  2 +-
 output/docs/2.x/security/wire-encryption.html  |  2 +-
 output/docs/2.x/troubleshooting/advanced.html  | 10 ++--
 output/docs/2.x/troubleshooting/basic.html |  6 +--
 .../troubleshooting/system-metadata-tables.html|  2 +-
 output/docs/2.x/troubleshooting/tools.html |  4 +-
 output/feed.xml|  4 +-
 output/search_data.json| 56 +++---
 30 files changed, 115 insertions(+), 115 deletions(-)

diff --git a/output/docs/2.x/administration/caching.html 
b/output/docs/2.x/administration/caching.html
index e4d0f769..8a1738ab 100644
--- a/output/docs/2.x/administration/caching.html
+++ b/output/docs/2.x/administration/caching.html
@@ -447,7 +447,7 @@ for tables where read performance is critical.
 Configuration
 
 The tserver.cache.manager.class
 property controls which block cache implementation is used within the tablet 
server. Users
-can supply their own implementation and set custom configuration properties to 
control it’s behavior (see 
org.apache.accumulo.core.spi.cache.BlockCacheManager$Configuration.java).
+can supply their own implementation and set custom configuration properties to 
control its behavior (see 
org.apache.accumulo.core.spi.cache.BlockCacheManager$Configuration.java).
 
 The index and data block caches are configured for tables by the following 
properties:
 
diff --git a/output/docs/2.x/administration/compaction.html 
b/output/docs/2.x/administration/compaction.html
index ca4ab9ab..3554020f 100644
--- a/output/docs/2.x/administration/compaction.html
+++ b/output/docs/2.x/administration/compaction.html
@@ -432,7 +432,7 @@
 
 In Accumulo each tablet has a list of files associated with it.  As 
data is
 written to Accumulo it is buffered in memory. The data buffered in memory is
-eventually written to files in DFS on a per tablet basis. Files can also be
+eventually written to files in DFS on a per-tablet basis. Files can also be
 added to tablets directly by bulk import. In the background tablet servers run
 major compactions to merge multiple files into one. The tablet server has to
 decide which tablets to compact and which files within a tablet to compact.
@@ -457,7 +457,7 @@ a set. The default planner looks for file sets where LFS*CR 
= FSS.  By only
 compacting sets of files that meet this requirement the amount of work done by
 compactions is O(N * logCR(N)).  Increasing the ratio will
 result in less compaction work and more files per tablet.  More files per
-tablet means more higher query latency. So adjusting this ratio is a trade off
+tablet means higher query latency. So adjusting this ratio is a trade-off
 between ingest and query performance.
 
 When CR=1.0 this will result in a goal of a single per file tablet, but the
@@ -474,7 +474,7 @@ of this documentation only applies to Accumulo 2.1 and 
later.
 
 
   Create a compaction service named cs1 that has three executors.  The first executor 
named small has 8 
threads and runs compactions less than 16M.  The second executor medium runs 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 8796ee90 Automatic Site Publish by Buildbot
8796ee90 is described below

commit 8796ee90dbecc88727f251cb7e7b7b7f268c9321
Author: buildbot 
AuthorDate: Wed Nov 2 15:14:18 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 9 +++--
 output/release/accumulo-2.1.0/index.html | 5 +
 output/search_data.json  | 2 +-
 3 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 3747f740..f6f91c93 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 02 Nov 2022 07:24:54 +
-Wed, 02 Nov 2022 07:24:54 +
+Wed, 02 Nov 2022 15:14:11 +
+Wed, 02 Nov 2022 15:14:11 +
 Jekyll v4.3.1
 
 
@@ -377,6 +377,11 @@ atomically using a read-modify-write pattern. This is 
available for table, names
 properties, and is called code class=language-plaintext 
highlighter-rougemodifyProperties()/code. This builds off a 
related change that allows us to
 more efficiently store and properties in ZooKeeper, which also results in 
fewer ZooKeeper watches./p
 
+h3 id=simplified-cluster-configurationSimplified cluster 
configuration/h3
+
+pa 
href=https://github.com/apache/accumulo/issues/2138#2138/a;
 a 
href=https://github.com/apache/accumulo/issues/2903#2903/a;
 Modified the accumulo-cluster script to read the server locations from a single
+file, cluster.yaml, in the conf directory instead of multiple files (tserver, 
manager, gc, etc.). Starting the new scan server and compactor server types is 
supported using this new file.  It also contains options for starting multiple 
Tablet and Scan Servers per host./p
+
 h3 id=other-notable-changesOther notable changes/h3
 
 ul
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index c049b0f9..4ac4c622 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -525,6 +525,11 @@ atomically using a read-modify-write pattern. This is 
available for table, names
 properties, and is called modifyProperties(). This builds off a related change 
that allows us to
 more efficiently store and properties in ZooKeeper, which also results in 
fewer ZooKeeper watches.
 
+Simplified cluster configuration
+
+https://github.com/apache/accumulo/issues/2138;>#2138 https://github.com/apache/accumulo/issues/2903;>#2903 Modified the 
accumulo-cluster script to read the server locations from a single
+file, cluster.yaml, in the conf directory instead of multiple files (tserver, 
manager, gc, etc.). Starting the new scan server and compactor server types is 
supported using this new file.  It also contains options for starting multiple 
Tablet and Scan Servers per host.
+
 Other notable changes
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 42aa916f..f3efba73 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -318,7 +318,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content": "AboutApache Accumulo 2.1.0 brings many new features and 
updates since 1.10 and 2.0. The 2.1 releaseseries is an LTM series, and as 
such, is expected to receive stability-improving bugfixes, asneeded. This makes 
this series suitable for production environments where stability is 
preferableover new features that might appear in subsequent non-LTM 
releases.This release has received more than 1200 commits from over 50 
contributors, including numerousbugfixes, updates, and f [...]
+  "content": "AboutApache Accumulo 2.1.0 brings many new features and 
updates since 1.10 and 2.0. The 2.1 releaseseries is an LTM series, and as 
such, is expected to receive stability-improving bugfixes, asneeded. This makes 
this series suitable for production environments where stability is 
preferableover new features that might appear in subsequent non-LTM 
releases.This release has received more than 1200 commits from over 50 
contributors, including numerousbugfixes, updates, and f [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9102c876 Automatic Site Publish by Buildbot
9102c876 is described below

commit 9102c876f14255d2124e066e1f8fe7d145ba7542
Author: buildbot 
AuthorDate: Wed Nov 2 07:25:01 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 16 ++--
 output/release/accumulo-2.1.0/index.html | 12 
 output/search_data.json  |  2 +-
 3 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index a9636775..3747f740 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 02 Nov 2022 07:12:31 +
-Wed, 02 Nov 2022 07:12:31 +
+Wed, 02 Nov 2022 07:24:54 +
+Wed, 02 Nov 2022 07:24:54 +
 Jekyll v4.3.1
 
 
@@ -415,6 +415,18 @@ computation instead of HDFS/li
 
 pa 
href=https://github.com/apache/accumulo/projects/3All tickets 
related to 2.1.0./a/p
 
+h2 id=known-issuesKnown Issues/h2
+
+pAt the time of release, the following issues were known:/p
+
+ul
+  lia 
href=https://github.com/apache/accumulo/issues/3045#3045/a;
 - External compactions may appear stuck until the coordinator is 
restarted/li
+  lia 
href=https://github.com/apache/accumulo/issues/3048#3048/a;
 - The monitor may not show times in the correct format for the user’s 
locale/li
+  lia 
href=https://github.com/apache/accumulo/issues/3053#3053/a;
 - ThreadPool creation is a bit spammy by default in the debug logs/li
+  lia 
href=https://github.com/apache/accumulo/issues/3057#3057/a;
 - The monitor may have an annoying popup on the external compactions page if 
the
+coordinator is offline/li
+/ul
+
 
 Tue, 01 Nov 2022 00:00:00 +
 https://accumulo.apache.org/release/accumulo-2.1.0/
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 5c669d9a..c049b0f9 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -563,6 +563,18 @@ computation instead of HDFS
 
 https://github.com/apache/accumulo/projects/3;>All tickets related 
to 2.1.0.
 
+Known Issues
+
+At the time of release, the following issues were known:
+
+
+  https://github.com/apache/accumulo/issues/3045;>#3045 - 
External compactions may appear stuck until the coordinator is restarted
+  https://github.com/apache/accumulo/issues/3048;>#3048 - The 
monitor may not show times in the correct format for the user’s locale
+  https://github.com/apache/accumulo/issues/3053;>#3053 - 
ThreadPool creation is a bit spammy by default in the debug logs
+  https://github.com/apache/accumulo/issues/3057;>#3057 - The 
monitor may have an annoying popup on the external compactions page if the
+coordinator is offline
+
+
 
 
 
diff --git a/output/search_data.json b/output/search_data.json
index fd81d559..42aa916f 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -318,7 +318,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content": "AboutApache Accumulo 2.1.0 brings many new features and 
updates since 1.10 and 2.0. The 2.1 releaseseries is an LTM series, and as 
such, is expected to receive stability-improving bugfixes, asneeded. This makes 
this series suitable for production environments where stability is 
preferableover new features that might appear in subsequent non-LTM 
releases.This release has received more than 1200 commits from over 50 
contributors, including numerousbugfixes, updates, and f [...]
+  "content": "AboutApache Accumulo 2.1.0 brings many new features and 
updates since 1.10 and 2.0. The 2.1 releaseseries is an LTM series, and as 
such, is expected to receive stability-improving bugfixes, asneeded. This makes 
this series suitable for production environments where stability is 
preferableover new features that might appear in subsequent non-LTM 
releases.This release has received more than 1200 commits from over 50 
contributors, including numerousbugfixes, updates, and f [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9405be5d Automatic Site Publish by Buildbot
9405be5d is described below

commit 9405be5dccb886d924a6bf3492315d1540fe82f0
Author: buildbot 
AuthorDate: Wed Nov 2 07:12:38 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/getting-started/features.html |   7 +-
 output/feed.xml   | 513 +-
 output/index.html |  14 +-
 output/news/index.html|   7 +
 output/release/accumulo-2.0.1/index.html  |   3 +-
 output/release/accumulo-2.1.0/index.html  | 439 --
 output/release/index.html |   4 +-
 output/search_data.json   |   4 +-
 8 files changed, 677 insertions(+), 314 deletions(-)

diff --git a/output/docs/2.x/getting-started/features.html 
b/output/docs/2.x/getting-started/features.html
index 8cb3d351..4981f19e 100644
--- a/output/docs/2.x/getting-started/features.html
+++ b/output/docs/2.x/getting-started/features.html
@@ -697,7 +697,7 @@ into Accumulo keys in a way that their natural sort order 
is preserved.
 
 Plugins
 
-The Service Plugin Interface (SPI) was created to expose 
Accumulo system level information to
+The https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.1.0/org/apache/accumulo/core/spi/package-summary.html;>Service
 Plugin Interface (SPI) was created to expose Accumulo system level 
information to
 plugins in a stable manner.
 
 Balancer
@@ -718,7 +718,8 @@ spread.
 
 Compaction
 
-Compactions were reworked in 2.1 to allow plugin capabilities. TODO 
expand
+Compactions were reworked in 2.1 to allow plugin capabilities. See https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.1.0/org/apache/accumulo/core/spi/compaction/package-summary.html;>the
 documentation for
+compactions.
 
 Scan
 
@@ -727,7 +728,7 @@ spread.
 Volume Chooser
 
 The Volume Chooser has been around for some time but was refactored in 2.1 
to be included in the SPI.
-See the javadoc for more information.
+See the https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.1.0/org/apache/accumulo/core/spi/fs/VolumeChooser.html;>javadoc
 for more information.
 
 Pluggable Block Caches
 
diff --git a/output/feed.xml b/output/feed.xml
index b034a747..a9636775 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,11 +6,425 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 02 Nov 2022 04:51:34 +
-Wed, 02 Nov 2022 04:51:34 +
+Wed, 02 Nov 2022 07:12:31 +
+Wed, 02 Nov 2022 07:12:31 +
 Jekyll v4.3.1
 
 
+  
+Apache Accumulo 2.1.0
+h2 id=aboutAbout/h2
+
+pApache Accumulo 2.1.0 brings many new features and updates since 1.10 
and 2.0. The 2.1 release
+series is an LTM series, and as such, is expected to receive 
stability-improving bugfixes, as
+needed. This makes this series suitable for production environments where 
stability is preferable
+over new features that might appear in subsequent non-LTM releases./p
+
+pThis release has received more than 1200 commits from over 50 
contributors, including numerous
+bugfixes, updates, and features./p
+
+h2 id=minimum-requirementsMinimum Requirements/h2
+
+pThis version of Accumulo requires at least Java 11 to run. Various 
Java 11 versions from different
+distributors were used throughout its testing and development, so we expect it 
to work with any
+standard OpenJDK-based Java distribution./p
+
+pAt least Hadoop 3 is required, though it is recommended to use a more 
recent version. Version 3.3
+was used extensively during testing, but we have no specific knowledge that an 
earlier version of
+Hadoop 3 will not work. Whichever major/minor version you use, it is 
recommended to use the latest
+bugfix/patch version available. By default, our POM depends on 3.3.4./p
+
+pDuring much of this release’s development, ZooKeeper 3.5 was used as 
a minimum. However, that
+version reach its end-of-life during development, and we do not recommend 
using end-of-life versions
+of ZooKeeper. The latest bugfix version of 3.6, 3.7, or 3.8 should also work 
fine. By default, our
+POM depends on 3.8.0./p
+
+h2 id=binary-incompatibilityBinary 
Incompatibility/h2
+
+pThis release is known to be incompatible with prior versions of the 
client libraries. That is, the
+2.0.0 or 2.0.1 version of the client libraries will not be able to communicate 
with a 2.1.0 or later
+installation of Accumulo, nor will the 2.1.0 or later version of the client 
libraries communicate
+with a 2.0.1 or earlier installation./p
+
+h2 id=major-new-featuresMajor New Features/h2
+
+h3 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new af63c872 Automatic Site Publish by Buildbot
af63c872 is described below

commit af63c872f614ba8085ec814831564714a969ef9d
Author: buildbot 
AuthorDate: Wed Nov 2 04:51:41 2022 +

Automatic Site Publish by Buildbot
---
 .../docs/2.x/administration/in-depth-install.html  | 48 +++---
 output/docs/2.x/configuration/files.html   |  3 +-
 output/feed.xml|  4 +-
 output/search_data.json|  4 +-
 4 files changed, 29 insertions(+), 30 deletions(-)

diff --git a/output/docs/2.x/administration/in-depth-install.html 
b/output/docs/2.x/administration/in-depth-install.html
index 34a5f4d3..f6409616 100644
--- a/output/docs/2.x/administration/in-depth-install.html
+++ b/output/docs/2.x/administration/in-depth-install.html
@@ -551,9 +551,9 @@ at the low end of the range to, and including, the high end 
of the range.
 Download a binary distribution of Accumulo and install it to a directory on 
a disk with
 sufficient space:
 
-cd install directory
-tar xzf accumulo-2.1.0-bin.tar.gz
-cd accumulo-2.1.0
+cd install 
directory
+tar xzf accumulo-2.1.0-bin.tar.gz
+cd accumulo-2.1.0
 
 
 Repeat this step on each machine in your cluster. Typically, the same install directory
@@ -650,8 +650,8 @@ architecture. These will be passed to the Makefile in the 
environment variable <
 
 Examples:
 
-accumulo-util build-native
-accumulo-util build-native -m32
+accumulo-util build-native
+accumulo-util build-native -m32
 
 
 After building the native map from the source, you will find the artifact in
@@ -892,7 +892,7 @@ take some time for particular configurations.
 
 Next, ssh to each of the hosts you want to add and run:
 
-accumulo-service tserver start
+accumulo-service tserver start
 
 
 Make sure the host in question has the new configuration, or else the tablet
@@ -904,12 +904,12 @@ but in practice it’s good to ensure consistent 
configuration across all nodes.
 If you need to take a node out of operation, you can trigger a graceful 
shutdown of a tablet
 server. Accumulo will automatically rebalance the tablets across the available 
tablet servers.
 
-accumulo admin stop host(s) {host ...}
+accumulo admin stop host(s) {host ...}
 
 
 Alternatively, you can ssh to each of the hosts you want to remove and 
run:
 
-accumulo-service tserver stop
+accumulo-service tserver stop
 
 
 Be sure to update your conf/cluster.yaml file to account for the removal of 
these hosts. Bear in mind
@@ -1036,14 +1036,14 @@ URL hdfs://namenode.example.c
 that the only volume displayed is the volume from the current namenode’s HDFS 
URL.
 
 Listing volumes referenced in zookeeper
-Volume : hdfs://namenode.example.com:8020/accumulo
+Volume : hdfs://namenode.example.com:8020/accumulo
 
 Listing volumes referenced in accumulo.root tablets section
-Volume : hdfs://namenode.example.com:8020/accumulo
+Volume : hdfs://namenode.example.com:8020/accumulo
 Listing volumes referenced in accumulo.root deletes section (volume 
replacement occurs at deletion time)
 
 Listing volumes referenced in accumulo.metadata tablets section
-Volume : hdfs://namenode.example.com:8020/accumulo
+Volume : hdfs://namenode.example.com:8020/accumulo
 
 Listing volumes referenced in accumulo.metadata deletes section (volume 
replacement occurs at deletion time)
 
@@ -1065,17 +1065,17 @@ 
instance.volumes.replacements=hdfs://namenode.example.com:8020/accumulo hdfs://n
 new nameservice volume shows up with accumulo admin volumes.
 
 Listing volumes referenced in zookeeper
-Volume : hdfs://namenode.example.com:8020/accumulo
-Volume : hdfs://nameservice1/accumulo
+Volume : hdfs://namenode.example.com:8020/accumulo
+Volume : hdfs://nameservice1/accumulo
 
 Listing volumes referenced in accumulo.root tablets section
-Volume : hdfs://namenode.example.com:8020/accumulo
-Volume : hdfs://nameservice1/accumulo
+Volume : hdfs://namenode.example.com:8020/accumulo
+Volume : hdfs://nameservice1/accumulo
 Listing volumes referenced in accumulo.root deletes section (volume 
replacement occurs at deletion time)
 
 Listing volumes referenced in accumulo.metadata tablets section
-Volume : hdfs://namenode.example.com:8020/accumulo
-Volume : hdfs://nameservice1/accumulo
+Volume : hdfs://namenode.example.com:8020/accumulo
+Volume : hdfs://nameservice1/accumulo
 Listing volumes referenced in accumulo.metadata deletes section (volume 
replacement occurs at deletion time)
 
 
@@ -1156,13 +1156,13 @@ the memory.maps.max parameter in 
accumulo.properties.
 Off-heap memory, plus the in-memory map of the Accumulo TServer process. A
 simple 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 269283b7 Automatic Site Publish by Buildbot
269283b7 is described below

commit 269283b7009ad2c8e5dd383287ab9300ccff32a5
Author: buildbot 
AuthorDate: Wed Nov 2 04:44:51 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/in-depth-install.html | 13 +
 output/feed.xml  |  4 ++--
 output/search_data.json  |  2 +-
 3 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/output/docs/2.x/administration/in-depth-install.html 
b/output/docs/2.x/administration/in-depth-install.html
index c8fc29ab..34a5f4d3 100644
--- a/output/docs/2.x/administration/in-depth-install.html
+++ b/output/docs/2.x/administration/in-depth-install.html
@@ -494,9 +494,14 @@ their value in accumu
   Accumulo HTTP monitor
   monitor.port.client
 
+
+  9996
+  Accumulo Scan Server
+  [sserver.port.client]
+
 
   9997
-  Tablet Server
+  Accumulo Tablet Server
   tserver.port.client
 
 
@@ -506,7 +511,7 @@ their value in accumu
 
 
   
-  Manager Server
+  Accumulo Manager Server
   manager.port.client
 
 
@@ -521,12 +526,12 @@ their value in accumu
 
 
   10001
-  Manager Replication service
+  Accumulo Manager Replication service
   manager.replication.coordinator.port
 
 
   10002
-  TabletServer Replication service
+  Accumulo TabletServer Replication service
   replication.receipt.service.port
 
   
diff --git a/output/feed.xml b/output/feed.xml
index 9b0a6c1d..c6579c62 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 02 Nov 2022 04:44:18 +
-Wed, 02 Nov 2022 04:44:18 +
+Wed, 02 Nov 2022 04:44:44 +
+Wed, 02 Nov 2022 04:44:44 +
 Jekyll v4.3.1
 
 
diff --git a/output/search_data.json b/output/search_data.json
index bf22d84f..ba488af5 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -30,7 +30,7 @@
   
 "docs-2-x-administration-in-depth-install": {
   "title": "In-depth Installation",
-  "content": "This document provides detailed instructions for installing 
Accumulo. For basicinstructions, see the quick start.HardwareBecause we are 
running essentially two or three systems simultaneously layeredacross the 
cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist of 
4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machine [...]
+  "content": "This document provides detailed instructions for installing 
Accumulo. For basicinstructions, see the quick start.HardwareBecause we are 
running essentially two or three systems simultaneously layeredacross the 
cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist of 
4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machine [...]
   "url": " /docs/2.x/administration/in-depth-install",
   "categories": "administration"
 },



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new b7f0f54a Automatic Site Publish by Buildbot
b7f0f54a is described below

commit b7f0f54afd956403eba1d7d7e946f3faa4cb1855
Author: buildbot 
AuthorDate: Wed Nov 2 04:44:25 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/in-depth-install.html | 6 +++---
 output/feed.xml  | 4 ++--
 output/search_data.json  | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/output/docs/2.x/administration/in-depth-install.html 
b/output/docs/2.x/administration/in-depth-install.html
index 550e676a..c8fc29ab 100644
--- a/output/docs/2.x/administration/in-depth-install.html
+++ b/output/docs/2.x/administration/in-depth-install.html
@@ -883,7 +883,7 @@ take some time for particular configurations.
 
 Adding a Tablet Server
 
-Update your conf/tservers file to account for the addition.
+Update your conf/cluster.yaml file to account for the 
addition.
 
 Next, ssh to each of the hosts you want to add and run:
 
@@ -907,13 +907,13 @@ server. Accumulo will automatically rebalance the tablets 
across the available t
 accumulo-service tserver stop
 
 
-Be sure to update your conf/tservers file to account for the removal of 
these hosts. Bear in mind
+Be sure to update your conf/cluster.yaml file to account for the removal of 
these hosts. Bear in mind
 that the monitor will not re-read the tservers file automatically, so it will 
report the
 decommissioned servers as down; it’s recommended that you restart the monitor 
so that the node list
 is up to date.
 
 The steps described to decommission a node can also be used (without 
removal of the host from the
-conf/tservers file) 
to gracefully stop a node. This will ensure that the tabletserver is cleanly
+conf/cluster.yaml 
file) to gracefully stop a node. This will ensure that the tabletserver is 
cleanly
 stopped and recovery will not need to be performed when the tablets are 
re-hosted.
 
 Restarting process on a node
diff --git a/output/feed.xml b/output/feed.xml
index d5cf626f..9b0a6c1d 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 02 Nov 2022 04:35:18 +
-Wed, 02 Nov 2022 04:35:18 +
+Wed, 02 Nov 2022 04:44:18 +
+Wed, 02 Nov 2022 04:44:18 +
 Jekyll v4.3.1
 
 
diff --git a/output/search_data.json b/output/search_data.json
index e37ea88f..bf22d84f 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -30,7 +30,7 @@
   
 "docs-2-x-administration-in-depth-install": {
   "title": "In-depth Installation",
-  "content": "This document provides detailed instructions for installing 
Accumulo. For basicinstructions, see the quick start.HardwareBecause we are 
running essentially two or three systems simultaneously layeredacross the 
cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist of 
4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machine [...]
+  "content": "This document provides detailed instructions for installing 
Accumulo. For basicinstructions, see the quick start.HardwareBecause we are 
running essentially two or three systems simultaneously layeredacross the 
cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist of 
4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machine [...]
   "url": " /docs/2.x/administration/in-depth-install",
   "categories": "administration"
 },



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d9b42dea Automatic Site Publish by Buildbot
d9b42dea is described below

commit d9b42deabf35f91daca17bcebec146f777c4149b
Author: buildbot 
AuthorDate: Wed Nov 2 04:35:25 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/configuration/files.html| 14 +++---
 output/docs/2.x/getting-started/quickstart.html |  6 +++---
 output/feed.xml |  4 ++--
 output/search_data.json |  4 ++--
 4 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/output/docs/2.x/configuration/files.html 
b/output/docs/2.x/configuration/files.html
index 807db2f8..748e4c7d 100644
--- a/output/docs/2.x/configuration/files.html
+++ b/output/docs/2.x/configuration/files.html
@@ -502,19 +502,19 @@ to run standby Monitors that can take over if the lead 
Monitor fails.
 Contains list of hosts where Tablet Server 
processes should run. While only one host is needed, it is recommended that
 multiple tablet servers are run for improved fault tolerance and 
peformance.
 
-tracer
+sserver
 
-Contains a list of hosts where Tracer processes should run. 
While only one host is needed, others can be specified
-to run standby Tracers that can take over if the lead Tracer fails.
+Contains a list of hosts where ScanServer 
processes should run. While only only one host is needed, it is recommended
+that multiple ScanServers are run for improved performance.
 
-Compaction Coordinator
+compaction coordinator
 
-Contains a list of hosts where CompactionCoordinator
 processes should run. While only one host is needed,
+Contains a list of hosts where CompactionCoordinator
 processes should run. While only one host is needed,
 others can be specified to run standby CompactionCoordinators that can take 
over if the lead CompactionCoordinator fails.
 
-Compactor
+compaction compactor
 
-Contains a list of hosts where Compactor processes 
should run. While only one host is needed, it is recommended that
+Contains a list of hosts where Compactor 
processes should run. While only one host is needed, it is recommended that
 multiple Compactors are run for improved external compaction performance.
 
 
diff --git a/output/docs/2.x/getting-started/quickstart.html 
b/output/docs/2.x/getting-started/quickstart.html
index 18cdb8fa..8c4124fc 100644
--- a/output/docs/2.x/getting-started/quickstart.html
+++ b/output/docs/2.x/getting-started/quickstart.html
@@ -691,10 +691,10 @@ few for fault tolerance.
   monitor : Node where 
Accumulo monitoring web server is run.
   tserver : Accumulo 
worker processes. List all of the nodes where tablet
 servers should run.
-  tracer : Optional 
capability. Can specify zero or more nodes.
-  compaction.coordinator
 : Optional. Must specify one node. Can specify a few
+  sserver : Optional. 
List of all nodes where scan servers should run.
+  compaction.coordinator
 : Optional. Must specify one node. Can specify a few
 for fault tolerance.
-  compaction.compactor : 
Optional. Accumulo external compactor processes. List of
+  compaction.compactor
 : Optional. Accumulo external compactor processes. List of
 all nodes where compactors should run.
 
 
diff --git a/output/feed.xml b/output/feed.xml
index d3a9e2cd..d5cf626f 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 02 Nov 2022 04:27:59 +
-Wed, 02 Nov 2022 04:27:59 +
+Wed, 02 Nov 2022 04:35:18 +
+Wed, 02 Nov 2022 04:35:18 +
 Jekyll v4.3.1
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 4d39edf0..e37ea88f 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -79,7 +79,7 @@
   
 "docs-2-x-configuration-files": {
   "title": "Configuration Files",
-  "content": "Accumulo has the following configuration files which can be 
found in theconf/ directory of the Accumulo release 
tarball.accumulo.propertiesThe accumulo.properties file configures Accumulo 
server processes usingserver properties. This file can be found in the 
conf/direcory. It is needed on every host that runs Accumulo processes. 
Therfore, any configuration should bereplicated to all hosts of the Accumulo 
cluster. If a property is not configured here, it might have beenc [...]
+  "content": "Accumulo has the following configuration files which can be 
found in theconf/ directory of the Accumulo release 
tarball.accumulo.propertiesThe accumulo.properties file configures Accumulo 
server processes usingserver properties. This file can be found in the 
conf/direcory. It is needed on every host that runs Accumulo 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new ed3eef00 Automatic Site Publish by Buildbot
ed3eef00 is described below

commit ed3eef00f3c3fb89289fa388f97f1e9e1331012b
Author: buildbot 
AuthorDate: Tue Nov 1 20:22:19 2022 +

Automatic Site Publish by Buildbot
---
 output/contributor/making-release.html | 4 ++--
 output/docs/2.x/administration/monitoring-metrics.html | 2 +-
 output/feed.xml| 4 ++--
 output/search_data.json| 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/output/contributor/making-release.html 
b/output/contributor/making-release.html
index a84de9f0..fb2b811c 100644
--- a/output/contributor/making-release.html
+++ b/output/contributor/making-release.html
@@ -172,8 +172,8 @@ git svn dcommit --username=ASF_Username
 
   
   Ensure that you’re building Apache Accumulo with a username that has the 
same name as your Apache ID (this is due to
-the maven-release-plugin and staging the release candidate).  Your Apache ID 
and password should be in a  section of ~/.m2/settings.xml as shown 
[here][apache-mvn].
-To encrypt the password follow these [instructions][mvnenc].
+the maven-release-plugin and staging the release candidate). Your Apache ID 
and password should be in a server section of ~/.m2/settings.xml as shown 
https://infra.apache.org/publishing-maven-artifacts.html;>here.
+To encrypt the password follow these https://maven.apache.org/guides/mini/guide-encryption.html;>instructions.
   Have a clean workspace before starting.
   The build will require having the same version of http://archive.apache.org/dist/thrift/;>Thrift binary installed on 
your machine.
 
diff --git a/output/docs/2.x/administration/monitoring-metrics.html 
b/output/docs/2.x/administration/monitoring-metrics.html
index b077b6d2..70b1e1a7 100644
--- a/output/docs/2.x/administration/monitoring-metrics.html
+++ b/output/docs/2.x/administration/monitoring-metrics.html
@@ -523,7 +523,7 @@ Accumulo processes log files when debugging missing metrics 
output.
 
 Metric Names
 
-See the javadoc for %{ jlink 
org.apache.accumulo.core.metrics.MetricsProducer %} for a list of metric names 
that will be
+See the javadoc for https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.1.0/org/apache/accumulo/core/metrics/MetricsProducer.html;>MetricsProducer
 for a list of metric names that will be
 emitted and a mapping to their prior names when Accumulo was using Hadoop 
Metrics2.
 
 
diff --git a/output/feed.xml b/output/feed.xml
index a1b67d52..a4864bca 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 01 Nov 2022 19:54:07 +
-Tue, 01 Nov 2022 19:54:07 +
+Tue, 01 Nov 2022 20:22:13 +
+Tue, 01 Nov 2022 20:22:13 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 9c073eb1..609eb1c4 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -37,7 +37,7 @@
   
 "docs-2-x-administration-monitoring-metrics": {
   "title": "Monitoring  Metrics",
-  "content" : "MonitoringAccumulo MonitorThe Accumulo Monitor 
provides a web UI with information on the health and status of Accumulo.The 
monitor can be viewed at:  http://localhost:9995 - if Accumulo is running 
locally (for development)  http://lt;MONITOR_HOSTgt;:9995/ - if 
Accumulo is running on a clusterThe Overview page (shown below) contains some 
summary information about the Accumulo instance and graphsdisplaying various 
metrics over time. These include ingest and sc [...]
+  "content" : "MonitoringAccumulo MonitorThe Accumulo Monitor 
provides a web UI with information on the health and status of Accumulo.The 
monitor can be viewed at:  http://localhost:9995 - if Accumulo is running 
locally (for development)  http://lt;MONITOR_HOSTgt;:9995/ - if 
Accumulo is running on a clusterThe Overview page (shown below) contains some 
summary information about the Accumulo instance and graphsdisplaying various 
metrics over time. These include ingest and sc [...]
   "url": " /docs/2.x/administration/monitoring-metrics",
   "categories": "administration"
 },



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new aad97efe Automatic Site Publish by Buildbot
aad97efe is described below

commit aad97efe7297c209b19e2e2a6e97070e696e5162
Author: buildbot 
AuthorDate: Tue Nov 1 18:37:16 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.0/index.html | 10 +-
 output/search_data.json  |  2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index f2beb965..bb2fd729 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 01 Nov 2022 15:27:17 +
-Tue, 01 Nov 2022 15:27:17 +
+Tue, 01 Nov 2022 18:37:11 +
+Tue, 01 Nov 2022 18:37:11 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index f35c2dbe..81170a69 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -448,13 +448,17 @@ client. https://github.com/apache/accumulo/issues/1808;>#1808 
-  A new page was also created for External Compactions that allows users 
to see the progress of compactions and other details about ongoing 
compactions.
   A new feature was added to the Tablet Server page to help users identify 
which tservers are in recovery mode. When 
 a tserver is recovering, its corresponding row in the Tablet Server Status 
table will be highlighted.
+  A new page was also created for External Compactions that allows users 
to see the progress of compactions and other details about ongoing compactions 
(see below).
 
 
 https://github.com/apache/accumulo/issues/2283;>#2283 https://github.com/apache/accumulo/issues/2294;>#2294 https://github.com/apache/accumulo/issues/2358;>#2358 https://github.com/apache/accumulo/issues/2663;>#2663
 
+
+
+
+
 New tserver scan timeout 
property
 
 The new property tserver.scan.results.max.timeout was added to allow 
configuration of the timeout. A bug was
@@ -462,10 +466,6 @@ discovered where tservers were running out of memory, 
partially due to this time
 is 1 second, but now it can be increased. It is the max time for the thrift 
client handler to wait for scan results before
 timing out. https://github.com/apache/accumulo/issues/2599;>#2599 
https://github.com/apache/accumulo/issues/2598;>#2598
 
-
-
-
-
 Other notable changes
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 4781ba3a..4f35ddfc 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -304,7 +304,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 05e7cbec Automatic Site Publish by Buildbot
05e7cbec is described below

commit 05e7cbecf06ee653db0982a540590a89e78fa236
Author: buildbot 
AuthorDate: Tue Oct 25 16:20:53 2022 +

Automatic Site Publish by Buildbot
---
 output/contributor/verifying-release.html | 195 --
 output/feed.xml   |   4 +-
 2 files changed, 104 insertions(+), 95 deletions(-)

diff --git a/output/contributor/verifying-release.html 
b/output/contributor/verifying-release.html
index 40ad14d5..c0973432 100644
--- a/output/contributor/verifying-release.html
+++ b/output/contributor/verifying-release.html
@@ -142,11 +142,9 @@
   
   Verifying a Release
   
-  This is a guide for the verification of a release candidate of 
Apache Accumulo. These steps are meant to encapsulate
-the requirements of the PMC set forth by the Foundation itself.
-
-The information here is meant to be an application of Foundation policy. 
When in doubt or conflict, any Foundation-level
-trumps anything written here.
+  This is a guide to help verify the quality of a release or 
release candidate. The testing described
+here is not a requirement of the Foundation, but may be useful to help PMC 
members decide how they
+wish to vote for a release candidate.
 
 Versioning
 
@@ -159,93 +157,101 @@ trumps anything written here.
 Below are some suggested tests that can be run (feel free to run your own 
custom tests too):
 
 
-  
-Run Accumulo’s unit and integration tests using the following 
command:
-
-  $ mvn verify
-
-  
-  
-Build the https://github.com/apache/accumulo-examples;>Accumulo Examples repo 
using the release candidate by updating the accumulo.version
-property in the pom.xml and using the staging repo. Also, run the 
unit/integration tests using mvn verify.
-  
-  
-Run Accumulo’s distributed tests (i.e. random walk, continuous ingest). 
These tests are intended to be run for days
-on end while injecting faults into the system. These are the tests that truly 
verify the correctness of Accumulo on
-real systems. Starting with 2.0, these tests are run using the https://github.com/apache/accumulo-testing;>Accumulo Testing repo. 
See the https://github.com/apache/accumulo-testing/blob/main/README.md;>README.md
-for more information.  Before 2.0, these tests are found in Accumulo tarball 
at test/system/randomwalk and
-test/system/continuous which include instructions on 
how to run the tests.
-  
+  Run only Accumulo’s unit tests and build the software using mvn package
+  Run Accumulo’s unit and integration tests using mvn verify
+  Build the https://github.com/apache/accumulo-examples;>Accumulo 
Examples repo using the release candidate by updating the
+accumulo.version 
property in the pom.xml and using the staging repo. Also, run the
+unit/integration tests using mvn verify.
+  Run Accumulo’s distributed tests (i.e. random walk, continuous ingest). 
These tests are intended
+to be run for hours or days, optionally injecting faults into the system 
through “agitation”.
+These tests simulate behaviors that can occur on a real deployment. Starting 
with 2.0, these tests
+are run using the https://github.com/apache/accumulo-testing;>Accumulo Testing repo. 
See the https://github.com/apache/accumulo-testing/blob/main/README.md;>README.md
 for more
+information. Before 2.0, these tests are found in Accumulo tarball at test/system/randomwalk and
+test/system/continuous which include instructions on 
how to run the tests.
 
 
 Project testing goals
 
-While contributors do not need perform all tests, there should a minimum 
amount of testing done by the project as whole before a release is made.
+While contributors do not need perform all tests, there should a minimum 
amount of testing done by
+the project as whole before a release. The testing that the developers do are 
documented in the
+release notes for that release.
 
-Testing for an Accumulo release includes a few steps that a developer may 
take without a Hadoop cluster and several that require a working cluster. For 
minor releases, 
-the tests which run on a Hadoop cluster are recommended to be completed but 
are not required. Running even a reduced set of tests against real hardware is 
always encouraged
-even if the full test suite (in breadth of nodes or duration) is not executed. 
If PMC members do not believe adequate testing was performed for the sake of 
making the proposed
-release, the release should be vetoed via the normal voting process. New major 
releases are expected to run a full test suite.
+Testing for an Accumulo release includes a few steps that a developer may 
take without a Hadoop

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-24 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e0eefe8c Automatic Site Publish by Buildbot
e0eefe8c is described below

commit e0eefe8c71364b8f20ec43ace4869d29b8494f37
Author: buildbot 
AuthorDate: Mon Oct 24 15:27:48 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 7 +++
 output/search_data.json  | 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index ecbb4583..da0a316e 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 20 Oct 2022 18:57:08 +
-Thu, 20 Oct 2022 18:57:08 +
+Mon, 24 Oct 2022 15:27:42 +
+Mon, 24 Oct 2022 15:27:42 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 7997989a..66f9c553 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -233,16 +233,15 @@ for more information. GitHub tickets related to these 
changes: compaction  and the
+design.md , compaction  and the
 External Compaction https://accumulo.apache.org/blog/2021/07/08/external-compactions.html;>blog
 post for more information. This work was completed
 over many tickets, see the GitHub https://github.com/apache/accumulo/projects/20;>project for the 
related issues. https://github.com/apache/accumulo/issues/2096;>#2096
 
 Scan Servers (experimental)
 
 This feature includes a new optional server component, Scan Server, that 
enables the user
-to run scans outside of the Tablet Server. See design.md},
-{% ghi 2411 , and https://github.com/apache/accumulo/issues/2665;>#2665 for more 
information.
+to run scans outside of the Tablet Server. See design.md ,
+https://github.com/apache/accumulo/issues/2411;>#2411, and https://github.com/apache/accumulo/issues/2665;>#2665 for more 
information.
 
 Fixed GC Metadata hotspots
 
diff --git a/output/search_data.json b/output/search_data.json
index b2fd0b9f..5c8ba521 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -312,7 +312,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-20 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d557fb1d Automatic Site Publish by Buildbot
d557fb1d is described below

commit d557fb1da8a8bcf3eb22516fe1850f5a0b841845
Author: buildbot 
AuthorDate: Thu Oct 20 18:57:13 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 1 +
 output/search_data.json  | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 236c09ef..ecbb4583 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 20 Oct 2022 18:56:49 +
-Thu, 20 Oct 2022 18:56:49 +
+Thu, 20 Oct 2022 18:57:08 +
+Thu, 20 Oct 2022 18:57:08 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 57c91a9c..7997989a 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -507,6 +507,7 @@ timing out. https://github.com/apache/accumulo/issues/2599;>#2599 <
   https://github.com/apache/accumulo/issues/2467;>#2467 Added 
option to fate shell command to cancel FaTE operations that are NEW or 
SUBMITTED
   https://github.com/apache/accumulo/issues/2562;>#2562 
Updated fate shell command to use CommandLine options instead of manual arg 
parsing
   https://github.com/apache/accumulo/issues/2524;>#2524 
Scheduled background tasks are now periodically checked to see if they 
failed
+  https://github.com/apache/accumulo/issues/3015;>#3015 
Modified Shell ConfigCommand to handle permission errors when getting 
configuration information
 
 
 Upgrading
diff --git a/output/search_data.json b/output/search_data.json
index 3e5cbeb3..b2fd0b9f 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -312,7 +312,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-20 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 55294274 Automatic Site Publish by Buildbot
55294274 is described below

commit 5529427466bbc7e50ecbd50d19e071cde4caf388
Author: buildbot 
AuthorDate: Thu Oct 20 18:56:54 2022 +

Automatic Site Publish by Buildbot
---
 output/contributor/making-release.html | 14 +-
 output/feed.xml|  4 ++--
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/output/contributor/making-release.html 
b/output/contributor/making-release.html
index 1612a0ff..69246e7b 100644
--- a/output/contributor/making-release.html
+++ b/output/contributor/making-release.html
@@ -158,7 +158,19 @@
 
 
   Use gpg-agent, and be sure to increase the gpg-agent cache timeout (via 
.gnupg/gpg-agent.conf) to ensure that the agent doesn’t require 
re-authentication mid-build, as it will cause things to fail. For example, you 
can add default-cache-ttl 
6000 to increase the timeout from the default of 10 minutes to over an 
hour. If you do not have a GPG key, reference the very thorough https://infra.apache.org/release-signing;>A [...]
-  Once you are able to sign a release, add your gpg key to the https://downloads.apache.org/accumulo/KEYS;>KEYS file (instructions 
are at the top of the file).  This will require updating the SVN repository 
(more below).
+  Once you are able to sign a release, add your gpg key to the https://downloads.apache.org/accumulo/KEYS;>KEYS file (instructions 
are at the top of the file).  This will require updating the SVN repository 
(more information below about the SVN repository). You can use something 
similar to the instructions below for updating the KEYS file:
+# install git-svn
+sudo yum install -y git-svn
+# clone the SVN repo into the directory accumulo-dist-gitsvn
+git svn clone https://dist.apache.org/repos/dist/release/accumulo 
accumulo-dist-gitsvn
+cd accumulo-dist-gitsvn
+# make changes to KEYS file, then commit the changes locally
+git add KEYS
+git commit
+# push the changes to the remote SVN repo
+git svn dcommit --username=ASF_Username
+
+  
   Ensure that you’re building Apache Accumulo with a username that has the 
same name as your Apache ID (this is due to
 the maven-release-plugin and staging the release candidate).  Your Apache ID 
and password should be in a  section of ~/.m2/settings.xml as shown 
[here][apache-mvn].
 To encrypt the password follow these [instructions][maven-enc].
diff --git a/output/feed.xml b/output/feed.xml
index 84d1cf5d..236c09ef 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 18 Oct 2022 17:54:17 +
-Tue, 18 Oct 2022 17:54:17 +
+Thu, 20 Oct 2022 18:56:49 +
+Thu, 20 Oct 2022 18:56:49 +
 Jekyll v4.2.0
 
 



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-18 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 36fa114c Automatic Site Publish by Buildbot
36fa114c is described below

commit 36fa114c109f773d1be0806a669c31b203885e1e
Author: buildbot 
AuthorDate: Tue Oct 18 17:54:22 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 414a11ba..84d1cf5d 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 18 Oct 2022 17:42:34 +
-Tue, 18 Oct 2022 17:42:34 +
+Tue, 18 Oct 2022 17:54:17 +
+Tue, 18 Oct 2022 17:54:17 +
 Jekyll v4.2.0
 
 



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-18 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 24d36ad1 Automatic Site Publish by Buildbot
24d36ad1 is described below

commit 24d36ad1072c12e4458302edf3bf9b58afa32554
Author: buildbot 
AuthorDate: Tue Oct 18 17:42:39 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 3a82fec0..414a11ba 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 13 Oct 2022 20:09:44 +
-Thu, 13 Oct 2022 20:09:44 +
+Tue, 18 Oct 2022 17:42:34 +
+Tue, 18 Oct 2022 17:42:34 +
 Jekyll v4.2.0
 
 



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-10-13 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new dc1c8096 Automatic Site Publish by Buildbot
dc1c8096 is described below

commit dc1c809611d1b41715f35eb1bb538ce310ffba4a
Author: buildbot 
AuthorDate: Thu Oct 13 20:09:50 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml   | 14 --
 output/release/accumulo-1.10.2/index.html |  5 +
 output/release/accumulo-2.0.1/index.html  |  5 +
 output/release/accumulo-2.1.0/index.html  |  2 ++
 output/search_data.json   |  6 +++---
 5 files changed, 27 insertions(+), 5 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index c20b4b36..3a82fec0 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 02 Sep 2022 15:52:39 +
-Fri, 02 Sep 2022 15:52:39 +
+Thu, 13 Oct 2022 20:09:44 +
+Thu, 13 Oct 2022 20:09:44 +
 Jekyll v4.2.0
 
 
@@ -175,6 +175,11 @@ it supersedes any prior 1.x version. Users are also 
encouraged to consider
 migrating to a 2.x version when one that is suitable for their needs becomes
 available./p
 
+h2 id=known-issuesKnown Issues/h2
+
+pApache Commons VFS was upgraded in a 
href=https://github.com/apache/accumulo/issues/1295#1295/a;
 and some users have reported
+issues similar to a 
href=https://issues.apache.org/jira/projects/VFS/issues/VFS-683VFS-683/a;.
 Possible solutions are discussed in a 
href=https://github.com/apache/accumulo/issues/2775#2775/a./p;
+
 h2 id=major-improvementsMajor Improvements/h2
 
 pThis release bundles a 
href=https://reload4j.qos.ch/reload4j/a; (a 
href=https://github.com/apache/accumulo/issues/2458#2458/a;)
 in
@@ -884,6 +889,11 @@ upgrade directly to 2.0.1, bypassing 2.0.0./p
 detailed changes can be seen in the git history. If anything is missing from
 this list, please a href=/contact-uscontact/a us 
to have it included./p
 
+h2 id=known-issuesKnown Issues/h2
+
+pApache Commons VFS was upgraded in a 
href=https://github.com/apache/accumulo/issues/1295#1295/a;
 and some users have reported
+issues similar to a 
href=https://issues.apache.org/jira/projects/VFS/issues/VFS-683VFS-683/a;.
 Possible solutions are discussed in a 
href=https://github.com/apache/accumulo/issues/2775#2775/a./p;
+
 h2 id=critical-bug-fixesCritical Bug Fixes/h2
 
 pThis release includes critical bug fixes to fix security bugs 
identified as
diff --git a/output/release/accumulo-1.10.2/index.html 
b/output/release/accumulo-1.10.2/index.html
index 7d2fb01d..4528e350 100644
--- a/output/release/accumulo-1.10.2/index.html
+++ b/output/release/accumulo-1.10.2/index.html
@@ -177,6 +177,11 @@ it supersedes any prior 1.x version. Users are also 
encouraged to consider
 migrating to a 2.x version when one that is suitable for their needs becomes
 available.
 
+Known Issues
+
+Apache Commons VFS was upgraded in https://github.com/apache/accumulo/issues/1295;>#1295 and some users 
have reported
+issues similar to https://issues.apache.org/jira/projects/VFS/issues/VFS-683;>VFS-683. 
Possible solutions are discussed in https://github.com/apache/accumulo/issues/2775;>#2775.
+
 Major Improvements
 
 This release bundles https://reload4j.qos.ch/;>reload4j (https://github.com/apache/accumulo/issues/2458;>#2458) in
diff --git a/output/release/accumulo-2.0.1/index.html 
b/output/release/accumulo-2.0.1/index.html
index b7ee79f3..c6c938bc 100644
--- a/output/release/accumulo-2.0.1/index.html
+++ b/output/release/accumulo-2.0.1/index.html
@@ -176,6 +176,11 @@ upgrade directly to 2.0.1, bypassing 2.0.0.
 detailed changes can be seen in the git history. If anything is missing from
 this list, please contact us to have it included.
 
+Known Issues
+
+Apache Commons VFS was upgraded in https://github.com/apache/accumulo/issues/1295;>#1295 and some users 
have reported
+issues similar to https://issues.apache.org/jira/projects/VFS/issues/VFS-683;>VFS-683. 
Possible solutions are discussed in https://github.com/apache/accumulo/issues/2775;>#2775.
+
 Critical Bug Fixes
 
 This release includes critical bug fixes to fix security bugs identified as
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 567fed69..57c91a9c 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -412,6 +412,8 @@ added to control the frequency at which this health check 
takes place. https://github.com/apache/accumulo-classloaders/tree/main/modules/vfs-class-loader;>repo
 and can now be specified using system properties. https://github.com/apache/accumulo/issues/1747;>#1747 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-09-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d0759d60 Automatic Site Publish by Buildbot
d0759d60 is described below

commit d0759d600e8a615c951a89f794d422f3dc39276a
Author: buildbot 
AuthorDate: Fri Sep 2 15:52:45 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/redirects.json| 2 +-
 output/release/accumulo-2.1.0/index.html | 9 -
 output/search_data.json  | 2 +-
 4 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index e880d200..c20b4b36 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 25 Jul 2022 11:01:43 +
-Mon, 25 Jul 2022 11:01:43 +
+Fri, 02 Sep 2022 15:52:39 +
+Fri, 02 Sep 2022 15:52:39 +
 Jekyll v4.2.0
 
 
diff --git a/output/redirects.json b/output/redirects.json
index aa7f1938..4d254bd5 100644
--- a/output/redirects.json
+++ b/output/redirects.json
@@ -1 +1 @@
-{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/","/release_notes/1.5.3.html":"https://accumulo.apache.org/release/accumulo-1.5.3/;
 [...]
\ No newline at end of file
+{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/","/release_notes/1.5.3.html":"https://accumulo.apache.org/release/accumulo-1.5.3/;
 [...]
\ No newline at end of file
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 57b21652..567fed69 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -231,12 +231,19 @@ for more information. GitHub tickets related to these 
changes: External Compactions 
(experimental)
 
-This release includes two new optional server components, 
CompactionCoordinator and Compactor,
+This feature includes two new optional server components, 
CompactionCoordinator and Compactor,
 that enables the user to run major compactions outside of the Tablet Server. 
See 
 compaction  and the
 External Compaction https://accumulo.apache.org/blog/2021/07/08/external-compactions.html;>blog
 post for more information. This work was completed
 over many tickets, see the GitHub https://github.com/apache/accumulo/projects/20;>project for the 
related issues. https://github.com/apache/accumulo/issues/2096;>#2096
 
+Scan Servers (experimental)
+
+This feature includes a new optional server component, Scan Server, that 
enables the user
+to run scans outside of the Tablet Server. See design.md},
+{% ghi 2411 , and https://github.com/apache/accumulo/issues/2665;>#2665 for more 
information.
+
 Fixed GC Metadata hotspots
 
 Prior to this release, Accumulo stored GC file candidates in the metadata 
table
diff --git a/output/search_data.json b/output/search_data.json
index 0f6c3350..b0cef9d2 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -312,7 +312,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-07-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d03c5c94 Automatic Site Publish by Buildbot
d03c5c94 is described below

commit d03c5c94283c5f76e7d8ad983c58a4a2c6525ae7
Author: buildbot 
AuthorDate: Mon Jul 25 11:01:50 2022 +

Automatic Site Publish by Buildbot
---
 output/blog/2022/06/22/2.1.0-metrics-and-tracing.html | 5 ++---
 output/feed.xml   | 9 -
 output/search_data.json   | 2 +-
 3 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html 
b/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
index 5a27ead6..9d69e180 100644
--- a/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
+++ b/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
@@ -186,7 +186,6 @@ wget 
https://raw.githubusercontent.com/apache/accumulo-testing/main/contrib/terr
   
   Start the TIG Docker container
 docker run --ulimit 
nofile=66000:66000 -d --rm \
- --restart always \
  --name tig-stack \
  -p 3003:3003 \
  -p 3004: \
@@ -242,7 +241,7 @@ 
general.micrometer.factory=org.apache.accumulo.test.metrics.TestStatsDRegistryFa
 
   
   Download OpenTelemetry Java Agent 
(https://github.com/open-telemetry/opentelemetry-java/tree/main/sdk-extensions/autoconfigure)
-  wget -O 
opentelemetry-javaagent-1.14.0.jar 
https://search.maven.org/remotecontent?filepath=io/opentelemetry/javaagent/opentelemetry-javaagent/1.14.0/opentelemetry-javaagent-1.14.0.jar
+  wget -O 
opentelemetry-javaagent-1.15.0.jar 
https://search.maven.org/remotecontent?filepath=io/opentelemetry/javaagent/opentelemetry-javaagent/1.15.0/opentelemetry-javaagent-1.15.0.jar
 
   
   To enable tracing, you need to set the general.opentelemetry.enabled property. Modify the 
accumulo.properties configuration file and add the following property.
@@ -261,7 +260,7 @@ general.opentelemetry.enabled=true
   #JAVA_OPTS=('-Dotel.traces.exporter=jaeger' '-Dotel.metrics.exporter=none' 
'-Dotel.logs.exporter=none' "${JAVA_OPTS[@]}")
   ## Optionally setup OpenTelemetry Java Agent
   ## See https://github.com/open-telemetry/opentelemetry-java-instrumentation 
for more options
-  #JAVA_OPTS=('-javaagent:path/to/opentelemetry-javaagent-all.jar' 
"${JAVA_OPTS[@]}")
+  #JAVA_OPTS=('-javaagent:path/to/opentelemetry-javaagent.jar' 
"${JAVA_OPTS[@]}")
 
   
   Start Jaeger Docker container
diff --git a/output/feed.xml b/output/feed.xml
index 21f1b9dd..e880d200 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 22 Jul 2022 14:45:27 +
-Fri, 22 Jul 2022 14:45:27 +
+Mon, 25 Jul 2022 11:01:43 +
+Mon, 25 Jul 2022 11:01:43 +
 Jekyll v4.2.0
 
 
@@ -51,7 +51,6 @@ wget 
https://raw.githubusercontent.com/apache/accumulo-testing/main/contrib/terr
   /li
   liStart the TIG Docker container
 div class=language-plaintext highlighter-rougediv 
class=highlightpre 
class=highlightcodedocker run --ulimit 
nofile=66000:66000 -d --rm \
- --restart always \
  --name tig-stack \
  -p 3003:3003 \
  -p 3004: \
@@ -107,7 +106,7 @@ 
general.micrometer.factory=org.apache.accumulo.test.metrics.TestStatsDRegistryFa
 /code/pre/div/div
   /li
   liDownload OpenTelemetry Java Agent 
(https://github.com/open-telemetry/opentelemetry-java/tree/main/sdk-extensions/autoconfigure)
-div class=language-plaintext highlighter-rougediv 
class=highlightpre 
class=highlightcode  wget -O 
opentelemetry-javaagent-1.14.0.jar 
https://search.maven.org/remotecontent?filepath=io/opentelemetry/javaagent/opentelemetry-javaagent/1.14.0/opentelemetry-javaagent-1.14.0.jar
+div class=language-plaintext highlighter-rougediv 
class=highlightpre 
class=highlightcode  wget -O 
opentelemetry-javaagent-1.15.0.jar 
https://search.maven.org/remotecontent?filepath=io/opentelemetry/javaagent/opentelemetry-javaagent/1.15.0/opentelemetry-javaagent-1.15.0.jar
 /code/pre/div/div
   /li
   liTo enable tracing, you need to set the code 
class=language-plaintext 
highlighter-rougegeneral.opentelemetry.enabled/code property. 
Modify the accumulo.properties configuration file and add the following 
property.
@@ -126,7 +125,7 @@ general.opentelemetry.enabled=true
   #JAVA_OPTS=('-Dotel.traces.exporter=jaeger' '-Dotel.metrics.exporter=none' 
'-Dotel.logs.exporter=none' ${JAVA_OPTS[@]})
   ## Optionally setup OpenTelemetry Java Agent
   ## See https://github.com/open-telemetry/opentelemetry-java-instrumentation 
for more options
-  #JAVA_OPTS=('-javaagent:path/to/opentelemetry-javaagent-all.jar' 
${JAVA_OPTS[@]})
+  

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-07-22 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2004869a Automatic Site Publish by Buildbot
2004869a is described below

commit 2004869a1a592c9479b30735fca617b992784836
Author: buildbot 
AuthorDate: Fri Jul 22 14:45:34 2022 +

Automatic Site Publish by Buildbot
---
 output/blog/2022/06/22/2.1.0-metrics-and-tracing.html | 2 +-
 output/feed.xml   | 6 +++---
 output/search_data.json   | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html 
b/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
index d42a4b41..5a27ead6 100644
--- a/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
+++ b/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
@@ -160,7 +160,7 @@
 
 Metrics Example
 
-This example uses a Docker container that contains 
Telegraf-InfluxDB-Grafana system. We will configure Accumulo to send metrics to 
the https://www.influxdata.com/time-series-platform/telegraf/;>Telegraf 
component running in the Docker image. Telegraf will persist the metrics in https://www.influxdata.com/products/influxdb-overview/;>InfluxDB and 
then we will visualize the metris using https://grafana.com/;>Grafana. This example assumes that you h [...]
+This example uses a Docker container that contains 
Telegraf-InfluxDB-Grafana system. We will configure Accumulo to send metrics to 
the https://www.influxdata.com/time-series-platform/telegraf/;>Telegraf 
component running in the Docker image. Telegraf will persist the metrics in https://www.influxdata.com/products/influxdb-overview/;>InfluxDB and 
then we will visualize the metrics using https://grafana.com/;>Grafana. This example assumes that you  [...]
 
 
   Download the Telegraf-Influx-Grafana (TIG) Docker image
diff --git a/output/feed.xml b/output/feed.xml
index 07a87021..21f1b9dd 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 08 Jul 2022 10:57:26 +
-Fri, 08 Jul 2022 10:57:26 +
+Fri, 22 Jul 2022 14:45:27 +
+Fri, 22 Jul 2022 14:45:27 +
 Jekyll v4.2.0
 
 
@@ -25,7 +25,7 @@
 
 h2 id=metrics-exampleMetrics Example/h2
 
-pThis example uses a Docker container that contains 
Telegraf-InfluxDB-Grafana system. We will configure Accumulo to send metrics to 
the a 
href=https://www.influxdata.com/time-series-platform/telegraf/Telegraf/a;
 component running in the Docker image. Telegraf will persist the metrics in 
a 
href=https://www.influxdata.com/products/influxdb-overview/InfluxDB/a;
 and then we will visualize the metris using a href=https:// [...]
+pThis example uses a Docker container that contains 
Telegraf-InfluxDB-Grafana system. We will configure Accumulo to send metrics to 
the a 
href=https://www.influxdata.com/time-series-platform/telegraf/Telegraf/a;
 component running in the Docker image. Telegraf will persist the metrics in 
a 
href=https://www.influxdata.com/products/influxdb-overview/InfluxDB/a;
 and then we will visualize the metrics using a href=https:/ [...]
 
 ol
   liDownload the Telegraf-Influx-Grafana (TIG) Docker image
diff --git a/output/search_data.json b/output/search_data.json
index 2367f81a..493db6ab 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -304,7 +304,7 @@
   
 "blog-2022-06-22-2-1-0-metrics-and-tracing-html": {
   "title": "2.1.0 Metrics and Tracing Changes",
-  "content" : "Metrics and Tracing changed in 2.1.0. This post 
explains the new implementations and provides examples on how to configure 
them.MetricsAccumulo was modified in version 1.7.0 (2015) to use the Hadoop 
Metrics2 framework for capturing and emitting internal Accumulo metrics. 
Micrometer, a newer metrics framework, supports sending metrics to many popular 
monitoring systems. In Accumulo 2.1.0 support for the Hadoop Metrics2 framework 
has been removed in favor of using Micro [...]
+  "content" : "Metrics and Tracing changed in 2.1.0. This post 
explains the new implementations and provides examples on how to configure 
them.MetricsAccumulo was modified in version 1.7.0 (2015) to use the Hadoop 
Metrics2 framework for capturing and emitting internal Accumulo metrics. 
Micrometer, a newer metrics framework, supports sending metrics to many popular 
monitoring systems. In Accumulo 2.1.0 support for the Hadoop Metrics2 framework 
has been removed in favor of using Micro [...]
   "url": " /blog/2022/06/22/2.1.0-metrics-and-tracing.html",
   "categories": "blog"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-07-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e40c2a4b Automatic Site Publish by Buildbot
e40c2a4b is described below

commit e40c2a4b829219e931687f3a1ee2196aad78419e
Author: buildbot 
AuthorDate: Fri Jul 8 10:57:33 2022 +

Automatic Site Publish by Buildbot
---
 .../blog/2022/06/22/2.1.0-metrics-and-tracing.html | 313 +
 output/feed.xml| 296 +--
 .../Grafana_Screenshot.png | Bin 0 -> 110206 bytes
 .../Jaeger_Screenshot.png  | Bin 0 -> 115638 bytes
 output/index.html  |  14 +-
 output/news/index.html |   7 +
 output/search_data.json|   8 +
 7 files changed, 486 insertions(+), 152 deletions(-)

diff --git a/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html 
b/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
new file mode 100644
index ..d42a4b41
--- /dev/null
+++ b/output/blog/2022/06/22/2.1.0-metrics-and-tracing.html
@@ -0,0 +1,313 @@
+
+
+
+
+
+
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/paper/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-awusxf8AUojygHf2+joICySzB780jVvQaVCAt1clU3QsyAitLGul28Qxb2r1e5g+"
 crossorigin="anonymous">
+
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
+
+
+2.1.0 Metrics and Tracing Changes
+
+https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.js";>
+https://www.apachecon.com/event-images/snippet.js";>
+
+  // show location of canonical site if not currently on the canonical site
+  $(function() {
+var host = window.location.host;
+if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
+  $('#non-canonical').show();
+}
+  });
+
+  $(function() {
+// decorate section headers with anchors
+return $("h2, h3, h4, h5, h6").each(function(i, el) {
+  var $el, icon, id;
+  $el = $(el);
+  id = $el.attr('id');
+  icon = '';
+  if (id) {
+return $el.append($("").addClass("header-link").attr("href", "#" 
+ id).html(icon));
+  }
+});
+  });
+
+  // fix sidebar width in documentation
+  $(function() {
+var $affixElement = $('div[data-spy="affix"]');
+$affixElement.width($affixElement.parent().width());
+  });
+
+
+
+
+
+  
+  
+
+  
+Toggle navigation
+
+
+
+  
+  
+
+
+  
+Download
+Tour
+
+  Releases
+  
+2.0.1 (Latest)
+1.10.2
+Archive
+  
+
+
+  Documentation
+  
+User Manual (2.x)
+Javadocs (2.0)
+Public API
+Quickstart (1.x)
+Accumulo Maven 
Plugin
+User Manual 
(1.10)
+Javadocs (1.10)
+External Docs
+Archive
+  
+
+
+  Community
+  
+Contact Us
+How To Contribute
+People
+Related Projects
+  
+
+Search
+  
+  
+
+  https://www.apache.org/foundation/press/kit/feather.svg; width="15"/>
+  
+https://www.apache.org;>Apache Homepage 
+https://www.apache.org/licenses/;>License 
+https://www.apache.org/foundation/sponsorship;>Sponsorship 
+https://www.apache.org/security;>Security 
+https://www.apache.org/foundation/thanks;>Thanks 
+https://www.apache.org/foundation/policies/conduct;>Code of Conduct 
+https://www.apache.org/events/current-event.html;>Current Event 
+  
+
+  
+
+  
+
+
+
+  
+
+  
+
+
+  Visit the official site at: https://accumulo.apache.org;>https://accumulo.apache.org
+
+
+  
+  2.1.0 Metrics and Tracing Changes
+  
+  
+Author: Dave Marion
+Date: 22 Jun 2022
+
+
+
+Metrics and Tracing changed in 2.1.0. This post explains the new 
implementations and provides examples on how to configure them.
+
+Metrics
+
+Accumulo was https://issues.apache.org/jira/browse/ACCUMULO-1817;>modified in 
version 1.7.0 (2015) to use the Hadoop Metrics2 framework for capturing and 
emitting internal 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-06-15 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 7da33815 Automatic Site Publish by Buildbot
7da33815 is described below

commit 7da33815fa36a7a1a71798806548c5e6c019af36
Author: buildbot 
AuthorDate: Wed Jun 15 15:01:35 2022 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/caching.html|  3 +++
 output/docs/2.x/administration/scan-executors.html | 12 
 output/docs/2.x/getting-started/features.html  |  6 ++
 output/feed.xml|  4 ++--
 output/search_data.json|  6 +++---
 5 files changed, 26 insertions(+), 5 deletions(-)

diff --git a/output/docs/2.x/administration/caching.html 
b/output/docs/2.x/administration/caching.html
index 77a4d344..ee3053b1 100644
--- a/output/docs/2.x/administration/caching.html
+++ b/output/docs/2.x/administration/caching.html
@@ -442,6 +442,9 @@ for tables where read performance is critical.
 
 Configuration
 
+The tserver.cache.manager.class
 property controls which block cache implementation is used within the tablet 
server. Users
+can supply their own implementation and set custom configuration properties to 
control it’s behavior (see 
org.apache.accumulo.core.spi.cache.BlockCacheManager$Configuration.java).
+
 The index and data block caches are configured for tables by the following 
properties:
 
 
diff --git a/output/docs/2.x/administration/scan-executors.html 
b/output/docs/2.x/administration/scan-executors.html
index 7922615d..35f36a19 100644
--- a/output/docs/2.x/administration/scan-executors.html
+++ b/output/docs/2.x/administration/scan-executors.html
@@ -573,6 +573,18 @@ priority of 1.
 scan -t tex --execution-hints scan_type=alpha
 
 
+Execution Hints can also be used to influence how the block caches are used 
for
+a scan. The following configuration would modify the gamma executor to use blocks
+in the cache if they are already cached, but would never load mising blocks 
into the
+cache.
+
+config -t tex -s 
table.scan.dispatcher.opts.cacheUsage.gamma=opportunistic
+
+
+Other valid values are disabled which does not use data in the block caches,
+enabled which uses 
the block cache as it normally would and table which enables
+the block cache for the scan if it’s enabled on the table.
+
 
 
 
diff --git a/output/docs/2.x/getting-started/features.html 
b/output/docs/2.x/getting-started/features.html
index d7126aa1..dad6f37a 100644
--- a/output/docs/2.x/getting-started/features.html
+++ b/output/docs/2.x/getting-started/features.html
@@ -726,6 +726,12 @@ it is very unlikely that more data will be written to it, 
and thus paying the pe
 to re-write a large file can be avoided. Implementations of this compaction 
strategy
 can be used to optimize the data that compactions will write.
 
+Pluggable Block Caches
+
+Accumulo provides two BlockCacheManager implementations 
(LruBlockCacheManager and
+TinyLfuBlockCacheManager) that construct on-heap block caches. Users can 
provide
+alternate BlockCacheManager implementations using the property tserver.cache.manager.class.
+
 General Administration
 
 Monitor page
diff --git a/output/feed.xml b/output/feed.xml
index 8652c881..31cf3087 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Sat, 28 May 2022 15:05:48 +
-Sat, 28 May 2022 15:05:48 +
+Wed, 15 Jun 2022 15:01:27 +
+Wed, 15 Jun 2022 15:01:27 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 64e16545..43c1dc9d 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -2,7 +2,7 @@
   
 "docs-2-x-administration-caching": {
   "title": "Caching",
-  "content" : "Accumulo tablet servers have block caches that 
buffer data in memory to limit reads from disk.This caching has the following 
benefits:  reduces latency when reading data  helps alleviate hotspots in 
tablesEach tablet server has an index and data block cache that is shared by 
all hosted tablets (see the tablet server diagramto learn more). A typical 
Accumulo read operation will perform a binary search over several index blocks 
followed by a linear scanof one or more da [...]
+  "content" : "Accumulo tablet servers have block caches that 
buffer data in memory to limit reads from disk.This caching has the following 
benefits:  reduces latency when reading data  helps alleviate hotspots in 
tablesEach tablet server has an index and data block cache that is shared by 
all hosted tablets (see the tablet server diagramto learn more). A typical 
Accumulo read operation will perform a binary search over 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-05-28 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new c6d7714d Automatic Site Publish by Buildbot
c6d7714d is described below

commit c6d7714d6a5699638557b6c193494a9d8e34016a
Author: buildbot 
AuthorDate: Sat May 28 15:05:55 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/people/index.html | 13 +
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 656a803c..8652c881 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 27 May 2022 13:02:17 +
-Fri, 27 May 2022 13:02:17 +
+Sat, 28 May 2022 15:05:48 +
+Sat, 28 May 2022 15:05:48 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 18e4505e..5980c336 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -433,7 +433,7 @@ $(function() {
 
   Akshit Mangotra
    
-  https://www.timeanddate.com/time/zones/ist-ireland;>IST
+  https://www.timeanddate.com/time/zones/ist;>IST
 
 
   Al Krinker
@@ -453,7 +453,7 @@ $(function() {
 
   Amisha Sahu
    
-  https://www.timeanddate.com/time/zones/ist-ireland;>IST
+  https://www.timeanddate.com/time/zones/ist;>IST
 
 
   Andrew George Wells
@@ -713,7 +713,7 @@ $(function() {
 
   Kartik Sethi
    
-  https://www.timeanddate.com/worldclock/india/new-delhi;>IST
+  https://www.timeanddate.com/time/zones/ist;>IST
 
 
   Kenneth McFarland
@@ -908,7 +908,7 @@ $(function() {
 
   Shivakumar Gangamath
    
-  https://www.timeanddate.com/time/zones/ist-ireland;>IST
+  https://www.timeanddate.com/time/zones/ist;>IST
 
 
   Steve Loughran
@@ -920,6 +920,11 @@ $(function() {
    
    
 
+
+  Swastik Pal
+   
+  https://www.timeanddate.com/time/zones/ist;>IST
+
 
   Szabolcs Bukros
   https://www.cloudera.com;>Cloudera



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-05-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 4ba003c7 Automatic Site Publish by Buildbot
4ba003c7 is described below

commit 4ba003c75d778683f75105215f8a4eb84c1bdfd5
Author: buildbot 
AuthorDate: Fri May 27 13:02:24 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml| 4 ++--
 output/tour/getting-started/index.html | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 3d52fcf6..656a803c 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 25 May 2022 18:20:53 +
-Wed, 25 May 2022 18:20:53 +
+Fri, 27 May 2022 13:02:17 +
+Fri, 27 May 2022 13:02:17 +
 Jekyll v4.2.0
 
 
diff --git a/output/tour/getting-started/index.html 
b/output/tour/getting-started/index.html
index eb726945..54fe4166 100644
--- a/output/tour/getting-started/index.html
+++ b/output/tour/getting-started/index.html
@@ -166,7 +166,7 @@ version of Accumulo that runs on your local filesystem.  It 
should only be used
 great here on the tour.  Files and logs used by https://static.javadoc.io/org.apache.accumulo/accumulo-minicluster/2.0.1/org/apache/accumulo/minicluster/MiniAccumuloCluster.html;>MiniAccumuloCluster
 can be seen in the target/mac## directory.
   
   Modify the exercise method to print a hello message. You will 
put your code in this method for each lesson.
-  static void exercise(AccumuloClient client) {
+  static void exercise(AccumuloClient client) throws 
Exception {
  // Write your code here
  System.out.println("Hello 
world");
   }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-05-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 3f4ee2c8 Automatic Site Publish by Buildbot
3f4ee2c8 is described below

commit 3f4ee2c865db2ce0094fe0ca1a63e983d9c1182b
Author: buildbot 
AuthorDate: Wed May 25 18:21:00 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 3 +++
 output/search_data.json  | 2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 8bacebc7..3d52fcf6 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 02 May 2022 17:22:25 +
-Mon, 02 May 2022 17:22:25 +
+Wed, 25 May 2022 18:20:53 +
+Wed, 25 May 2022 18:20:53 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index dc31d7dc..57b21652 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -461,7 +461,10 @@ timing out. https://github.com/apache/accumulo/issues/2599;>#2599 <
 Other notable changes
 
 
+  https://github.com/apache/accumulo/issues/1174;>#1174 https://github.com/apache/accumulo/issues/816;>#816 Abstract metadata 
and change root metadata schema
   https://github.com/apache/accumulo/issues/1309;>#1309 
Prevent cloning metadata table
+  https://github.com/apache/accumulo/issues/1313;>#1313 https://github.com/apache/accumulo/issues/936;>#936 Store Root Tablet 
list of files in Zookeeper
+  https://github.com/apache/accumulo/issues/1310;>#1310 
Examine WALs used by root tablet during GC
   https://github.com/apache/accumulo/issues/1294;>#1294 https://github.com/apache/accumulo/issues/1299;>#1299 Add optional -t 
tablename to importdirectory shell command.
   https://github.com/apache/accumulo/issues/1332;>#1332 
Disable FileSystemMonitor checks by default
   https://github.com/apache/accumulo/issues/1345;>#1345 https://github.com/apache/accumulo/issues/1352;>#1352 Allow gc 
initiated compaction as option.
diff --git a/output/search_data.json b/output/search_data.json
index e994c0a3..64e16545 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -304,7 +304,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-05-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new ee5291ad Automatic Site Publish by Buildbot
ee5291ad is described below

commit ee5291ad4af87ab4b3edb085d50bffae057c1b62
Author: buildbot 
AuthorDate: Mon May 2 17:22:32 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.0/index.html | 25 +++--
 output/search_data.json  |  2 +-
 3 files changed, 18 insertions(+), 13 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index ffd5b8c7..8bacebc7 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 27 Apr 2022 12:26:47 +
-Wed, 27 Apr 2022 12:26:47 +
+Mon, 02 May 2022 17:22:25 +
+Mon, 02 May 2022 17:22:25 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 15e6c54f..dc31d7dc 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -227,7 +227,7 @@ can replace FileRef wi
 very likely that CompactionStrategy will be removed in a future release, any 
work put into rewriting a CompactionStrategy
 will be lost. It is recommended that users implement CompactionSelector, 
CompactionConfigurer, and CompactionPlanner instead.  The new compaction 
changes in 2.1 introduce new algorithms for optimally scheduling compactions 
across multiple thread pools, configuring a deprecated compaction strategy may 
result is missing out on the benefits of these new algorithms. See
 https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/2.0.1/org/apache/accumulo/tserver/compaction/CompactionStrategy.html;>javadoc
-for more information. Github tickets related to these changes: https://github.com/apache/accumulo/issues/564;>#564 https://github.com/apache/accumulo/issues/1605;>#1605 https://github.com/apache/accumulo/issues/1609;>#1609 https://github.com/apache/accumulo/issues/1649;>#1649
+for more information. GitHub tickets related to these changes: https://github.com/apache/accumulo/issues/564;>#564 https://github.com/apache/accumulo/issues/1605;>#1605 https://github.com/apache/accumulo/issues/1609;>#1609 https://github.com/apache/accumulo/issues/1649;>#1649
 
 External Compactions 
(experimental)
 
@@ -311,7 +311,7 @@ default per-table balancer has been updated from
 org.apache.accumulo.server.manager.balancer.SimpleLoadBalancer.
 If you have
 customized the tablet balancer configuration, you are strongly encouraged to
 update your configuration to reference the updated balancer names. If you
-written a custom tablet balancer, it should be updated to implement the new
+have written a custom tablet balancer, it should be updated to implement the 
new
 interface org.apache.accumulo.server.manager.balancer.TabletBalancer
 rather than extending the deprecated abstract
 org.apache.accumulo.server.master.balancer.TabletBalancer.
@@ -408,7 +408,7 @@ are in a new https://github.com/apache/accumulo-classloaders/tree/main/
 Change 
in uncaught Exception/Error handling in server-side threads
 
 Consolidated and normalized thread pool and thread creation. All threads 
created through this code path
-will have an UncaughtExceptionHanlder attached to it that will log the fact 
that the Thread encountered
+will have an UncaughtExceptionHandler attached to it that will log the fact 
that the Thread encountered
 an uncaught Exception and is now dead. When an Error is encountered in a 
server process, it will attempt
 to print a message to stderr then terminate the VM using Runtime.halt. On the 
client side, the default
 UncaughtExceptionHandler will only log the Exception/Error in the client and 
does not terminate the VM.
@@ -433,14 +433,19 @@ client. https://github.com/apache/accumulo/issues/1808;>#1808 Created new “jshell” convenience entry point https://github.com/apache/accumulo/issues/1870;>#1870 https://github.com/apache/accumulo/issues/1910;>#1910
 
-New Monitor Pages  
Improvments
+New Monitor Pages, 
Improvements  Features
 
-A page was added to the Monitor that lists the active compactions and the 
longest running
-active compaction. As an optimization, the page will only fetch data if a user 
loads the
-page and will only do so a maximum of once a minute. The same optimization was 
added for the Active Scans page,
-along with the addition of a “Fetched” column indicating when the data was 
retrieved. A new page was also created 
-for External Compactions that allows seeing the progress of compactions and 
many details about ongoing compactions.

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-04-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 733a0d7e Automatic Site Publish by Buildbot
733a0d7e is described below

commit 733a0d7eba178536b3a2ff308f05257979e5e981
Author: buildbot 
AuthorDate: Wed Apr 27 12:26:53 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |   4 +-
 output/release/accumulo-2.0.1/index.html |   4 +
 output/release/accumulo-2.1.0/index.html | 537 +++
 output/release/index.html|  11 +
 output/search_data.json  |   8 +
 5 files changed, 562 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 25ff257c..ffd5b8c7 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 27 Apr 2022 12:23:16 +
-Wed, 27 Apr 2022 12:23:16 +
+Wed, 27 Apr 2022 12:26:47 +
+Wed, 27 Apr 2022 12:26:47 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.0.1/index.html 
b/output/release/accumulo-2.0.1/index.html
index c0ddca2c..b7ee79f3 100644
--- a/output/release/accumulo-2.0.1/index.html
+++ b/output/release/accumulo-2.0.1/index.html
@@ -151,6 +151,8 @@
   
 
   
+Apache Accumulo 
2.1.0
+  
 
 
 
@@ -241,6 +243,8 @@ assistance working with newer versions of ZooKeeper.
   
 
   
+Apache Accumulo 
2.1.0
+  
 
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
new file mode 100644
index ..15e6c54f
--- /dev/null
+++ b/output/release/accumulo-2.1.0/index.html
@@ -0,0 +1,537 @@
+
+
+
+
+
+
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/paper/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-awusxf8AUojygHf2+joICySzB780jVvQaVCAt1clU3QsyAitLGul28Qxb2r1e5g+"
 crossorigin="anonymous">
+
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
+
+
+Apache Accumulo 2.1.0
+
+https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.js";>
+https://www.apachecon.com/event-images/snippet.js";>
+
+  // show location of canonical site if not currently on the canonical site
+  $(function() {
+var host = window.location.host;
+if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
+  $('#non-canonical').show();
+}
+  });
+
+  $(function() {
+// decorate section headers with anchors
+return $("h2, h3, h4, h5, h6").each(function(i, el) {
+  var $el, icon, id;
+  $el = $(el);
+  id = $el.attr('id');
+  icon = '';
+  if (id) {
+return $el.append($("").addClass("header-link").attr("href", "#" 
+ id).html(icon));
+  }
+});
+  });
+
+  // fix sidebar width in documentation
+  $(function() {
+var $affixElement = $('div[data-spy="affix"]');
+$affixElement.width($affixElement.parent().width());
+  });
+
+
+
+
+
+  
+  
+
+  
+Toggle navigation
+
+
+
+  
+  
+
+
+  
+Download
+Tour
+
+  Releases
+  
+2.0.1 (Latest)
+1.10.2
+Archive
+  
+
+
+  Documentation
+  
+User Manual (2.x)
+Javadocs (2.0)
+Public API
+Quickstart (1.x)
+Accumulo Maven 
Plugin
+User Manual 
(1.10)
+Javadocs (1.10)
+External Docs
+Archive
+  
+
+
+  Community
+  
+Contact Us
+How To Contribute
+People
+Related Projects
+  
+
+Search
+  
+  
+
+  https://www.apache.org/foundation/press/kit/feather.svg; width="15"/>
+  
+https://www.apache.org;>Apache Homepage 
+https://www.apache.org/licenses/;>License 
+https://www.apache.org/foundation/sponsorship;>Sponsorship 
+https://www.apache.org/security;>Security 
+https://www.apache.org/foundation/thanks;>Thanks 
+https://www.apache.org/foundation/policies/conduct;>Code of Conduct 
+https://www.apache.org/events/current-event.html;>Current Event 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-04-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 622f0a1a Automatic Site Publish by Buildbot
622f0a1a is described below

commit 622f0a1a071826563745003026a3ff31b28bba8c
Author: buildbot 
AuthorDate: Wed Apr 27 12:23:22 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |   4 +-
 output/release/accumulo-2.0.1/index.html |   4 -
 output/release/accumulo-2.1.0/index.html | 537 ---
 output/release/index.html|  11 -
 output/search_data.json  |   8 -
 5 files changed, 2 insertions(+), 562 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 621ebaba..25ff257c 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 27 Apr 2022 12:19:42 +
-Wed, 27 Apr 2022 12:19:42 +
+Wed, 27 Apr 2022 12:23:16 +
+Wed, 27 Apr 2022 12:23:16 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.0.1/index.html 
b/output/release/accumulo-2.0.1/index.html
index b7ee79f3..c0ddca2c 100644
--- a/output/release/accumulo-2.0.1/index.html
+++ b/output/release/accumulo-2.0.1/index.html
@@ -151,8 +151,6 @@
   
 
   
-Apache Accumulo 
2.1.0
-  
 
 
 
@@ -243,8 +241,6 @@ assistance working with newer versions of ZooKeeper.
   
 
   
-Apache Accumulo 
2.1.0
-  
 
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
deleted file mode 100644
index 5aff51eb..
--- a/output/release/accumulo-2.1.0/index.html
+++ /dev/null
@@ -1,537 +0,0 @@
-
-
-
-
-
-
-
-https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/paper/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-awusxf8AUojygHf2+joICySzB780jVvQaVCAt1clU3QsyAitLGul28Qxb2r1e5g+"
 crossorigin="anonymous">
-
-https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
-
-
-Apache Accumulo 2.1.0
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
-https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
-https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.js";>
-https://www.apachecon.com/event-images/snippet.js";>
-
-  // show location of canonical site if not currently on the canonical site
-  $(function() {
-var host = window.location.host;
-if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
-  $('#non-canonical').show();
-}
-  });
-
-  $(function() {
-// decorate section headers with anchors
-return $("h2, h3, h4, h5, h6").each(function(i, el) {
-  var $el, icon, id;
-  $el = $(el);
-  id = $el.attr('id');
-  icon = '';
-  if (id) {
-return $el.append($("").addClass("header-link").attr("href", "#" 
+ id).html(icon));
-  }
-});
-  });
-
-  // fix sidebar width in documentation
-  $(function() {
-var $affixElement = $('div[data-spy="affix"]');
-$affixElement.width($affixElement.parent().width());
-  });
-
-
-
-
-
-  
-  
-
-  
-Toggle navigation
-
-
-
-  
-  
-
-
-  
-Download
-Tour
-
-  Releases
-  
-2.0.1 (Latest)
-1.10.2
-Archive
-  
-
-
-  Documentation
-  
-User Manual (2.x)
-Javadocs (2.0)
-Public API
-Quickstart (1.x)
-Accumulo Maven 
Plugin
-User Manual 
(1.10)
-Javadocs (1.10)
-External Docs
-Archive
-  
-
-
-  Community
-  
-Contact Us
-How To Contribute
-People
-Related Projects
-  
-
-Search
-  
-  
-
-  https://www.apache.org/foundation/press/kit/feather.svg; width="15"/>
-  
-https://www.apache.org;>Apache Homepage 
-https://www.apache.org/licenses/;>License 
-https://www.apache.org/foundation/sponsorship;>Sponsorship 
-https://www.apache.org/security;>Security 
-https://www.apache.org/foundation/thanks;>Thanks 
-https://www.apache.org/foundation/policies/conduct;>Code of Conduct 
-https://www.apache.org/events/current-event.html;>Current 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-04-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new ebe8d988 Automatic Site Publish by Buildbot
ebe8d988 is described below

commit ebe8d988c0c3ce7dc59a5e2f6039d110b789240e
Author: buildbot 
AuthorDate: Wed Apr 27 12:19:49 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index c98f5908..621ebaba 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 07 Apr 2022 15:55:34 +
-Thu, 07 Apr 2022 15:55:34 +
+Wed, 27 Apr 2022 12:19:42 +
+Wed, 27 Apr 2022 12:19:42 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 040a35ab..18e4505e 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -835,6 +835,11 @@ $(function() {
    
   https://www.timeanddate.com/time/zones/cest;>CEST
 
+
+  Nikita Sirohi.
+  https://www.driveghost.com/;>Ghost Locomotion
+  https://www.timeanddate.com/time/zones/pt;>PT
+
 
   Oren Falkowitz
   http://sqrrl.com;>sqrrl



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-04-07 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new bfaed669 Automatic Site Publish by Buildbot
bfaed669 is described below

commit bfaed6692dce3263beefe4cdde2f5bd9a75906fa
Author: buildbot 
AuthorDate: Thu Apr 7 15:55:40 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 7 +++
 output/search_data.json  | 2 +-
 3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index f2aa9239..c98f5908 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 25 Mar 2022 16:21:36 +
-Fri, 25 Mar 2022 16:21:36 +
+Thu, 07 Apr 2022 15:55:34 +
+Thu, 07 Apr 2022 15:55:34 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index fc98a909..5aff51eb 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -442,6 +442,13 @@ along with the addition of a “Fetched” column indicating 
when the data was r
 for External Compactions that allows seeing the progress of compactions and 
many details about ongoing compactions.
 https://github.com/apache/accumulo/issues/2283;>#2283 https://github.com/apache/accumulo/issues/2294;>#2294 https://github.com/apache/accumulo/issues/2358;>#2358
 
+New tserver scan timeout 
property
+
+The new property tserver.scan.results.max.timeout was added to allow 
configuration of the timeout. A bug was
+discovered where tservers were running out of memory, partially due to this 
timeout being so short. The default value
+is 1 second, but now it can be increased. It is the max time for the thrift 
client handler to wait for scan results before
+timing out. https://github.com/apache/accumulo/issues/2599;>#2599 
https://github.com/apache/accumulo/issues/2598;>#2598
+
 
 
 
diff --git a/output/search_data.json b/output/search_data.json
index cd491c3e..4c25a5c9 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -360,7 +360,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-03-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new b1e00a9  Automatic Site Publish by Buildbot
b1e00a9 is described below

commit b1e00a9d11b13025daacf3dbac4d98c5e836820a
Author: buildbot 
AuthorDate: Fri Mar 25 16:21:42 2022 +

Automatic Site Publish by Buildbot
---
 output/contributors-guide/index.html | 2 +-
 output/feed.xml  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/output/contributors-guide/index.html 
b/output/contributors-guide/index.html
index e12538f..86098f3 100644
--- a/output/contributors-guide/index.html
+++ b/output/contributors-guide/index.html
@@ -193,7 +193,7 @@ effort. These projects will be named appropriately to 
indicate their purpose.Code Editors
 
 Feel free to use any editor when contributing Accumulo. If you are looking 
for a recommendation, many Accumulo
-developers use [IntelliJ] or [Eclipse]. Below are some basic instructions to 
help you get started.
+developers use https://www.jetbrains.com/idea/download;>IntelliJ 
or https://www.eclipse.org/downloads/packages;>Eclipse. Below are 
some basic instructions to help you get started.
 
 Project Governance
 
diff --git a/output/feed.xml b/output/feed.xml
index 6754af8..f2aa923 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 24 Mar 2022 18:24:35 +
-Thu, 24 Mar 2022 18:24:35 +
+Fri, 25 Mar 2022 16:21:36 +
+Fri, 25 Mar 2022 16:21:36 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-03-24 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 20270cb  Automatic Site Publish by Buildbot
20270cb is described below

commit 20270cb8907991388ee711f410c9fdad5f618622
Author: buildbot 
AuthorDate: Thu Mar 24 18:24:41 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.0/index.html | 11 +--
 output/search_data.json  |  2 +-
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index bd6af50..6754af8 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 24 Mar 2022 17:35:19 +
-Thu, 24 Mar 2022 17:35:19 +
+Thu, 24 Mar 2022 18:24:35 +
+Thu, 24 Mar 2022 18:24:35 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 1021e4f..fc98a90 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -409,8 +409,11 @@ are in a new https://github.com/apache/accumulo-classloaders/tree/main/
 
 Consolidated and normalized thread pool and thread creation. All threads 
created through this code path
 will have an UncaughtExceptionHanlder attached to it that will log the fact 
that the Thread encountered
-an uncaught Exception and is now dead. When an Error is encountered it will 
attempt to print a message
-to stderr then terminate the VM using Runtime.halt. https://github.com/apache/accumulo/issues/1808;>#1808 https://github.com/apache/accumulo/issues/1818;>#1818
+an uncaught Exception and is now dead. When an Error is encountered in a 
server process, it will attempt
+to print a message to stderr then terminate the VM using Runtime.halt. On the 
client side, the default
+UncaughtExceptionHandler will only log the Exception/Error in the client and 
does not terminate the VM.
+Additionally, the user has the ability to set their own 
UncaughtExceptionHandler implementation on the
+client. https://github.com/apache/accumulo/issues/1808;>#1808 https://github.com/apache/accumulo/issues/1818;>#1818 https://github.com/apache/accumulo/issues/2554;>#2554
 
 Updated hash algorithm
 
@@ -476,6 +479,10 @@ for External Compactions that allows seeing the progress 
of compactions and many
   https://github.com/apache/accumulo/issues/2117;>#2117 https://github.com/apache/accumulo/issues/2236;>#2236 Make sorted 
recovery write to RFiles. New tserver.wal.sort.file. property to configure
   https://github.com/apache/accumulo/issues/2076;>#2076 
Sorted recovery files can now be encrypted
   https://github.com/apache/accumulo/issues/2273;>#2273 
Upgrade Thrift to 0.15.0
+  https://github.com/apache/accumulo/issues/2462;>#2462 Added 
SUBMITTED FaTE status to differentiate between things that are submitted and 
running
+  https://github.com/apache/accumulo/issues/2467;>#2467 Added 
option to fate shell command to cancel FaTE operations that are NEW or 
SUBMITTED
+  https://github.com/apache/accumulo/issues/2562;>#2562 
Updated fate shell command to use CommandLine options instead of manual arg 
parsing
+  https://github.com/apache/accumulo/issues/2524;>#2524 
Scheduled background tasks are now periodically checked to see if they 
failed
 
 
 Upgrading
diff --git a/output/search_data.json b/output/search_data.json
index a349062..cd491c3 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -360,7 +360,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
  

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-03-24 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 3d1ede6  Automatic Site Publish by Buildbot
3d1ede6 is described below

commit 3d1ede6799132963c934eaaa79bff1f5961a36ec
Author: buildbot 
AuthorDate: Thu Mar 24 17:35:26 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 6 ++
 output/search_data.json  | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 522e2a3..bd6af50 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 21 Feb 2022 05:44:57 +
-Mon, 21 Feb 2022 05:44:57 +
+Thu, 24 Mar 2022 17:35:19 +
+Thu, 24 Mar 2022 17:35:19 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index fb75356..1021e4f 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -393,6 +393,12 @@ failsafe to prevent a single ingested file from being 
distributed across too muc
 by the new bulk import technique and is the maximum number of tablets allowed 
for one bulk import file. When this property
 is set, an error will be thrown when the value is exceeded during a bulk 
import. https://github.com/apache/accumulo/issues/1614;>#1614
 
+New Health check Thread in 
tserver
+
+A new thread was added to the tablet server to periodically verify tablet 
metadata. https://github.com/apache/accumulo/issues/2320;>#2320 
This thread also prints
+to the debug log how long it takes the tserver to scan the metadata table. The 
property tserver.health.check.interval was
+added to control the frequency at which this health check takes place. https://github.com/apache/accumulo/issues/2583;>#2583
+
 New ability for 
user to define context classloaders
 
 Deprecated the existing VFS ClassLoader for eventual removal and created a 
new mechanism for users
diff --git a/output/search_data.json b/output/search_data.json
index 8d5adee..a349062 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -360,7 +360,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2022-02-20 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d1d5d88  Automatic Site Publish by Buildbot
d1d5d88 is described below

commit d1d5d88d0b618ea1f73415926fc93bf4f9ac83fd
Author: buildbot 
AuthorDate: Mon Feb 21 05:45:04 2022 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 7ee7e2d..522e2a3 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Sun, 13 Feb 2022 18:16:48 +
-Sun, 13 Feb 2022 18:16:48 +
+Mon, 21 Feb 2022 05:44:57 +
+Mon, 21 Feb 2022 05:44:57 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index b280299..040a35a 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -731,6 +731,11 @@ $(function() {
    
 
 
+  Kylian Meulin
+   
+  https://www.timeanddate.com/time/zones/gmt;>GMT/https://www.timeanddate.com/time/zones/bst;>BST
+
+
   Laura Peaslee
   http://www.objectivesolutions.com;>Objective Solutions, 
Inc.
   https://www.timeanddate.com/time/zones/et;>ET


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-12-28 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new eff0b0c  Automatic Site Publish by Buildbot
eff0b0c is described below

commit eff0b0c46515b83e0f09740e82e928188d51164a
Author: buildbot 
AuthorDate: Tue Dec 28 14:57:50 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/in-depth-install.html | 8 
 output/feed.xml  | 4 ++--
 output/search_data.json  | 2 +-
 3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/output/docs/2.x/administration/in-depth-install.html 
b/output/docs/2.x/administration/in-depth-install.html
index b979d80..4baacc3 100644
--- a/output/docs/2.x/administration/in-depth-install.html
+++ b/output/docs/2.x/administration/in-depth-install.html
@@ -924,6 +924,14 @@ TabletServer to return before reassigning that 
TabletServer’s responsibilities
 TabletServers. If the TabletServer returns to the cluster before the specified 
timeout has elapsed,
 Accumulo will assign the TabletServer its original responsibilities.
 
+Tablet Status: Normally tablets will be in a HOSTED state. When a tserver 
goes off-line, the tablets
+assigned will transition to UNASSIGNED until they are reassigned by the 
Manager process to another
+active tserver.  With the table.suspend.duration
 set to  0, a tablet will go from HOSTED to
+SUSPENDED when the tserver goes offline. The tablets will stay SUSPENDED until 
the tserver comes
+back online or, if the table.suspend.duration
 has passed. If the table.suspend.duration has passed
+before the tserver has returned, it will then become UNASSIGNED and eligible 
for reassignment
+by the Manager. If a tablet is UNASSIGNED it will not enter the SUSPENDED 
state.
+
 It is important not to choose too large a value for table.suspend.duration,
 as during this time,
 all scans against the data that TabletServer had hosted will block (or time 
out).
 
diff --git a/output/feed.xml b/output/feed.xml
index 107cda0..16caefc 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 27 Dec 2021 17:06:29 +
-Mon, 27 Dec 2021 17:06:29 +
+Tue, 28 Dec 2021 14:57:44 +
+Tue, 28 Dec 2021 14:57:44 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index ec8d2fd..909d454 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -23,7 +23,7 @@
   
 "docs-2-x-administration-in-depth-install": {
   "title": "In-depth Installation",
-  "content" : "This document provides detailed instructions for 
installing Accumulo. For basicinstructions, see the quick start.HardwareBecause 
we are running essentially two or three systems simultaneously layeredacross 
the cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist 
of 4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machi [...]
+  "content" : "This document provides detailed instructions for 
installing Accumulo. For basicinstructions, see the quick start.HardwareBecause 
we are running essentially two or three systems simultaneously layeredacross 
the cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist 
of 4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machi [...]
   "url": " /docs/2.x/administration/in-depth-install",
   "categories": "administration"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-12-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 6273240  Automatic Site Publish by Buildbot
6273240 is described below

commit 62732404fe6cab02038e4b6c9f09185e2eb40640
Author: buildbot 
AuthorDate: Mon Dec 27 17:06:35 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/in-depth-install.html | 8 
 output/feed.xml  | 4 ++--
 output/search_data.json  | 2 +-
 3 files changed, 3 insertions(+), 11 deletions(-)

diff --git a/output/docs/2.x/administration/in-depth-install.html 
b/output/docs/2.x/administration/in-depth-install.html
index 074bb55..b979d80 100644
--- a/output/docs/2.x/administration/in-depth-install.html
+++ b/output/docs/2.x/administration/in-depth-install.html
@@ -924,14 +924,6 @@ TabletServer to return before reassigning that 
TabletServer’s responsibilities
 TabletServers. If the TabletServer returns to the cluster before the specified 
timeout has elapsed,
 Accumulo will assign the TabletServer its original responsibilities.
 
-Tablet Status: Normally tablets will be in a HOSTED state. When a tserver 
goes off-line, the tablets
-assigned will transition to UNASSIGNED until they are reassigned by the 
Manager process to another 
-active tserver.  With the table.suspend.duration
 set to  0, a tablet will go from HOSTED to 
-SUSPENDED when the tserver goes offline. The tablets will stay SUSPENDED until 
the tserver comes
-back online or, if the table.suspend.duration
 has passed. If the table.suspend.duration has passed
-before the tserver has returned, it will the become UNASSIGNED and eligible 
for reassignment
-by the Manager. If a tablet is UNASSIGNED it will not enter the SUSPENDED 
state.
-
 It is important not to choose too large a value for table.suspend.duration,
 as during this time,
 all scans against the data that TabletServer had hosted will block (or time 
out).
 
diff --git a/output/feed.xml b/output/feed.xml
index 75e3fb1..107cda0 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 27 Dec 2021 17:05:40 +
-Mon, 27 Dec 2021 17:05:40 +
+Mon, 27 Dec 2021 17:06:29 +
+Mon, 27 Dec 2021 17:06:29 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index b9de730..ec8d2fd 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -23,7 +23,7 @@
   
 "docs-2-x-administration-in-depth-install": {
   "title": "In-depth Installation",
-  "content" : "This document provides detailed instructions for 
installing Accumulo. For basicinstructions, see the quick start.HardwareBecause 
we are running essentially two or three systems simultaneously layeredacross 
the cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist 
of 4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machi [...]
+  "content" : "This document provides detailed instructions for 
installing Accumulo. For basicinstructions, see the quick start.HardwareBecause 
we are running essentially two or three systems simultaneously layeredacross 
the cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist 
of 4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machi [...]
   "url": " /docs/2.x/administration/in-depth-install",
   "categories": "administration"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-12-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2c5d093  Automatic Site Publish by Buildbot
2c5d093 is described below

commit 2c5d093ebf11c24d0a5da9f7cb0b2a385be5f5c2
Author: buildbot 
AuthorDate: Mon Dec 27 17:05:46 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml|   4 ++--
 output/images/release/active-compactions-table.png | Bin 26834 -> 0 bytes
 output/images/release/ec-running-details.png   | Bin 0 -> 131341 bytes
 output/images/release/ec-running2.png  | Bin 0 -> 66055 bytes
 output/release/accumulo-2.1.0/index.html   |  16 +---
 output/search_data.json|   2 +-
 6 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 18413c4..75e3fb1 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 27 Dec 2021 16:14:14 +
-Mon, 27 Dec 2021 16:14:14 +
+Mon, 27 Dec 2021 17:05:40 +
+Mon, 27 Dec 2021 17:05:40 +
 Jekyll v4.2.0
 
 
diff --git a/output/images/release/active-compactions-table.png 
b/output/images/release/active-compactions-table.png
deleted file mode 100644
index d2c9925..000
Binary files a/output/images/release/active-compactions-table.png and /dev/null 
differ
diff --git a/output/images/release/ec-running-details.png 
b/output/images/release/ec-running-details.png
new file mode 100644
index 000..506fd5a
Binary files /dev/null and b/output/images/release/ec-running-details.png differ
diff --git a/output/images/release/ec-running2.png 
b/output/images/release/ec-running2.png
new file mode 100644
index 000..3311235
Binary files /dev/null and b/output/images/release/ec-running2.png differ
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 87a937a..5332886 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -376,6 +376,12 @@ TABLE: accumulo.metadata
 2default_tablet  0 0 0 0 HOSTED 
CURRENT:ip-10-113-12-25:9997   !0~+INF
 
 
+New Utility for generating 
splits
+
+A new command line utility was created to generate split points from 1 or 
more rfiles. One or more HDFS directories can
+be given as well. The utility will iterate over all the files provided and 
determine the proper split points
+based on either the size or number given. It uses Apache Datasketches to get 
the split points from the data. https://github.com/apache/accumulo/issues/2361;>#2361 https://github.com/apache/accumulo/issues/2368;>#2368
+
 New option for cloning offline
 
 Added option to leave cloned tables offline https://github.com/apache/accumulo/issues/1474;>#1474 https://github.com/apache/accumulo/issues/1475;>#1475
@@ -418,14 +424,18 @@ to stderr then terminate the VM using Runtime.halt. https://github.com/
 
 Created new “jshell” convenience entry point https://github.com/apache/accumulo/issues/1870;>#1870 https://github.com/apache/accumulo/issues/1910;>#1910
 
-New Monitor Compactions 
page  optimization
+New Monitor Pages  
Improvments
 
 A page was added to the Monitor that lists the active compactions and the 
longest running
 active compaction. As an optimization, the page will only fetch data if a user 
loads the
 page and will only do so a maximum of once a minute. The same optimization was 
added for the Active Scans page,
-along with the addition of a “Fetched” column indicating when the data was 
retrieved. https://github.com/apache/accumulo/issues/2283;>#2283 
https://github.com/apache/accumulo/issues/2294;>#2294
+along with the addition of a “Fetched” column indicating when the data was 
retrieved. A new page was also created 
+for External Compactions that allows seeing the progress of compactions and 
many details about ongoing compactions.
+https://github.com/apache/accumulo/issues/2283;>#2283 https://github.com/apache/accumulo/issues/2294;>#2294 https://github.com/apache/accumulo/issues/2358;>#2358
+
+
 
-
+
 
 Other notable changes
 
diff --git a/output/search_data.json b/output/search_data.json
index 5cb0712..b9de730 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-12-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2b1bc53  Automatic Site Publish by Buildbot
2b1bc53 is described below

commit 2b1bc535974d3acb56553eeb26dc4a0332bb789e
Author: buildbot 
AuthorDate: Mon Dec 27 16:14:20 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml|   4 ++--
 output/images/release/active-compactions-table.png | Bin 0 -> 26834 bytes
 output/images/release/ec-running-details.png   | Bin 131341 -> 0 bytes
 output/images/release/ec-running2.png  | Bin 66055 -> 0 bytes
 output/release/accumulo-2.1.0/index.html   |  16 +++-
 output/search_data.json|   2 +-
 6 files changed, 6 insertions(+), 16 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index ac2c6a2..18413c4 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 27 Dec 2021 16:08:45 +
-Mon, 27 Dec 2021 16:08:45 +
+Mon, 27 Dec 2021 16:14:14 +
+Mon, 27 Dec 2021 16:14:14 +
 Jekyll v4.2.0
 
 
diff --git a/output/images/release/active-compactions-table.png 
b/output/images/release/active-compactions-table.png
new file mode 100644
index 000..d2c9925
Binary files /dev/null and b/output/images/release/active-compactions-table.png 
differ
diff --git a/output/images/release/ec-running-details.png 
b/output/images/release/ec-running-details.png
deleted file mode 100644
index 506fd5a..000
Binary files a/output/images/release/ec-running-details.png and /dev/null differ
diff --git a/output/images/release/ec-running2.png 
b/output/images/release/ec-running2.png
deleted file mode 100644
index 3311235..000
Binary files a/output/images/release/ec-running2.png and /dev/null differ
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 5332886..87a937a 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -376,12 +376,6 @@ TABLE: accumulo.metadata
 2default_tablet  0 0 0 0 HOSTED 
CURRENT:ip-10-113-12-25:9997   !0~+INF
 
 
-New Utility for generating 
splits
-
-A new command line utility was created to generate split points from 1 or 
more rfiles. One or more HDFS directories can
-be given as well. The utility will iterate over all the files provided and 
determine the proper split points
-based on either the size or number given. It uses Apache Datasketches to get 
the split points from the data. https://github.com/apache/accumulo/issues/2361;>#2361 https://github.com/apache/accumulo/issues/2368;>#2368
-
 New option for cloning offline
 
 Added option to leave cloned tables offline https://github.com/apache/accumulo/issues/1474;>#1474 https://github.com/apache/accumulo/issues/1475;>#1475
@@ -424,18 +418,14 @@ to stderr then terminate the VM using Runtime.halt. https://github.com/
 
 Created new “jshell” convenience entry point https://github.com/apache/accumulo/issues/1870;>#1870 https://github.com/apache/accumulo/issues/1910;>#1910
 
-New Monitor Pages  
Improvments
+New Monitor Compactions 
page  optimization
 
 A page was added to the Monitor that lists the active compactions and the 
longest running
 active compaction. As an optimization, the page will only fetch data if a user 
loads the
 page and will only do so a maximum of once a minute. The same optimization was 
added for the Active Scans page,
-along with the addition of a “Fetched” column indicating when the data was 
retrieved. A new page was also created 
-for External Compactions that allows seeing the progress of compactions and 
many details about ongoing compactions.
-https://github.com/apache/accumulo/issues/2283;>#2283 https://github.com/apache/accumulo/issues/2294;>#2294 https://github.com/apache/accumulo/issues/2358;>#2358
-
-
+along with the addition of a “Fetched” column indicating when the data was 
retrieved. https://github.com/apache/accumulo/issues/2283;>#2283 
https://github.com/apache/accumulo/issues/2294;>#2294
 
-
+
 
 Other notable changes
 
diff --git a/output/search_data.json b/output/search_data.json
index b9de730..5cb0712 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-12-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 94b1dfd  Automatic Site Publish by Buildbot
94b1dfd is described below

commit 94b1dfdac834b5badc1bd95d88727c338854fc3b
Author: buildbot 
AuthorDate: Mon Dec 27 16:08:50 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/in-depth-install.html | 8 
 output/feed.xml  | 4 ++--
 output/search_data.json  | 2 +-
 3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/output/docs/2.x/administration/in-depth-install.html 
b/output/docs/2.x/administration/in-depth-install.html
index b979d80..074bb55 100644
--- a/output/docs/2.x/administration/in-depth-install.html
+++ b/output/docs/2.x/administration/in-depth-install.html
@@ -924,6 +924,14 @@ TabletServer to return before reassigning that 
TabletServer’s responsibilities
 TabletServers. If the TabletServer returns to the cluster before the specified 
timeout has elapsed,
 Accumulo will assign the TabletServer its original responsibilities.
 
+Tablet Status: Normally tablets will be in a HOSTED state. When a tserver 
goes off-line, the tablets
+assigned will transition to UNASSIGNED until they are reassigned by the 
Manager process to another 
+active tserver.  With the table.suspend.duration
 set to  0, a tablet will go from HOSTED to 
+SUSPENDED when the tserver goes offline. The tablets will stay SUSPENDED until 
the tserver comes
+back online or, if the table.suspend.duration
 has passed. If the table.suspend.duration has passed
+before the tserver has returned, it will the become UNASSIGNED and eligible 
for reassignment
+by the Manager. If a tablet is UNASSIGNED it will not enter the SUSPENDED 
state.
+
 It is important not to choose too large a value for table.suspend.duration,
 as during this time,
 all scans against the data that TabletServer had hosted will block (or time 
out).
 
diff --git a/output/feed.xml b/output/feed.xml
index d4379bc..ac2c6a2 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 13 Dec 2021 21:39:58 +
-Mon, 13 Dec 2021 21:39:58 +
+Mon, 27 Dec 2021 16:08:45 +
+Mon, 27 Dec 2021 16:08:45 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index ec8d2fd..b9de730 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -23,7 +23,7 @@
   
 "docs-2-x-administration-in-depth-install": {
   "title": "In-depth Installation",
-  "content" : "This document provides detailed instructions for 
installing Accumulo. For basicinstructions, see the quick start.HardwareBecause 
we are running essentially two or three systems simultaneously layeredacross 
the cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist 
of 4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machi [...]
+  "content" : "This document provides detailed instructions for 
installing Accumulo. For basicinstructions, see the quick start.HardwareBecause 
we are running essentially two or three systems simultaneously layeredacross 
the cluster: HDFS, Accumulo and MapReduce, it is typical for hardware toconsist 
of 4 to 8 cores, and 8 to 32 GB RAM. This is so each running process can haveat 
least one core and 2 - 4 GB each.One core running HDFS can typically keep 2 to 
4 disks busy, so each machi [...]
   "url": " /docs/2.x/administration/in-depth-install",
   "categories": "administration"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-12-13 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9477f3f  Automatic Site Publish by Buildbot
9477f3f is described below

commit 9477f3ffb8129ca3d3091e8004cb67f2d1428daa
Author: buildbot 
AuthorDate: Mon Dec 13 21:40:04 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml|   4 ++--
 output/images/release/active-compactions-table.png | Bin 26834 -> 0 bytes
 output/images/release/ec-running-details.png   | Bin 0 -> 131341 bytes
 output/images/release/ec-running2.png  | Bin 0 -> 66055 bytes
 output/release/accumulo-2.1.0/index.html   |  16 +---
 output/search_data.json|   2 +-
 6 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index e8078e4..d4379bc 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 28 Oct 2021 17:25:20 +
-Thu, 28 Oct 2021 17:25:20 +
+Mon, 13 Dec 2021 21:39:58 +
+Mon, 13 Dec 2021 21:39:58 +
 Jekyll v4.2.0
 
 
diff --git a/output/images/release/active-compactions-table.png 
b/output/images/release/active-compactions-table.png
deleted file mode 100644
index d2c9925..000
Binary files a/output/images/release/active-compactions-table.png and /dev/null 
differ
diff --git a/output/images/release/ec-running-details.png 
b/output/images/release/ec-running-details.png
new file mode 100644
index 000..506fd5a
Binary files /dev/null and b/output/images/release/ec-running-details.png differ
diff --git a/output/images/release/ec-running2.png 
b/output/images/release/ec-running2.png
new file mode 100644
index 000..3311235
Binary files /dev/null and b/output/images/release/ec-running2.png differ
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 87a937a..5332886 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -376,6 +376,12 @@ TABLE: accumulo.metadata
 2default_tablet  0 0 0 0 HOSTED 
CURRENT:ip-10-113-12-25:9997   !0~+INF
 
 
+New Utility for generating 
splits
+
+A new command line utility was created to generate split points from 1 or 
more rfiles. One or more HDFS directories can
+be given as well. The utility will iterate over all the files provided and 
determine the proper split points
+based on either the size or number given. It uses Apache Datasketches to get 
the split points from the data. https://github.com/apache/accumulo/issues/2361;>#2361 https://github.com/apache/accumulo/issues/2368;>#2368
+
 New option for cloning offline
 
 Added option to leave cloned tables offline https://github.com/apache/accumulo/issues/1474;>#1474 https://github.com/apache/accumulo/issues/1475;>#1475
@@ -418,14 +424,18 @@ to stderr then terminate the VM using Runtime.halt. https://github.com/
 
 Created new “jshell” convenience entry point https://github.com/apache/accumulo/issues/1870;>#1870 https://github.com/apache/accumulo/issues/1910;>#1910
 
-New Monitor Compactions 
page  optimization
+New Monitor Pages  
Improvments
 
 A page was added to the Monitor that lists the active compactions and the 
longest running
 active compaction. As an optimization, the page will only fetch data if a user 
loads the
 page and will only do so a maximum of once a minute. The same optimization was 
added for the Active Scans page,
-along with the addition of a “Fetched” column indicating when the data was 
retrieved. https://github.com/apache/accumulo/issues/2283;>#2283 
https://github.com/apache/accumulo/issues/2294;>#2294
+along with the addition of a “Fetched” column indicating when the data was 
retrieved. A new page was also created 
+for External Compactions that allows seeing the progress of compactions and 
many details about ongoing compactions.
+https://github.com/apache/accumulo/issues/2283;>#2283 https://github.com/apache/accumulo/issues/2294;>#2294 https://github.com/apache/accumulo/issues/2358;>#2358
+
+
 
-
+
 
 Other notable changes
 
diff --git a/output/search_data.json b/output/search_data.json
index 05bebf1..ec8d2fd 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-28 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e833b91  Automatic Site Publish by Buildbot
e833b91 is described below

commit e833b91fa18c9e38d0d54faabf56fa160b7d66d1
Author: buildbot 
AuthorDate: Thu Oct 28 17:25:26 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 4 
 output/search_data.json  | 2 +-
 3 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 085c4d5..e8078e4 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 28 Oct 2021 17:22:16 +
-Thu, 28 Oct 2021 17:22:16 +
+Thu, 28 Oct 2021 17:25:20 +
+Thu, 28 Oct 2021 17:25:20 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index e18326f..87a937a 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -174,10 +174,6 @@
 
 TODO summarize contributions
 
-According to the Long Term 
Maintenance (LTM) strategy, the intent is to
-maintain the X.X release line with critical bug and security fixes until one
-year after the next LTM version is released.
-
 TODO Version Upgrade guidance
 
 Minimum Requirements
diff --git a/output/search_data.json b/output/search_data.json
index 17b3c8a..05bebf1 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsTODO Version Upgrade 
guidanceMinimum RequirementsTODO describe requirementsBinary 
IncompatibilityThis release is known to be incompatible with prior versions of 
the clientlibraries. That is, the 2.0.0 or 2.0.1 version of the client 
libraries will notbe able to communicate with a 2.1.0 or later installation of 
Accumulo, nor willthe 2.1.0 or later version of the client li [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-28 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 4b36924  Automatic Site Publish by Buildbot
4b36924 is described below

commit 4b369243051d54515dfbc74e47d4a88aeb6889f9
Author: buildbot 
AuthorDate: Thu Oct 28 17:22:22 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.0/index.html | 10 +++---
 output/search_data.json  |  2 +-
 3 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 4fb3ad3..085c4d5 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 28 Oct 2021 05:43:57 +
-Thu, 28 Oct 2021 05:43:57 +
+Thu, 28 Oct 2021 17:22:16 +
+Thu, 28 Oct 2021 17:22:16 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index b07fb6a..e18326f 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -225,9 +225,13 @@ The new compaction changes in this release can satisfy 
this use case while
 doing a logarithmic amount of work.
 
 
-CompactionStrategy was deprecated in favor of new public APIs.
-See its https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/2.0.1/org/apache/accumulo/tserver/compaction/CompactionStrategy.html;>javadoc
 
-for more information. Github tickets related to these changes: https://github.com/apache/accumulo/issues/564;>#564 https://github.com/apache/accumulo/issues/1605;>#1605 https://github.com/apache/accumulo/issues/1609;>#1609 https://github.com/apache/accumulo/issues/1649;>#1649 https://github.com/apache/accumulo/issues/;>#
+CompactionStrategy was deprecated in favor of new public APIs. 
CompactionStrategy was never public API as it
+used internal types and one of these types FileRef was removed in 2.1. Users who have written a 
CompactionStrategy
+can replace FileRef 
with its replacement internal type StoredTabletFile but this is not recommended. Since 
it is
+very likely that CompactionStrategy will be removed in a future release, any 
work put into rewriting a CompactionStrategy
+will be lost. It is recommended that users implement CompactionSelector, 
CompactionConfigurer, and CompactionPlanner instead.  The new compaction 
changes in 2.1 introduce new algorithms for optimally scheduling compactions 
across multiple thread pools, configuring a deprecated compaction strategy may 
result is missing out on the benefits of these new algorithms. See
+https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/2.0.1/org/apache/accumulo/tserver/compaction/CompactionStrategy.html;>javadoc
+for more information. Github tickets related to these changes: https://github.com/apache/accumulo/issues/564;>#564 https://github.com/apache/accumulo/issues/1605;>#1605 https://github.com/apache/accumulo/issues/1609;>#1609 https://github.com/apache/accumulo/issues/1649;>#1649
 
 External Compactions 
(experimental)
 
diff --git a/output/search_data.json b/output/search_data.json
index 7596b0a..17b3c8a 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 3babbc8  Automatic Site Publish by Buildbot
3babbc8 is described below

commit 3babbc8fa5afde9db4abd497425170d57c6c1375
Author: buildbot 
AuthorDate: Thu Oct 28 05:44:04 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/troubleshooting/basic.html | 4 
 output/feed.xml| 4 ++--
 output/search_data.json| 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/output/docs/2.x/troubleshooting/basic.html 
b/output/docs/2.x/troubleshooting/basic.html
index 6029077..ff8d9a5 100644
--- a/output/docs/2.x/troubleshooting/basic.html
+++ b/output/docs/2.x/troubleshooting/basic.html
@@ -487,6 +487,10 @@ master is down. Check for a running master.
 The monitor uses the ZooKeeper stat https://zookeeper.apache.org/doc/r3.5.7/zookeeperAdmin.html#sc_4lw;>four-letter-word
 command to retrieve information.
 The ZooKeeper configuration may require explicitly listing the stat command in the 
four-letter-word whitelist.
 
+I’ve lost the Accumulo root password, now what?
+
+Running accumulo init 
--reset-security will prompt you for a new root password. CAUTION: this 
command will delete all existing users. You will need to re-create all other 
users and set permissions accordingly. Running the accumulo admin dumpConfig 
command will output current configuration, including current users, which may 
aid in this process.
+
 Accumulo Processes
 
 My tablet server crashed!  The logs say that it lost its zookeeper 
lock.
diff --git a/output/feed.xml b/output/feed.xml
index b110d47..4fb3ad3 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 22 Oct 2021 14:15:17 +
-Fri, 22 Oct 2021 14:15:17 +
+Thu, 28 Oct 2021 05:43:57 +
+Thu, 28 Oct 2021 05:43:57 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 87a013f..7596b0a 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -268,7 +268,7 @@
   
 "docs-2-x-troubleshooting-basic": {
   "title": "Basic Troubleshooting",
-  "content" : "GeneralThe tablet server does not seem to be 
running!? What happened?Accumulo is a distributed system.  It is supposed to 
run on remoteequipment, across hundreds of computers.  Each program that runs 
onthese remote computers writes down events as they occur, into a localfile. By 
default, this is defined in conf/accumulo-env.sh as ACCUMULO_LOG_DIR.Look in 
the $ACCUMULO_LOG_DIR/tserver*.log file.  Specifically, check the end of the 
file.The tablet server did not start a [...]
+  "content" : "GeneralThe tablet server does not seem to be 
running!? What happened?Accumulo is a distributed system.  It is supposed to 
run on remoteequipment, across hundreds of computers.  Each program that runs 
onthese remote computers writes down events as they occur, into a localfile. By 
default, this is defined in conf/accumulo-env.sh as ACCUMULO_LOG_DIR.Look in 
the $ACCUMULO_LOG_DIR/tserver*.log file.  Specifically, check the end of the 
file.The tablet server did not start a [...]
   "url": " /docs/2.x/troubleshooting/basic",
   "categories": "troubleshooting"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-22 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 79e3954  Automatic Site Publish by Buildbot
79e3954 is described below

commit 79e3954b7f798712edb9d4952950b8ae0d72e254
Author: buildbot 
AuthorDate: Fri Oct 22 14:15:24 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/getting-started/features.html | 2 +-
 output/feed.xml   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/output/docs/2.x/getting-started/features.html 
b/output/docs/2.x/getting-started/features.html
index a537428..3323fe3 100644
--- a/output/docs/2.x/getting-started/features.html
+++ b/output/docs/2.x/getting-started/features.html
@@ -795,7 +795,7 @@ files.
 
 Encryption
 
-Accumulo can encrypt its data 
on disk and
+Accumulo can encrypt its data on disk and
 data sent over the wire.
 
 On-demand Data Management
diff --git a/output/feed.xml b/output/feed.xml
index 1fcaa50..b110d47 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 21 Oct 2021 19:17:21 +
-Thu, 21 Oct 2021 19:17:21 +
+Fri, 22 Oct 2021 14:15:17 +
+Fri, 22 Oct 2021 14:15:17 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-21 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 05e57d2  Automatic Site Publish by Buildbot
05e57d2 is described below

commit 05e57d2faec7a8a1566f47a7c3df64295a1d4ca4
Author: buildbot 
AuthorDate: Thu Oct 21 19:17:27 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 2 +-
 output/search_data.json  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index eb57c43..1fcaa50 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 21 Oct 2021 19:10:20 +
-Thu, 21 Oct 2021 19:10:20 +
+Thu, 21 Oct 2021 19:17:21 +
+Thu, 21 Oct 2021 19:17:21 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index f71f9b4..b07fb6a 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -457,7 +457,7 @@ along with the addition of a “Fetched” column indicating 
when the data was r
   https://github.com/apache/accumulo/issues/1848;>#1848 
Update column name in the monitor UI
   https://github.com/apache/accumulo/issues/2039;>#2039 https://github.com/apache/accumulo/issues/2045;>#2045 Add bulk import 
option to ignore empty dirs
   https://github.com/apache/accumulo/issues/2064;>#2064 Add 
option to disable encryption to AESCryptoService
-  https://github.com/apache/accumulo/issues/2117;>#2117 Make 
sorted recovery write to RFiles
+  https://github.com/apache/accumulo/issues/2117;>#2117 https://github.com/apache/accumulo/issues/2236;>#2236 Make sorted 
recovery write to RFiles. New tserver.wal.sort.file. property to configure
   https://github.com/apache/accumulo/issues/2273;>#2273 
Upgrade Thrift to 0.15.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index efda4a3..87a013f 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-21 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e3950b3  Automatic Site Publish by Buildbot
e3950b3 is described below

commit e3950b3dcbb3e28c19034308ae73e55c0665065a
Author: buildbot 
AuthorDate: Thu Oct 21 19:10:25 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/release/accumulo-2.1.0/index.html | 3 ++-
 output/search_data.json  | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 46a3fa9..eb57c43 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 21 Oct 2021 18:51:53 +
-Thu, 21 Oct 2021 18:51:53 +
+Thu, 21 Oct 2021 19:10:20 +
+Thu, 21 Oct 2021 19:10:20 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 0b58782..f71f9b4 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -418,7 +418,7 @@ to stderr then terminate the VM using Runtime.halt. https://github.com/
 
 Created new “jshell” convenience entry point https://github.com/apache/accumulo/issues/1870;>#1870 https://github.com/apache/accumulo/issues/1910;>#1910
 
-New Monitor 
Compactions page  performance improvements
+New Monitor Compactions 
page  optimization
 
 A page was added to the Monitor that lists the active compactions and the 
longest running
 active compaction. As an optimization, the page will only fetch data if a user 
loads the
@@ -458,6 +458,7 @@ along with the addition of a “Fetched” column indicating 
when the data was r
   https://github.com/apache/accumulo/issues/2039;>#2039 https://github.com/apache/accumulo/issues/2045;>#2045 Add bulk import 
option to ignore empty dirs
   https://github.com/apache/accumulo/issues/2064;>#2064 Add 
option to disable encryption to AESCryptoService
   https://github.com/apache/accumulo/issues/2117;>#2117 Make 
sorted recovery write to RFiles
+  https://github.com/apache/accumulo/issues/2273;>#2273 
Upgrade Thrift to 0.15.0
 
 
 Upgrading
diff --git a/output/search_data.json b/output/search_data.json
index ecb8a59..efda4a3 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -352,7 +352,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
+  "content" : "** DRAFT RELEASE NOTES **AboutTODO high level 
description of the releaseTODO summarize contributionsAccording to the Long 
Term Maintenance (LTM) strategy, the intent is tomaintain the X.X release line 
with critical bug and security fixes until oneyear after the next LTM version 
is released.TODO Version Upgrade guidanceMinimum RequirementsTODO describe 
requirementsBinary IncompatibilityThis release is known to be incompatible with 
prior versions of the clientlibraries. [...]
   "url": " /release/accumulo-2.1.0/",
   "categories": "release"
 }


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-21 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new ffc4ed9  Automatic Site Publish by Buildbot
ffc4ed9 is described below

commit ffc4ed9df3f50d8061d17bcba2af0493c142216b
Author: buildbot 
AuthorDate: Thu Oct 21 18:52:00 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml|   4 +-
 output/images/release/active-compactions-table.png | Bin 0 -> 26834 bytes
 output/release/accumulo-2.1.0/index.html   |  75 +
 output/release/index.html  |   2 +-
 output/search_data.json|   2 +-
 5 files changed, 67 insertions(+), 16 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 5377452..46a3fa9 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 21 Oct 2021 14:43:09 +
-Thu, 21 Oct 2021 14:43:09 +
+Thu, 21 Oct 2021 18:51:53 +
+Thu, 21 Oct 2021 18:51:53 +
 Jekyll v4.2.0
 
 
diff --git a/output/images/release/active-compactions-table.png 
b/output/images/release/active-compactions-table.png
new file mode 100644
index 000..d2c9925
Binary files /dev/null and b/output/images/release/active-compactions-table.png 
differ
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 33bab80..0b58782 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -161,13 +161,29 @@
 
 
 
-
-  This version is not a Long Term Maintenance (non-LTM) 
release.
+
+  This version is a current Long Term Maintenance (LTM) 
release.
 
 
 
 ** DRAFT RELEASE NOTES **
 
+About
+
+TODO high level description of the release
+
+TODO summarize contributions
+
+According to the Long Term 
Maintenance (LTM) strategy, the intent is to
+maintain the X.X release line with critical bug and security fixes until one
+year after the next LTM version is released.
+
+TODO Version Upgrade guidance
+
+Minimum Requirements
+
+TODO describe requirements
+
 Binary Incompatibility
 
 This release is known to be incompatible with prior versions of the client
@@ -176,9 +192,9 @@ be able to communicate with a 2.1.0 or later installation 
of Accumulo, nor will
 the 2.1.0 or later version of the client libraries communicate with a 2.0.1 or
 earlier installation.
 
-Notable Changes
+Major Changes
 
-Compaction Changes
+Overhaul of Table Compactions
 
 Significant changes were made to how Accumulo compacts files in this 
release.  See 
 compaction  for details, 
below are some highlights.
@@ -334,11 +350,31 @@ metrics to supported Micrometer sinks. https://github.com/apache/accumu
 
 New SPI Package
 
-New SPI Package https://github.com/apache/accumulo/issues/1900;>#1900 https://github.com/apache/accumulo/issues/1905;>#1905 https://github.com/apache/accumulo/issues/1880;>#1880 https://github.com/apache/accumulo/issues/1891;>#1891 https://github.com/apache/accumulo/issues/1426;>#1426
+TODO describe New SPI Package https://github.com/apache/accumulo/issues/1900;>#1900 https://github.com/apache/accumulo/issues/1905;>#1905 https://github.com/apache/accumulo/issues/1880;>#1880 https://github.com/apache/accumulo/issues/1891;>#1891 https://github.com/apache/accumulo/issues/1426;>#1426
 
 New listtablets shell command.
 
-New command for debugging tablets called listtablets https://github.com/apache/accumulo/issues/1317;>#1317 https://github.com/apache/accumulo/issues/1821;>#1821
+A new command was created for debugging called listtablets, that shows 
detailed tablet information 
+on a single line. This command aggregates data about a tablet such as status, 
location, size, 
+number of entries and HDFS directory name. It even shows the start and end 
rows of tablets, 
+displaying them in the same sorted order they are stored in the metadata. See 
example command output below.
+https://github.com/apache/accumulo/issues/1317;>#1317 https://github.com/apache/accumulo/issues/1821;>#1821
+
+root@uno listtablets -t test_ingest -h
+2021-01-04T15:12:47,663 [Shell.audit] INFO : root@uno listtablets -t 
test_ingest -h
+NUM  TABLET_DIR  FILES WALS  ENTRIES   SIZE  STATUS LOCATION   
IDSTART (Exclusive)END 
+TABLE: test_ingest
+1t-007   1 060   552 HOSTED 
CURRENT:ip-10-113-12-25:9997   2 -INF row_05  
+2t-006   1 0   500 2.71K HOSTED 
CURRENT:ip-10-113-12-25:9997   2 row_05   row_55  
+3t-008   1 0 5.00K24.74K HOSTED 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-21 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new c29b047  Automatic Site Publish by Buildbot
c29b047 is described below

commit c29b047deed8f40a499c57a6b44c3cac70d30d54
Author: buildbot 
AuthorDate: Thu Oct 21 14:43:16 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.0/index.html | 39 
 output/search_data.json  |  2 +-
 3 files changed, 38 insertions(+), 7 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 4b9c4f5..5377452 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 20 Oct 2021 16:55:06 +
-Wed, 20 Oct 2021 16:55:06 +
+Thu, 21 Oct 2021 14:43:09 +
+Thu, 21 Oct 2021 14:43:09 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index 64ce1b7..33bab80 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -172,7 +172,7 @@
 
 This release is known to be incompatible with prior versions of the client
 libraries. That is, the 2.0.0 or 2.0.1 version of the client libraries will not
-be able to communicate with a 2.1.0 or later installaction of Accumulo, nor 
will
+be able to communicate with a 2.1.0 or later installation of Accumulo, nor will
 the 2.1.0 or later version of the client libraries communicate with a 2.0.1 or
 earlier installation.
 
@@ -213,6 +213,14 @@ doing a logarithmic amount of work.
 See its https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/2.0.1/org/apache/accumulo/tserver/compaction/CompactionStrategy.html;>javadoc
 
 for more information. Github tickets related to these changes: https://github.com/apache/accumulo/issues/564;>#564 https://github.com/apache/accumulo/issues/1605;>#1605 https://github.com/apache/accumulo/issues/1609;>#1609 https://github.com/apache/accumulo/issues/1649;>#1649 https://github.com/apache/accumulo/issues/;>#
 
+External Compactions 
(experimental)
+
+This release includes two new optional server components, 
CompactionCoordinator and Compactor,
+that enables the user to run major compactions outside of the Tablet Server. 
See 
+compaction  and the
+External Compaction https://accumulo.apache.org/blog/2021/07/08/external-compactions.html;>blog
 post for more information. This work was completed
+over many tickets, see the GitHub https://github.com/apache/accumulo/projects/20;>project for the 
related issues. https://github.com/apache/accumulo/issues/2096;>#2096
+
 Fixed GC Metadata hotspots
 
 Prior to this release, Accumulo stored GC file candidates in the metadata 
table
@@ -310,6 +318,20 @@ you have configured.
   See also https://github.com/apache/accumulo/issues/1640;>#1640 https://github.com/apache/accumulo/issues/1642;>#1642 https://github.com/apache/accumulo/issues/1703;>#1703 https://github.com/apache/accumulo/issues/1704;>#1704 https://github.com/apache/accumulo/issues/1873;>#1873 https://github.com/apache/accumulo/issues/1907;>#1907
 
 
+New Tracing Facility
+
+HTrace support was removed in this release and has been replaced with https://opentelemetry.io/;>OpenTelemetry. Trace information
+will not be shown in the monitor. See comments in https://github.com/apache/accumulo/issues/2259;>#2259 for an example 
of how to configure
+Accumulo to emit traces to supported OpenTelemetry sinks. https://github.com/apache/accumulo/issues/2257;>#2257
+
+New Metrics Implementation
+
+The Hadoop Metrics2 framework is no longer being used to emit metrics from 
Accumulo. Accumulo is now
+using the https://micrometer.io/;>Micrometer framework. Metric 
name and type changes have been documented in
+org.apache.accumulo.core.metrics.MetricsProducer, see the https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.0.1/org/apache/accumulo/core/metrics/MetricsProducer.html;>javadoc
+for more information. See comments in https://github.com/apache/accumulo/issues/2305;>#2305 for an example 
of how to configure Accumulo to emit
+metrics to supported Micrometer sinks. https://github.com/apache/accumulo/issues/1134;>#1134
+
 New SPI Package
 
 New SPI Package https://github.com/apache/accumulo/issues/1900;>#1900 https://github.com/apache/accumulo/issues/1905;>#1905 https://github.com/apache/accumulo/issues/1880;>#1880 https://github.com/apache/accumulo/issues/1891;>#1891 https://github.com/apache/accumulo/issues/1426;>#1426
@@ -328,7 +350,16 @@ you have configured.
 
 New ability for 
user to define context classloaders
 
-Deprecated VFS ClassLoader and added ability for user to define context 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-10-20 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 65c8b61  Automatic Site Publish by Buildbot
65c8b61 is described below

commit 65c8b615f995cca0da4a7d05ca1a9bd5408d457e
Author: buildbot 
AuthorDate: Wed Oct 20 16:55:13 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 +-
 output/release/accumulo-2.1.0/index.html | 82 +++-
 output/search_data.json  |  2 +-
 3 files changed, 83 insertions(+), 5 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index eaf288f..4b9c4f5 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 27 Sep 2021 13:25:37 +
-Mon, 27 Sep 2021 13:25:37 +
+Wed, 20 Oct 2021 16:55:06 +
+Wed, 20 Oct 2021 16:55:06 +
 Jekyll v4.2.0
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index b6abefd..64ce1b7 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -211,13 +211,13 @@ doing a logarithmic amount of work.
 
 CompactionStrategy was deprecated in favor of new public APIs.
 See its https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/2.0.1/org/apache/accumulo/tserver/compaction/CompactionStrategy.html;>javadoc
 
-for more information.
+for more information. Github tickets related to these changes: https://github.com/apache/accumulo/issues/564;>#564 https://github.com/apache/accumulo/issues/1605;>#1605 https://github.com/apache/accumulo/issues/1609;>#1609 https://github.com/apache/accumulo/issues/1649;>#1649 https://github.com/apache/accumulo/issues/;>#
 
 Fixed GC Metadata hotspots
 
 Prior to this release, Accumulo stored GC file candidates in the metadata 
table
 using rows of the form ~delURI. This row schema lead to uneven load 
on
-the metadata table and metadata tablets that were eventually never used. In https://github.com/apache/accumulo/issues/1043;>#1043 the row format 
was changed to ~delhash(URI)URI resulting in
+the metadata table and metadata tablets that were eventually never used. In https://github.com/apache/accumulo/issues/1043;>#1043 https://github.com/apache/accumulo/issues/1344;>#1344 the row format 
was changed to ~delhash(URI)URI resulting in
 even load on the metadata table and even data spread in the tablets. After
 upgrading, there may still be splits in the metadata table using the old row
 format. These splits can be merged away as shown in the example below which
@@ -307,8 +307,86 @@ scripts that invoke this utility should be updated to call
   masterMemory 
in minicluster.properties has been deprecated and
 managerMemory should 
be used instead in any minicluster.properties files
 you have configured.
+  See also https://github.com/apache/accumulo/issues/1640;>#1640 https://github.com/apache/accumulo/issues/1642;>#1642 https://github.com/apache/accumulo/issues/1703;>#1703 https://github.com/apache/accumulo/issues/1704;>#1704 https://github.com/apache/accumulo/issues/1873;>#1873 https://github.com/apache/accumulo/issues/1907;>#1907
 
 
+New SPI Package
+
+New SPI Package https://github.com/apache/accumulo/issues/1900;>#1900 https://github.com/apache/accumulo/issues/1905;>#1905 https://github.com/apache/accumulo/issues/1880;>#1880 https://github.com/apache/accumulo/issues/1891;>#1891 https://github.com/apache/accumulo/issues/1426;>#1426
+
+New listtablets shell command.
+
+New command for debugging tablets called listtablets https://github.com/apache/accumulo/issues/1317;>#1317 https://github.com/apache/accumulo/issues/1821;>#1821
+
+New option for cloning offline
+
+Added option to leave cloned tables offline https://github.com/apache/accumulo/issues/1474;>#1474 https://github.com/apache/accumulo/issues/1475;>#1475
+
+New max tablets option in bulk 
import
+
+Created max tablets property in new bulk import https://github.com/apache/accumulo/issues/1614;>#1614
+
+New ability for 
user to define context classloaders
+
+Deprecated VFS ClassLoader and added ability for user to define context 
classloaders https://github.com/apache/accumulo/issues/1747;>#1747 
https://github.com/apache/accumulo/issues/1715;>#1715
+
+Updated hash algorithm
+
+TODO clarify what was done for this. https://github.com/apache/accumulo/issues/1787;>#1787 https://github.com/apache/accumulo/issues/1788;>#1788 https://github.com/apache/accumulo/issues/1798;>#1798 https://github.com/apache/accumulo/issues/1810;>#1810
+
+Various 
Performance improvements when deleting tables
+
+Make delete table operations cancel user compactions 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-09-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d8a979e  Automatic Site Publish by Buildbot
d8a979e is described below

commit d8a979ee0cd48980dfa4cf3751d064503e6051d7
Author: buildbot 
AuthorDate: Mon Sep 27 13:25:44 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index a16e247..eaf288f 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 04 Aug 2021 18:33:31 +
-Wed, 04 Aug 2021 18:33:31 +
+Mon, 27 Sep 2021 13:25:37 +
+Mon, 27 Sep 2021 13:25:37 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 7fa83a5..5f26db1 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -990,6 +990,11 @@ $(function() {
   https://sa.catapult.org.uk;>Satellite Applications 
Catapult
   https://www.timeanddate.com/time/zones/gmt;>GMT/https://www.timeanddate.com/time/zones/bst;>BST
 
+
+  Xiao Wang
+  https://www.stevens.edu;>Stevens Institute of 
Technology
+  https://www.timeanddate.com/time/zones/et;>ET
+
   
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-08-04 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 60f43f3  Automatic Site Publish by Buildbot
60f43f3 is described below

commit 60f43f310773913012849e8409fb1e4820a1876d
Author: buildbot 
AuthorDate: Wed Aug 4 18:33:37 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 810dcdf..a16e247 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 29 Jul 2021 18:32:21 +
-Thu, 29 Jul 2021 18:32:21 +
+Wed, 04 Aug 2021 18:33:31 +
+Wed, 04 Aug 2021 18:33:31 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 8cf5bfc..7fa83a5 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -891,6 +891,11 @@ $(function() {
    
 
 
+  Shivakumar Gangamath
+   
+  https://www.timeanddate.com/time/zones/ist-ireland;>IST
+
+
   Steve Loughran
   https://hortonworks.com;>Hortonworks
   https://www.timeanddate.com/time/zones/gmt;>GMT/https://www.timeanddate.com/time/zones/bst;>BST


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-07-29 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 35055ab  Automatic Site Publish by Buildbot
35055ab is described below

commit 35055ab2bbd8a98c6d020fceda0f595354dc97fa
Author: buildbot 
AuthorDate: Thu Jul 29 18:32:27 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/people/index.html | 11 ++-
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index d99ab4f..810dcdf 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 16 Jul 2021 21:17:11 +
-Fri, 16 Jul 2021 21:17:11 +
+Thu, 29 Jul 2021 18:32:21 +
+Thu, 29 Jul 2021 18:32:21 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 52042e1..8cf5bfc 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -249,6 +249,12 @@ $(function() {
   https://www.timeanddate.com/time/zones/et;>ET
 
 
+  domgarguilo
+  https://github.com/DomGarguilo;>Dominic Garguilo
+  https://www.asrc.com;>Arctic Slope Regional Corp.
+  https://www.timeanddate.com/time/zones/et;>ET
+
+
   drew
   Drew Farris
   https://www.boozallen.com;>Booz Allen Hamilton
@@ -545,11 +551,6 @@ $(function() {
    
 
 
-  Dominic Garguilo
-  https://www.asrc.com;>Arctic Slope Regional Corp.
-  https://www.timeanddate.com/time/zones/et;>ET
-
-
   Ed Kohlwey
   https://www.boozallen.com;>Booz Allen Hamilton
    


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-07-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 3bfbd28  Automatic Site Publish by Buildbot
3bfbd28 is described below

commit 3bfbd28799d24d4c731f7390ed49bb8719cd0252
Author: buildbot 
AuthorDate: Fri Jul 16 21:17:17 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 0abb5c8..d99ab4f 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 13 Jul 2021 20:45:31 +
-Tue, 13 Jul 2021 20:45:31 +
+Fri, 16 Jul 2021 21:17:11 +
+Fri, 16 Jul 2021 21:17:11 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index a00d4c8..52042e1 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -705,6 +705,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/cest;>CEST
 
 
+  Kartik Sethi
+   
+  https://www.timeanddate.com/worldclock/india/new-delhi;>IST
+
+
   Kenneth McFarland
    
   https://www.timeanddate.com/time/zones/pt;>PT


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-07-13 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new a4b714e  Automatic Site Publish by Buildbot
a4b714e is described below

commit a4b714e9e2aef78cfdd0770944ff92e13c867f39
Author: buildbot 
AuthorDate: Tue Jul 13 20:45:37 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index edd6866..0abb5c8 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 08 Jul 2021 22:23:19 +
-Thu, 08 Jul 2021 22:23:19 +
+Tue, 13 Jul 2021 20:45:31 +
+Tue, 13 Jul 2021 20:45:31 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-07-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2280e92  Automatic Site Publish by Buildbot
2280e92 is described below

commit 2280e9222773b70642763ddc6acd2963c599d418
Author: buildbot 
AuthorDate: Thu Jul 8 22:23:24 2021 +

Automatic Site Publish by Buildbot
---
 output/blog/2021/07/08/external-compactions.html   | 651 +
 output/feed.xml| 632 +++-
 .../202107_ecomp/accumulo-compactor-muchos.yaml| 180 ++
 output/images/blog/202107_ecomp/ci-entries.png | Bin 0 -> 31996 bytes
 .../blog/202107_ecomp/ci-files-per-tablet.png  | Bin 0 -> 3 bytes
 output/images/blog/202107_ecomp/ci-ingest-rate.png | Bin 0 -> 43035 bytes
 .../images/blog/202107_ecomp/ci-online-tablets.png | Bin 0 -> 29720 bytes
 .../images/blog/202107_ecomp/ci-pods-running.png   | Bin 0 -> 35805 bytes
 output/images/blog/202107_ecomp/ci-queued.png  | Bin 0 -> 45185 bytes
 output/images/blog/202107_ecomp/ci-running.png | Bin 0 -> 58471 bytes
 .../images/blog/202107_ecomp/clusters-layout.png   | Bin 0 -> 107997 bytes
 .../images/blog/202107_ecomp/files_over_time.html  |  23 +
 .../202107_ecomp/full-table-compaction-queued.png  | Bin 0 -> 35444 bytes
 .../202107_ecomp/full-table-compaction-running.png | Bin 0 -> 35926 bytes
 .../tablet-2_1fa2e8ba2e8ba328-files.gif| Bin 0 -> 6501483 bytes
 .../tablet-2_385d1745d1745d88-files.gif| Bin 0 -> 6535064 bytes
 .../tablet-2_6a8ba2e8ba2e8c78-files.gif| Bin 0 -> 6467307 bytes
 .../blog/202107_ecomp/tablet-2_default-files.gif   | Bin 0 -> 5817065 bytes
 output/index.html  |  14 +-
 output/news/index.html |   7 +
 output/search_data.json|   8 +
 21 files changed, 1365 insertions(+), 150 deletions(-)

diff --git a/output/blog/2021/07/08/external-compactions.html 
b/output/blog/2021/07/08/external-compactions.html
new file mode 100644
index 000..15061f2
--- /dev/null
+++ b/output/blog/2021/07/08/external-compactions.html
@@ -0,0 +1,651 @@
+
+
+
+
+
+
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/paper/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-awusxf8AUojygHf2+joICySzB780jVvQaVCAt1clU3QsyAitLGul28Qxb2r1e5g+"
 crossorigin="anonymous">
+
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
+
+
+External Compactions
+
+https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.js";>
+https://www.apachecon.com/event-images/snippet.js";>
+
+  // show location of canonical site if not currently on the canonical site
+  $(function() {
+var host = window.location.host;
+if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
+  $('#non-canonical').show();
+}
+  });
+
+  $(function() {
+// decorate section headers with anchors
+return $("h2, h3, h4, h5, h6").each(function(i, el) {
+  var $el, icon, id;
+  $el = $(el);
+  id = $el.attr('id');
+  icon = '';
+  if (id) {
+return $el.append($("").addClass("header-link").attr("href", "#" 
+ id).html(icon));
+  }
+});
+  });
+
+  // fix sidebar width in documentation
+  $(function() {
+var $affixElement = $('div[data-spy="affix"]');
+$affixElement.width($affixElement.parent().width());
+  });
+
+
+
+
+
+  
+  
+
+  
+Toggle navigation
+
+
+
+  
+  
+
+
+  
+Download
+Tour
+
+  Releases
+  
+2.0.1 (Latest)
+1.10.1
+Archive
+  
+
+
+  Documentation
+  
+User Manual (2.x)
+Javadocs (2.0)
+Public API
+Quickstart (1.x)
+Accumulo Maven 
Plugin
+User Manual 
(1.10)
+Javadocs (1.10)
+External Docs
+Archive
+  
+
+
+  Community
+  
+Contact Us
+How To Contribute
+People
+Related Projects
+  
+
+Search
+  
+  
+
+  https://www.apache.org/foundation/press/kit/feather.svg; width="15"/>
+  
+https://www.apache.org;>Apache Homepage 
+

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-07-07 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new db1693e  Automatic Site Publish by Buildbot
db1693e is described below

commit db1693e128eaff60d43ba941d0025461e9d4f873
Author: buildbot 
AuthorDate: Wed Jul 7 19:01:48 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/troubleshooting/tools.html | 15 ---
 output/feed.xml|  4 ++--
 output/search_data.json|  2 +-
 3 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/output/docs/2.x/troubleshooting/tools.html 
b/output/docs/2.x/troubleshooting/tools.html
index cc85cad..d20eb93 100644
--- a/output/docs/2.x/troubleshooting/tools.html
+++ b/output/docs/2.x/troubleshooting/tools.html
@@ -532,13 +532,14 @@ every tablet matches, and the start and stop for the 
table is empty:
 
 $ accumulo 
org.apache.accumulo.server.util.CheckForMetadataProblems -u root --password
 Enter the connection password:
-Checking table: accumulo.root
-All is well for table !0
-No problems found
-Checking table: accumulo.metadata
-All is well for table +rep
-All is well for table 1
-No problems found
+Checking tables whose metadata is found in: accumulo.root (+r)
+...All is well for table accumulo.metadata (!0)
+No problems found in accumulo.root (+r)
+
+Checking tables whose metadata is found in: accumulo.metadata (!0)
+...All is well for table accumulo.replication (+rep)
+...All is well for table trace (1)
+No problems found in accumulo.metadata (!0)
 
 
 RemoveEntriesForMissingFiles
diff --git a/output/feed.xml b/output/feed.xml
index 160cb28..0632150 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 15 Jun 2021 14:48:09 +
-Tue, 15 Jun 2021 14:48:09 +
+Wed, 07 Jul 2021 19:01:41 +
+Wed, 07 Jul 2021 19:01:41 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index d0d6464..0fbfbaa 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -289,7 +289,7 @@
   
 "docs-2-x-troubleshooting-tools": {
   "title": "Troubleshooting Tools",
-  "content" : "The accumulo command can be used to run various 
tools and classes from the command line.RFileInfoThe rfile-info tool will 
examine an Accumulo storage file and print out basic metadata.$ accumulo 
rfile-info /accumulo/tables/1/default_tablet/A00n.rf2013-07-16 08:17:14,778 
[util.NativeCodeLoader] INFO : Loaded the native-hadoop libraryLocality group   
  : lt;DEFAULTgt;Start block  : 0Num   
blocks : 1Index level 0  [...]
+  "content" : "The accumulo command can be used to run various 
tools and classes from the command line.RFileInfoThe rfile-info tool will 
examine an Accumulo storage file and print out basic metadata.$ accumulo 
rfile-info /accumulo/tables/1/default_tablet/A00n.rf2013-07-16 08:17:14,778 
[util.NativeCodeLoader] INFO : Loaded the native-hadoop libraryLocality group   
  : lt;DEFAULTgt;Start block  : 0Num   
blocks : 1Index level 0  [...]
   "url": " /docs/2.x/troubleshooting/tools",
   "categories": "troubleshooting"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-06-15 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 114687f  Automatic Site Publish by Buildbot
114687f is described below

commit 114687f8345162124dd6559ccef9b03d6622a51e
Author: buildbot 
AuthorDate: Tue Jun 15 14:48:14 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/troubleshooting/tools.html | 5 +
 output/feed.xml| 4 ++--
 output/search_data.json| 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/output/docs/2.x/troubleshooting/tools.html 
b/output/docs/2.x/troubleshooting/tools.html
index 39dbe85..cc85cad 100644
--- a/output/docs/2.x/troubleshooting/tools.html
+++ b/output/docs/2.x/troubleshooting/tools.html
@@ -532,8 +532,13 @@ every tablet matches, and the start and stop for the table 
is empty:
 
 $ accumulo 
org.apache.accumulo.server.util.CheckForMetadataProblems -u root --password
 Enter the connection password:
+Checking table: accumulo.root
 All is well for table !0
+No problems found
+Checking table: accumulo.metadata
+All is well for table +rep
 All is well for table 1
+No problems found
 
 
 RemoveEntriesForMissingFiles
diff --git a/output/feed.xml b/output/feed.xml
index da32720..160cb28 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 07 Jun 2021 18:18:16 +
-Mon, 07 Jun 2021 18:18:16 +
+Tue, 15 Jun 2021 14:48:09 +
+Tue, 15 Jun 2021 14:48:09 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 39745fc..d0d6464 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -289,7 +289,7 @@
   
 "docs-2-x-troubleshooting-tools": {
   "title": "Troubleshooting Tools",
-  "content" : "The accumulo command can be used to run various 
tools and classes from the command line.RFileInfoThe rfile-info tool will 
examine an Accumulo storage file and print out basic metadata.$ accumulo 
rfile-info /accumulo/tables/1/default_tablet/A00n.rf2013-07-16 08:17:14,778 
[util.NativeCodeLoader] INFO : Loaded the native-hadoop libraryLocality group   
  : lt;DEFAULTgt;Start block  : 0Num   
blocks : 1Index level 0  [...]
+  "content" : "The accumulo command can be used to run various 
tools and classes from the command line.RFileInfoThe rfile-info tool will 
examine an Accumulo storage file and print out basic metadata.$ accumulo 
rfile-info /accumulo/tables/1/default_tablet/A00n.rf2013-07-16 08:17:14,778 
[util.NativeCodeLoader] INFO : Loaded the native-hadoop libraryLocality group   
  : lt;DEFAULTgt;Start block  : 0Num   
blocks : 1Index level 0  [...]
   "url": " /docs/2.x/troubleshooting/tools",
   "categories": "troubleshooting"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-06-07 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new df2e3a1  Automatic Site Publish by Buildbot
df2e3a1 is described below

commit df2e3a11bed0c10a2104ffea233d136dcbac0a00
Author: buildbot 
AuthorDate: Mon Jun 7 18:18:22 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index fa77fb6..da32720 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 20 May 2021 14:21:16 +
-Thu, 20 May 2021 14:21:16 +
+Mon, 07 Jun 2021 18:18:16 +
+Mon, 07 Jun 2021 18:18:16 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index a21f96d..a00d4c8 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -735,6 +735,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/et;>ET
 
 
+  Luke Foster
+  https://www.asrc.com;>Arctic Slope Regional Corp.
+  https://www.timeanddate.com/time/zones/et;>ET
+
+
   Mandar Inamdar
   https://www.microsoft.com;>Microsoft
   https://www.timeanddate.com/time/zones/pt;>PT


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-05-20 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2daf54d  Automatic Site Publish by Buildbot
2daf54d is described below

commit 2daf54d6e587894185e36126c73570b89365aa32
Author: buildbot 
AuthorDate: Thu May 20 14:21:22 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index e8a1c50..fa77fb6 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 05 May 2021 19:46:27 +
-Wed, 05 May 2021 19:46:27 +
+Thu, 20 May 2021 14:21:16 +
+Thu, 20 May 2021 14:21:16 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 97cc1a8..a21f96d 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -810,6 +810,11 @@ $(function() {
    
 
 
+  Nicolás Alarcón R.
+   
+  https://www.timeanddate.com/time/zones/cest;>CEST
+
+
   Oren Falkowitz
   http://sqrrl.com;>sqrrl
   https://www.timeanddate.com/time/zones/et;>ET


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-05-05 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 21fadb0  Automatic Site Publish by Buildbot
21fadb0 is described below

commit 21fadb0199dc1b746592d045ed438ce14ddf5c84
Author: buildbot 
AuthorDate: Wed May 5 19:46:32 2021 +

Automatic Site Publish by Buildbot
---
 .../blog/2021/04/21/jshell-accumulo-feature.html   | 318 +
 output/feed.xml| 299 ++-
 output/index.html  |  14 +-
 output/news/index.html |  13 +-
 output/search_data.json|   8 +
 5 files changed, 501 insertions(+), 151 deletions(-)

diff --git a/output/blog/2021/04/21/jshell-accumulo-feature.html 
b/output/blog/2021/04/21/jshell-accumulo-feature.html
new file mode 100644
index 000..b42ab8f
--- /dev/null
+++ b/output/blog/2021/04/21/jshell-accumulo-feature.html
@@ -0,0 +1,318 @@
+
+
+
+
+
+
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/paper/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-awusxf8AUojygHf2+joICySzB780jVvQaVCAt1clU3QsyAitLGul28Qxb2r1e5g+"
 crossorigin="anonymous">
+
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css;>
+
+
+Jshell Accumulo Feature
+
+https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"; 
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" 
crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.js";>
+https://www.apachecon.com/event-images/snippet.js";>
+
+  // show location of canonical site if not currently on the canonical site
+  $(function() {
+var host = window.location.host;
+if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
+  $('#non-canonical').show();
+}
+  });
+
+  $(function() {
+// decorate section headers with anchors
+return $("h2, h3, h4, h5, h6").each(function(i, el) {
+  var $el, icon, id;
+  $el = $(el);
+  id = $el.attr('id');
+  icon = '';
+  if (id) {
+return $el.append($("").addClass("header-link").attr("href", "#" 
+ id).html(icon));
+  }
+});
+  });
+
+  // fix sidebar width in documentation
+  $(function() {
+var $affixElement = $('div[data-spy="affix"]');
+$affixElement.width($affixElement.parent().width());
+  });
+
+
+
+
+
+  
+  
+
+  
+Toggle navigation
+
+
+
+  
+  
+
+
+  
+Download
+Tour
+
+  Releases
+  
+2.0.1 (Latest)
+1.10.1
+Archive
+  
+
+
+  Documentation
+  
+User Manual (2.x)
+Javadocs (2.0)
+Public API
+Quickstart (1.x)
+Accumulo Maven 
Plugin
+User Manual 
(1.10)
+Javadocs (1.10)
+External Docs
+Archive
+  
+
+
+  Community
+  
+Contact Us
+How To Contribute
+People
+Related Projects
+  
+
+Search
+  
+  
+
+  https://www.apache.org/foundation/press/kit/feather.svg; width="15"/>
+  
+https://www.apache.org;>Apache Homepage 
+https://www.apache.org/licenses/;>License 
+https://www.apache.org/foundation/sponsorship;>Sponsorship 
+https://www.apache.org/security;>Security 
+https://www.apache.org/foundation/thanks;>Thanks 
+https://www.apache.org/foundation/policies/conduct;>Code of Conduct 
+https://www.apache.org/events/current-event.html;>Current Event 
+  
+
+  
+
+  
+
+
+
+  
+
+  
+
+
+  Visit the official site at: https://accumulo.apache.org;>https://accumulo.apache.org
+
+
+  
+  Jshell Accumulo Feature
+  
+  
+
+Date: 21 Apr 2021
+
+
+
+Overview
+
+First introduced in Java 9, https://docs.oracle.com/javase/9/jshell/introduction-jshell.htm#JSHEL-GUID-630F27C8-1195-4989-9F6B-2C51D46F52C8;>JShell
 is an interactive Read-Evaluate-Print-Loop (REPL) 
+Java tool that interprets user’s input and outputs the results. This tool 
provides a convenient 
+way to test out and execute quick tasks with Accumulo in the terminal. This 
feature is a part 
+of the upcoming Accumulo 2.1 release. If you’re a developer and want to get 
involved in testing, 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-05-05 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2cbb125  Automatic Site Publish by Buildbot
2cbb125 is described below

commit 2cbb125650b80fb27b51bd15b07c8dae258a9619
Author: buildbot 
AuthorDate: Wed May 5 17:10:10 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 6f29998..30626fb 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Sun, 02 May 2021 18:38:55 +
-Sun, 02 May 2021 18:38:55 +
+Wed, 05 May 2021 17:10:04 +
+Wed, 05 May 2021 17:10:04 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index f3252c7..97cc1a8 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -425,6 +425,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/pt;>PT
 
 
+  Akshit Mangotra
+   
+  https://www.timeanddate.com/time/zones/ist-ireland;>IST
+
+
   Al Krinker
    
   https://www.timeanddate.com/time/zones/et;>ET


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-05-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 1f547a7  Automatic Site Publish by Buildbot
1f547a7 is described below

commit 1f547a76038177862aa951e9a9e35d492de3bb55
Author: buildbot 
AuthorDate: Sun May 2 18:39:00 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 907bf98..6f29998 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Sun, 02 May 2021 16:53:07 +
-Sun, 02 May 2021 16:53:07 +
+Sun, 02 May 2021 18:38:55 +
+Sun, 02 May 2021 18:38:55 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index a68e8f2..f3252c7 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -440,6 +440,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/pkt;>PKT
 
 
+  Amisha Sahu
+   
+  https://www.timeanddate.com/time/zones/ist-ireland;>IST
+
+
   Andrew George Wells
   http://clearedgeit.com;>ClearEdgeIT
   https://www.timeanddate.com/time/zones/et;>ET


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-05-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new c460d55  Automatic Site Publish by Buildbot
c460d55 is described below

commit c460d55c14e3c5e458887895e430c7b57b3d425c
Author: buildbot 
AuthorDate: Sun May 2 16:53:12 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 843ce56..907bf98 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Sat, 01 May 2021 16:26:54 +
-Sat, 01 May 2021 16:26:54 +
+Sun, 02 May 2021 16:53:07 +
+Sun, 02 May 2021 16:53:07 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 5a6ee44..a68e8f2 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -575,6 +575,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/et;>ET
 
 
+  Hasan Gürcan
+   
+  https://www.timeanddate.com/time/zones/cest;>CEST
+
+
   Hayden Marchant
    
    


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-05-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 5430b19  Automatic Site Publish by Buildbot
5430b19 is described below

commit 5430b19224f9797bef8ad6fdd674aa0248ec7c87
Author: buildbot 
AuthorDate: Sat May 1 16:27:00 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 0bb16a8..843ce56 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 30 Apr 2021 16:13:13 +
-Fri, 30 Apr 2021 16:13:13 +
+Sat, 01 May 2021 16:26:54 +
+Sat, 01 May 2021 16:26:54 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-30 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new fb936b1  Automatic Site Publish by Buildbot
fb936b1 is described below

commit fb936b17f7ba8daa9dd6c40eafe8515eba5fe6a8
Author: buildbot 
AuthorDate: Fri Apr 30 16:13:19 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 6776e64..0bb16a8 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 29 Apr 2021 13:13:54 +
-Thu, 29 Apr 2021 13:13:54 +
+Fri, 30 Apr 2021 16:13:13 +
+Fri, 30 Apr 2021 16:13:13 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 0e09583..5a6ee44 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -435,6 +435,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/et;>ET
 
 
+  Ali Mustafa
+  https://nu.edu.pk/;>FAST-NU
+  https://www.timeanddate.com/time/zones/pkt;>PKT
+
+
   Andrew George Wells
   http://clearedgeit.com;>ClearEdgeIT
   https://www.timeanddate.com/time/zones/et;>ET


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-29 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new a0db284  Automatic Site Publish by Buildbot
a0db284 is described below

commit a0db2845b81cddfa9d265e86b87cf533c9a22ea6
Author: buildbot 
AuthorDate: Thu Apr 29 13:14:00 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 output/how-to-contribute/index.html | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 11734f7..6776e64 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 28 Apr 2021 11:24:07 +
-Wed, 28 Apr 2021 11:24:07 +
+Thu, 29 Apr 2021 13:13:54 +
+Thu, 29 Apr 2021 13:13:54 +
 Jekyll v4.2.0
 
 
diff --git a/output/how-to-contribute/index.html 
b/output/how-to-contribute/index.html
index 61d1c7d..d707ebf 100644
--- a/output/how-to-contribute/index.html
+++ b/output/how-to-contribute/index.html
@@ -222,7 +222,7 @@ there are other ways to contribute to Accumulo:
 
   
   Do work and commit to your branch. You can reference https://chris.beams.io/posts/git-commit/;>this link for a guide on 
how to write good commit log messages.
-  Ensure you works satisfies the guidelines laid out in the CONTRIBUTING.md file.
+  Ensure your branch builds cleanly using the command: mvn clean verify 
-DskipITs
   If needed, squash to the minimum number of commits. For help on 
squashing commits, see this http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html;>tutorial
 or https://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git;>StackOverflow
 answer.
   https://help.github.com/articles/pushing-to-a-remote/;>Push 
your branch to your fork.
  git push origin accumulo-4321


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-28 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9c2604e  Automatic Site Publish by Buildbot
9c2604e is described below

commit 9c2604ebb64872b01cbc73c32ea06fe5e1102eb3
Author: buildbot 
AuthorDate: Wed Apr 28 11:24:12 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index f56d063..11734f7 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 22 Apr 2021 19:15:06 +
-Thu, 22 Apr 2021 19:15:06 +
+Wed, 28 Apr 2021 11:24:07 +
+Wed, 28 Apr 2021 11:24:07 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 8569e3e..0e09583 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -925,6 +925,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/pt;>PT
 
 
+  Umang goyal
+   
+  https://www.timeanddate.com/time/zones/gmt;>GMT
+
+
   Vicky Kak
    
    


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-22 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new c611f61  Automatic Site Publish by Buildbot
c611f61 is described below

commit c611f614a6cb934ec2948da63460c0b898bf7133
Author: buildbot 
AuthorDate: Thu Apr 22 19:15:12 2021 +

Automatic Site Publish by Buildbot
---
 output/downloads/index.html | 30 ++
 output/feed.xml |  4 ++--
 2 files changed, 20 insertions(+), 14 deletions(-)

diff --git a/output/downloads/index.html b/output/downloads/index.html
index bf0211b..619bd87 100644
--- a/output/downloads/index.html
+++ b/output/downloads/index.html
@@ -156,21 +156,27 @@ var mirrorsCallback = function(json) {
   htmlContent += '';
   htmlContent += '' + json.preferred + '';
   htmlContent += '';
-  htmlContent += '';
-  for (var i = 0; i < json.http.length; i++) {
-htmlContent += '' + json.http[i] + '';
+  if (json.hasOwnProperty('http')) {
+htmlContent += '';
+for (var i = 0; i < json.http.length; i++) {
+  htmlContent += '' + json.http[i] + '';
+}
+htmlContent += '';
   }
-  htmlContent += '';
-  htmlContent += '';
-  for (var i = 0; i < json.ftp.length; i++) {
-htmlContent += '' + json.ftp[i] + '';
+  if (json.hasOwnProperty('ftp')) {
+htmlContent += '';
+for (var i = 0; i < json.ftp.length; i++) {
+  htmlContent += '' + json.ftp[i] + '';
+}
+htmlContent += '';
   }
-  htmlContent += '';
-  htmlContent += '';
-  for (var i = 0; i < json.backup.length; i++) {
-htmlContent += '' + json.backup[i] + '';
+  if (json.hasOwnProperty('backup')) {
+htmlContent += '';
+for (var i = 0; i < json.backup.length; i++) {
+  htmlContent += '' + json.backup[i] + '';
+}
+htmlContent += '';
   }
-  htmlContent += '';
   htmlContent += '';
 
   $("#mirror_selection").html(htmlContent);
diff --git a/output/feed.xml b/output/feed.xml
index 17d2ab2..f56d063 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 22 Apr 2021 18:58:42 +
-Thu, 22 Apr 2021 18:58:42 +
+Thu, 22 Apr 2021 19:15:06 +
+Thu, 22 Apr 2021 19:15:06 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-22 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 295f793  Automatic Site Publish by Buildbot
295f793 is described below

commit 295f793d55ef91a842b1b0363445a4151cd7834c
Author: buildbot 
AuthorDate: Thu Apr 22 18:58:48 2021 +

Automatic Site Publish by Buildbot
---
 output/blog/2016/11/02/durability-performance.html | 2 +-
 output/blog/2019/08/12/why-upgrade.html| 2 +-
 output/feed.xml| 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/output/blog/2016/11/02/durability-performance.html 
b/output/blog/2016/11/02/durability-performance.html
index 3b238db..252f69c 100644
--- a/output/blog/2016/11/02/durability-performance.html
+++ b/output/blog/2016/11/02/durability-performance.html
@@ -145,7 +145,7 @@
   
 Author: Keith Turner
 Date: 02 Nov 2016
-Reviewer(s)  Josh Elser, Dave Marion, Christopher Tubbs
+Reviewer(s)  Josh Elser, Dave Marion
 
 
 Overview
diff --git a/output/blog/2019/08/12/why-upgrade.html 
b/output/blog/2019/08/12/why-upgrade.html
index 6867836..967abdf 100644
--- a/output/blog/2019/08/12/why-upgrade.html
+++ b/output/blog/2019/08/12/why-upgrade.html
@@ -145,7 +145,7 @@
   
 Author: Mike Miller
 Date: 12 Aug 2019
-Reviewer(s)  Keith Turner, Christopher Tubbs
+Reviewer(s)  Keith Turner
 
 
 Accumulo 2.0 has been in development for quite some time now and is packed 
with new features, bug
diff --git a/output/feed.xml b/output/feed.xml
index f554d45..17d2ab2 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 08 Apr 2021 20:09:13 +
-Thu, 08 Apr 2021 20:09:13 +
+Thu, 22 Apr 2021 18:58:42 +
+Thu, 22 Apr 2021 18:58:42 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 2e22d25  Automatic Site Publish by Buildbot
2e22d25 is described below

commit 2e22d252b643ff2765b67ba3887e50f2f2a3adf3
Author: buildbot 
AuthorDate: Thu Apr 8 20:09:18 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/troubleshooting/system-metadata-tables.html | 9 +
 output/feed.xml | 4 ++--
 output/search_data.json | 2 +-
 3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/output/docs/2.x/troubleshooting/system-metadata-tables.html 
b/output/docs/2.x/troubleshooting/system-metadata-tables.html
index f5c0ff3..f53d584 100644
--- a/output/docs/2.x/troubleshooting/system-metadata-tables.html
+++ b/output/docs/2.x/troubleshooting/system-metadata-tables.html
@@ -477,13 +477,15 @@ shell scan -b 3; -e 3
   
   
 last:13fe86cd27101e5 
[]127.0.0.1:9997 -
-  Last location for this tablet.  It was last held on 127.0.0.1:9997, and the
+  The last location data was written locally (from a minor or major 
compaction). Data was last written on 127.0.0.1:9997, and the
   unique tablet server lock data was 13fe86cd27101e5. The default balancer
-  will tend to put tablets back on their last location.
+  will tend to assign tablets to the last location where its files have been 
written to
+  attempt to improve data locality.
   
   
 loc:13fe86cd27101e5 
[]127.0.0.1:9997 -
-  The current location of this tablet.
+  Last assigned location for this tablet (its current location, if it is still 
hosted). It was last assigned to 127.0.0.1:9997, and the
+  unique tablet server lock data was 13fe86cd27101e5.
   
   
 srv:dir []
/default_tablet -
@@ -551,7 +553,6 @@ shell scan -b 3; -e 3
 
 
 
-
 
   Find documentation for all releases in 
the archive
   https://github.com/apache/accumulo-website/edit/main/_docs-2/troubleshooting/system-metadata-tables.md;
 role="button"> Edit this 
page
diff --git a/output/feed.xml b/output/feed.xml
index a62e76b..f554d45 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 08 Apr 2021 19:09:10 +
-Thu, 08 Apr 2021 19:09:10 +
+Thu, 08 Apr 2021 20:09:13 +
+Thu, 08 Apr 2021 20:09:13 +
 Jekyll v4.2.0
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 154feda..473e08b 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -282,7 +282,7 @@
   
 "docs-2-x-troubleshooting-system-metadata-tables": {
   "title": "System Metadata Tables",
-  "content" : "Accumulo tracks information about tables in 
metadata tables. The metadata formost tables is contained within the metadata 
table in the accumulo namespace,while metadata for that table is contained in 
the root table in the accumulonamespace. The root table is composed of a single 
tablet, which does notsplit, so it is also called the root tablet. Information 
about the roottable, such as its location and write-ahead logs, are stored in 
ZooKeeper.Let’s create a table and  [...]
+  "content" : "Accumulo tracks information about tables in 
metadata tables. The metadata formost tables is contained within the metadata 
table in the accumulo namespace,while metadata for that table is contained in 
the root table in the accumulonamespace. The root table is composed of a single 
tablet, which does notsplit, so it is also called the root tablet. Information 
about the roottable, such as its location and write-ahead logs, are stored in 
ZooKeeper.Let’s create a table and  [...]
   "url": " /docs/2.x/troubleshooting/system-metadata-tables",
   "categories": "troubleshooting"
 },


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-04-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d68452d  Automatic Site Publish by Buildbot
d68452d is described below

commit d68452d2def90d56b48881a8d30d8a80f03e738e
Author: buildbot 
AuthorDate: Thu Apr 8 19:09:16 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/getting-started/quickstart.html | 204 ++--
 output/feed.xml |   4 +-
 output/search_data.json |   2 +-
 3 files changed, 122 insertions(+), 88 deletions(-)

diff --git a/output/docs/2.x/getting-started/quickstart.html 
b/output/docs/2.x/getting-started/quickstart.html
index 29e195b..8ea0cd8 100644
--- a/output/docs/2.x/getting-started/quickstart.html
+++ b/output/docs/2.x/getting-started/quickstart.html
@@ -423,77 +423,91 @@
 
 User Manual (2.x)
 
-Starting with Accumulo 2.0, the user manual now lives on the website as a 
series of web pages. Previously, it was one large 
-pdf document that was only generated during a release. The user manual can now 
be updated very quickly and indexed 
+Starting with Accumulo 2.0, the user manual now lives on the website as a 
series
+of web pages. Previously, it was one large pdf document that was only generated
+during a release. The user manual can now be updated very quickly and indexed
 for searching across many webpages.
 
-The manual can now be 
-searched using the Search link at the top of the website 
or navigated by clicking the links to the left. If you are new 
-to Accumulo, follow the instructions below to get started.  For detailed 
instructions, see the in-depth installation 
guide.
+The manual can now be searched using the Search link 
at the top of the
+website or navigated by clicking the links to the left. If you are new to
+Accumulo, follow the instructions below to get started. For detailed
+instructions, see the in-depth installation 
guide.
 
 Setup for testing or development
 
-If you are setting up Accumulo for testing or development, 
consider using the following tools:
+If you are setting up Accumulo for testing or development, 
consider using
+the following tools:
 
 
   https://github.com/apache/fluo-uno;>Uno sets up Accumulo on 
a single machine for development
-  https://github.com/apache/fluo-muchos;>Muchos sets up 
Accumulo on a cluster (optionally launched in Amazon EC2 and Microsoft Azure 
VM)
+  https://github.com/apache/fluo-muchos;>Muchos sets up 
Accumulo on a cluster (optionally launched in Amazon EC2 and
+Microsoft Azure VM)
 
 
-If you are setting up Accumulo for a production 
environment, follow the instructions below.
+If you are setting up Accumulo for a production 
environment, follow the
+instructions below.
 
 Setup for Production
 
-Either download or https://github.com/apache/accumulo/blob/main/README.md#building;>build
 a binary distribution of Accumulo from source code and
-unpack as follows.
+Either download or https://github.com/apache/accumulo/blob/main/README.md#building;>build
 a binary distribution of Accumulo from source code
+and unpack as follows.
 
 tar xzf /path/to/accumulo-2.0.1-bin.tar.gz
 cd accumulo-2.0.1
 
 
-There are four scripts in the bin directory of the tarball distribution that are 
used
-to manage Accumulo:
+There are four scripts in the bin directory of the tarball distribution that
+are used to manage Accumulo:
 
 
   accumulo - 
Runs Accumulo command-line tools and starts Accumulo processes
-  accumulo-service - Runs Accumulo processes as 
services
-  accumulo-cluster - Manages Accumulo cluster on a 
single node or several nodes
-  accumulo-util 
- Accumulo utilities for building native libraries, running jars, etc.
+  accumulo-service - Runs individual Accumulo processes 
as background
+services
+  accumulo-cluster - Manages Accumulo cluster on a 
single node or several
+nodes
+  accumulo-util 
- Accumulo utilities for building native libraries, running
+jars, etc.
 
 
-These scripts will be used in the remaining instructions to configure and 
run Accumulo.
-For convenience, consider adding accumulo-2.0.1/bin/ to your shell’s path.
+These scripts will be used in the remaining instructions to configure and 
run
+Accumulo. For convenience, consider adding accumulo-2.0.1/bin/
+to your shell’s path.
 
 Configuring Accumulo
 
-Accumulo requires running https://zookeeper.apache.org/;>Zookeeper and https://hadoop.apache.org/;>HDFS instances which should be set up
-before configuring Accumulo.
+Accumulo requires running https://zookeeper.apache.org/;>Zookeeper and https://hadoop.apache.org/;>HDFS instances which should be set
+up before configuring Accumulo.
 
-Important note: If using https://hadoop.apache.org/docs/r3.2.0/hadoop-project-dist/hadoop-hdfs/HDFSErasureCoding.html;>Erasure
 Coding (EC), data loss 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-03-23 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 728fd2d  Automatic Site Publish by Buildbot
728fd2d is described below

commit 728fd2d0af09880f044488e9d18a9c9cbfe12aac
Author: buildbot 
AuthorDate: Wed Mar 24 04:04:44 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 7dad099..2523bf2 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 19 Mar 2021 20:01:01 +
-Fri, 19 Mar 2021 20:01:01 +
+Wed, 24 Mar 2021 04:04:39 +
+Wed, 24 Mar 2021 04:04:39 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index b3234de..1ee3e4e 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -564,6 +564,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/et;>ET
 
 
+  Harjit Singh
+   
+  https://www.timeanddate.com/time/zones/et;>ET
+
+
   Hayden Marchant
    
    


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-03-19 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 6c56a7c  Automatic Site Publish by Buildbot
6c56a7c is described below

commit 6c56a7c2cb9ebdf00a055d6882f1bfcecf0290e5
Author: buildbot 
AuthorDate: Fri Mar 19 20:01:06 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 69a0738..7dad099 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 19 Mar 2021 05:00:09 +
-Fri, 19 Mar 2021 05:00:09 +
+Fri, 19 Mar 2021 20:01:01 +
+Fri, 19 Mar 2021 20:01:01 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-03-18 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new acf6c02  Automatic Site Publish by Buildbot
acf6c02 is described below

commit acf6c020041ef5b5a29948680f4723a2ef9c5582
Author: buildbot 
AuthorDate: Fri Mar 19 05:00:14 2021 +

Automatic Site Publish by Buildbot
---
 output/downloads/index.html | 32 
 output/feed.xml |  4 ++--
 2 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/output/downloads/index.html b/output/downloads/index.html
index f6c0eee..60a7b4e 100644
--- a/output/downloads/index.html
+++ b/output/downloads/index.html
@@ -199,7 +199,7 @@ $(function() { 
$.getJSON("https://accumulo.apache.org/mirrors.cgi?as_json;, mirr
 current generation, containing the newest features, bug fixes, performance
 enhancements, and more.
 
-
+
   
 https://www.apache.org/dyn/closer.lua/accumulo/2.0.1/accumulo-2.0.1-src.tar.gz;
 
link-suffix="/accumulo/2.0.1/accumulo-2.0.1-src.tar.gz">accumulo-2.0.1-src.tar.gz
   
@@ -208,7 +208,7 @@ enhancements, and more.
   
 
 
-
+
   
 https://www.apache.org/dyn/closer.lua/accumulo/2.0.1/accumulo-2.0.1-bin.tar.gz;
 
link-suffix="/accumulo/2.0.1/accumulo-2.0.1-bin.tar.gz">accumulo-2.0.1-bin.tar.gz
   
@@ -217,12 +217,12 @@ enhancements, and more.
   
 
 
-
-  Release Notes
-  https://github.com/apache/accumulo/blob/rel/2.0.1/README.md;>README
-  Online Documentation
-  https://github.com/apache/accumulo-examples;>Examples
-  Java API
+
+  Release Notes
+  https://github.com/apache/accumulo/blob/rel/2.0.1/README.md;>README
+  Online Documentation
+  https://github.com/apache/accumulo-examples;>Examples
+  Java API
 
 
 1.10.1 Legacy 
LTM
@@ -230,7 +230,7 @@ enhancements, and more.
 The most recent legacy (1.x) release of Apache Accumulo® is version
 1.10.1.
 
-
+
   
 https://www.apache.org/dyn/closer.lua/accumulo/1.10.1/accumulo-1.10.1-src.tar.gz;
 
link-suffix="/accumulo/1.10.1/accumulo-1.10.1-src.tar.gz">accumulo-1.10.1-src.tar.gz
   
@@ -239,7 +239,7 @@ enhancements, and more.
   
 
 
-
+
   
 https://www.apache.org/dyn/closer.lua/accumulo/1.10.1/accumulo-1.10.1-bin.tar.gz;
 
link-suffix="/accumulo/1.10.1/accumulo-1.10.1-bin.tar.gz">accumulo-1.10.1-bin.tar.gz
   
@@ -248,12 +248,12 @@ enhancements, and more.
   
 
 
-
-  Release Notes
-  https://github.com/apache/accumulo/blob/rel/1.10.1/README.md;>README
-  User Manual
-  Examples
-  Java API
+
+  Release Notes
+  https://github.com/apache/accumulo/blob/rel/1.10.1/README.md;>README
+  User Manual
+  Examples
+  Java API
 
 
  Legend
diff --git a/output/feed.xml b/output/feed.xml
index f072701..69a0738 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 19 Mar 2021 04:07:51 +
-Fri, 19 Mar 2021 04:07:51 +
+Fri, 19 Mar 2021 05:00:09 +
+Fri, 19 Mar 2021 05:00:09 +
 Jekyll v4.2.0
 
 


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-03-18 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 080e95f  Automatic Site Publish by Buildbot
080e95f is described below

commit 080e95f4949a8f4a402d7adb1d350301f3f41e7d
Author: buildbot 
AuthorDate: Fri Mar 19 04:07:57 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index ba93864..f072701 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,9 +6,9 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 18 Mar 2021 20:02:41 +
-Thu, 18 Mar 2021 20:02:41 +
-Jekyll v4.1.1
+Fri, 19 Mar 2021 04:07:51 +
+Fri, 19 Mar 2021 04:07:51 +
+Jekyll v4.2.0
 
 
   


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-03-18 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new a610a2d  Automatic Site Publish by Buildbot
a610a2d is described below

commit a610a2d38fce367a1971f6c6d71d6b59f8846692
Author: buildbot 
AuthorDate: Thu Mar 18 20:02:46 2021 +

Automatic Site Publish by Buildbot
---
 output/css/accumulo.css | 2 --
 output/css/accumulo.css.map | 4 ++--
 output/feed.xml | 4 ++--
 output/index.html   | 2 +-
 4 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/output/css/accumulo.css b/output/css/accumulo.css
index a0b1c59..8d28066 100644
--- a/output/css/accumulo.css
+++ b/output/css/accumulo.css
@@ -277,6 +277,4 @@ a.prop { display: block; content: " "; margin-top: -90px; 
height: 90px; visibili
 
 .blog-img-center { max-width: 95%; margin-top: 10px; margin-bottom: 10px; 
margin-left: auto; margin-right: auto; display: block; }
 
-a.acevent > img { /* modeled after bootstrap's center-block and img-responsive 
which can't be added to the img element directly because it is inserted 
dynamically by the ASF events javascript */ display: block; margin-right: auto; 
margin-left: auto; max-width: 100%; }
-
 /*# sourceMappingURL=accumulo.css.map */
\ No newline at end of file
diff --git a/output/css/accumulo.css.map b/output/css/accumulo.css.map
index e8bb072..50c4192 100644
--- a/output/css/accumulo.css.map
+++ b/output/css/accumulo.css.map
@@ -6,9 +6,9 @@
"_sass/_syntax-highlighting.scss"
],
"sourcesContent": [
-   "@import \"syntax-highlighting\";\n\ntable {\n margin: 10px 0px 
30px 0px;\n padding: 10px 5px 10px 5px;\n}\n\nth, td {\n  padding: 10px 40px 
10px 5px;\n  border-bottom: 1px solid #ddd;\n}\n\nh1 {\n  font-size: 
34px;\n}\n\nh2 {\n  font-size: 28px;\n}\n\nh3 {\n  font-size: 22px;\n}\n\nh4 
{\n  font-size: 18px;\n}\n\nh5 {\n  font-size: 16px;\n}\n\nh6 {\n  font-size: 
15px;\n}\n\nbody {  \n  font-size: 14px;\n}\n\npre code {\n  font-size: 14px;\n 
 /* override nowrap in bootstrap */\n  white- [...]
+   "@import \"syntax-highlighting\";\n\ntable {\n margin: 10px 0px 
30px 0px;\n padding: 10px 5px 10px 5px;\n}\n\nth, td {\n  padding: 10px 40px 
10px 5px;\n  border-bottom: 1px solid #ddd;\n}\n\nh1 {\n  font-size: 
34px;\n}\n\nh2 {\n  font-size: 28px;\n}\n\nh3 {\n  font-size: 22px;\n}\n\nh4 
{\n  font-size: 18px;\n}\n\nh5 {\n  font-size: 16px;\n}\n\nh6 {\n  font-size: 
15px;\n}\n\nbody {  \n  font-size: 14px;\n}\n\npre code {\n  font-size: 14px;\n 
 /* override nowrap in bootstrap */\n  white- [...]
".highlight .hll { background-color: #d6d6d6 }\n.highlight  { 
background: #f5f5f5; color: #4d4d4c }\n.highlight .c { color: #8e908c } /* 
Comment */\n.highlight .err { color: #c82829 } /* Error */\n.highlight .k { 
color: #8959a8 } /* Keyword */\n.highlight .l { color: #f5871f } /* Literal 
*/\n.highlight .n { color: #4d4d4c } /* Name */\n.highlight .o { color: #3e999f 
} /* Operator */\n.highlight .p { color: #4d4d4c } /* Punctuation 
*/\n.highlight .cm { color: #8e908c } /* Comment.Multil [...]
],
"names": [],
-   "mappings": 
"ACAA,,UAAU,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,OAAQ,GAAE;;AAC9C,,UAAU,CAAE,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,OAAQ,GAAE;;AACpD,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,WAAW;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,UAAU;AAC3C,,UAAU,CA
 [...]
+   "mappings": 
"ACAA,,UAAU,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,OAAQ,GAAE;;AAC9C,,UAAU,CAAE,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,OAAQ,GAAE;;AACpD,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,WAAW;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,UAAU;AAC3C,,UAAU,CA
 [...]
 }
\ No newline at end of file
diff --git a/output/feed.xml b/output/feed.xml
index 3dde0b6..ba93864 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 17 Mar 2021 20:14:02 +
-Wed, 17 Mar 2021 20:14:02 +
+Thu, 18 Mar 2021 20:02:41 +
+Thu, 18 Mar 2021 20:02:41 +
 Jekyll v4.1.1
 
 
diff --git a/output/index.html b/output/index.html
index 30c7aba..6f53ad2 100644
--- a/output/index.html
+++ b/output/index.html
@@ -243,7 +243,7 @@
 
 
   
-
+
 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-02-09 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 4eb6013  Automatic Site Publish by Buildbot
4eb6013 is described below

commit 4eb60131db7bb221f24ee8b6b7296d0e7d06acad
Author: buildbot 
AuthorDate: Wed Feb 10 00:15:09 2021 +

Automatic Site Publish by Buildbot
---
 output/css/accumulo.css|  4 +-
 output/css/accumulo.css.map|  4 +-
 output/feed.xml|  4 +-
 .../release/accumulo-1.3.5-incubating/index.html   |  4 -
 output/release/accumulo-2.0.1/index.html   |  4 +
 output/release/accumulo-2.1.0/index.html   | 85 +-
 output/search_data.json|  2 +-
 7 files changed, 92 insertions(+), 15 deletions(-)

diff --git a/output/css/accumulo.css b/output/css/accumulo.css
index 1d55833..8d28066 100644
--- a/output/css/accumulo.css
+++ b/output/css/accumulo.css
@@ -209,9 +209,9 @@ h6 { font-size: 15px; }
 
 body { font-size: 14px; }
 
-pre code { font-size: 14px; }
+pre code { font-size: 14px; /* override nowrap in bootstrap */ white-space: 
pre; }
 
-code { background-color: #f5f5f5; color: #555; /* override nowrap in bootstrap 
*/ white-space: normal; }
+code { background-color: #f5f5f5; color: #555; }
 
 #nav-logo { padding-top: 10px; padding-bottom: 10px; padding-left: 10px; }
 
diff --git a/output/css/accumulo.css.map b/output/css/accumulo.css.map
index e28bba7..50c4192 100644
--- a/output/css/accumulo.css.map
+++ b/output/css/accumulo.css.map
@@ -6,9 +6,9 @@
"_sass/_syntax-highlighting.scss"
],
"sourcesContent": [
-   "@import \"syntax-highlighting\";\n\ntable {\n margin: 10px 0px 
30px 0px;\n padding: 10px 5px 10px 5px;\n}\n\nth, td {\n  padding: 10px 40px 
10px 5px;\n  border-bottom: 1px solid #ddd;\n}\n\nh1 {\n  font-size: 
34px;\n}\n\nh2 {\n  font-size: 28px;\n}\n\nh3 {\n  font-size: 22px;\n}\n\nh4 
{\n  font-size: 18px;\n}\n\nh5 {\n  font-size: 16px;\n}\n\nh6 {\n  font-size: 
15px;\n}\n\nbody {  \n  font-size: 14px;\n}\n\npre code {\n  font-size: 
14px;\n}\n\ncode {\n  background-color: #f5f5f5;\n  c [...]
+   "@import \"syntax-highlighting\";\n\ntable {\n margin: 10px 0px 
30px 0px;\n padding: 10px 5px 10px 5px;\n}\n\nth, td {\n  padding: 10px 40px 
10px 5px;\n  border-bottom: 1px solid #ddd;\n}\n\nh1 {\n  font-size: 
34px;\n}\n\nh2 {\n  font-size: 28px;\n}\n\nh3 {\n  font-size: 22px;\n}\n\nh4 
{\n  font-size: 18px;\n}\n\nh5 {\n  font-size: 16px;\n}\n\nh6 {\n  font-size: 
15px;\n}\n\nbody {  \n  font-size: 14px;\n}\n\npre code {\n  font-size: 14px;\n 
 /* override nowrap in bootstrap */\n  white- [...]
".highlight .hll { background-color: #d6d6d6 }\n.highlight  { 
background: #f5f5f5; color: #4d4d4c }\n.highlight .c { color: #8e908c } /* 
Comment */\n.highlight .err { color: #c82829 } /* Error */\n.highlight .k { 
color: #8959a8 } /* Keyword */\n.highlight .l { color: #f5871f } /* Literal 
*/\n.highlight .n { color: #4d4d4c } /* Name */\n.highlight .o { color: #3e999f 
} /* Operator */\n.highlight .p { color: #4d4d4c } /* Punctuation 
*/\n.highlight .cm { color: #8e908c } /* Comment.Multil [...]
],
"names": [],
-   "mappings": 
"ACAA,,UAAU,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,OAAQ,GAAE;;AAC9C,,UAAU,CAAE,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,OAAQ,GAAE;;AACpD,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,WAAW;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,UAAU;AAC3C,,UAAU,CA
 [...]
+   "mappings": 
"ACAA,,UAAU,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,OAAQ,GAAE;;AAC9C,,UAAU,CAAE,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,OAAQ,GAAE;;AACpD,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,WAAW;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,aAAa;AAC9C,,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;,UAAU;AAC3C,,UAAU,CA
 [...]
 }
\ No newline at end of file
diff --git a/output/feed.xml b/output/feed.xml
index 52a48b5..031d4e7 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 09 Feb 2021 23:49:57 +
-Tue, 09 Feb 2021 23:49:57 +
+Wed, 10 Feb 2021 00:15:04 +
+Wed, 10 Feb 2021 00:15:04 +
 Jekyll v4.1.1
 
 
diff --git a/output/release/accumulo-1.3.5-incubating/index.html 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-02-09 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e6a21a1  Automatic Site Publish by Buildbot
e6a21a1 is described below

commit e6a21a189aca2a614c2f148d0125f5a6b9bb2519
Author: buildbot 
AuthorDate: Tue Feb 9 23:50:03 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index bacb11b..52a48b5 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 09 Feb 2021 23:17:34 +
-Tue, 09 Feb 2021 23:17:34 +
+Tue, 09 Feb 2021 23:49:57 +
+Tue, 09 Feb 2021 23:49:57 +
 Jekyll v4.1.1
 
 



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-02-09 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new b979dee  Automatic Site Publish by Buildbot
b979dee is described below

commit b979dee5d8c35d4d0ccaefc580a2e2eea3e89d00
Author: buildbot 
AuthorDate: Tue Feb 9 23:17:40 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.0.0/index.html | 15 +++
 output/search_data.json  |  2 +-
 3 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 70bc7b9..bacb11b 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 08 Feb 2021 18:45:39 +
-Mon, 08 Feb 2021 18:45:39 +
+Tue, 09 Feb 2021 23:17:34 +
+Tue, 09 Feb 2021 23:17:34 +
 Jekyll v4.1.1
 
 
diff --git a/output/release/accumulo-2.0.0/index.html 
b/output/release/accumulo-2.0.0/index.html
index f735675..c23c195 100644
--- a/output/release/accumulo-2.0.0/index.html
+++ b/output/release/accumulo-2.0.0/index.html
@@ -327,6 +327,21 @@ However, it will break any code that was relying on the 
undocumented and broken
 behavior to compare Value objects with byte arrays. Such comparisons will 
now
 always return false 
instead of true, even 
if the contents are equal.
 
+Removed 
default dynamic reloading classpath directory (lib/ext)
+
+In https://github.com/apache/accumulo/issues/1179;>#1179, the 
default directory for dynamic class reloading (lib/ext)
+was removed and the default value for the deprecated property
+general.dynamic.classpaths was set to blank. This was 
done as part of a plan
+to phase out class loading behaviors that are tightly coupled to Accumulo, in
+favor of more user-pluggable class loading features that are easier to maintain
+separately from Accumulo’s core code.
+
+To continue to use this feature until it is removed, you must set this 
property
+to a value. However, it is recommended to add your non-dynamic user class paths
+to the CLASSPATH 
environment in accumulo-env.sh instead, or to leverage the
+per-table context class paths feature, depending on your use case. For
+reference, the previous default value was $ACCUMULO_HOME/lib/ext/[^.].*.jar.
+
 Other Notable Changes
 
 
diff --git a/output/search_data.json b/output/search_data.json
index 019abf8..8bfe4ec 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -392,7 +392,7 @@
   
 "release-accumulo-2-0-0": {
   "title": "Apache Accumulo 2.0.0",
-  "content" : "Apache Accumulo 2.0.0 contains significant changes 
from 1.9 and earlierversions. It is the first major release since adopting 
semver and is theculmination of more than 3 years worth of work by more than 40 
contributorsfrom the Accumulo community. The following release notes highlight 
some of thechanges. If anything is missing from this list, please contact the 
developersto have it included.Notable ChangesNew API for creating connections 
to AccumuloA fluent API for cre [...]
+  "content" : "Apache Accumulo 2.0.0 contains significant changes 
from 1.9 and earlierversions. It is the first major release since adopting 
semver and is theculmination of more than 3 years worth of work by more than 40 
contributorsfrom the Accumulo community. The following release notes highlight 
some of thechanges. If anything is missing from this list, please contact the 
developersto have it included.Notable ChangesNew API for creating connections 
to AccumuloA fluent API for cre [...]
   "url": " /release/accumulo-2.0.0/",
   "categories": "release"
 }



[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-02-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 0db6439  Automatic Site Publish by Buildbot
0db6439 is described below

commit 0db6439917d95df3267287a8c1496e0ece60f9ca
Author: buildbot 
AuthorDate: Mon Feb 8 18:45:45 2021 +

Automatic Site Publish by Buildbot
---
 output/docs/2.x/administration/caching.html|  4 +++-
 output/docs/2.x/administration/erasure-coding.html |  4 +++-
 output/docs/2.x/administration/fate.html   |  4 +++-
 .../docs/2.x/administration/in-depth-install.html  |  4 +++-
 .../2.x/administration/monitoring-metrics.html |  4 +++-
 output/docs/2.x/administration/multivolume.html|  4 +++-
 output/docs/2.x/administration/replication.html|  4 +++-
 output/docs/2.x/administration/scan-executors.html |  4 +++-
 output/docs/2.x/administration/upgrading.html  |  4 +++-
 .../docs/2.x/configuration/client-properties.html  |  4 +++-
 output/docs/2.x/configuration/files.html   |  4 +++-
 output/docs/2.x/configuration/overview.html|  4 +++-
 .../docs/2.x/configuration/server-properties.html  |  4 +++-
 output/docs/2.x/development/development_tools.html |  4 +++-
 output/docs/2.x/development/high_speed_ingest.html |  4 +++-
 output/docs/2.x/development/iterators.html |  4 +++-
 output/docs/2.x/development/mapreduce.html |  4 +++-
 output/docs/2.x/development/proxy.html |  4 +++-
 output/docs/2.x/development/sampling.html  |  4 +++-
 output/docs/2.x/development/spark.html |  4 +++-
 output/docs/2.x/development/summaries.html |  4 +++-
 output/docs/2.x/getting-started/clients.html   |  4 +++-
 output/docs/2.x/getting-started/design.html|  4 +++-
 output/docs/2.x/getting-started/features.html  |  4 +++-
 output/docs/2.x/getting-started/glossary.html  |  4 +++-
 output/docs/2.x/getting-started/quickstart.html| 28 --
 output/docs/2.x/getting-started/shell.html |  4 +++-
 .../2.x/getting-started/table_configuration.html   |  4 +++-
 output/docs/2.x/getting-started/table_design.html  |  4 +++-
 output/docs/2.x/security/authentication.html   |  4 +++-
 output/docs/2.x/security/authorizations.html   |  4 +++-
 output/docs/2.x/security/kerberos.html |  4 +++-
 output/docs/2.x/security/on-disk-encryption.html   |  4 +++-
 output/docs/2.x/security/overview.html |  4 +++-
 output/docs/2.x/security/permissions.html  |  4 +++-
 output/docs/2.x/security/wire-encryption.html  |  4 +++-
 output/docs/2.x/troubleshooting/advanced.html  |  4 +++-
 output/docs/2.x/troubleshooting/basic.html |  4 +++-
 output/docs/2.x/troubleshooting/performance.html   |  4 +++-
 .../troubleshooting/system-metadata-tables.html|  4 +++-
 output/docs/2.x/troubleshooting/tools.html |  4 +++-
 output/docs/2.x/troubleshooting/tracing.html   |  4 +++-
 output/feed.xml|  4 ++--
 output/search_data.json|  4 ++--
 44 files changed, 143 insertions(+), 57 deletions(-)

diff --git a/output/docs/2.x/administration/caching.html 
b/output/docs/2.x/administration/caching.html
index be4b4f6..4c263f8 100644
--- a/output/docs/2.x/administration/caching.html
+++ b/output/docs/2.x/administration/caching.html
@@ -164,7 +164,7 @@
   
 
 
-Quick Start 
+Setup 
 
 Design 
 
@@ -417,10 +417,12 @@
 Accumulo 2.x Documentation  Administration 
 Caching
 
 
+
 
   Caching
   https://github.com/apache/accumulo-website/edit/main/_docs-2/administration/caching.md;
 role="button"> Edit this 
page
 
+
 
 Accumulo tablet servers have 
block caches that buffer data in memory to limit reads from 
disk.
 This caching has the following benefits:
diff --git a/output/docs/2.x/administration/erasure-coding.html 
b/output/docs/2.x/administration/erasure-coding.html
index 1ee7195..212adbe 100644
--- a/output/docs/2.x/administration/erasure-coding.html
+++ b/output/docs/2.x/administration/erasure-coding.html
@@ -164,7 +164,7 @@
   
 
 
-Quick Start 
+Setup 
 
 Design 
 
@@ -417,10 +417,12 @@
 Accumulo 2.x Documentation  Administration 
 Erasure Coding
 
 
+
 
   Erasure Coding
   https://github.com/apache/accumulo-website/edit/main/_docs-2/administration/erasure-coding.md;
 role="button"> Edit this 
page
 
+
 
 With the release of version 3.0.0, Hadoop introduced the use of 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-02-02 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 1ecd555  Automatic Site Publish by Buildbot
1ecd555 is described below

commit 1ecd555a62d1ba7c62b94260f3303b655023aad2
Author: buildbot 
AuthorDate: Tue Feb 2 15:17:27 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/release/accumulo-2.1.0/index.html | 37 +++-
 output/search_data.json  |  2 +-
 3 files changed, 39 insertions(+), 4 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index fb2e984..e5919d0 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Mon, 25 Jan 2021 16:26:24 +
-Mon, 25 Jan 2021 16:26:24 +
+Tue, 02 Feb 2021 15:17:20 +
+Tue, 02 Feb 2021 15:17:20 +
 Jekyll v4.1.1
 
 
diff --git a/output/release/accumulo-2.1.0/index.html 
b/output/release/accumulo-2.1.0/index.html
index f118c4e..d87a05a 100644
--- a/output/release/accumulo-2.1.0/index.html
+++ b/output/release/accumulo-2.1.0/index.html
@@ -168,11 +168,46 @@
 
 Notable Changes
 
+Compaction Changes
+
+Significant changes were made to how Accumulo compacts files in this 
release.  See 
+compaction  for details, 
below are some highlights.
+
+
+  Multiple concurrent compactions per tablet on disjoint files is now
+supported.  Previously only a single compaction could run on a tablet.  This
+allows tablets that are running long compactions on large files to
+concurrently compact new smaller files that arrive.
+  Multiple compaction thread pools per tablet server are now supported.
+Previously only a single thread pool existed within a tablet server for
+compactions.  With a single thread pool, if all threads are working on long
+compactions it can starve quick compactions.  Now compactions with little
+data can be processed by dedicated thread pools.
+  Accumulo’s default algorithm for selecting files to compact was modified 
to
+select the smallest set of files that meet the compaction ratio criteria
+instead of the largest set.  This change makes tablets more aggressive about
+reducing their number files while still doing logarithmic compaction work.
+This change also enables efficiently compacting new small files that arrive
+during a long running compaction.
+  Having dedicated compaction threads pools for tables is now supported
+through configuration.  The default configuration for Accumulo sets up
+dedicated thread pools for compacting the Accumulo metadata table.
+  Merging minor compactions were dropped.  These were added to Accumulo to
+address the problem of new files arriving while a long running compaction
+was running.  Merging minor compactions could cause O(N^2) compaction work.
+The new compaction changes in this release can satisfy this use case while
+doing a logarithmic amount of work.
+
+
+CompactionStrategy was deprecated in favor of new public APIs.
+See its https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/2.0.1/org/apache/accumulo/tserver/compaction/CompactionStrategy.html;>javadoc
 
+for more information.
+
 Fixed GC Metadata hotspots
 
 Prior to this release, Accumulo stored GC file candidates in the metadata 
table
 using rows of the form ~delURI. This row schema lead to uneven load 
on
-the metadata table and metadata tablets that were eventually never used. In https://github.com/apache/accumulo/issues/1043;>#1043 the row fromat 
was changed to ~delhash(URI)URI resulting in
+the metadata table and metadata tablets that were eventually never used. In https://github.com/apache/accumulo/issues/1043;>#1043 the row format 
was changed to ~delhash(URI)URI resulting in
 even load on the metadata table and even data spread in the tablets. After
 upgrading, there may still be splits in the metadata table using the old row
 format. These splits can be merged away as shown in the example below which
diff --git a/output/search_data.json b/output/search_data.json
index bbd21fe..81e3bc8 100644
--- a/output/search_data.json
+++ b/output/search_data.json
@@ -336,7 +336,7 @@
   
 "release-accumulo-2-1-0": {
   "title": "Apache Accumulo 2.1.0",
-  "content" : "** DRAFT RELEASE NOTES **Notable ChangesFixed GC 
Metadata hotspotsPrior to this release, Accumulo stored GC file candidates in 
the metadata tableusing rows of the form ~dellt;URIgt;. This row 
schema lead to uneven load onthe metadata table and metadata tablets that were 
eventually never used. In #1043 the row fromat was changed to 
~dellt;hash(URI)gt;lt;URIgt; resulting ineven load on the 
metadata table and even data spread in the tablets. [...]
+  "content" 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-01-25 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 495569e  Automatic Site Publish by Buildbot
495569e is described below

commit 495569e0a2e29cf30a4b76daa1e2aac28ccdef65
Author: buildbot 
AuthorDate: Mon Jan 25 16:26:30 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml   |  4 +--
 output/people/index.html  |  5 +++
 output/tour/authorizations/index.html | 67 ---
 3 files changed, 38 insertions(+), 38 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 2d34046..fb2e984 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Fri, 22 Jan 2021 13:40:10 +
-Fri, 22 Jan 2021 13:40:10 +
+Mon, 25 Jan 2021 16:26:24 +
+Mon, 25 Jan 2021 16:26:24 +
 Jekyll v4.1.1
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 3c45abe..de79f66 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -498,6 +498,11 @@ $(function() {
   https://www.timeanddate.com/time/zones/et;>ET
 
 
+  Dane Magbuhos
+   
+  https://www.timeanddate.com/time/zones/et;>ET
+
+
   Dave Wang
   https://www.cloudera.com;>Cloudera
   https://www.timeanddate.com/time/zones/pt;>PT
diff --git a/output/tour/authorizations/index.html 
b/output/tour/authorizations/index.html
index 10772e5..ccd4939 100644
--- a/output/tour/authorizations/index.html
+++ b/output/tour/authorizations/index.html
@@ -164,46 +164,41 @@ visible to the user.
 
 We now want to secure our secret identities of the heroes so that only 
users with the proper authorizations can read their names.
 
-
-  Using the code from the previous exercise, add the following to the 
beginning of the exercise method.
-```java
-  // Create a “secretId” authorization  visibility
-  final String secretId = “secretId”;
-  Authorizations auths = new Authorizations(secretId);
-  ColumnVisibility colVis = new ColumnVisibility(secretId);
-
-
-// Create a user with the “secretId” authorization and grant him read 
permissions on our table
-  client.securityOperations().createLocalUser(“commissioner”, new 
PasswordToken(“gordonrocks”));
-  client.securityOperations().changeUserAuthorizations(“commissioner”, auths);
-  client.securityOperations().grantTablePermission(“commissioner”, “GothamPD”, 
TablePermission.READ);
-
-2. The [Mutation] API allows you to set the `secretId` visibility on a column. 
Find the proper method for setting a column visibility in
-the Mutation API and modify the code so the `colVis` variable created above 
secures the "name" columns.
-
-3. Build and run.  What data do you see?
-* You should see all of the data except the secret identities of Batman and 
Robin. This is because the `Scanner` was created from the root user which 
doesn't have the `secretId` authorization.
-* Replace the `Authorizations.EMPTY` in the Scanner with the `auths` variable 
created above and run it again.
-* This should result in an error since the root user doesn't have the 
authorizations we tried to pass to the Scanner.
-
-4. Use the following to create a client for the "commissioner" using the 
[Accumulo] entry point.
-```java
-  try (AccumuloClient commishClient = 
Accumulo.newClient().from(client.properties()).as("commissioner", 
"gordonrocks").build()) {
-// Insert your code here
-  }
+1. Using the code from the previous exercise, add the following to the 
beginning of the exercise method.
+
+  // Create a "secretId" authorization 
 visibility
+  final String secretId = "secretId";
+  Authorizations auths = new Authorizations(secretId);
+  ColumnVisibility colVis = new ColumnVisibility(secretId);
+
+  // Create a user with the "secretId" authorization and 
grant him read permissions on our table
+  client.securityOperations().createLocalUser("commissioner", new PasswordToken("gordonrocks"));
+  client.securityOperations().changeUserAuthorizations("commissioner", auths);
+  client.securityOperations().grantTablePermission("commissioner", "GothamPD", TablePermission.READ);
 
+2. The https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.0.1/org/apache/accumulo/core/data/Mutation.html;>Mutation
 API allows you to set the secretId visibility on a column. Find the proper 
method for setting a column visibility in
+the Mutation API and modify the code so the colVis variable created above secures the “name” 
columns.
+
+3. Build and run.  What data do you see?
+
+  You should see all of the data except the secret identities of Batman 
and Robin. This is because the Scanner was created from the root user which doesn’t 
have the 

[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-01-22 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9022d1b  Automatic Site Publish by Buildbot
9022d1b is described below

commit 9022d1bbedadeb9293239b73fad9e39df37f7642
Author: buildbot 
AuthorDate: Fri Jan 22 13:40:16 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  |  4 ++--
 output/people/index.html | 11 ++-
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 560a9dc..2d34046 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Thu, 21 Jan 2021 00:58:28 +
-Thu, 21 Jan 2021 00:58:28 +
+Fri, 22 Jan 2021 13:40:10 +
+Fri, 22 Jan 2021 13:40:10 +
 Jekyll v4.1.1
 
 
diff --git a/output/people/index.html b/output/people/index.html
index c5d2ce5..3c45abe 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -301,6 +301,12 @@ $(function() {
    
 
 
+  knarendran
+  Karthick Narendran
+  https://www.microsoft.com;>Microsoft
+  https://www.timeanddate.com/time/zones/bst;>BST
+
+
   kturner
   https://github.com/keith-turner;>Keith Turner
   https://www.microsoft.com;>Microsoft
@@ -667,11 +673,6 @@ $(function() {
   https://www.timeanddate.com/time/zones/cest;>CEST
 
 
-  Karthick Narendran
-  https://www.microsoft.com;>Microsoft
-  https://www.timeanddate.com/time/zones/bst;>BST
-
-
   Kenneth McFarland
    
   https://www.timeanddate.com/time/zones/pt;>PT



  1   2   >