Return-Path: X-Original-To: apmail-phoenix-commits-archive@minotaur.apache.org Delivered-To: apmail-phoenix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 67CF210FE0 for ; Fri, 2 Jan 2015 14:14:34 +0000 (UTC) Received: (qmail 38484 invoked by uid 500); 2 Jan 2015 14:14:35 -0000 Delivered-To: apmail-phoenix-commits-archive@phoenix.apache.org Received: (qmail 38448 invoked by uid 500); 2 Jan 2015 14:14:35 -0000 Mailing-List: contact commits-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list commits@phoenix.apache.org Received: (qmail 38438 invoked by uid 99); 2 Jan 2015 14:14:34 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jan 2015 14:14:34 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id EEA02AC08CB; Fri, 2 Jan 2015 14:14:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1649035 - in /phoenix/site: publish/tuning.html source/src/site/markdown/tuning.md Date: Fri, 02 Jan 2015 14:14:32 -0000 To: commits@phoenix.apache.org From: greid@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150102141433.EEA02AC08CB@hades.apache.org> Author: greid Date: Fri Jan 2 14:14:32 2015 New Revision: 1649035 URL: http://svn.apache.org/r1649035 Log: Add documentation on phoenix.connection.autoCommit Modified: phoenix/site/publish/tuning.html phoenix/site/source/src/site/markdown/tuning.md Modified: phoenix/site/publish/tuning.html URL: http://svn.apache.org/viewvc/phoenix/site/publish/tuning.html?rev=1649035&r1=1649034&r2=1649035&view=diff ============================================================================== --- phoenix/site/publish/tuning.html (original) +++ phoenix/site/publish/tuning.html Fri Jan 2 14:14:32 2015 @@ -1,7 +1,7 @@ @@ -334,26 +334,31 @@ true + phoenix.connection.autoCommit + Whether or not a new connection has auto-commit enabled when it is created. Default is false. + false + + phoenix.query.targetConcurrency
Obsolete as of 3.2/4.2 Target concurrent threads to use for a query. It serves as a soft limit on the number of scans into which a query may be split. The value should not exceed the hard limit imposed by phoenix.query.maxConcurrency. 32 - + phoenix.query.maxConcurrency
Obsolete as of 3.2/4.2 Maximum concurrent threads to use for a query. It servers as a hard limit on the number of scans into which a query may be split. A soft limit is imposed by phoenix.query.targetConcurrency. 64 - + phoenix.query.maxStatsAge
Obsolete as of 3.2/4.2 The maximum age of stats in milliseconds after which they will no longer be used (i.e. the stats were not able to be updated in this amount of time and thus are considered too old). Default is 1 day. 1 - + phoenix.query.statsUpdateFrequency
Obsolete as of 3.2/4.2 The frequency in milliseconds at which the stats for each table will be updated. Default is 15 min. 900000 - + phoenix.query.maxIntraRegionParallelization
Obsolete as of 3.2/4.2 The maximum number of threads that will be spawned to process data within a single region during query execution 64 @@ -549,7 +554,7 @@

Back to top

- +
Modified: phoenix/site/source/src/site/markdown/tuning.md URL: http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/tuning.md?rev=1649035&r1=1649034&r2=1649035&view=diff ============================================================================== --- phoenix/site/source/src/site/markdown/tuning.md (original) +++ phoenix/site/source/src/site/markdown/tuning.md Fri Jan 2 14:14:32 2015 @@ -130,6 +130,7 @@ overridden at connection phoenix.index.failure.handling.rebuild.overlap.timeIndex rebuild job builds an index from when it failed - the time interval(in milliseconds) in order to create a time overlap to prevent missing updates when there exists time clock skew. 300000 phoenix.query.rowKeyOrderSaltedTableWhether or not a non aggregate query returns rows in row key order for salted tables. If this option is turned on, split points may not be specified at table create time, but instead the default splits on each salt bucket must be used. Default is truetrue +phoenix.connection.autoCommitWhether or not a new connection has auto-commit enabled when it is created. Default is false.false phoenix.query.targetConcurrency
Obsolete as of 3.2/4.2Target concurrent threads to use for a query. It serves as a soft limit on the number of scans into which a query may be split. The value should not exceed the hard limit imposed by phoenix.query.maxConcurrency.32