You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by td...@apache.org on 2016/03/02 05:58:02 UTC

svn commit: r1733215 - in /phoenix/site: publish/tuning.html source/src/site/markdown/tuning.md

Author: tdsilva
Date: Wed Mar  2 04:58:02 2016
New Revision: 1733215

URL: http://svn.apache.org/viewvc?rev=1733215&view=rev
Log:
PHOENIX-2726 Add transaction config params to tuning.html

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=1733215&r1=1733214&r2=1733215&view=diff
==============================================================================
--- phoenix/site/publish/tuning.html (original)
+++ phoenix/site/publish/tuning.html Wed Mar  2 04:58:02 2016
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2016-02-04
+ Generated by Apache Maven Doxia at 2016-03-01
  Rendered using Reflow Maven Skin 1.1.0 (http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -358,10 +358,30 @@
   </tr> 
   <tr class="a"> 
    <td><small>phoenix.table.default.store.nulls</small></td> 
-   <td style="text-align: left;">The default value of the STORE_NULLS flag used for table creation. Default is false. Available starting from Phoenix 4.3.</td> 
+   <td style="text-align: left;">The default value of the STORE_NULLS flag used for table creation which determines whether or not null values should be explicitly stored in HBase. Default is false. This is a client side parameter. Available starting from Phoenix 4.3.</td> 
    <td>false</td> 
   </tr> 
   <tr class="b"> 
+   <td><small>phoenix.table.istransactional.default</small></td> 
+   <td style="text-align: left;">The default value of the TRANSACTIONAL flag used for table creation which determines whether or not a table is transactional . Default is false. This is a client side parameter. Available starting from Phoenix 4.7.</td> 
+   <td>false</td> 
+  </tr> 
+  <tr class="a"> 
+   <td><small>phoenix.transactions.enabled</small></td> 
+   <td style="text-align: left;"> Determines whether or not transactions are enabled in Phoenix. A table may not be declared as transactional if transactions are disabled. Default is false. This is a client side parameter. Available starting from Phoenix 4.7.</td> 
+   <td>false</td> 
+  </tr> 
+  <tr class="b"> 
+   <td><small>data.tx.snapshot.dir</small></td> 
+   <td style="text-align: left;">The HDFS directory used to store snapshots of the transaction state. No default value. This is a server side parameter. Available starting from Phoenix 4.7.</td> 
+   <td>None</td> 
+  </tr> 
+  <tr class="a"> 
+   <td><small>data.tx.timeout</small></td> 
+   <td style="text-align: left;">The timeout in seconds for a transaction to complete. Default is 30 seconds. This is a server side parameter. Available starting from Phoenix 4.7.</td> 
+   <td>30</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> 

Modified: phoenix/site/source/src/site/markdown/tuning.md
URL: http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/tuning.md?rev=1733215&r1=1733214&r2=1733215&view=diff
==============================================================================
--- phoenix/site/source/src/site/markdown/tuning.md (original)
+++ phoenix/site/source/src/site/markdown/tuning.md Wed Mar  2 04:58:02 2016
@@ -132,7 +132,11 @@ overridden at connection
 </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><small>phoenix.table.default.store.nulls</small></td><td style="text-align: left;">The default value of the STORE_NULLS flag used for table creation. Default is false. Available starting from Phoenix 4.3.</td><td>false</td></tr>
+<tr><td><small>phoenix.table.default.store.nulls</small></td><td style="text-align: left;">The default value of the STORE_NULLS flag used for table creation which determines whether or not null values should be explicitly stored in HBase. Default is false. This is a client side parameter. Available starting from Phoenix 4.3.</td><td>false</td></tr>
+<tr><td><small>phoenix.table.istransactional.default</small></td><td style="text-align: left;">The default value of the TRANSACTIONAL flag used for table creation which determines whether or not a table is transactional . Default is false. This is a client side parameter. Available starting from Phoenix 4.7.</td><td>false</td></tr>
+<tr><td><small>phoenix.transactions.enabled</small></td><td style="text-align: left;"> Determines whether or not transactions are enabled in Phoenix. A table may not be declared as transactional if transactions are disabled. Default is false. This is a client side parameter. Available starting from Phoenix 4.7.</td><td>false</td></tr>
+<tr><td><small>data.tx.snapshot.dir</small></td><td style="text-align: left;">The HDFS directory used to store snapshots of the transaction state. No default value. This is a server side parameter. Available starting from Phoenix 4.7.</td><td>None</td></tr>
+<tr><td><small>data.tx.timeout</small></td><td style="text-align: left;">The timeout in seconds for a transaction to complete. Default is 30 seconds. This is a server side parameter. Available starting from Phoenix 4.7.</td><td>30</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>