Author: stoty
Date: Wed Sep 23 13:39:17 2020
New Revision: 1881950

URL: http://svn.apache.org/viewvc?rev=1881950&view=rev
Log:
PHOENIX-6014 Add documentation for PHOENIX-2715

Modified:
    phoenix/site/publish/language/datatypes.html
    phoenix/site/publish/language/functions.html
    phoenix/site/publish/language/index.html
    phoenix/site/publish/tuning.html
    phoenix/site/source/src/site/markdown/tuning.md

Modified: phoenix/site/publish/language/datatypes.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/language/datatypes.html?rev=1881950&r1=1881949&r2=1881950&view=diff
==============================================================================
--- phoenix/site/publish/language/datatypes.html (original)
+++ phoenix/site/publish/language/datatypes.html Wed Sep 23 13:39:17 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-09-18
+ Generated by Apache Maven Doxia at 2020-09-23
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Modified: phoenix/site/publish/language/functions.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/language/functions.html?rev=1881950&r1=1881949&r2=1881950&view=diff
==============================================================================
--- phoenix/site/publish/language/functions.html (original)
+++ phoenix/site/publish/language/functions.html Wed Sep 23 13:39:17 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-09-18
+ Generated by Apache Maven Doxia at 2020-09-23
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Modified: phoenix/site/publish/language/index.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/language/index.html?rev=1881950&r1=1881949&r2=1881950&view=diff
==============================================================================
--- phoenix/site/publish/language/index.html (original)
+++ phoenix/site/publish/language/index.html Wed Sep 23 13:39:17 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-09-18
+ Generated by Apache Maven Doxia at 2020-09-23
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Modified: phoenix/site/publish/tuning.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/tuning.html?rev=1881950&r1=1881949&r2=1881950&view=diff
==============================================================================
--- phoenix/site/publish/tuning.html (original)
+++ phoenix/site/publish/tuning.html Wed Sep 23 13:39:17 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-09-18
+ Generated by Apache Maven Doxia at 2020-09-23
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -441,6 +441,26 @@
    <td style="text-align: left;">Determines whether to use the splits 
determined by stastics for MapReduce input splits. Default is true. This is a 
server side parameter. Available starting from Phoenix 4.10. Set to false to 
enable behavior from previous versions.</td> 
    <td>true</td> 
   </tr> 
+  <tr class="a"> 
+   <td><small>phoenix.log.level</small></td> 
+   <td style="text-align: left;">Client-side property enabling query (select 
statement) logging. The logs are written to the SYSTEM.LOG table. Possible 
values: OFF: No logging INFO: Enables query logging DEBUG: More details TRACE: 
Logs query parameters as well. Available starting from Phoenix 4.14.</td> 
+   <td>OFF</td> 
+  </tr> 
+  <tr class="b"> 
+   <td><small>phoenix.log.sample.rate</small></td> 
+   <td style="text-align: left;">Client-side property controlling the 
probability of logging a query to the query log. Set to a value between 0.0 and 
1.0 . Available Available starting from Phoenix 4.14.</td> 
+   <td>1.0</td> 
+  </tr> 
+  <tr class="a"> 
+   <td><small>phoenix.log.buffer.size</small></td> 
+   <td style="text-align: left;">Client-side property controlling the size of 
the ring buffer used by the query log implementation. Available Available 
starting from Phoenix 4.14.</td> 
+   <td>262144</td> 
+  </tr> 
+  <tr class="b"> 
+   <td><small>phoenix.log.wait.strategy</small></td> 
+   <td style="text-align: left;">Client-side property controlling the wait 
strategy used by the query log implementation. Available Available starting 
from Phoenix 4.14.</td> 
+   <td>com.lmax.disruptor. <p></p>BlockingWaitStrategy</td> 
+  </tr> 
  </tbody> 
 </table> 
 <br />

Modified: phoenix/site/source/src/site/markdown/tuning.md
URL: 
http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/tuning.md?rev=1881950&r1=1881949&r2=1881950&view=diff
==============================================================================
--- phoenix/site/source/src/site/markdown/tuning.md (original)
+++ phoenix/site/source/src/site/markdown/tuning.md Wed Sep 23 13:39:17 2020
@@ -153,5 +153,9 @@ overridden at connection
 <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>phoenix.mapreduce.split.by.stats</small></td><td 
style="text-align: left;">Determines whether to use the splits determined by 
stastics for MapReduce input splits. Default is true. This is a server side 
parameter. Available starting from Phoenix 4.10. Set to false to enable 
behavior from previous versions.</td><td>true</td></tr>
+<tr><td><small>phoenix.log.level</small></td><td style="text-align: 
left;">Client-side property enabling query (select statement) logging. The logs 
are written to the SYSTEM.LOG table. Possible values: OFF: No logging INFO: 
Enables query logging DEBUG: More details TRACE: Logs query parameters as well. 
Available starting from Phoenix 4.14.</td><td>OFF</td></tr>
+<tr><td><small>phoenix.log.sample.rate</small></td><td style="text-align: 
left;">Client-side property controlling the probability of logging a query to 
the query log. Set to a value between 0.0 and 1.0 . Available Available 
starting from Phoenix 4.14.</td><td>1.0</td></tr>
+<tr><td><small>phoenix.log.buffer.size</small></td><td style="text-align: 
left;">Client-side property controlling the size of the ring buffer used by the 
query log implementation. Available Available starting from Phoenix 
4.14.</td><td>262144</td></tr>
+<tr><td><small>phoenix.log.wait.strategy</small></td><td style="text-align: 
left;">Client-side property controlling the wait strategy used by the query log 
implementation. Available Available starting from Phoenix 
4.14.</td><td>com.lmax.disruptor.<p/>BlockingWaitStrategy</td></tr>
 </tbody></table>
 <br />


Reply via email to