From commits-return-22156-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Wed Sep 26 22:07:32 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id C6BD9180629 for ; Wed, 26 Sep 2018 22:07:31 +0200 (CEST) Received: (qmail 37238 invoked by uid 500); 26 Sep 2018 20:07:31 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 37229 invoked by uid 99); 26 Sep 2018 20:07:30 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Sep 2018 20:07:30 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 5F80882DB8; Wed, 26 Sep 2018 20:07:30 +0000 (UTC) Date: Wed, 26 Sep 2018 20:07:30 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo-website] branch master updated: Updated links on Features page (#110) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153799245033.31600.10516960213612385450@gitbox.apache.org> From: mwalch@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo-website X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 16fd65776095f9cb4209a5858fd262e0478e5fe5 X-Git-Newrev: 1bdcffdd114957345f789c6c64508019f06cdba5 X-Git-Rev: 1bdcffdd114957345f789c6c64508019f06cdba5 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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