Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 780CE200CA6 for ; Tue, 13 Jun 2017 21:02:49 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7685D160BE9; Tue, 13 Jun 2017 19:02:49 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BCC8B160BC5 for ; Tue, 13 Jun 2017 21:02:48 +0200 (CEST) Received: (qmail 30892 invoked by uid 500); 13 Jun 2017 19:02:47 -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 30883 invoked by uid 99); 13 Jun 2017 19:02:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2017 19:02:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EFA80E04F2; Tue, 13 Jun 2017 19:02:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mwalch@apache.org To: commits@accumulo.apache.org Date: Tue, 13 Jun 2017 19:02:46 -0000 Message-Id: <6318244eaeff4464a85ed9e23e3b63ac@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] accumulo-website git commit: Fixed big O notation logic in documentation archived-at: Tue, 13 Jun 2017 19:02:49 -0000 Repository: accumulo-website Updated Branches: refs/heads/asf-site 459ae60a2 -> 7045b5631 refs/heads/master 3afe129f3 -> 4e7894f28 Fixed big O notation logic in documentation Project: http://git-wip-us.apache.org/repos/asf/accumulo-website/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo-website/commit/4e7894f2 Tree: http://git-wip-us.apache.org/repos/asf/accumulo-website/tree/4e7894f2 Diff: http://git-wip-us.apache.org/repos/asf/accumulo-website/diff/4e7894f2 Branch: refs/heads/master Commit: 4e7894f286f42afc33b9dc500f214932f93da9f5 Parents: 3afe129 Author: Mike Walch Authored: Tue Jun 13 15:01:05 2017 -0400 Committer: Mike Walch Committed: Tue Jun 13 15:01:05 2017 -0400 ---------------------------------------------------------------------- _docs-unreleased/getting-started/table_configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo-website/blob/4e7894f2/_docs-unreleased/getting-started/table_configuration.md ---------------------------------------------------------------------- diff --git a/_docs-unreleased/getting-started/table_configuration.md b/_docs-unreleased/getting-started/table_configuration.md index 4bb7de6..6e11b10 100644 --- a/_docs-unreleased/getting-started/table_configuration.md +++ b/_docs-unreleased/getting-started/table_configuration.md @@ -429,9 +429,9 @@ consider adjusting the compaction ratio. Ideally, merging minor compactions never need to occur and major compactions will keep up. It is possible to configure the file max and compaction ratio such that only merging minor compactions occur and major compactions never occur. This should be avoided -because doing only merging minor compactions causes O(_N_^2^) work to be done. -The amount of work done by major compactions is O(_N_*log~_R_~(_N_)) where -_R_ is the compaction ratio. +because doing only merging minor compactions causes O(N2) work to be done. +The amount of work done by major compactions is O(N*logR(N)) where +R is the compaction ratio. Compactions can be initiated manually for a table. To initiate a minor compaction, use the flush command in the shell. To initiate a major compaction,