This is an automated email from the ASF dual-hosted git repository.
mwalch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git
The following commit(s) were added to refs/heads/master by this push:
new 1bdcffd Updated links on Features page (#110)
1bdcffd is described below
commit 1bdcffdd114957345f789c6c64508019f06cdba5
Author: Mike Walch <[email protected]>
AuthorDate: Wed Sep 26 16:07:26 2018 -0400
Updated links on Features page (#110)
- Now point to 1.9 docs
---
pages/features.md | 38 ++++++++++++++++++++------------------
1 file changed, 20 insertions(+), 18 deletions(-)
diff --git a/pages/features.md b/pages/features.md
index bde22fe..2e866e8 100644
--- a/pages/features.md
+++ b/pages/features.md
@@ -187,7 +187,7 @@ instance more closely.
Using the Mini Accumulo Cluster in unit and integration tests is a great way
for
developers to test their applications against Accumulo in an environment that
is
much closer to physical deployments than a Mock Accumulo environment.
-Accumulo 1.6.0 also introduced a [maven-accumulo-plugin][M-A-P] which
+Accumulo 1.6.0 also introduced a [maven-accumulo-plugin] which
can be used to start a Mini Accumulo Cluster instance as a part of the Maven
lifecycle that your application tests can use.
@@ -225,20 +225,20 @@ framework and subsequently corrected.
## Client API
-### [Batch Scanner][4]
+### Batch Scanner
-Takes a list of Ranges, batches them to the appropriate tablet servers, and
+The [BatchScanner] takes a list of Ranges, batches them to the appropriate
tablet servers, and
returns data as it is received (i.e. not in sorted order).
-### [Batch Writer][4]
+### Batch Writer
-Clients buffer writes in memory before sending them in batches to the
+The [BatchWriter] client buffers writes in memory before sending them in
batches to the
appropriate tablet servers.
-### [Bulk Import][6]
+### Bulk Import
Instead of writing individual mutations to Accumulo, entire files of sorted key
-value pairs can be imported. These files are moved into the Accumulo directory
+value pairs can be imported using [BulkImport]. These files are moved into the
Accumulo directory
and referenced by Accumulo. This feature is useful for ingesting a large amount
of data. This method of ingest usually offers higher throughput at the cost of
higher latency for data availability for scans. Usually, the data is sorted
@@ -246,9 +246,9 @@ using map reduce and then bulk imported. This method of
ingest also allows for
flexibility in resource allocation. The nodes running map reduce to sort data
could be different from the Accumulo nodes.
-### [Map Reduce][4]
+### MapReduce
-Accumulo can be a source and/or sink for map reduce jobs.
+Accumulo can be a source and/or sink for [MapReduce] jobs.
### Apache Thrift Proxy
@@ -260,11 +260,11 @@ available to other languages like Python, Ruby, C++, etc.
### Conditional Mutations
-In version 1.6.0, Accumulo introduced [ConditionalMutations][7]
+In version 1.6.0, Accumulo introduced [Conditional Mutations]
which allow users to perform efficient, atomic read-modify-write operations on
rows. Conditions can
be defined using equality checks of the values in a column or the absence of a
column. For more
-information on using this feature, users can reference the Javadoc for
[ConditionalMutation][CMUT] and
-[ConditionalWriter][CWRI].
+information on using this feature, users can reference the Javadoc for
[ConditionalMutation] and
+[ConditionalWriter].
### Lexicoders
@@ -480,9 +480,11 @@ The data generated by the continuous ingest test suite
looks like the following.
1c16a4ae1bef9f1f 07c8:7cd3 []
2db1de18-cd37-407d-b060-481a0a214c90:000000002afe0921:2e3ec09a8d2fdf52:8b82be48
[FATE]: #fate
-[M-A-P]: {{ site.baseurl }}/release/accumulo-1.6.0/#maven-plugin
-[CMUT]: {{ site.baseurl
}}/1.6/apidocs/org/apache/accumulo/core/data/ConditionalMutation
-[CWRI]: {{ site.baseurl
}}/1.6/apidocs/org/apache/accumulo/core/client/ConditionalWriter
-[4]: {{ site.baseurl }}/1.5/accumulo_user_manual#_writing_accumulo_clients
-[6]: {{ site.baseurl }}/1.5/accumulo_user_manual#_bulk_ingest
-[7]: {{ site.baseurl }}/1.6/accumulo_user_manual#_conditionalwriter
+[maven-accumulo-plugin]: {{ site.baseurl
}}/release/accumulo-1.6.0/#maven-plugin
+[ConditionalMutation]: {{ site.baseurl
}}/1.9/apidocs/org/apache/accumulo/core/data/ConditionalMutation
+[ConditionalWriter]: {{ site.baseurl
}}/1.9/apidocs/org/apache/accumulo/core/client/ConditionalWriter
+[BatchScanner]: {{ site.baseurl }}/1.9/accumulo_user_manual#_batchscanner
+[BatchWriter]: {{ site.baseurl }}/1.9/accumulo_user_manual#_batchwriter
+[BulkImport]: {{ site.baseurl }}/1.9/accumulo_user_manual#_bulk_ingest
+[MapReduce]: {{ site.baseurl }}/1.9/accumulo_user_manual#_analytics
+[Conditional Mutations]: {{ site.baseurl
}}/1.9/accumulo_user_manual#_conditionalwriter