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 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2014-12-27
+ Generated by Apache Maven Doxia at 2015-01-02
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -334,26 +334,31 @@
    <td>true</td> 
   </tr> 
   <tr class="a"> 
+   <td><small>phoenix.connection.autoCommit</small></td> 
+   <td style="text-align: left;">Whether or not a new connection has 
auto-commit enabled when it is created. Default is false.</td> 
+   <td>false</td> 
+  </tr> 
+  <tr class="b"> 
    <td><small><s>phoenix.query.targetConcurrency</s></small><br />Obsolete as 
of 3.2/4.2</td> 
    <td style="text-align: left;">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<tt> 
phoenix.query.maxConcurrency</tt>.</td> 
    <td>32</td> 
   </tr> 
-  <tr class="b"> 
+  <tr class="a"> 
    <td><small><s>phoenix.query.maxConcurrency</s></small><br />Obsolete as of 
3.2/4.2</td> 
    <td style="text-align: left;">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 
<tt>phoenix.query.targetConcurrency</tt>.</td> 
    <td>64</td> 
   </tr> 
-  <tr class="a"> 
+  <tr class="b"> 
    <td><small><s>phoenix.query.maxStatsAge</s></small><br />Obsolete as of 
3.2/4.2</td> 
    <td>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.</td> 
    <td>1</td> 
   </tr> 
-  <tr class="b"> 
+  <tr class="a"> 
    <td><small><s>phoenix.query.statsUpdateFrequency</s></small><br />Obsolete 
as of 3.2/4.2</td> 
    <td style="text-align: left;">The frequency in milliseconds at which the 
stats for each table will be updated. Default is 15 min.</td> 
    <td>900000</td> 
   </tr> 
-  <tr class="a"> 
+  <tr class="b"> 
    <td><small><s>phoenix.query.maxIntraRegionParallelization</s></small><br 
/>Obsolete as of 3.2/4.2</td> 
    <td style="text-align: left;">The maximum number of threads that will be 
spawned to process data within a single region during query execution</td> 
    <td>64</td> 
@@ -549,7 +554,7 @@
                <div class="row">
                        <div class="span12">
                                <p class="pull-right"><a href="#">Back to 
top</a></p>
-                               <p class="copyright">Copyright &copy;2014 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All Rights 
Reserved.</p>
+                               <p class="copyright">Copyright &copy;2015 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All Rights 
Reserved.</p>
                        </div>
                </div>
        </div>

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
 
<tr><td><small>phoenix.index.failure.handling.rebuild.overlap.time</small></td><td
 style="text-align: left;">Index 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.
 </td><td>300000</td></tr>
 <tr><td><small>phoenix.query.rowKeyOrderSaltedTable</small></td><td 
style="text-align: left;">Whether 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 true</td><td>true</td></tr>
+<tr><td><small>phoenix.connection.autoCommit</small></td><td 
style="text-align: left;">Whether or not a new connection has auto-commit 
enabled when it is created. Default is false.</td><td>false</td></tr>
 
<tr><td><strike><small>phoenix.query.targetConcurrency</small></strike><br/>Obsolete
 as of 3.2/4.2</td><td style="text-align: left;">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<code> 
phoenix.query.maxConcurrency</code>.</td><td>32</td></tr>


Reply via email to