You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2019/06/17 17:46:27 UTC

[accumulo-website] branch asf-site updated: Jekyll build from master:d0a2fb8

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

mmiller 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 683280b  Jekyll build from master:d0a2fb8
683280b is described below

commit 683280be3261495e32c49a98660ad4412feff40f
Author: Mike Miller <mm...@apache.org>
AuthorDate: Mon Jun 17 13:45:40 2019 -0400

    Jekyll build from master:d0a2fb8
    
    Update README
---
 README.md                                     |  4 +-
 docs/2.x/configuration/client-properties.html | 54 +++++++++++++--------------
 docs/2.x/configuration/server-properties.html |  2 +-
 feed.xml                                      |  4 +-
 redirects.json                                |  2 +-
 search_data.json                              |  4 +-
 6 files changed, 35 insertions(+), 35 deletions(-)

diff --git a/README.md b/README.md
index 66bcac9..e54582b 100644
--- a/README.md
+++ b/README.md
@@ -61,8 +61,8 @@ regenerate these, do the following.
 ```
 cd <accumulo source dir>
 mvn package -DskipTests
-cp ./core/target/generated-docs/server-properties.md <accumulo website source>/_docs-2/administration
-cp ./core/target/generated-docs/client-properties.md <accumulo website source>/_docs-2/administration
+cp ./core/target/generated-docs/server-properties.md <accumulo website source>/_docs-2/configuration
+cp ./core/target/generated-docs/client-properties.md <accumulo website source>/_docs-2/configuration
 ```
 
 ## Update the production website
diff --git a/docs/2.x/configuration/client-properties.html b/docs/2.x/configuration/client-properties.html
index 9a206fc..585cf1a 100644
--- a/docs/2.x/configuration/client-properties.html
+++ b/docs/2.x/configuration/client-properties.html
@@ -438,79 +438,79 @@
     <tr>
       <td><a name="instance_name" class="prop"></a> instance.name</td>
       <td><em>empty</em></td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Name of Accumulo instance to connect to</td>
     </tr>
     <tr>
       <td><a name="instance_zookeepers" class="prop"></a> instance.zookeepers</td>
       <td>localhost:2181</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Zookeeper connection information for Accumulo instance</td>
     </tr>
     <tr>
       <td><a name="instance_zookeepers_timeout" class="prop"></a> instance.zookeepers.timeout</td>
       <td>30s</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Zookeeper session timeout</td>
     </tr>
     <tr>
       <td><a name="auth_type" class="prop"></a> auth.type</td>
       <td>password</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Authentication method (i.e password, kerberos, PasswordToken, KerberosToken, etc)</td>
     </tr>
     <tr>
       <td><a name="auth_principal" class="prop"></a> auth.principal</td>
       <td><em>empty</em></td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Accumulo principal/username for chosen authentication method</td>
     </tr>
     <tr>
       <td><a name="auth_token" class="prop"></a> auth.token</td>
       <td><em>empty</em></td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Authentication token (ex. mypassword, /path/to/keytab)</td>
     </tr>
     <tr>
       <td><a name="batch_writer_durability" class="prop"></a> batch.writer.durability</td>
       <td>default</td>
-      <td> </td>
-      <td>Change the durability for the BatchWriter session. To use the table’s durability setting. use “default” which is the table’s durability setting.</td>
+      <td>2.0.0</td>
+      <td>The durability used to write to the write-ahead log. Legal values are: none, which skips the write-ahead log; log, which sends the data to the write-ahead log, but does nothing to make it durable; flush, which pushes data to the file system; and sync, which ensures the data is written to disk. Setting this property will change the durability for the BatchWriter session. A value of “default” will use the table’s durability setting.</td>
     </tr>
     <tr>
-      <td><a name="batch_writer_max_latency_sec" class="prop"></a> batch.writer.max.latency.sec</td>
-      <td>120</td>
-      <td> </td>
+      <td><a name="batch_writer_latency_max" class="prop"></a> batch.writer.latency.max</td>
+      <td>120s</td>
+      <td>2.0.0</td>
       <td>Max amount of time (in seconds) to hold data in memory before flushing it</td>
     </tr>
     <tr>
-      <td><a name="batch_writer_max_memory_bytes" class="prop"></a> batch.writer.max.memory.bytes</td>
-      <td>52428800</td>
-      <td> </td>
+      <td><a name="batch_writer_memory_max" class="prop"></a> batch.writer.memory.max</td>
+      <td>50M</td>
+      <td>2.0.0</td>
       <td>Max memory (in bytes) to batch before writing</td>
     </tr>
     <tr>
-      <td><a name="batch_writer_max_timeout_sec" class="prop"></a> batch.writer.max.timeout.sec</td>
-      <td>0</td>
-      <td> </td>
-      <td>Max amount of time (in seconds) an unresponsive server will be re-tried. An exception is thrown when this timeout is exceeded. Set to zero for no timeout.</td>
-    </tr>
-    <tr>
-      <td><a name="batch_writer_max_write_threads" class="prop"></a> batch.writer.max.write.threads</td>
+      <td><a name="batch_writer_threads_max" class="prop"></a> batch.writer.threads.max</td>
       <td>3</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Maximum number of threads to use for writing data to tablet servers.</td>
     </tr>
     <tr>
+      <td><a name="batch_writer_timeout_max" class="prop"></a> batch.writer.timeout.max</td>
+      <td>0</td>
+      <td>2.0.0</td>
+      <td>Max amount of time (in seconds) an unresponsive server will be re-tried. An exception is thrown when this timeout is exceeded. Set to zero for no timeout.</td>
+    </tr>
+    <tr>
       <td><a name="batch_scanner_num_query_threads" class="prop"></a> batch.scanner.num.query.threads</td>
       <td>3</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Number of concurrent query threads to spawn for querying</td>
     </tr>
     <tr>
       <td><a name="scanner_batch_size" class="prop"></a> scanner.batch.size</td>
       <td>1000</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Number of key/value pairs that will be fetched at time from tablet server</td>
     </tr>
     <tr>
@@ -528,7 +528,7 @@
     <tr>
       <td><a name="ssl_keystore_path" class="prop"></a> ssl.keystore.path</td>
       <td><em>empty</em></td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Path to SSL keystore file</td>
     </tr>
     <tr>
@@ -546,7 +546,7 @@
     <tr>
       <td><a name="ssl_truststore_path" class="prop"></a> ssl.truststore.path</td>
       <td><em>empty</em></td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>Path to SSL truststore file</td>
     </tr>
     <tr>
@@ -588,7 +588,7 @@
     <tr>
       <td><a name="trace_zookeeper_path" class="prop"></a> trace.zookeeper.path</td>
       <td>/tracers</td>
-      <td> </td>
+      <td>2.0.0</td>
       <td>The zookeeper node where tracers are registered</td>
     </tr>
   </tbody>
diff --git a/docs/2.x/configuration/server-properties.html b/docs/2.x/configuration/server-properties.html
index 787b748..17c3c03 100644
--- a/docs/2.x/configuration/server-properties.html
+++ b/docs/2.x/configuration/server-properties.html
@@ -554,7 +554,7 @@
     </tr>
     <tr>
       <td><a name="instance_crypto_service" class="prop"></a> instance.crypto.service</td>
-      <td><strong>Experimental.</strong> The class which executes on-disk file encryption. The default does nothing. To enable encryption, replace this classname with an implementation of theorg.apache.accumulo.core.spi.crypto.CryptoService interface.<br /><strong>type:</strong> CLASSNAME, <strong>zk mutable:</strong> no, <strong>default value:</strong> <a href="https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.0.0-alpha-2/org/apache/accumulo/core/security/crypto/impl/NoCrypt [...]
+      <td><strong>Experimental.</strong> The class which executes on-disk file encryption. The default does nothing. To enable encryption, replace this classname with an implementation of theorg.apache.accumulo.core.spi.crypto.CryptoService interface.<br /><strong>type:</strong> CLASSNAME, <strong>zk mutable:</strong> no, <strong>default value:</strong> <a href="https://static.javadoc.io/org.apache.accumulo/accumulo-core/2.0.0-alpha-2/org/apache/accumulo/core/cryptoImpl/NoCryptoService.h [...]
     </tr>
     <tr>
       <td><a name="instance_dfs_dir" class="prop"></a> instance.dfs.dir</td>
diff --git a/feed.xml b/feed.xml
index 33c67e7..d4e07d3 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>Tue, 11 Jun 2019 17:06:47 -0400</pubDate>
-    <lastBuildDate>Tue, 11 Jun 2019 17:06:47 -0400</lastBuildDate>
+    <pubDate>Mon, 17 Jun 2019 13:45:31 -0400</pubDate>
+    <lastBuildDate>Mon, 17 Jun 2019 13:45:31 -0400</lastBuildDate>
     <generator>Jekyll v3.8.5</generator>
     
     
diff --git a/redirects.json b/redirects.json
index 2d3a54c..4bda3a4 100644
--- a/redirects.json
+++ b/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/search_data.json b/search_data.json
index 10370fe..8615a2b 100644
--- a/search_data.json
+++ b/search_data.json
@@ -58,7 +58,7 @@
   
     "docs-2-x-configuration-client-properties": {
       "title": "Client Properties",
-      "content"	 : "Below are properties set in accumulo-client.properties that configure Accumulo clients. All properties have been part of the API since 2.0.0 (unless otherwise specified):            Property      Default value      Since      Description                   instance.name      empty             Name of Accumulo instance to connect to               instance.zookeepers      localhost:2181             Zookeeper connection information for Accumulo instance               inst [...]
+      "content"	 : "Below are properties set in accumulo-client.properties that configure Accumulo clients. All properties have been part of the API since 2.0.0 (unless otherwise specified):            Property      Default value      Since      Description                   instance.name      empty      2.0.0      Name of Accumulo instance to connect to               instance.zookeepers      localhost:2181      2.0.0      Zookeeper connection information for Accumulo instance            [...]
       "url": " /docs/2.x/configuration/client-properties",
       "categories": "configuration"
     },
@@ -79,7 +79,7 @@
   
     "docs-2-x-configuration-server-properties": {
       "title": "Server Properties",
-      "content"	 : "Below are properties set in accumulo.properties or the Accumulo shell that configure Accumulo servers (i.e tablet server, master, etc). Properties labeled ‘Experimental’ could be part of an incomplete feature or have a higher risk of changing in the future.            Property      Description                   gc.*      Properties in this category affect the behavior of the accumulo garbage collector.               gc.cycle.delay      Time between garbage collection  [...]
+      "content"	 : "Below are properties set in accumulo.properties or the Accumulo shell that configure Accumulo servers (i.e tablet server, master, etc). Properties labeled ‘Experimental’ could be part of an incomplete feature or have a higher risk of changing in the future.            Property      Description                   gc.*      Properties in this category affect the behavior of the accumulo garbage collector.               gc.cycle.delay      Time between garbage collection  [...]
       "url": " /docs/2.x/configuration/server-properties",
       "categories": "configuration"
     },