Added: cassandra/site/src/doc/4.0/tools/cassandra_stress.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/cassandra_stress.html?rev=1795259&view=auto ============================================================================== --- cassandra/site/src/doc/4.0/tools/cassandra_stress.html (added) +++ cassandra/site/src/doc/4.0/tools/cassandra_stress.html Tue May 16 02:01:22 2017 @@ -0,0 +1,336 @@ +--- +layout: docpage + +title: "Documentation" + +is_homepage: false +is_sphinx_doc: true + +doc-parent: "Cassandra Tools" + +doc-title: "Cassandra Stress" +doc-header-links: ' + <link rel="top" title="Apache Cassandra Documentation v4.0" href="../index.html"/> + <link rel="up" title="Cassandra Tools" href="index.html"/> + <link rel="next" title="Troubleshooting" href="../troubleshooting/index.html"/> + <link rel="prev" title="Nodetool" href="nodetool/nodetool.html"/> +' +doc-search-path: "../search.html" + +extra-footer: ' +<script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: "", + VERSION: "", + COLLAPSE_INDEX: false, + FILE_SUFFIX: ".html", + HAS_SOURCE: false, + SOURCELINK_SUFFIX: "" + }; +</script> +' + +--- +<div class="container-fluid"> + <div class="row"> + <div class="col-md-2"> + <div class="doc-navigation"> + <div class="doc-menu" role="navigation"> + <div class="navbar-header"> + <button type="button" class="pull-left navbar-toggle" data-toggle="collapse" data-target=".sidebar-navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + </div> + <div class="navbar-collapse collapse sidebar-navbar-collapse"> + <form id="doc-search-form" class="navbar-form" action="../search.html" method="get" role="search"> + <div class="form-group"> + <input type="text" size="30" class="form-control input-sm" name="q" placeholder="Search docs"> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </div> + </form> + + + + <ul class="current"> +<li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li> +<li class="toctree-l1"><a class="reference internal" href="../architecture/index.html">Architecture</a></li> +<li class="toctree-l1"><a class="reference internal" href="../data_modeling/index.html">Data Modeling</a></li> +<li class="toctree-l1"><a class="reference internal" href="../cql/index.html">The Cassandra Query Language (CQL)</a></li> +<li class="toctree-l1"><a class="reference internal" href="../configuration/index.html">Configuring Cassandra</a></li> +<li class="toctree-l1"><a class="reference internal" href="../operating/index.html">Operating Cassandra</a></li> +<li class="toctree-l1 current"><a class="reference internal" href="index.html">Cassandra Tools</a><ul class="current"> +<li class="toctree-l2"><a class="reference internal" href="cqlsh.html">cqlsh: the CQL shell</a></li> +<li class="toctree-l2"><a class="reference internal" href="nodetool/nodetool.html">Nodetool</a></li> +<li class="toctree-l2"><a class="reference internal" href="nodetool/nodetool.html#usage">Usage</a></li> +<li class="toctree-l2 current"><a class="current reference internal" href="#">Cassandra Stress</a><ul> +<li class="toctree-l3"><a class="reference internal" href="#usage">Usage</a></li> +<li class="toctree-l3"><a class="reference internal" href="#user-mode">User mode</a></li> +<li class="toctree-l3"><a class="reference internal" href="#graphing">Graphing</a></li> +<li class="toctree-l3"><a class="reference internal" href="#faq">FAQ</a></li> +</ul> +</li> +</ul> +</li> +<li class="toctree-l1"><a class="reference internal" href="../troubleshooting/index.html">Troubleshooting</a></li> +<li class="toctree-l1"><a class="reference internal" href="../development/index.html">Contributing to Cassandra</a></li> +<li class="toctree-l1"><a class="reference internal" href="../faq/index.html">Frequently Asked Questions</a></li> +<li class="toctree-l1"><a class="reference internal" href="../bugs.html">Reporting Bugs and Contributing</a></li> +<li class="toctree-l1"><a class="reference internal" href="../contactus.html">Contact us</a></li> +</ul> + + + + </div><!--/.nav-collapse --> + </div> + </div> + </div> + <div class="col-md-8"> + <div class="content doc-content"> + <div class="container"> + + <div class="section" id="cassandra-stress"> +<span id="id1"></span><h1>Cassandra Stress<a class="headerlink" href="#cassandra-stress" title="Permalink to this headline">¶</a></h1> +<p>cassandra-stress is a tool for benchmarking and load testing a Cassandra +cluster. cassandra-stress supports testing arbitrary CQL tables and queries +to allow users to benchmark their data model.</p> +<p>This documentation focuses on user mode as this allows the testing of your +actual schema.</p> +<div class="section" id="usage"> +<h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2> +<p>There are several operation types:</p> +<blockquote> +<div><ul class="simple"> +<li>write-only, read-only, and mixed workloads of standard data</li> +<li>write-only and read-only workloads for counter columns</li> +<li>user configured workloads, running custom queries on custom schemas</li> +</ul> +</div></blockquote> +<p>The syntax is <cite>cassandra-stress <command> [options]</cite>. If you want more information on a given command +or options, just run <cite>cassandra-stress help <command|option></cite>.</p> +<dl class="docutils"> +<dt>Commands:</dt> +<dd><dl class="first last docutils"> +<dt>read:</dt> +<dd>Multiple concurrent reads - the cluster must first be populated by a write test</dd> +<dt>write:</dt> +<dd>Multiple concurrent writes against the cluster</dd> +<dt>mixed:</dt> +<dd>Interleaving of any basic commands, with configurable ratio and distribution - the cluster must first be populated by a write test</dd> +<dt>counter_write:</dt> +<dd>Multiple concurrent updates of counters.</dd> +<dt>counter_read:</dt> +<dd>Multiple concurrent reads of counters. The cluster must first be populated by a counterwrite test.</dd> +<dt>user:</dt> +<dd>Interleaving of user provided queries, with configurable ratio and distribution.</dd> +<dt>help:</dt> +<dd>Print help for a command or option</dd> +<dt>print:</dt> +<dd>Inspect the output of a distribution definition</dd> +<dt>legacy:</dt> +<dd>Legacy support mode</dd> +</dl> +</dd> +<dt>Primary Options:</dt> +<dd><dl class="first last docutils"> +<dt>-pop:</dt> +<dd>Population distribution and intra-partition visit order</dd> +<dt>-insert:</dt> +<dd>Insert specific options relating to various methods for batching and splitting partition updates</dd> +<dt>-col:</dt> +<dd>Column details such as size and count distribution, data generator, names, comparator and if super columns should be used</dd> +<dt>-rate:</dt> +<dd>Thread count, rate limit or automatic mode (default is auto)</dd> +<dt>-mode:</dt> +<dd>Thrift or CQL with options</dd> +<dt>-errors:</dt> +<dd>How to handle errors when encountered during stress</dd> +<dt>-sample:</dt> +<dd>Specify the number of samples to collect for measuring latency</dd> +<dt>-schema:</dt> +<dd>Replication settings, compression, compaction, etc.</dd> +<dt>-node:</dt> +<dd>Nodes to connect to</dd> +<dt>-log:</dt> +<dd>Where to log progress to, and the interval at which to do it</dd> +<dt>-transport:</dt> +<dd>Custom transport factories</dd> +<dt>-port:</dt> +<dd>The port to connect to cassandra nodes on</dd> +<dt>-sendto:</dt> +<dd>Specify a stress server to send this command to</dd> +<dt>-graph:</dt> +<dd>Graph recorded metrics</dd> +<dt>-tokenrange:</dt> +<dd>Token range settings</dd> +</dl> +</dd> +<dt>Suboptions:</dt> +<dd>Every command and primary option has its own collection of suboptions. These are too numerous to list here. +For information on the suboptions for each command or option, please use the help command, +<cite>cassandra-stress help <command|option></cite>.</dd> +</dl> +</div> +<div class="section" id="user-mode"> +<h2>User mode<a class="headerlink" href="#user-mode" title="Permalink to this headline">¶</a></h2> +<p>User mode allows you to use your stress your own schemas. This can save time in +the long run rather than building an application and then realising your schema +doesn’t scale.</p> +<div class="section" id="profile"> +<h3>Profile<a class="headerlink" href="#profile" title="Permalink to this headline">¶</a></h3> +<p>User mode requires a profile defined in YAML. +Multiple YAML files may be specified in which case operations in the ops argument are referenced as specname.opname.</p> +<p>An identifier for the profile:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">specname</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">staff_activities</span> +</pre></div> +</div> +<p>The keyspace for the test:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">keyspace</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">staff</span> +</pre></div> +</div> +<p>CQL for the keyspace. Optional if the keyspace already exists:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">keyspace_definition</span><span class="p-Indicator">:</span> <span class="p-Indicator">|</span> + <span class="no">CREATE KEYSPACE stresscql WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 3};</span> +</pre></div> +</div> +<p>The table to be stressed:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">table</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">staff_activities</span> +</pre></div> +</div> +<p>CQL for the table. Optional if the table already exists:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">table_definition</span><span class="p-Indicator">:</span> <span class="p-Indicator">|</span> + <span class="no">CREATE TABLE staff_activities (</span> + <span class="no">name text,</span> + <span class="no">when timeuuid,</span> + <span class="no">what text,</span> + <span class="no">PRIMARY KEY(name, when, what)</span> + <span class="no">)</span> +</pre></div> +</div> +<p>Optional meta information on the generated columns in the above table. +The min and max only apply to text and blob types. +The distribution field represents the total unique population +distribution of that column across rows:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">columnspec</span><span class="p-Indicator">:</span> + <span class="p-Indicator">-</span> <span class="l-Scalar-Plain">name</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">name</span> + <span class="l-Scalar-Plain">size</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">uniform(5..10)</span> <span class="c1"># The names of the staff members are between 5-10 characters</span> + <span class="l-Scalar-Plain">population</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">uniform(1..10)</span> <span class="c1"># 10 possible staff members to pick from</span> + <span class="p-Indicator">-</span> <span class="l-Scalar-Plain">name</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">when</span> + <span class="l-Scalar-Plain">cluster</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">uniform(20..500)</span> <span class="c1"># Staff members do between 20 and 500 events</span> + <span class="p-Indicator">-</span> <span class="l-Scalar-Plain">name</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">what</span> + <span class="l-Scalar-Plain">size</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">normal(10..100,50)</span> +</pre></div> +</div> +<p>Supported types are:</p> +<p>An exponential distribution over the range [min..max]:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">EXP(min..max)</span> +</pre></div> +</div> +<p>An extreme value (Weibull) distribution over the range [min..max]:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">EXTREME(min..max,shape)</span> +</pre></div> +</div> +<p>A gaussian/normal distribution, where mean=(min+max)/2, and stdev is (mean-min)/stdvrng:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">GAUSSIAN(min..max,stdvrng)</span> +</pre></div> +</div> +<p>A gaussian/normal distribution, with explicitly defined mean and stdev:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">GAUSSIAN(min..max,mean,stdev)</span> +</pre></div> +</div> +<p>A uniform distribution over the range [min, max]:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">UNIFORM(min..max)</span> +</pre></div> +</div> +<p>A fixed distribution, always returning the same value:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">FIXED(val)</span> +</pre></div> +</div> +<p>If preceded by ~, the distribution is inverted</p> +<p>Defaults for all columns are size: uniform(4..8), population: uniform(1..100B), cluster: fixed(1)</p> +<p>Insert distributions:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">insert</span><span class="p-Indicator">:</span> + <span class="c1"># How many partition to insert per batch</span> + <span class="l-Scalar-Plain">partitions</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">fixed(1)</span> + <span class="c1"># How many rows to update per partition</span> + <span class="l-Scalar-Plain">select</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">fixed(1)/500</span> + <span class="c1"># UNLOGGED or LOGGED batch for insert</span> + <span class="l-Scalar-Plain">batchtype</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">UNLOGGED</span> +</pre></div> +</div> +<p>Currently all inserts are done inside batches.</p> +<p>Read statements to use during the test:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">queries</span><span class="p-Indicator">:</span> + <span class="l-Scalar-Plain">events</span><span class="p-Indicator">:</span> + <span class="l-Scalar-Plain">cql</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">select * from staff_activities where name = ?</span> + <span class="l-Scalar-Plain">fields</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">samerow</span> + <span class="l-Scalar-Plain">latest_event</span><span class="p-Indicator">:</span> + <span class="l-Scalar-Plain">cql</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">select * from staff_activities where name = ? LIMIT 1</span> + <span class="l-Scalar-Plain">fields</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">samerow</span> +</pre></div> +</div> +<p>Running a user mode test:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">cassandra-stress user profile=./example.yaml duration=1m "ops(insert=1,latest_event=1,events=1)" truncate=once</span> +</pre></div> +</div> +<p>This will create the schema then run tests for 1 minute with an equal number of inserts, latest_event queries and events +queries. Additionally the table will be truncated once before the test.</p> +<p>The full example can be found here <a class="reference download internal" href="../_downloads/stress-example.yaml" download=""><code class="xref download docutils literal"><span class="pre">yaml</span></code></a></p> +<dl class="docutils"> +<dt>Running a user mode test with multiple yaml files::</dt> +<dd>cassandra-stress user profile=./example.yaml,./example2.yaml duration=1m “ops(ex1.insert=1,ex1.latest_event=1,ex2.insert=2)” truncate=once</dd> +<dt>This will run operations as specified in both the example.yaml and example2.yaml files. example.yaml and example2.yaml can reference the same table</dt> +<dd>although care must be taken that the table definition is identical (data generation specs can be different).</dd> +</dl> +</div> +</div> +<div class="section" id="graphing"> +<h2>Graphing<a class="headerlink" href="#graphing" title="Permalink to this headline">¶</a></h2> +<p>Graphs can be generated for each run of stress.</p> +<img alt="../_images/example-stress-graph.png" src="../_images/example-stress-graph.png" /> +<p>To create a new graph:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">cassandra-stress user profile=./stress-example.yaml "ops(insert=1,latest_event=1,events=1)" -graph file=graph.html title="Awesome graph"</span> +</pre></div> +</div> +<p>To add a new run to an existing graph point to an existing file and add a revision name:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">cassandra-stress user profile=./stress-example.yaml duration=1m "ops(insert=1,latest_event=1,events=1)" -graph file=graph.html title="Awesome graph" revision="Second run"</span> +</pre></div> +</div> +</div> +<div class="section" id="faq"> +<h2>FAQ<a class="headerlink" href="#faq" title="Permalink to this headline">¶</a></h2> +<p><strong>How do you use NetworkTopologyStrategy for the keyspace?</strong></p> +<p>Use the schema option making sure to either escape the parenthesis or enclose in quotes:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">cassandra-stress write -schema "replication(strategy=NetworkTopologyStrategy,datacenter1=3)"</span> +</pre></div> +</div> +<p><strong>How do you use SSL?</strong></p> +<p>Use the transport option:</p> +<div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">cassandra-stress "write n=100k cl=ONE no-warmup" -transport "truststore=$HOME/jks/truststore.jks truststore-password=cassandra"</span> +</pre></div> +</div> +</div> +</div> + + + + + <div class="doc-prev-next-links" role="navigation" aria-label="footer navigation"> + + <a href="../troubleshooting/index.html" class="btn btn-default pull-right " role="button" title="Troubleshooting" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a> + + + <a href="nodetool/nodetool.html" class="btn btn-default" role="button" title="Nodetool" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a> + + </div> + + </div> + </div> + </div> + <div class="col-md-2"> + </div> + </div> +</div> \ No newline at end of file
Modified: cassandra/site/src/doc/4.0/tools/cqlsh.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/cqlsh.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/cqlsh.html (original) +++ cassandra/site/src/doc/4.0/tools/cqlsh.html Tue May 16 02:01:22 2017 @@ -73,10 +73,11 @@ extra-footer: ' </li> <li class="toctree-l2"><a class="reference internal" href="nodetool/nodetool.html">Nodetool</a></li> <li class="toctree-l2"><a class="reference internal" href="nodetool/nodetool.html#usage">Usage</a></li> +<li class="toctree-l2"><a class="reference internal" href="cassandra_stress.html">Cassandra Stress</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../contactus.html">Contact us</a></li> Modified: cassandra/site/src/doc/4.0/tools/index.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/index.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/index.html (original) +++ cassandra/site/src/doc/4.0/tools/index.html Tue May 16 02:01:22 2017 @@ -63,10 +63,11 @@ extra-footer: ' <li class="toctree-l2"><a class="reference internal" href="cqlsh.html">cqlsh: the CQL shell</a></li> <li class="toctree-l2"><a class="reference internal" href="nodetool/nodetool.html">Nodetool</a></li> <li class="toctree-l2"><a class="reference internal" href="nodetool/nodetool.html#usage">Usage</a></li> +<li class="toctree-l2"><a class="reference internal" href="cassandra_stress.html">Cassandra Stress</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../contactus.html">Contact us</a></li> @@ -90,6 +91,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="cqlsh.html">cqlsh: the CQL shell</a></li> <li class="toctree-l1"><a class="reference internal" href="nodetool/nodetool.html">Nodetool</a></li> <li class="toctree-l1"><a class="reference internal" href="nodetool/nodetool.html#usage">Usage</a></li> +<li class="toctree-l1"><a class="reference internal" href="cassandra_stress.html">Cassandra Stress</a></li> </ul> </div> </div> Modified: cassandra/site/src/doc/4.0/tools/nodetool/assassinate.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/assassinate.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/assassinate.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/assassinate.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="assassinate"> -<h1>assassinate<a class="headerlink" href="#assassinate" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-assassinate"></span><h1>assassinate<a class="headerlink" href="#assassinate" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/bootstrap.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/bootstrap.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/bootstrap.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/bootstrap.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="bootstrap"> -<h1>bootstrap<a class="headerlink" href="#bootstrap" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-bootstrap"></span><h1>bootstrap<a class="headerlink" href="#bootstrap" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> @@ -87,8 +87,8 @@ extra-footer: ' <span class="n">nodetool</span> <span class="n">bootstrap</span> <span class="n">nodetool</span> <span class="p">[(</span><span class="o">-</span><span class="n">pwf</span> <span class="o"><</span><span class="n">passwordFilePath</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span><span class="o">-</span><span class="n">file</span> <span class="o"><</span><span class="n">passwordFilePath</span><span class="o">></span><span class="p">)]</span> - <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o"><</span><span class="n">username</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o"><</span><span class="n">username</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o"><</span><span class="n">port</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o"><</span><span class="n">port</span><span class="o">></span><span class="p">)]</span> - <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o"><</span><span class="n">host</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o"><</span><span class="n">host</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o"><</span><span class="n">password</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o"><</span><span class="n">password</span><span class="o">></span><span class="p">)]</span> + <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o"><</span><span class="n">host</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o"><</span><span class="n">host</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o"><</span><span class="n">username</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o"><</span><span class="n">username</span><span class="o">></span><span class="p">)]</span> + <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o"><</span><span class="n">password</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o"><</span><span class="n">password</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o"><</span><span class="n">port</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o"><</span><span class="n">port</span><span class="o">></span><span class="p">)]</span> <span class="n">bootstrap</span> <span class="n">resume</span> <span class="n">OPTIONS</span> Modified: cassandra/site/src/doc/4.0/tools/nodetool/cleanup.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/cleanup.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/cleanup.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/cleanup.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="cleanup"> -<h1>cleanup<a class="headerlink" href="#cleanup" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-cleanup"></span><h1>cleanup<a class="headerlink" href="#cleanup" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/clearsnapshot.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/clearsnapshot.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/clearsnapshot.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/clearsnapshot.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="clearsnapshot"> -<h1>clearsnapshot<a class="headerlink" href="#clearsnapshot" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-clearsnapshot"></span><h1>clearsnapshot<a class="headerlink" href="#clearsnapshot" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/compact.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/compact.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/compact.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/compact.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="compact"> -<h1>compact<a class="headerlink" href="#compact" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-compact"></span><h1>compact<a class="headerlink" href="#compact" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/compactionhistory.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/compactionhistory.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/compactionhistory.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/compactionhistory.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="compactionhistory"> -<h1>compactionhistory<a class="headerlink" href="#compactionhistory" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-compactionhistory"></span><h1>compactionhistory<a class="headerlink" href="#compactionhistory" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/compactionstats.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/compactionstats.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/compactionstats.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/compactionstats.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="compactionstats"> -<h1>compactionstats<a class="headerlink" href="#compactionstats" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-compactionstats"></span><h1>compactionstats<a class="headerlink" href="#compactionstats" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/decommission.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/decommission.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/decommission.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/decommission.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="decommission"> -<h1>decommission<a class="headerlink" href="#decommission" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-decommission"></span><h1>decommission<a class="headerlink" href="#decommission" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> @@ -87,9 +87,13 @@ extra-footer: ' <span class="n">nodetool</span> <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o"><</span><span class="n">host</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o"><</span><span class="n">host</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o"><</span><span class="n">port</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o"><</span><span class="n">port</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o"><</span><span class="n">password</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o"><</span><span class="n">password</span><span class="o">></span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">pwf</span> <span class="o"><</span><span class="n">passwordFilePath</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span><span class="o">-</span><span class="n">file</span> <span class="o"><</span><span class="n">passwordFilePath</span><span class="o">></span><span class="p">)]</span> - <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o"><</span><span class="n">username</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o"><</span><span class="n">username</span><span class="o">></span><span class="p">)]</span> <span class="n">decommission</span> + <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o"><</span><span class="n">username</span><span class="o">></span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o"><</span><span class="n">username</span><span class="o">></span><span class="p">)]</span> <span class="n">decommission</span> <span class="p">[(</span><span class="o">-</span><span class="n">f</span> <span class="o">|</span> <span class="o">--</span><span class="n">force</span><span class="p">)]</span> <span class="n">OPTIONS</span> + <span class="o">-</span><span class="n">f</span><span class="p">,</span> <span class="o">--</span><span class="n">force</span> + <span class="n">Force</span> <span class="n">decommission</span> <span class="n">of</span> <span class="n">this</span> <span class="n">node</span> <span class="n">even</span> <span class="n">when</span> <span class="n">it</span> <span class="n">reduces</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> + <span class="n">replicas</span> <span class="n">to</span> <span class="n">below</span> <span class="n">configured</span> <span class="n">RF</span> + <span class="o">-</span><span class="n">h</span> <span class="o"><</span><span class="n">host</span><span class="o">></span><span class="p">,</span> <span class="o">--</span><span class="n">host</span> <span class="o"><</span><span class="n">host</span><span class="o">></span> <span class="n">Node</span> <span class="n">hostname</span> <span class="ow">or</span> <span class="n">ip</span> <span class="n">address</span> Modified: cassandra/site/src/doc/4.0/tools/nodetool/describecluster.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/describecluster.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/describecluster.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/describecluster.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="describecluster"> -<h1>describecluster<a class="headerlink" href="#describecluster" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-describecluster"></span><h1>describecluster<a class="headerlink" href="#describecluster" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/describering.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/describering.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/describering.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/describering.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="describering"> -<h1>describering<a class="headerlink" href="#describering" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-describering"></span><h1>describering<a class="headerlink" href="#describering" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/disableautocompaction.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/disableautocompaction.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/disableautocompaction.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/disableautocompaction.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="disableautocompaction"> -<h1>disableautocompaction<a class="headerlink" href="#disableautocompaction" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-disableautocompaction"></span><h1>disableautocompaction<a class="headerlink" href="#disableautocompaction" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/disablebackup.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/disablebackup.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/disablebackup.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/disablebackup.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="disablebackup"> -<h1>disablebackup<a class="headerlink" href="#disablebackup" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-disablebackup"></span><h1>disablebackup<a class="headerlink" href="#disablebackup" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/disablebinary.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/disablebinary.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/disablebinary.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/disablebinary.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="disablebinary"> -<h1>disablebinary<a class="headerlink" href="#disablebinary" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-disablebinary"></span><h1>disablebinary<a class="headerlink" href="#disablebinary" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/disablegossip.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/disablegossip.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/disablegossip.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/disablegossip.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="disablegossip"> -<h1>disablegossip<a class="headerlink" href="#disablegossip" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-disablegossip"></span><h1>disablegossip<a class="headerlink" href="#disablegossip" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/disablehandoff.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/disablehandoff.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/disablehandoff.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/disablehandoff.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="disablehandoff"> -<h1>disablehandoff<a class="headerlink" href="#disablehandoff" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-disablehandoff"></span><h1>disablehandoff<a class="headerlink" href="#disablehandoff" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/disablehintsfordc.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/disablehintsfordc.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/disablehintsfordc.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/disablehintsfordc.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="disablehintsfordc"> -<h1>disablehintsfordc<a class="headerlink" href="#disablehintsfordc" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-disablehintsfordc"></span><h1>disablehintsfordc<a class="headerlink" href="#disablehintsfordc" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/drain.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/drain.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/drain.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/drain.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="drain"> -<h1>drain<a class="headerlink" href="#drain" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-drain"></span><h1>drain<a class="headerlink" href="#drain" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/enableautocompaction.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enableautocompaction.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/enableautocompaction.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/enableautocompaction.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="enableautocompaction"> -<h1>enableautocompaction<a class="headerlink" href="#enableautocompaction" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-enableautocompaction"></span><h1>enableautocompaction<a class="headerlink" href="#enableautocompaction" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/enablebackup.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enablebackup.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/enablebackup.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/enablebackup.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="enablebackup"> -<h1>enablebackup<a class="headerlink" href="#enablebackup" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-enablebackup"></span><h1>enablebackup<a class="headerlink" href="#enablebackup" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/enablebinary.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enablebinary.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/enablebinary.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/enablebinary.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="enablebinary"> -<h1>enablebinary<a class="headerlink" href="#enablebinary" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-enablebinary"></span><h1>enablebinary<a class="headerlink" href="#enablebinary" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/enablegossip.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enablegossip.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/enablegossip.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/enablegossip.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="enablegossip"> -<h1>enablegossip<a class="headerlink" href="#enablegossip" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-enablegossip"></span><h1>enablegossip<a class="headerlink" href="#enablegossip" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/enablehandoff.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enablehandoff.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/enablehandoff.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/enablehandoff.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="enablehandoff"> -<h1>enablehandoff<a class="headerlink" href="#enablehandoff" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-enablehandoff"></span><h1>enablehandoff<a class="headerlink" href="#enablehandoff" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/enablehintsfordc.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enablehintsfordc.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/enablehintsfordc.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/enablehintsfordc.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="enablehintsfordc"> -<h1>enablehintsfordc<a class="headerlink" href="#enablehintsfordc" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-enablehintsfordc"></span><h1>enablehintsfordc<a class="headerlink" href="#enablehintsfordc" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/failuredetector.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/failuredetector.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/failuredetector.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/failuredetector.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="failuredetector"> -<h1>failuredetector<a class="headerlink" href="#failuredetector" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-failuredetector"></span><h1>failuredetector<a class="headerlink" href="#failuredetector" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/flush.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/flush.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/flush.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/flush.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="flush"> -<h1>flush<a class="headerlink" href="#flush" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-flush"></span><h1>flush<a class="headerlink" href="#flush" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="garbagecollect"> -<h1>garbagecollect<a class="headerlink" href="#garbagecollect" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-garbagecollect"></span><h1>garbagecollect<a class="headerlink" href="#garbagecollect" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/gcstats.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/gcstats.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/gcstats.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/gcstats.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="gcstats"> -<h1>gcstats<a class="headerlink" href="#gcstats" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-gcstats"></span><h1>gcstats<a class="headerlink" href="#gcstats" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthreshold.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthreshold.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthreshold.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthreshold.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="getcompactionthreshold"> -<h1>getcompactionthreshold<a class="headerlink" href="#getcompactionthreshold" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-getcompactionthreshold"></span><h1>getcompactionthreshold<a class="headerlink" href="#getcompactionthreshold" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthroughput.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthroughput.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthroughput.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/getcompactionthroughput.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="getcompactionthroughput"> -<h1>getcompactionthroughput<a class="headerlink" href="#getcompactionthroughput" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-getcompactionthroughput"></span><h1>getcompactionthroughput<a class="headerlink" href="#getcompactionthroughput" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> Modified: cassandra/site/src/doc/4.0/tools/nodetool/getconcurrentcompactors.html URL: http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/getconcurrentcompactors.html?rev=1795259&r1=1795258&r2=1795259&view=diff ============================================================================== --- cassandra/site/src/doc/4.0/tools/nodetool/getconcurrentcompactors.html (original) +++ cassandra/site/src/doc/4.0/tools/nodetool/getconcurrentcompactors.html Tue May 16 02:01:22 2017 @@ -59,7 +59,7 @@ extra-footer: ' <li class="toctree-l1"><a class="reference internal" href="../../operating/index.html">Operating Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../index.html">Cassandra Tools</a></li> <li class="toctree-l1"><a class="reference internal" href="../../troubleshooting/index.html">Troubleshooting</a></li> -<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Cassandra Development</a></li> +<li class="toctree-l1"><a class="reference internal" href="../../development/index.html">Contributing to Cassandra</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq/index.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../bugs.html">Reporting Bugs and Contributing</a></li> <li class="toctree-l1"><a class="reference internal" href="../../contactus.html">Contact us</a></li> @@ -76,7 +76,7 @@ extra-footer: ' <div class="container"> <div class="section" id="getconcurrentcompactors"> -<h1>getconcurrentcompactors<a class="headerlink" href="#getconcurrentcompactors" title="Permalink to this headline">¶</a></h1> +<span id="nodetool-getconcurrentcompactors"></span><h1>getconcurrentcompactors<a class="headerlink" href="#getconcurrentcompactors" title="Permalink to this headline">¶</a></h1> </div> <div class="section" id="usage"> <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
