This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new e8b64f2  Jekyll build from master:90b77af
e8b64f2 is described below

commit e8b64f28876912ecbc23a786aa200f2217acf89c
Author: Mike Walch <[email protected]>
AuthorDate: Wed Jul 11 17:09:44 2018 -0400

    Jekyll build from master:90b77af
    
    Add scan executors to rel notes (#97)
---
 README.md                                             | 4 ++--
 docs/2.0/administration/configuration-management.html | 4 ++--
 docs/2.0/administration/in-depth-install.html         | 2 +-
 docs/2.0/development/summaries.html                   | 2 +-
 docs/2.0/getting-started/table_configuration.html     | 6 ++----
 feed.xml                                              | 4 ++--
 release/accumulo-2.0.0/index.html                     | 7 +++++++
 search_data.json                                      | 6 +++---
 8 files changed, 20 insertions(+), 15 deletions(-)

diff --git a/README.md b/README.md
index 5d6d528..3cd5498 100644
--- a/README.md
+++ b/README.md
@@ -44,8 +44,8 @@ The source for these tags is at 
[_plugins/links.rb](_plugins/links.rb).
 | ----- | ---------------------- | 
------------------------------------------------------------------------------- 
| ---------------------------------------------------- |
 | jlink | Creates Javadoc link   | Link text will be class name by default. 
Use `-f` for full package + class name | `{% jlink -f 
org.apache.accumulo.core.client.Connector %}` |
 | jurl  | Creates Javadoc URL    | None                                        
                                    | `{% jurl 
org.apache.accumulo.core.client.Connector %}`     |
-| plink | Creates Property link  | Assumes server property by default. Use 
`-c` to link to client properties       | `{% plink -c instance.name %}`        
                     |
-| purl  | Creates Property URL   | Default is servery property. Use `-c` to 
link to client properties              | `{% purl instance.volumes %}`          
                   |
+| plink | Creates Property link  | Assumes server property by default. Use 
`-c` to link to client properties. Accepts server property prefixes (i.e 
`table.*`)       | `{% plink -c instance.name %}`                             |
+| purl  | Creates Property URL   | Default is server property. Use `-c` to 
link to client properties. Accepts server property prefixes (i.e `table.*`)     
          | `{% purl instance.volumes %}`                             |
 | dlink | Creates Documentation link | None                                    
                                        | `{% dlink getting-stared/clients %}`  
                 |
 | durl  | Creates Documentation URL  | None                                    
                                        | `{% durl troubleshooting/performance 
%}`                   |
 
diff --git a/docs/2.0/administration/configuration-management.html 
b/docs/2.0/administration/configuration-management.html
index 309c0fb..ff55a39 100644
--- a/docs/2.0/administration/configuration-management.html
+++ b/docs/2.0/administration/configuration-management.html
@@ -388,11 +388,11 @@ of their description.</p>
 <div class="highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>config -s PROPERTY=VALUE
 </code></pre></div></div>
 
-<p>If a <code class="highlighter-rouge">table.*</code> property is set using 
this method, the value will apply to all tables except those configured on 
per-table basis (which have higher precedence).</p>
+<p>If a <a href="/docs/2.0/administration/properties#table_prefix">table.*</a> 
property is set using this method, the value will apply to all tables except 
those configured on per-table basis (which have higher precedence).</p>
 
 <h4 id="zookeeper-table-properties">Zookeeper Table properties</h4>
 
-<p><a href="/docs/2.0/administration/properties#table_prefix">Table 
properties</a> consist of all properties with the <code 
class="highlighter-rouge">table.*</code> prefix.</p>
+<p>Table properties consist of all properties with the <a 
href="/docs/2.0/administration/properties#table_prefix">table.*</a> prefix.</p>
 
 <p>Table properties are configured for a table namespace (i.e group of tables) 
or on a per-table basis.</p>
 
diff --git a/docs/2.0/administration/in-depth-install.html 
b/docs/2.0/administration/in-depth-install.html
index 48d23ab..c2b9c34 100644
--- a/docs/2.0/administration/in-depth-install.html
+++ b/docs/2.0/administration/in-depth-install.html
@@ -702,7 +702,7 @@ or a <code 
class="highlighter-rouge">accumulo-client.properties</code> file cont
 <p>Accumulo has the ability for users to add custom tags to tables.  This 
allows
 applications to set application-level metadata about a table.  These tags can 
be
 anything from a table description, administrator notes, date created, etc.
-This is done by naming and setting a property with a prefix <code 
class="highlighter-rouge">table.custom.*</code>.</p>
+This is done by naming and setting a property with a prefix <a 
href="/docs/2.0/administration/properties#table_custom_prefix">table.custom.*</a>.</p>
 
 <p>Currently, table properties are stored in ZooKeeper. This means that the 
number
 and size of custom properties should be restricted on the order of 10’s of 
properties
diff --git a/docs/2.0/development/summaries.html 
b/docs/2.0/development/summaries.html
index 22f7933..4ad2c97 100644
--- a/docs/2.0/development/summaries.html
+++ b/docs/2.0/development/summaries.html
@@ -388,7 +388,7 @@ information.</p>
   <li><a 
href="/docs/2.0/administration/properties#tserver_summary_partition_threads">tserver.summary.partition.threads</a></li>
   <li><a 
href="/docs/2.0/administration/properties#tserver_summary_remote_threads">tserver.summary.remote.threads</a></li>
   <li><a 
href="/docs/2.0/administration/properties#tserver_summary_retrieval_threads">tserver.summary.retrieval.threads</a></li>
-  <li><a 
href="/docs/2.0/administration/properties#table_summarizer_prefix">table.summarizer.*</a></li>
+  <li><a 
href="/docs/2.0/administration/properties#table_summarizer_prefix">table.summarizer.*</a>)</li>
   <li><a 
href="/docs/2.0/administration/properties#table_file_summary_maxSize">table.file.summary.maxSize</a></li>
 </ul>
 
diff --git a/docs/2.0/getting-started/table_configuration.html 
b/docs/2.0/getting-started/table_configuration.html
index 60e4a72..bdb8f6e 100644
--- a/docs/2.0/getting-started/table_configuration.html
+++ b/docs/2.0/getting-started/table_configuration.html
@@ -758,10 +758,8 @@ This will only compact tablets that overlap the given row 
range.</p>
 This behavior can be changed by overriding <a 
href="/docs/2.0/administration/properties#table_majc_compaction_strategy">table.majc.compaction.strategy</a>
 with a fully
 qualified class name.</p>
 
-<p>Custom compaction strategies can have additional properties that are 
specified following the prefix property:</p>
-
-<div class="highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>table.majc.compaction.strategy.opts.*
-</code></pre></div></div>
+<p>Custom compaction strategies can have additional properties that are 
specified with the
+<a 
href="/docs/2.0/administration/properties#table_majc_compaction_strategy_opts_prefix">table.majc.compaction.strategy.opts.*</a>
 prefix.</p>
 
 <p>Accumulo provides a few classes that can be used as an alternative 
compaction strategy. These classes are located in the 
 <a 
href="https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/1.9.1/org/apache/accumulo/tserver/compaction/package-summary.html";>org.apache.accumulo.tserver.compaction</a>
 package. <a 
href="https://static.javadoc.io/org.apache.accumulo/accumulo-tserver/1.9.1/org/apache/accumulo/tserver/compaction/EverythingCompactionStrategy.html";>EverythingCompactionStrategy</a>
diff --git a/feed.xml b/feed.xml
index d916faf..541d448 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,8 +6,8 @@
 </description>
     <link>https://accumulo.apache.org/</link>
     <atom:link href="https://accumulo.apache.org/feed.xml"; rel="self" 
type="application/rss+xml"/>
-    <pubDate>Wed, 11 Jul 2018 12:36:21 -0400</pubDate>
-    <lastBuildDate>Wed, 11 Jul 2018 12:36:21 -0400</lastBuildDate>
+    <pubDate>Wed, 11 Jul 2018 17:09:36 -0400</pubDate>
+    <lastBuildDate>Wed, 11 Jul 2018 17:09:36 -0400</lastBuildDate>
     <generator>Jekyll v3.7.3</generator>
     
     
diff --git a/release/accumulo-2.0.0/index.html 
b/release/accumulo-2.0.0/index.html
index 84bc5d5..2614386 100644
--- a/release/accumulo-2.0.0/index.html
+++ b/release/accumulo-2.0.0/index.html
@@ -189,6 +189,13 @@ has been reduced from 20 scripts to the four scripts 
below:</p>
 
 <p>Read <a href="/blog/2016/11/16/simpler-scripts-and-config.html">this blog 
post</a> for more information on this change.</p>
 
+<h3 id="scan-executors">Scan Executors</h3>
+
+<p><a href="/docs/2.0/administration/scan-executors">Scan executors</a> were 
added to
+support prioritizing and dedicating scan resources. Each executor has a
+configurable number of threads and an optional custom prioritizer.  Tables can
+be configured in a flexible way to dispatch scans to different executors.</p>
+
 <h3 id="official-accumulo-docker-image-was-created">Official Accumulo docker 
image was created</h3>
 
 <p>An <a href="https://github.com/apache/accumulo-docker";>official Accumulo 
docker images</a> was created in <a 
href="https://issues.apache.org/jira/browse/ACCUMULO-4706";>ACCUMULO-4706</a> to 
make
diff --git a/search_data.json b/search_data.json
index 2420e04..1e23cad 100644
--- a/search_data.json
+++ b/search_data.json
@@ -149,7 +149,7 @@
   
     "docs-2-0-development-summaries": {
       "title": "Summary Statistics",
-      "content"         : "OverviewAccumulo has the ability to generate 
summary statistics about data in a tableusing user defined functions.  
Currently these statistics are only generated fordata written to files.  Data 
recently written to Accumulo that is still inmemory will not contribute to 
summary statistics.This feature can be used to inform a user about what data is 
in their table.Summary statistics can also be used by compaction strategies to 
make decisionsabout which files to compact.S [...]
+      "content"         : "OverviewAccumulo has the ability to generate 
summary statistics about data in a tableusing user defined functions.  
Currently these statistics are only generated fordata written to files.  Data 
recently written to Accumulo that is still inmemory will not contribute to 
summary statistics.This feature can be used to inform a user about what data is 
in their table.Summary statistics can also be used by compaction strategies to 
make decisionsabout which files to compact.S [...]
       "url": " /docs/2.0/development/summaries",
       "categories": "development"
     },
@@ -184,7 +184,7 @@
   
     "docs-2-0-getting-started-table-configuration": {
       "title": "Table Configuration",
-      "content"         : "Accumulo tables have a few options that can be 
configured to alter the defaultbehavior of Accumulo as well as improve 
performance based on the data stored.These include locality groups, 
constraints, bloom filters, iterators, and blockcache.  See the configuration 
properties documentation fora complete list of available configuration 
options.Locality GroupsAccumulo supports storing sets of column families 
separately on disk to allowclients to efficiently scan over colu [...]
+      "content"         : "Accumulo tables have a few options that can be 
configured to alter the defaultbehavior of Accumulo as well as improve 
performance based on the data stored.These include locality groups, 
constraints, bloom filters, iterators, and blockcache.  See the configuration 
properties documentation fora complete list of available configuration 
options.Locality GroupsAccumulo supports storing sets of column families 
separately on disk to allowclients to efficiently scan over colu [...]
       "url": " /docs/2.0/getting-started/table_configuration",
       "categories": "getting-started"
     },
@@ -297,7 +297,7 @@
   
     "release-accumulo-2-0-0": {
       "title": "Apache Accumulo 2.0.0",
-      "content"         : "Apache Accumulo 2.0.0 is a significant 
release.Notable ChangesNew API for creating connections to AccumuloA fluent API 
for clients to build Connector objects was introduced in ACCUMULO-4784.The new 
API deprecates ClientConfiguration and introduces its own propertiesfile called 
accumulo-client.properties that ships with the Accumulo tarball.See the client 
documentation for more information on how to use the new API.Simplified 
Accumulo scripts and configuration filesAcc [...]
+      "content"         : "Apache Accumulo 2.0.0 is a significant 
release.Notable ChangesNew API for creating connections to AccumuloA fluent API 
for clients to build Connector objects was introduced in ACCUMULO-4784.The new 
API deprecates ClientConfiguration and introduces its own propertiesfile called 
accumulo-client.properties that ships with the Accumulo tarball.See the client 
documentation for more information on how to use the new API.Simplified 
Accumulo scripts and configuration filesAcc [...]
       "url": " /release/accumulo-2.0.0/",
       "categories": "release"
     }

Reply via email to