regenerated website
diff --git a/content/doc/3.11/architecture/dynamo.html b/content/doc/3.11/architecture/dynamo.html
index f24662e..74a236c 100644
--- a/content/doc/3.11/architecture/dynamo.html
+++ b/content/doc/3.11/architecture/dynamo.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Storage Engine" href="storage_engine.html"/> <link rel="prev" title="Overview" href="overview.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Storage Engine" href="storage_engine.html"/> <link rel="prev" title="Overview" href="overview.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -190,13 +190,13 @@
 replication strategies are <a class="reference internal" href="#simple-strategy"><span class="std std-ref">SimpleStrategy</span></a> and <a class="reference internal" href="#network-topology-strategy"><span class="std std-ref">NetworkTopologyStrategy</span></a>.</p>
 <div class="section" id="simplestrategy">
 <span id="simple-strategy"></span><h3>SimpleStrategy<a class="headerlink" href="#simplestrategy" title="Permalink to this headline">¶</a></h3>
-<p>SimpleStrategy allows a single integer <code class="docutils literal"><span class="pre">replication_factor</span></code> to be defined. This determines the number of nodes that
-should contain a copy of each row.  For example, if <code class="docutils literal"><span class="pre">replication_factor</span></code> is 3, then three different nodes should store
+<p>SimpleStrategy allows a single integer <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> to be defined. This determines the number of nodes that
+should contain a copy of each row.  For example, if <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> is 3, then three different nodes should store
 a copy of each row.</p>
 <p>SimpleStrategy treats all nodes identically, ignoring any configured datacenters or racks.  To determine the replicas
 for a token range, Cassandra iterates through the tokens in the ring, starting with the token range of interest.  For
 each token, it checks whether the owning node has been added to the set of replicas, and if it has not, it is added to
-the set.  This process continues until <code class="docutils literal"><span class="pre">replication_factor</span></code> distinct nodes have been added to the set of replicas.</p>
+the set.  This process continues until <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> distinct nodes have been added to the set of replicas.</p>
 </div>
 <div class="section" id="networktopologystrategy">
 <span id="network-topology-strategy"></span><h3>NetworkTopologyStrategy<a class="headerlink" href="#networktopologystrategy" title="Permalink to this headline">¶</a></h3>
@@ -210,34 +210,34 @@
 implications</a>.  For example, if there are not an even number of
 nodes in each rack, the data load on the smallest rack may be much higher.  Similarly, if a single node is bootstrapped
 into a new rack, it will be considered a replica for the entire ring.  For this reason, many operators choose to
-configure all nodes on a single &#8220;rack&#8221;.</p>
+configure all nodes on a single “rack”.</p>
 </div>
 </div>
 <div class="section" id="tunable-consistency">
 <h2>Tunable Consistency<a class="headerlink" href="#tunable-consistency" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra supports a per-operation tradeoff between consistency and availability through <em>Consistency Levels</em>.
-Essentially, an operation&#8217;s consistency level specifies how many of the replicas need to respond to the coordinator in
+Essentially, an operation’s consistency level specifies how many of the replicas need to respond to the coordinator in
 order to consider the operation a success.</p>
 <p>The following consistency levels are available:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">ONE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ONE</span></code></dt>
 <dd>Only a single replica must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">TWO</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">TWO</span></code></dt>
 <dd>Two replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">THREE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">THREE</span></code></dt>
 <dd>Three replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">QUORUM</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">QUORUM</span></code></dt>
 <dd>A majority (n/2 + 1) of the replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">ALL</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ALL</span></code></dt>
 <dd>All of the replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">LOCAL_QUORUM</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">LOCAL_QUORUM</span></code></dt>
 <dd>A majority of the replicas in the local datacenter (whichever datacenter the coordinator is in) must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">EACH_QUORUM</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">EACH_QUORUM</span></code></dt>
 <dd>A majority of the replicas in each datacenter must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">LOCAL_ONE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">LOCAL_ONE</span></code></dt>
 <dd>Only a single replica must respond.  In a multi-datacenter cluster, this also gaurantees that read requests are not
 sent to replicas in a remote datacenter.</dd>
-<dt><code class="docutils literal"><span class="pre">ANY</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ANY</span></code></dt>
 <dd>A single replica may respond, or the coordinator may store a hint. If a hint is stored, the coordinator will later
 attempt to replay the hint and deliver the mutation to the replicas.  This consistency level is only accepted for
 write operations.</dd>
@@ -249,19 +249,19 @@
 <ul class="simple">
 <li>Speculative retry may issue a redundant read request to an extra replica if the other replicas have not responded
 within a specified time window.</li>
-<li>Based on <code class="docutils literal"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal"><span class="pre">dclocal_read_repair_chance</span></code> (part of a table&#8217;s schema), read requests may be
+<li>Based on <code class="docutils literal notranslate"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal notranslate"><span class="pre">dclocal_read_repair_chance</span></code> (part of a table’s schema), read requests may be
 randomly sent to all replicas in order to repair potentially inconsistent data.</li>
 </ul>
 <div class="section" id="picking-consistency-levels">
 <h3>Picking Consistency Levels<a class="headerlink" href="#picking-consistency-levels" title="Permalink to this headline">¶</a></h3>
-<p>It is common to pick read and write consistency levels that are high enough to overlap, resulting in &#8220;strong&#8221;
-consistency.  This is typically expressed as <code class="docutils literal"><span class="pre">W</span> <span class="pre">+</span> <span class="pre">R</span> <span class="pre">&gt;</span> <span class="pre">RF</span></code>, where <code class="docutils literal"><span class="pre">W</span></code> is the write consistency level, <code class="docutils literal"><span class="pre">R</span></code> is the
-read consistency level, and <code class="docutils literal"><span class="pre">RF</span></code> is the replication factor.  For example, if <code class="docutils literal"><span class="pre">RF</span> <span class="pre">=</span> <span class="pre">3</span></code>, a <code class="docutils literal"><span class="pre">QUORUM</span></code> request will
-require responses from at least two of the three replicas.  If <code class="docutils literal"><span class="pre">QUORUM</span></code> is used for both writes and reads, at least
+<p>It is common to pick read and write consistency levels that are high enough to overlap, resulting in “strong”
+consistency.  This is typically expressed as <code class="docutils literal notranslate"><span class="pre">W</span> <span class="pre">+</span> <span class="pre">R</span> <span class="pre">&gt;</span> <span class="pre">RF</span></code>, where <code class="docutils literal notranslate"><span class="pre">W</span></code> is the write consistency level, <code class="docutils literal notranslate"><span class="pre">R</span></code> is the
+read consistency level, and <code class="docutils literal notranslate"><span class="pre">RF</span></code> is the replication factor.  For example, if <code class="docutils literal notranslate"><span class="pre">RF</span> <span class="pre">=</span> <span class="pre">3</span></code>, a <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> request will
+require responses from at least two of the three replicas.  If <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> is used for both writes and reads, at least
 one of the replicas is guaranteed to participate in <em>both</em> the write and the read request, which in turn guarantees that
-the latest write will be read. In a multi-datacenter environment, <code class="docutils literal"><span class="pre">LOCAL_QUORUM</span></code> can be used to provide a weaker but
+the latest write will be read. In a multi-datacenter environment, <code class="docutils literal notranslate"><span class="pre">LOCAL_QUORUM</span></code> can be used to provide a weaker but
 still useful guarantee: reads are guaranteed to see the latest write from within the same datacenter.</p>
-<p>If this type of strong consistency isn&#8217;t required, lower consistency levels like <code class="docutils literal"><span class="pre">ONE</span></code> may be used to improve
+<p>If this type of strong consistency isn’t required, lower consistency levels like <code class="docutils literal notranslate"><span class="pre">ONE</span></code> may be used to improve
 throughput, latency, and availability.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/architecture/guarantees.html b/content/doc/3.11/architecture/guarantees.html
index 6211ec2..5c72a76 100644
--- a/content/doc/3.11/architecture/guarantees.html
+++ b/content/doc/3.11/architecture/guarantees.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Data Modeling" href="../data_modeling/index.html"/> <link rel="prev" title="Storage Engine" href="storage_engine.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Data Modeling" href="../data_modeling/index.html"/> <link rel="prev" title="Storage Engine" href="storage_engine.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/architecture/index.html b/content/doc/3.11/architecture/index.html
index 60d77b4..9d2bc2f 100644
--- a/content/doc/3.11/architecture/index.html
+++ b/content/doc/3.11/architecture/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Overview" href="overview.html"/> <link rel="prev" title="Client drivers" href="../getting_started/drivers.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Overview" href="overview.html"/> <link rel="prev" title="Client drivers" href="../getting_started/drivers.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/architecture/overview.html b/content/doc/3.11/architecture/overview.html
index c168926..e1d258a 100644
--- a/content/doc/3.11/architecture/overview.html
+++ b/content/doc/3.11/architecture/overview.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Dynamo" href="dynamo.html"/> <link rel="prev" title="Architecture" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Dynamo" href="dynamo.html"/> <link rel="prev" title="Architecture" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/architecture/storage_engine.html b/content/doc/3.11/architecture/storage_engine.html
index 8fb7e81..e4bb860 100644
--- a/content/doc/3.11/architecture/storage_engine.html
+++ b/content/doc/3.11/architecture/storage_engine.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Guarantees" href="guarantees.html"/> <link rel="prev" title="Dynamo" href="dynamo.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Guarantees" href="guarantees.html"/> <link rel="prev" title="Dynamo" href="dynamo.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -174,11 +174,11 @@
 Eventually, memtables are flushed onto disk and become immutable <a class="reference internal" href="#sstables">SSTables</a>.  This can be triggered in several
 ways:</p>
 <ul class="simple">
-<li>The memory usage of the memtables exceeds the configured threshold  (see <code class="docutils literal"><span class="pre">memtable_cleanup_threshold</span></code>)</li>
+<li>The memory usage of the memtables exceeds the configured threshold  (see <code class="docutils literal notranslate"><span class="pre">memtable_cleanup_threshold</span></code>)</li>
 <li>The <a class="reference internal" href="#commit-log"><span class="std std-ref">CommitLog</span></a> approaches its maximum size, and forces memtable flushes in order to allow commitlog segments to
 be freed</li>
 </ul>
-<p>Memtables may be stored entirely on-heap or partially off-heap, depending on <code class="docutils literal"><span class="pre">memtable_allocation_type</span></code>.</p>
+<p>Memtables may be stored entirely on-heap or partially off-heap, depending on <code class="docutils literal notranslate"><span class="pre">memtable_allocation_type</span></code>.</p>
 </div>
 <div class="section" id="sstables">
 <h2>SSTables<a class="headerlink" href="#sstables" title="Permalink to this headline">¶</a></h2>
@@ -187,27 +187,27 @@
 which combine multiple SSTables into one.  Once the new SSTable has been written, the old SSTables can be removed.</p>
 <p>Each SSTable is comprised of multiple components stored in separate files:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">Data.db</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Data.db</span></code></dt>
 <dd>The actual data, i.e. the contents of rows.</dd>
-<dt><code class="docutils literal"><span class="pre">Index.db</span></code></dt>
-<dd>An index from partition keys to positions in the <code class="docutils literal"><span class="pre">Data.db</span></code> file.  For wide partitions, this may also include an
+<dt><code class="docutils literal notranslate"><span class="pre">Index.db</span></code></dt>
+<dd>An index from partition keys to positions in the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file.  For wide partitions, this may also include an
 index to rows within a partition.</dd>
-<dt><code class="docutils literal"><span class="pre">Summary.db</span></code></dt>
-<dd>A sampling of (by default) every 128th entry in the <code class="docutils literal"><span class="pre">Index.db</span></code> file.</dd>
-<dt><code class="docutils literal"><span class="pre">Filter.db</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Summary.db</span></code></dt>
+<dd>A sampling of (by default) every 128th entry in the <code class="docutils literal notranslate"><span class="pre">Index.db</span></code> file.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">Filter.db</span></code></dt>
 <dd>A Bloom Filter of the partition keys in the SSTable.</dd>
-<dt><code class="docutils literal"><span class="pre">CompressionInfo.db</span></code></dt>
-<dd>Metadata about the offsets and lengths of compression chunks in the <code class="docutils literal"><span class="pre">Data.db</span></code> file.</dd>
-<dt><code class="docutils literal"><span class="pre">Statistics.db</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">CompressionInfo.db</span></code></dt>
+<dd>Metadata about the offsets and lengths of compression chunks in the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">Statistics.db</span></code></dt>
 <dd>Stores metadata about the SSTable, including information about timestamps, tombstones, clustering keys, compaction,
 repair, compression, TTLs, and more.</dd>
-<dt><code class="docutils literal"><span class="pre">Digest.crc32</span></code></dt>
-<dd>A CRC-32 digest of the <code class="docutils literal"><span class="pre">Data.db</span></code> file.</dd>
-<dt><code class="docutils literal"><span class="pre">TOC.txt</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Digest.crc32</span></code></dt>
+<dd>A CRC-32 digest of the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">TOC.txt</span></code></dt>
 <dd>A plain text list of the component files for the SSTable.</dd>
 </dl>
-<p>Within the <code class="docutils literal"><span class="pre">Data.db</span></code> file, rows are organized by partition.  These partitions are sorted in token order (i.e. by a
-hash of the partition key when the default partitioner, <code class="docutils literal"><span class="pre">Murmur3Partition</span></code>, is used).  Within a partition, rows are
+<p>Within the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file, rows are organized by partition.  These partitions are sorted in token order (i.e. by a
+hash of the partition key when the default partitioner, <code class="docutils literal notranslate"><span class="pre">Murmur3Partition</span></code>, is used).  Within a partition, rows are
 stored in the order of their clustering keys.</p>
 <p>SSTables can be optionally compressed using block-based compression.</p>
 </div>
diff --git a/content/doc/3.11/bugs.html b/content/doc/3.11/bugs.html
index 78b7a5f..39dd00b 100644
--- a/content/doc/3.11/bugs.html
+++ b/content/doc/3.11/bugs.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/> <link rel="next" title="Contact us" href="contactus.html"/> <link rel="prev" title="Frequently Asked Questions" href="faq/index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/> <link rel="next" title="Contact us" href="contactus.html"/> <link rel="prev" title="Frequently Asked Questions" href="faq/index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -148,10 +148,10 @@
           
   <div class="section" id="reporting-bugs-and-contributing">
 <h1>Reporting Bugs and Contributing<a class="headerlink" href="#reporting-bugs-and-contributing" title="Permalink to this headline">¶</a></h1>
-<p>If you encounter a problem with Cassandra, the first places to ask for help are the <a class="reference internal" href="contactus.html#mailing-lists"><span class="std std-ref">user mailing list</span></a> and the <code class="docutils literal"><span class="pre">#cassandra</span></code> <a class="reference internal" href="contactus.html#irc-channels"><span class="std std-ref">IRC channel</span></a>.</p>
+<p>If you encounter a problem with Cassandra, the first places to ask for help are the <a class="reference internal" href="contactus.html#mailing-lists"><span class="std std-ref">user mailing list</span></a> and the <code class="docutils literal notranslate"><span class="pre">#cassandra</span></code> <a class="reference internal" href="contactus.html#irc-channels"><span class="std std-ref">IRC channel</span></a>.</p>
 <p>If, after having asked for help, you suspect that you have found a bug in Cassandra, you should report it by opening a
 ticket through the <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA">Apache Cassandra JIRA</a>. Please provide as much
-details as you can on your problem, and don&#8217;t forget to indicate which version of Cassandra you are running and on which
+details as you can on your problem, and don’t forget to indicate which version of Cassandra you are running and on which
 environment.</p>
 <p>Further details on how to contribute can be found at our <a class="reference internal" href="development/index.html"><span class="doc">Cassandra Development</span></a> section. Please note that the source of
 this documentation is part of the Cassandra git repository and hence contributions to the documentation should follow the
diff --git a/content/doc/3.11/configuration/cassandra_config_file.html b/content/doc/3.11/configuration/cassandra_config_file.html
index 9bd2444..1da0af1 100644
--- a/content/doc/3.11/configuration/cassandra_config_file.html
+++ b/content/doc/3.11/configuration/cassandra_config_file.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Configuring Cassandra" href="index.html"/> <link rel="next" title="Operating Cassandra" href="../operating/index.html"/> <link rel="prev" title="Configuring Cassandra" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Configuring Cassandra" href="index.html"/> <link rel="next" title="Operating Cassandra" href="../operating/index.html"/> <link rel="prev" title="Configuring Cassandra" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -130,159 +130,161 @@
 <li class="toctree-l1"><a class="reference internal" href="../cql/index.html">The Cassandra Query Language (CQL)</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="index.html">Configuring Cassandra</a><ul class="current">
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Cassandra Configuration File</a><ul>
-<li class="toctree-l3"><a class="reference internal" href="#cluster-name"><code class="docutils literal"><span class="pre">cluster_name</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#num-tokens"><code class="docutils literal"><span class="pre">num_tokens</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#allocate-tokens-for-keyspace"><code class="docutils literal"><span class="pre">allocate_tokens_for_keyspace</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#initial-token"><code class="docutils literal"><span class="pre">initial_token</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-enabled"><code class="docutils literal"><span class="pre">hinted_handoff_enabled</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-disabled-datacenters"><code class="docutils literal"><span class="pre">hinted_handoff_disabled_datacenters</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-hint-window-in-ms"><code class="docutils literal"><span class="pre">max_hint_window_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-throttle-in-kb"><code class="docutils literal"><span class="pre">hinted_handoff_throttle_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-hints-delivery-threads"><code class="docutils literal"><span class="pre">max_hints_delivery_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hints-directory"><code class="docutils literal"><span class="pre">hints_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hints-flush-period-in-ms"><code class="docutils literal"><span class="pre">hints_flush_period_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-hints-file-size-in-mb"><code class="docutils literal"><span class="pre">max_hints_file_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hints-compression"><code class="docutils literal"><span class="pre">hints_compression</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#batchlog-replay-throttle-in-kb"><code class="docutils literal"><span class="pre">batchlog_replay_throttle_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#authenticator"><code class="docutils literal"><span class="pre">authenticator</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#authorizer"><code class="docutils literal"><span class="pre">authorizer</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#role-manager"><code class="docutils literal"><span class="pre">role_manager</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#roles-validity-in-ms"><code class="docutils literal"><span class="pre">roles_validity_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#roles-update-interval-in-ms"><code class="docutils literal"><span class="pre">roles_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#permissions-validity-in-ms"><code class="docutils literal"><span class="pre">permissions_validity_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#permissions-update-interval-in-ms"><code class="docutils literal"><span class="pre">permissions_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#credentials-validity-in-ms"><code class="docutils literal"><span class="pre">credentials_validity_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#credentials-update-interval-in-ms"><code class="docutils literal"><span class="pre">credentials_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#partitioner"><code class="docutils literal"><span class="pre">partitioner</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#data-file-directories"><code class="docutils literal"><span class="pre">data_file_directories</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-directory"><code class="docutils literal"><span class="pre">commitlog_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-enabled"><code class="docutils literal"><span class="pre">cdc_enabled</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-raw-directory"><code class="docutils literal"><span class="pre">cdc_raw_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#disk-failure-policy"><code class="docutils literal"><span class="pre">disk_failure_policy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commit-failure-policy"><code class="docutils literal"><span class="pre">commit_failure_policy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#prepared-statements-cache-size-mb"><code class="docutils literal"><span class="pre">prepared_statements_cache_size_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#thrift-prepared-statements-cache-size-mb"><code class="docutils literal"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#key-cache-size-in-mb"><code class="docutils literal"><span class="pre">key_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#key-cache-save-period"><code class="docutils literal"><span class="pre">key_cache_save_period</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#key-cache-keys-to-save"><code class="docutils literal"><span class="pre">key_cache_keys_to_save</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-class-name"><code class="docutils literal"><span class="pre">row_cache_class_name</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-size-in-mb"><code class="docutils literal"><span class="pre">row_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-save-period"><code class="docutils literal"><span class="pre">row_cache_save_period</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-keys-to-save"><code class="docutils literal"><span class="pre">row_cache_keys_to_save</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-cache-size-in-mb"><code class="docutils literal"><span class="pre">counter_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-cache-save-period"><code class="docutils literal"><span class="pre">counter_cache_save_period</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-cache-keys-to-save"><code class="docutils literal"><span class="pre">counter_cache_keys_to_save</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#saved-caches-directory"><code class="docutils literal"><span class="pre">saved_caches_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync"><code class="docutils literal"><span class="pre">commitlog_sync</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-batch-window-in-ms"><code class="docutils literal"><span class="pre">commitlog_sync_batch_window_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#id1"><code class="docutils literal"><span class="pre">commitlog_sync</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-period-in-ms"><code class="docutils literal"><span class="pre">commitlog_sync_period_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-segment-size-in-mb"><code class="docutils literal"><span class="pre">commitlog_segment_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-compression"><code class="docutils literal"><span class="pre">commitlog_compression</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#seed-provider"><code class="docutils literal"><span class="pre">seed_provider</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-reads"><code class="docutils literal"><span class="pre">concurrent_reads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-writes"><code class="docutils literal"><span class="pre">concurrent_writes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-counter-writes"><code class="docutils literal"><span class="pre">concurrent_counter_writes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-materialized-view-writes"><code class="docutils literal"><span class="pre">concurrent_materialized_view_writes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#file-cache-size-in-mb"><code class="docutils literal"><span class="pre">file_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#buffer-pool-use-heap-if-exhausted"><code class="docutils literal"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#disk-optimization-strategy"><code class="docutils literal"><span class="pre">disk_optimization_strategy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-heap-space-in-mb"><code class="docutils literal"><span class="pre">memtable_heap_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-offheap-space-in-mb"><code class="docutils literal"><span class="pre">memtable_offheap_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-cleanup-threshold"><code class="docutils literal"><span class="pre">memtable_cleanup_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-allocation-type"><code class="docutils literal"><span class="pre">memtable_allocation_type</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-total-space-in-mb"><code class="docutils literal"><span class="pre">commitlog_total_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-flush-writers"><code class="docutils literal"><span class="pre">memtable_flush_writers</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-total-space-in-mb"><code class="docutils literal"><span class="pre">cdc_total_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-free-space-check-interval-ms"><code class="docutils literal"><span class="pre">cdc_free_space_check_interval_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#index-summary-capacity-in-mb"><code class="docutils literal"><span class="pre">index_summary_capacity_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#index-summary-resize-interval-in-minutes"><code class="docutils literal"><span class="pre">index_summary_resize_interval_in_minutes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync"><code class="docutils literal"><span class="pre">trickle_fsync</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync-interval-in-kb"><code class="docutils literal"><span class="pre">trickle_fsync_interval_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#storage-port"><code class="docutils literal"><span class="pre">storage_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#ssl-storage-port"><code class="docutils literal"><span class="pre">ssl_storage_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-address"><code class="docutils literal"><span class="pre">listen_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-interface"><code class="docutils literal"><span class="pre">listen_interface</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-interface-prefer-ipv6"><code class="docutils literal"><span class="pre">listen_interface_prefer_ipv6</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#broadcast-address"><code class="docutils literal"><span class="pre">broadcast_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-on-broadcast-address"><code class="docutils literal"><span class="pre">listen_on_broadcast_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-authenticator"><code class="docutils literal"><span class="pre">internode_authenticator</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#start-native-transport"><code class="docutils literal"><span class="pre">start_native_transport</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-port"><code class="docutils literal"><span class="pre">native_transport_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-port-ssl"><code class="docutils literal"><span class="pre">native_transport_port_ssl</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-threads"><code class="docutils literal"><span class="pre">native_transport_max_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-frame-size-in-mb"><code class="docutils literal"><span class="pre">native_transport_max_frame_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections"><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections-per-ip"><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#start-rpc"><code class="docutils literal"><span class="pre">start_rpc</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-address"><code class="docutils literal"><span class="pre">rpc_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-interface"><code class="docutils literal"><span class="pre">rpc_interface</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-interface-prefer-ipv6"><code class="docutils literal"><span class="pre">rpc_interface_prefer_ipv6</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-port"><code class="docutils literal"><span class="pre">rpc_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#broadcast-rpc-address"><code class="docutils literal"><span class="pre">broadcast_rpc_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-keepalive"><code class="docutils literal"><span class="pre">rpc_keepalive</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-server-type"><code class="docutils literal"><span class="pre">rpc_server_type</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-min-threads"><code class="docutils literal"><span class="pre">rpc_min_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-max-threads"><code class="docutils literal"><span class="pre">rpc_max_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-send-buff-size-in-bytes"><code class="docutils literal"><span class="pre">rpc_send_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-recv-buff-size-in-bytes"><code class="docutils literal"><span class="pre">rpc_recv_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-send-buff-size-in-bytes"><code class="docutils literal"><span class="pre">internode_send_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-recv-buff-size-in-bytes"><code class="docutils literal"><span class="pre">internode_recv_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#thrift-framed-transport-size-in-mb"><code class="docutils literal"><span class="pre">thrift_framed_transport_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#incremental-backups"><code class="docutils literal"><span class="pre">incremental_backups</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#snapshot-before-compaction"><code class="docutils literal"><span class="pre">snapshot_before_compaction</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#auto-snapshot"><code class="docutils literal"><span class="pre">auto_snapshot</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#column-index-size-in-kb"><code class="docutils literal"><span class="pre">column_index_size_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#column-index-cache-size-in-kb"><code class="docutils literal"><span class="pre">column_index_cache_size_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-compactors"><code class="docutils literal"><span class="pre">concurrent_compactors</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#compaction-throughput-mb-per-sec"><code class="docutils literal"><span class="pre">compaction_throughput_mb_per_sec</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#sstable-preemptive-open-interval-in-mb"><code class="docutils literal"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#stream-throughput-outbound-megabits-per-sec"><code class="docutils literal"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#inter-dc-stream-throughput-outbound-megabits-per-sec"><code class="docutils literal"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#read-request-timeout-in-ms"><code class="docutils literal"><span class="pre">read_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#range-request-timeout-in-ms"><code class="docutils literal"><span class="pre">range_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#write-request-timeout-in-ms"><code class="docutils literal"><span class="pre">write_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-write-request-timeout-in-ms"><code class="docutils literal"><span class="pre">counter_write_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cas-contention-timeout-in-ms"><code class="docutils literal"><span class="pre">cas_contention_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#truncate-request-timeout-in-ms"><code class="docutils literal"><span class="pre">truncate_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-timeout-in-ms"><code class="docutils literal"><span class="pre">request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#slow-query-log-timeout-in-ms"><code class="docutils literal"><span class="pre">slow_query_log_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cross-node-timeout"><code class="docutils literal"><span class="pre">cross_node_timeout</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#streaming-keep-alive-period-in-secs"><code class="docutils literal"><span class="pre">streaming_keep_alive_period_in_secs</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#phi-convict-threshold"><code class="docutils literal"><span class="pre">phi_convict_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#endpoint-snitch"><code class="docutils literal"><span class="pre">endpoint_snitch</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-update-interval-in-ms"><code class="docutils literal"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-reset-interval-in-ms"><code class="docutils literal"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-badness-threshold"><code class="docutils literal"><span class="pre">dynamic_snitch_badness_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-scheduler"><code class="docutils literal"><span class="pre">request_scheduler</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-options"><code class="docutils literal"><span class="pre">request_scheduler_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-id"><code class="docutils literal"><span class="pre">request_scheduler_id</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#server-encryption-options"><code class="docutils literal"><span class="pre">server_encryption_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#client-encryption-options"><code class="docutils literal"><span class="pre">client_encryption_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-compression"><code class="docutils literal"><span class="pre">internode_compression</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#inter-dc-tcp-nodelay"><code class="docutils literal"><span class="pre">inter_dc_tcp_nodelay</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tracetype-query-ttl"><code class="docutils literal"><span class="pre">tracetype_query_ttl</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tracetype-repair-ttl"><code class="docutils literal"><span class="pre">tracetype_repair_ttl</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#gc-log-threshold-in-ms"><code class="docutils literal"><span class="pre">gc_log_threshold_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#enable-user-defined-functions"><code class="docutils literal"><span class="pre">enable_user_defined_functions</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#enable-scripted-user-defined-functions"><code class="docutils literal"><span class="pre">enable_scripted_user_defined_functions</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#enable-materialized-views"><code class="docutils literal"><span class="pre">enable_materialized_views</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#windows-timer-interval"><code class="docutils literal"><span class="pre">windows_timer_interval</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#transparent-data-encryption-options"><code class="docutils literal"><span class="pre">transparent_data_encryption_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tombstone-warn-threshold"><code class="docutils literal"><span class="pre">tombstone_warn_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tombstone-failure-threshold"><code class="docutils literal"><span class="pre">tombstone_failure_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#batch-size-warn-threshold-in-kb"><code class="docutils literal"><span class="pre">batch_size_warn_threshold_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#batch-size-fail-threshold-in-kb"><code class="docutils literal"><span class="pre">batch_size_fail_threshold_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#unlogged-batch-across-partitions-warn-threshold"><code class="docutils literal"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#compaction-large-partition-warning-threshold-mb"><code class="docutils literal"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#gc-warn-threshold-in-ms"><code class="docutils literal"><span class="pre">gc_warn_threshold_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-value-size-in-mb"><code class="docutils literal"><span class="pre">max_value_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#back-pressure-enabled"><code class="docutils literal"><span class="pre">back_pressure_enabled</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#back-pressure-strategy"><code class="docutils literal"><span class="pre">back_pressure_strategy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-strategy"><code class="docutils literal"><span class="pre">otc_coalescing_strategy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-window-us"><code class="docutils literal"><span class="pre">otc_coalescing_window_us</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-enough-coalesced-messages"><code class="docutils literal"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-backlog-expiration-interval-ms"><code class="docutils literal"><span class="pre">otc_backlog_expiration_interval_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cluster-name"><code class="docutils literal notranslate"><span class="pre">cluster_name</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#num-tokens"><code class="docutils literal notranslate"><span class="pre">num_tokens</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#allocate-tokens-for-keyspace"><code class="docutils literal notranslate"><span class="pre">allocate_tokens_for_keyspace</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#initial-token"><code class="docutils literal notranslate"><span class="pre">initial_token</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-enabled"><code class="docutils literal notranslate"><span class="pre">hinted_handoff_enabled</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-disabled-datacenters"><code class="docutils literal notranslate"><span class="pre">hinted_handoff_disabled_datacenters</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-hint-window-in-ms"><code class="docutils literal notranslate"><span class="pre">max_hint_window_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-throttle-in-kb"><code class="docutils literal notranslate"><span class="pre">hinted_handoff_throttle_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-hints-delivery-threads"><code class="docutils literal notranslate"><span class="pre">max_hints_delivery_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hints-directory"><code class="docutils literal notranslate"><span class="pre">hints_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hints-flush-period-in-ms"><code class="docutils literal notranslate"><span class="pre">hints_flush_period_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-hints-file-size-in-mb"><code class="docutils literal notranslate"><span class="pre">max_hints_file_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hints-compression"><code class="docutils literal notranslate"><span class="pre">hints_compression</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#batchlog-replay-throttle-in-kb"><code class="docutils literal notranslate"><span class="pre">batchlog_replay_throttle_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#authenticator"><code class="docutils literal notranslate"><span class="pre">authenticator</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#authorizer"><code class="docutils literal notranslate"><span class="pre">authorizer</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#role-manager"><code class="docutils literal notranslate"><span class="pre">role_manager</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#roles-validity-in-ms"><code class="docutils literal notranslate"><span class="pre">roles_validity_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#roles-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">roles_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#permissions-validity-in-ms"><code class="docutils literal notranslate"><span class="pre">permissions_validity_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#permissions-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">permissions_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#credentials-validity-in-ms"><code class="docutils literal notranslate"><span class="pre">credentials_validity_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#credentials-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">credentials_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#partitioner"><code class="docutils literal notranslate"><span class="pre">partitioner</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#data-file-directories"><code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-directory"><code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-enabled"><code class="docutils literal notranslate"><span class="pre">cdc_enabled</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-raw-directory"><code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#disk-failure-policy"><code class="docutils literal notranslate"><span class="pre">disk_failure_policy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commit-failure-policy"><code class="docutils literal notranslate"><span class="pre">commit_failure_policy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#prepared-statements-cache-size-mb"><code class="docutils literal notranslate"><span class="pre">prepared_statements_cache_size_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#thrift-prepared-statements-cache-size-mb"><code class="docutils literal notranslate"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#key-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">key_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#key-cache-save-period"><code class="docutils literal notranslate"><span class="pre">key_cache_save_period</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#key-cache-keys-to-save"><code class="docutils literal notranslate"><span class="pre">key_cache_keys_to_save</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-class-name"><code class="docutils literal notranslate"><span class="pre">row_cache_class_name</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">row_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-save-period"><code class="docutils literal notranslate"><span class="pre">row_cache_save_period</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-keys-to-save"><code class="docutils literal notranslate"><span class="pre">row_cache_keys_to_save</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">counter_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-cache-save-period"><code class="docutils literal notranslate"><span class="pre">counter_cache_save_period</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-cache-keys-to-save"><code class="docutils literal notranslate"><span class="pre">counter_cache_keys_to_save</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#saved-caches-directory"><code class="docutils literal notranslate"><span class="pre">saved_caches_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync"><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-batch-window-in-ms"><code class="docutils literal notranslate"><span class="pre">commitlog_sync_batch_window_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#id1"><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-period-in-ms"><code class="docutils literal notranslate"><span class="pre">commitlog_sync_period_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-segment-size-in-mb"><code class="docutils literal notranslate"><span class="pre">commitlog_segment_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-compression"><code class="docutils literal notranslate"><span class="pre">commitlog_compression</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#seed-provider"><code class="docutils literal notranslate"><span class="pre">seed_provider</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-reads"><code class="docutils literal notranslate"><span class="pre">concurrent_reads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-writes"><code class="docutils literal notranslate"><span class="pre">concurrent_writes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-counter-writes"><code class="docutils literal notranslate"><span class="pre">concurrent_counter_writes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-materialized-view-writes"><code class="docutils literal notranslate"><span class="pre">concurrent_materialized_view_writes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#file-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">file_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#buffer-pool-use-heap-if-exhausted"><code class="docutils literal notranslate"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#disk-optimization-strategy"><code class="docutils literal notranslate"><span class="pre">disk_optimization_strategy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-heap-space-in-mb"><code class="docutils literal notranslate"><span class="pre">memtable_heap_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-offheap-space-in-mb"><code class="docutils literal notranslate"><span class="pre">memtable_offheap_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-cleanup-threshold"><code class="docutils literal notranslate"><span class="pre">memtable_cleanup_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-allocation-type"><code class="docutils literal notranslate"><span class="pre">memtable_allocation_type</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#repair-session-max-tree-depth"><code class="docutils literal notranslate"><span class="pre">repair_session_max_tree_depth</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-total-space-in-mb"><code class="docutils literal notranslate"><span class="pre">commitlog_total_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-flush-writers"><code class="docutils literal notranslate"><span class="pre">memtable_flush_writers</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-total-space-in-mb"><code class="docutils literal notranslate"><span class="pre">cdc_total_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-free-space-check-interval-ms"><code class="docutils literal notranslate"><span class="pre">cdc_free_space_check_interval_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#index-summary-capacity-in-mb"><code class="docutils literal notranslate"><span class="pre">index_summary_capacity_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#index-summary-resize-interval-in-minutes"><code class="docutils literal notranslate"><span class="pre">index_summary_resize_interval_in_minutes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync"><code class="docutils literal notranslate"><span class="pre">trickle_fsync</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync-interval-in-kb"><code class="docutils literal notranslate"><span class="pre">trickle_fsync_interval_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#storage-port"><code class="docutils literal notranslate"><span class="pre">storage_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#ssl-storage-port"><code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-address"><code class="docutils literal notranslate"><span class="pre">listen_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-interface"><code class="docutils literal notranslate"><span class="pre">listen_interface</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-interface-prefer-ipv6"><code class="docutils literal notranslate"><span class="pre">listen_interface_prefer_ipv6</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#broadcast-address"><code class="docutils literal notranslate"><span class="pre">broadcast_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-on-broadcast-address"><code class="docutils literal notranslate"><span class="pre">listen_on_broadcast_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-authenticator"><code class="docutils literal notranslate"><span class="pre">internode_authenticator</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#start-native-transport"><code class="docutils literal notranslate"><span class="pre">start_native_transport</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-port"><code class="docutils literal notranslate"><span class="pre">native_transport_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-port-ssl"><code class="docutils literal notranslate"><span class="pre">native_transport_port_ssl</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-threads"><code class="docutils literal notranslate"><span class="pre">native_transport_max_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-frame-size-in-mb"><code class="docutils literal notranslate"><span class="pre">native_transport_max_frame_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections"><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections-per-ip"><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#start-rpc"><code class="docutils literal notranslate"><span class="pre">start_rpc</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-address"><code class="docutils literal notranslate"><span class="pre">rpc_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-interface"><code class="docutils literal notranslate"><span class="pre">rpc_interface</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-interface-prefer-ipv6"><code class="docutils literal notranslate"><span class="pre">rpc_interface_prefer_ipv6</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-port"><code class="docutils literal notranslate"><span class="pre">rpc_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#broadcast-rpc-address"><code class="docutils literal notranslate"><span class="pre">broadcast_rpc_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-keepalive"><code class="docutils literal notranslate"><span class="pre">rpc_keepalive</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-server-type"><code class="docutils literal notranslate"><span class="pre">rpc_server_type</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-min-threads"><code class="docutils literal notranslate"><span class="pre">rpc_min_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-max-threads"><code class="docutils literal notranslate"><span class="pre">rpc_max_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-send-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">rpc_send_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-recv-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">rpc_recv_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-send-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">internode_send_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-recv-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">internode_recv_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#thrift-framed-transport-size-in-mb"><code class="docutils literal notranslate"><span class="pre">thrift_framed_transport_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#incremental-backups"><code class="docutils literal notranslate"><span class="pre">incremental_backups</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#snapshot-before-compaction"><code class="docutils literal notranslate"><span class="pre">snapshot_before_compaction</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#auto-snapshot"><code class="docutils literal notranslate"><span class="pre">auto_snapshot</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#column-index-size-in-kb"><code class="docutils literal notranslate"><span class="pre">column_index_size_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#column-index-cache-size-in-kb"><code class="docutils literal notranslate"><span class="pre">column_index_cache_size_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-compactors"><code class="docutils literal notranslate"><span class="pre">concurrent_compactors</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#compaction-throughput-mb-per-sec"><code class="docutils literal notranslate"><span class="pre">compaction_throughput_mb_per_sec</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#sstable-preemptive-open-interval-in-mb"><code class="docutils literal notranslate"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#stream-throughput-outbound-megabits-per-sec"><code class="docutils literal notranslate"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#inter-dc-stream-throughput-outbound-megabits-per-sec"><code class="docutils literal notranslate"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#read-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">read_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#range-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">range_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#write-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">write_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-write-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">counter_write_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cas-contention-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">cas_contention_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#truncate-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">truncate_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#slow-query-log-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">slow_query_log_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cross-node-timeout"><code class="docutils literal notranslate"><span class="pre">cross_node_timeout</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#streaming-keep-alive-period-in-secs"><code class="docutils literal notranslate"><span class="pre">streaming_keep_alive_period_in_secs</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#phi-convict-threshold"><code class="docutils literal notranslate"><span class="pre">phi_convict_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#endpoint-snitch"><code class="docutils literal notranslate"><span class="pre">endpoint_snitch</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-reset-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-badness-threshold"><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_badness_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-scheduler"><code class="docutils literal notranslate"><span class="pre">request_scheduler</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-options"><code class="docutils literal notranslate"><span class="pre">request_scheduler_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-id"><code class="docutils literal notranslate"><span class="pre">request_scheduler_id</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#server-encryption-options"><code class="docutils literal notranslate"><span class="pre">server_encryption_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#client-encryption-options"><code class="docutils literal notranslate"><span class="pre">client_encryption_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-compression"><code class="docutils literal notranslate"><span class="pre">internode_compression</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#inter-dc-tcp-nodelay"><code class="docutils literal notranslate"><span class="pre">inter_dc_tcp_nodelay</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tracetype-query-ttl"><code class="docutils literal notranslate"><span class="pre">tracetype_query_ttl</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tracetype-repair-ttl"><code class="docutils literal notranslate"><span class="pre">tracetype_repair_ttl</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#gc-log-threshold-in-ms"><code class="docutils literal notranslate"><span class="pre">gc_log_threshold_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-user-defined-functions"><code class="docutils literal notranslate"><span class="pre">enable_user_defined_functions</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-scripted-user-defined-functions"><code class="docutils literal notranslate"><span class="pre">enable_scripted_user_defined_functions</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#windows-timer-interval"><code class="docutils literal notranslate"><span class="pre">windows_timer_interval</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#transparent-data-encryption-options"><code class="docutils literal notranslate"><span class="pre">transparent_data_encryption_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tombstone-warn-threshold"><code class="docutils literal notranslate"><span class="pre">tombstone_warn_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tombstone-failure-threshold"><code class="docutils literal notranslate"><span class="pre">tombstone_failure_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#batch-size-warn-threshold-in-kb"><code class="docutils literal notranslate"><span class="pre">batch_size_warn_threshold_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#batch-size-fail-threshold-in-kb"><code class="docutils literal notranslate"><span class="pre">batch_size_fail_threshold_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#unlogged-batch-across-partitions-warn-threshold"><code class="docutils literal notranslate"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#compaction-large-partition-warning-threshold-mb"><code class="docutils literal notranslate"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#gc-warn-threshold-in-ms"><code class="docutils literal notranslate"><span class="pre">gc_warn_threshold_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-value-size-in-mb"><code class="docutils literal notranslate"><span class="pre">max_value_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#back-pressure-enabled"><code class="docutils literal notranslate"><span class="pre">back_pressure_enabled</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#back-pressure-strategy"><code class="docutils literal notranslate"><span class="pre">back_pressure_strategy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-strategy"><code class="docutils literal notranslate"><span class="pre">otc_coalescing_strategy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-window-us"><code class="docutils literal notranslate"><span class="pre">otc_coalescing_window_us</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-enough-coalesced-messages"><code class="docutils literal notranslate"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-backlog-expiration-interval-ms"><code class="docutils literal notranslate"><span class="pre">otc_backlog_expiration_interval_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-materialized-views"><code class="docutils literal notranslate"><span class="pre">enable_materialized_views</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-sasi-indexes"><code class="docutils literal notranslate"><span class="pre">enable_sasi_indexes</span></code></a></li>
 </ul>
 </li>
 </ul>
@@ -309,27 +311,27 @@
   <div class="section" id="cassandra-configuration-file">
 <span id="cassandra-yaml"></span><h1>Cassandra Configuration File<a class="headerlink" href="#cassandra-configuration-file" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="cluster-name">
-<h2><code class="docutils literal"><span class="pre">cluster_name</span></code><a class="headerlink" href="#cluster-name" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cluster_name</span></code><a class="headerlink" href="#cluster-name" title="Permalink to this headline">¶</a></h2>
 <p>The name of the cluster. This is mainly used to prevent machines in
 one logical cluster from joining another.</p>
-<p><em>Default Value:</em> &#8216;Test Cluster&#8217;</p>
+<p><em>Default Value:</em> ‘Test Cluster’</p>
 </div>
 <div class="section" id="num-tokens">
-<h2><code class="docutils literal"><span class="pre">num_tokens</span></code><a class="headerlink" href="#num-tokens" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">num_tokens</span></code><a class="headerlink" href="#num-tokens" title="Permalink to this headline">¶</a></h2>
 <p>This defines the number of tokens randomly assigned to this node on the ring
 The more tokens, relative to other nodes, the larger the proportion of data
 that this node will store. You probably want all nodes to have the same number
 of tokens assuming they have equal hardware capability.</p>
 <p>If you leave this unspecified, Cassandra will use the default of 1 token for legacy compatibility,
 and will use the initial_token as described below.</p>
-<p>Specifying initial_token will override this setting on the node&#8217;s initial start,
+<p>Specifying initial_token will override this setting on the node’s initial start,
 on subsequent starts, this setting will apply even if initial token is set.</p>
 <p>If you already have a cluster with 1 token per node, and wish to migrate to
 multiple tokens per node, see <a class="reference external" href="http://wiki.apache.org/cassandra/Operations">http://wiki.apache.org/cassandra/Operations</a></p>
 <p><em>Default Value:</em> 256</p>
 </div>
 <div class="section" id="allocate-tokens-for-keyspace">
-<h2><code class="docutils literal"><span class="pre">allocate_tokens_for_keyspace</span></code><a class="headerlink" href="#allocate-tokens-for-keyspace" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">allocate_tokens_for_keyspace</span></code><a class="headerlink" href="#allocate-tokens-for-keyspace" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Triggers automatic allocation of num_tokens tokens for this node. The allocation
 algorithm attempts to choose tokens in a way that optimizes replicated load over
@@ -341,39 +343,39 @@
 <p><em>Default Value:</em> KEYSPACE</p>
 </div>
 <div class="section" id="initial-token">
-<h2><code class="docutils literal"><span class="pre">initial_token</span></code><a class="headerlink" href="#initial-token" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">initial_token</span></code><a class="headerlink" href="#initial-token" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>initial_token allows you to specify tokens manually.  While you can use it with
-vnodes (num_tokens &gt; 1, above) &#8211; in which case you should provide a
-comma-separated list &#8211; it&#8217;s primarily used when adding nodes to legacy clusters
+vnodes (num_tokens &gt; 1, above) – in which case you should provide a
+comma-separated list – it’s primarily used when adding nodes to legacy clusters
 that do not have vnodes enabled.</p>
 </div>
 <div class="section" id="hinted-handoff-enabled">
-<h2><code class="docutils literal"><span class="pre">hinted_handoff_enabled</span></code><a class="headerlink" href="#hinted-handoff-enabled" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hinted_handoff_enabled</span></code><a class="headerlink" href="#hinted-handoff-enabled" title="Permalink to this headline">¶</a></h2>
 <p>See <a class="reference external" href="http://wiki.apache.org/cassandra/HintedHandoff">http://wiki.apache.org/cassandra/HintedHandoff</a>
-May either be &#8220;true&#8221; or &#8220;false&#8221; to enable globally</p>
+May either be “true” or “false” to enable globally</p>
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="hinted-handoff-disabled-datacenters">
-<h2><code class="docutils literal"><span class="pre">hinted_handoff_disabled_datacenters</span></code><a class="headerlink" href="#hinted-handoff-disabled-datacenters" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hinted_handoff_disabled_datacenters</span></code><a class="headerlink" href="#hinted-handoff-disabled-datacenters" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>When hinted_handoff_enabled is true, a black list of data centers that will not
 perform hinted handoff</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#    - DC1</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#    - DC1</span>
 <span class="c1">#    - DC2</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="max-hint-window-in-ms">
-<h2><code class="docutils literal"><span class="pre">max_hint_window_in_ms</span></code><a class="headerlink" href="#max-hint-window-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_hint_window_in_ms</span></code><a class="headerlink" href="#max-hint-window-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>this defines the maximum amount of time a dead host will have hints
 generated.  After it has been dead this long, new hints for it will not be
 created until it has been seen alive and gone down again.</p>
 <p><em>Default Value:</em> 10800000 # 3 hours</p>
 </div>
 <div class="section" id="hinted-handoff-throttle-in-kb">
-<h2><code class="docutils literal"><span class="pre">hinted_handoff_throttle_in_kb</span></code><a class="headerlink" href="#hinted-handoff-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hinted_handoff_throttle_in_kb</span></code><a class="headerlink" href="#hinted-handoff-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum throttle in KBs per second, per delivery thread.  This will be
 reduced proportionally to the number of nodes in the cluster.  (If there
 are two nodes in the cluster, each delivery thread will use the maximum
@@ -382,51 +384,51 @@
 <p><em>Default Value:</em> 1024</p>
 </div>
 <div class="section" id="max-hints-delivery-threads">
-<h2><code class="docutils literal"><span class="pre">max_hints_delivery_threads</span></code><a class="headerlink" href="#max-hints-delivery-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_hints_delivery_threads</span></code><a class="headerlink" href="#max-hints-delivery-threads" title="Permalink to this headline">¶</a></h2>
 <p>Number of threads with which to deliver hints;
 Consider increasing this number when you have multi-dc deployments, since
 cross-dc handoff tends to be slower</p>
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="hints-directory">
-<h2><code class="docutils literal"><span class="pre">hints_directory</span></code><a class="headerlink" href="#hints-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hints_directory</span></code><a class="headerlink" href="#hints-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Directory where Cassandra should store hints.
 If not set, the default directory is $CASSANDRA_HOME/data/hints.</p>
 <p><em>Default Value:</em>  /var/lib/cassandra/hints</p>
 </div>
 <div class="section" id="hints-flush-period-in-ms">
-<h2><code class="docutils literal"><span class="pre">hints_flush_period_in_ms</span></code><a class="headerlink" href="#hints-flush-period-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hints_flush_period_in_ms</span></code><a class="headerlink" href="#hints-flush-period-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How often hints should be flushed from the internal buffers to disk.
 Will <em>not</em> trigger fsync.</p>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="max-hints-file-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">max_hints_file_size_in_mb</span></code><a class="headerlink" href="#max-hints-file-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_hints_file_size_in_mb</span></code><a class="headerlink" href="#max-hints-file-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size for a single hints file, in megabytes.</p>
 <p><em>Default Value:</em> 128</p>
 </div>
 <div class="section" id="hints-compression">
-<h2><code class="docutils literal"><span class="pre">hints_compression</span></code><a class="headerlink" href="#hints-compression" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hints_compression</span></code><a class="headerlink" href="#hints-compression" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Compression to apply to the hint files. If omitted, hints files
 will be written uncompressed. LZ4, Snappy, and Deflate compressors
 are supported.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
 <span class="c1">#     parameters:</span>
 <span class="c1">#         -</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="batchlog-replay-throttle-in-kb">
-<h2><code class="docutils literal"><span class="pre">batchlog_replay_throttle_in_kb</span></code><a class="headerlink" href="#batchlog-replay-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">batchlog_replay_throttle_in_kb</span></code><a class="headerlink" href="#batchlog-replay-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum throttle in KBs per second, total. This will be
 reduced proportionally to the number of nodes in the cluster.</p>
 <p><em>Default Value:</em> 1024</p>
 </div>
 <div class="section" id="authenticator">
-<h2><code class="docutils literal"><span class="pre">authenticator</span></code><a class="headerlink" href="#authenticator" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">authenticator</span></code><a class="headerlink" href="#authenticator" title="Permalink to this headline">¶</a></h2>
 <p>Authentication backend, implementing IAuthenticator; used to identify users
 Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthenticator,
 PasswordAuthenticator}.</p>
@@ -440,7 +442,7 @@
 <p><em>Default Value:</em> AllowAllAuthenticator</p>
 </div>
 <div class="section" id="authorizer">
-<h2><code class="docutils literal"><span class="pre">authorizer</span></code><a class="headerlink" href="#authorizer" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">authorizer</span></code><a class="headerlink" href="#authorizer" title="Permalink to this headline">¶</a></h2>
 <p>Authorization backend, implementing IAuthorizer; used to limit access/provide permissions
 Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthorizer,
 CassandraAuthorizer}.</p>
@@ -452,7 +454,7 @@
 <p><em>Default Value:</em> AllowAllAuthorizer</p>
 </div>
 <div class="section" id="role-manager">
-<h2><code class="docutils literal"><span class="pre">role_manager</span></code><a class="headerlink" href="#role-manager" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">role_manager</span></code><a class="headerlink" href="#role-manager" title="Permalink to this headline">¶</a></h2>
 <p>Part of the Authentication &amp; Authorization backend, implementing IRoleManager; used
 to maintain grants and memberships between roles.
 Out of the box, Cassandra provides org.apache.cassandra.auth.CassandraRoleManager,
@@ -466,7 +468,7 @@
 <p><em>Default Value:</em> CassandraRoleManager</p>
 </div>
 <div class="section" id="roles-validity-in-ms">
-<h2><code class="docutils literal"><span class="pre">roles_validity_in_ms</span></code><a class="headerlink" href="#roles-validity-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">roles_validity_in_ms</span></code><a class="headerlink" href="#roles-validity-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>Validity period for roles cache (fetching granted roles can be an expensive
 operation depending on the role manager, CassandraRoleManager is one example)
 Granted roles are cached for authenticated sessions in AuthenticatedUser and
@@ -476,7 +478,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="roles-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">roles_update_interval_in_ms</span></code><a class="headerlink" href="#roles-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">roles_update_interval_in_ms</span></code><a class="headerlink" href="#roles-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Refresh interval for roles cache (if enabled).
 After this interval, cache entries become eligible for refresh. Upon next
@@ -487,7 +489,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="permissions-validity-in-ms">
-<h2><code class="docutils literal"><span class="pre">permissions_validity_in_ms</span></code><a class="headerlink" href="#permissions-validity-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">permissions_validity_in_ms</span></code><a class="headerlink" href="#permissions-validity-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>Validity period for permissions cache (fetching permissions can be an
 expensive operation depending on the authorizer, CassandraAuthorizer is
 one example). Defaults to 2000, set to 0 to disable.
@@ -495,7 +497,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="permissions-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">permissions_update_interval_in_ms</span></code><a class="headerlink" href="#permissions-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">permissions_update_interval_in_ms</span></code><a class="headerlink" href="#permissions-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Refresh interval for permissions cache (if enabled).
 After this interval, cache entries become eligible for refresh. Upon next
@@ -506,7 +508,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="credentials-validity-in-ms">
-<h2><code class="docutils literal"><span class="pre">credentials_validity_in_ms</span></code><a class="headerlink" href="#credentials-validity-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">credentials_validity_in_ms</span></code><a class="headerlink" href="#credentials-validity-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>Validity period for credentials cache. This cache is tightly coupled to
 the provided PasswordAuthenticator implementation of IAuthenticator. If
 another IAuthenticator implementation is configured, this cache will not
@@ -519,7 +521,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="credentials-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">credentials_update_interval_in_ms</span></code><a class="headerlink" href="#credentials-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">credentials_update_interval_in_ms</span></code><a class="headerlink" href="#credentials-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Refresh interval for credentials cache (if enabled).
 After this interval, cache entries become eligible for refresh. Upon next
@@ -530,7 +532,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="partitioner">
-<h2><code class="docutils literal"><span class="pre">partitioner</span></code><a class="headerlink" href="#partitioner" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">partitioner</span></code><a class="headerlink" href="#partitioner" title="Permalink to this headline">¶</a></h2>
 <p>The partitioner is responsible for distributing groups of rows (by
 partition key) across nodes in the cluster.  You should leave this
 alone for new clusters.  The partitioner can NOT be changed without
@@ -542,19 +544,19 @@
 <p><em>Default Value:</em> org.apache.cassandra.dht.Murmur3Partitioner</p>
 </div>
 <div class="section" id="data-file-directories">
-<h2><code class="docutils literal"><span class="pre">data_file_directories</span></code><a class="headerlink" href="#data-file-directories" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code><a class="headerlink" href="#data-file-directories" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Directories where Cassandra should store data on disk.  Cassandra
 will spread data evenly across them, subject to the granularity of
 the configured compaction strategy.
 If not set, the default directory is $CASSANDRA_HOME/data/data.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#     - /var/lib/cassandra/data</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#     - /var/lib/cassandra/data</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="commitlog-directory">
-<h2><code class="docutils literal"><span class="pre">commitlog_directory</span></code><a class="headerlink" href="#commitlog-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code><a class="headerlink" href="#commitlog-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
 commit log.  when running on magnetic HDD, this should be a
 separate spindle than the data directories.
@@ -562,14 +564,14 @@
 <p><em>Default Value:</em>  /var/lib/cassandra/commitlog</p>
 </div>
 <div class="section" id="cdc-enabled">
-<h2><code class="docutils literal"><span class="pre">cdc_enabled</span></code><a class="headerlink" href="#cdc-enabled" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_enabled</span></code><a class="headerlink" href="#cdc-enabled" title="Permalink to this headline">¶</a></h2>
 <p>Enable / disable CDC functionality on a per-node basis. This modifies the logic used
 for write path allocation rejection (standard: never reject. cdc: reject Mutation
 containing a CDC-enabled table if at space limit in cdc_raw_directory).</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="cdc-raw-directory">
-<h2><code class="docutils literal"><span class="pre">cdc_raw_directory</span></code><a class="headerlink" href="#cdc-raw-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code><a class="headerlink" href="#cdc-raw-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>CommitLogSegments are moved to this directory on flush if cdc_enabled: true and the
 segment contains mutations for a CDC-enabled table. This should be placed on a
@@ -578,7 +580,7 @@
 <p><em>Default Value:</em>  /var/lib/cassandra/cdc_raw</p>
 </div>
 <div class="section" id="disk-failure-policy">
-<h2><code class="docutils literal"><span class="pre">disk_failure_policy</span></code><a class="headerlink" href="#disk-failure-policy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">disk_failure_policy</span></code><a class="headerlink" href="#disk-failure-policy" title="Permalink to this headline">¶</a></h2>
 <p>Policy for data disk failures:</p>
 <dl class="docutils">
 <dt>die</dt>
@@ -600,7 +602,7 @@
 <p><em>Default Value:</em> stop</p>
 </div>
 <div class="section" id="commit-failure-policy">
-<h2><code class="docutils literal"><span class="pre">commit_failure_policy</span></code><a class="headerlink" href="#commit-failure-policy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commit_failure_policy</span></code><a class="headerlink" href="#commit-failure-policy" title="Permalink to this headline">¶</a></h2>
 <p>Policy for commit disk failures:</p>
 <dl class="docutils">
 <dt>die</dt>
@@ -617,41 +619,41 @@
 <p><em>Default Value:</em> stop</p>
 </div>
 <div class="section" id="prepared-statements-cache-size-mb">
-<h2><code class="docutils literal"><span class="pre">prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the native protocol prepared statement cache</p>
-<p>Valid values are either &#8220;auto&#8221; (omitting the value) or a value greater 0.</p>
+<p>Valid values are either “auto” (omitting the value) or a value greater 0.</p>
 <p>Note that specifying a too large value will result in long running GCs and possbily
 out-of-memory errors. Keep the value at a small fraction of the heap.</p>
-<p>If you constantly see &#8220;prepared statements discarded in the last minute because
-cache limit reached&#8221; messages, the first step is to investigate the root cause
+<p>If you constantly see “prepared statements discarded in the last minute because
+cache limit reached” messages, the first step is to investigate the root cause
 of these messages and check whether prepared statements are used correctly -
 i.e. use bind markers for variable parts.</p>
 <p>Do only change the default value, if you really have more prepared statements than
 fit in the cache. In most cases it is not neccessary to change this value.
 Constantly re-preparing statements is a performance penalty.</p>
-<p>Default value (&#8220;auto&#8221;) is 1/256th of the heap or 10MB, whichever is greater</p>
+<p>Default value (“auto”) is 1/256th of the heap or 10MB, whichever is greater</p>
 </div>
 <div class="section" id="thrift-prepared-statements-cache-size-mb">
-<h2><code class="docutils literal"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#thrift-prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#thrift-prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the Thrift prepared statement cache</p>
-<p>If you do not use Thrift at all, it is safe to leave this value at &#8220;auto&#8221;.</p>
-<p>See description of &#8216;prepared_statements_cache_size_mb&#8217; above for more information.</p>
-<p>Default value (&#8220;auto&#8221;) is 1/256th of the heap or 10MB, whichever is greater</p>
+<p>If you do not use Thrift at all, it is safe to leave this value at “auto”.</p>
+<p>See description of ‘prepared_statements_cache_size_mb’ above for more information.</p>
+<p>Default value (“auto”) is 1/256th of the heap or 10MB, whichever is greater</p>
 </div>
 <div class="section" id="key-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">key_cache_size_in_mb</span></code><a class="headerlink" href="#key-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">key_cache_size_in_mb</span></code><a class="headerlink" href="#key-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the key cache in memory.</p>
 <p>Each key cache hit saves 1 seek and each row cache hit saves 2 seeks at the
 minimum, sometimes more. The key cache is fairly tiny for the amount of
-time it saves, so it&#8217;s worthwhile to use it at large numbers.
+time it saves, so it’s worthwhile to use it at large numbers.
 The row cache saves even more time, but must contain the entire row,
-so it is extremely space-intensive. It&#8217;s best to only use the
+so it is extremely space-intensive. It’s best to only use the
 row cache if you have hot rows or static rows.</p>
 <p>NOTE: if you reduce the size, you may not get you hottest keys loaded on startup.</p>
-<p>Default value is empty to make it &#8220;auto&#8221; (min(5% of Heap (in MB), 100MB)). Set to 0 to disable key cache.</p>
+<p>Default value is empty to make it “auto” (min(5% of Heap (in MB), 100MB)). Set to 0 to disable key cache.</p>
 </div>
 <div class="section" id="key-cache-save-period">
-<h2><code class="docutils literal"><span class="pre">key_cache_save_period</span></code><a class="headerlink" href="#key-cache-save-period" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">key_cache_save_period</span></code><a class="headerlink" href="#key-cache-save-period" title="Permalink to this headline">¶</a></h2>
 <p>Duration in seconds after which Cassandra should
 save the key cache. Caches are saved to saved_caches_directory as
 specified in this configuration file.</p>
@@ -662,14 +664,14 @@
 <p><em>Default Value:</em> 14400</p>
 </div>
 <div class="section" id="key-cache-keys-to-save">
-<h2><code class="docutils literal"><span class="pre">key_cache_keys_to_save</span></code><a class="headerlink" href="#key-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">key_cache_keys_to_save</span></code><a class="headerlink" href="#key-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of keys from the key cache to save
 Disabled by default, meaning all keys are going to be saved</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="row-cache-class-name">
-<h2><code class="docutils literal"><span class="pre">row_cache_class_name</span></code><a class="headerlink" href="#row-cache-class-name" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_class_name</span></code><a class="headerlink" href="#row-cache-class-name" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Row cache implementation class name. Available implementations:</p>
 <dl class="docutils">
@@ -682,7 +684,7 @@
 <p><em>Default Value:</em> org.apache.cassandra.cache.OHCProvider</p>
 </div>
 <div class="section" id="row-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">row_cache_size_in_mb</span></code><a class="headerlink" href="#row-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_size_in_mb</span></code><a class="headerlink" href="#row-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the row cache in memory.
 Please note that OHC cache implementation requires some additional off-heap memory to manage
 the map structures and some in-flight memory during operations before/after cache entries can be
@@ -693,7 +695,7 @@
 <p><em>Default Value:</em> 0</p>
 </div>
 <div class="section" id="row-cache-save-period">
-<h2><code class="docutils literal"><span class="pre">row_cache_save_period</span></code><a class="headerlink" href="#row-cache-save-period" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_save_period</span></code><a class="headerlink" href="#row-cache-save-period" title="Permalink to this headline">¶</a></h2>
 <p>Duration in seconds after which Cassandra should save the row cache.
 Caches are saved to saved_caches_directory as specified in this configuration file.</p>
 <p>Saved caches greatly improve cold-start speeds, and is relatively cheap in
@@ -703,27 +705,27 @@
 <p><em>Default Value:</em> 0</p>
 </div>
 <div class="section" id="row-cache-keys-to-save">
-<h2><code class="docutils literal"><span class="pre">row_cache_keys_to_save</span></code><a class="headerlink" href="#row-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_keys_to_save</span></code><a class="headerlink" href="#row-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of keys from the row cache to save.
 Specify 0 (which is the default), meaning all keys are going to be saved</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="counter-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">counter_cache_size_in_mb</span></code><a class="headerlink" href="#counter-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_cache_size_in_mb</span></code><a class="headerlink" href="#counter-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the counter cache in memory.</p>
-<p>Counter cache helps to reduce counter locks&#8217; contention for hot counter cells.
+<p>Counter cache helps to reduce counter locks’ contention for hot counter cells.
 In case of RF = 1 a counter cache hit will cause Cassandra to skip the read before
 write entirely. With RF &gt; 1 a counter cache hit will still help to reduce the duration
 of the lock hold, helping with hot counter cell updates, but will not allow skipping
 the read entirely. Only the local (clock, count) tuple of a counter cell is kept
-in memory, not the whole counter, so it&#8217;s relatively cheap.</p>
+in memory, not the whole counter, so it’s relatively cheap.</p>
 <p>NOTE: if you reduce the size, you may not get you hottest keys loaded on startup.</p>
-<p>Default value is empty to make it &#8220;auto&#8221; (min(2.5% of Heap (in MB), 50MB)). Set to 0 to disable counter cache.
+<p>Default value is empty to make it “auto” (min(2.5% of Heap (in MB), 50MB)). Set to 0 to disable counter cache.
 NOTE: if you perform counter deletes and rely on low gcgs, you should disable the counter cache.</p>
 </div>
 <div class="section" id="counter-cache-save-period">
-<h2><code class="docutils literal"><span class="pre">counter_cache_save_period</span></code><a class="headerlink" href="#counter-cache-save-period" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_cache_save_period</span></code><a class="headerlink" href="#counter-cache-save-period" title="Permalink to this headline">¶</a></h2>
 <p>Duration in seconds after which Cassandra should
 save the counter cache (keys only). Caches are saved to saved_caches_directory as
 specified in this configuration file.</p>
@@ -731,24 +733,24 @@
 <p><em>Default Value:</em> 7200</p>
 </div>
 <div class="section" id="counter-cache-keys-to-save">
-<h2><code class="docutils literal"><span class="pre">counter_cache_keys_to_save</span></code><a class="headerlink" href="#counter-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_cache_keys_to_save</span></code><a class="headerlink" href="#counter-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of keys from the counter cache to save
 Disabled by default, meaning all keys are going to be saved</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="saved-caches-directory">
-<h2><code class="docutils literal"><span class="pre">saved_caches_directory</span></code><a class="headerlink" href="#saved-caches-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">saved_caches_directory</span></code><a class="headerlink" href="#saved-caches-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>saved caches
 If not set, the default directory is $CASSANDRA_HOME/data/saved_caches.</p>
 <p><em>Default Value:</em>  /var/lib/cassandra/saved_caches</p>
 </div>
 <div class="section" id="commitlog-sync">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#commitlog-sync" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#commitlog-sync" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
-<p>commitlog_sync may be either &#8220;periodic&#8221; or &#8220;batch.&#8221;</p>
-<p>When in batch mode, Cassandra won&#8217;t ack writes until the commit log
+<p>commitlog_sync may be either “periodic” or “batch.”</p>
+<p>When in batch mode, Cassandra won’t ack writes until the commit log
 has been fsynced to disk.  It will wait
 commitlog_sync_batch_window_in_ms milliseconds between fsyncs.
 This window should be kept short because the writer threads will
@@ -757,23 +759,23 @@
 <p><em>Default Value:</em> batch</p>
 </div>
 <div class="section" id="commitlog-sync-batch-window-in-ms">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync_batch_window_in_ms</span></code><a class="headerlink" href="#commitlog-sync-batch-window-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync_batch_window_in_ms</span></code><a class="headerlink" href="#commitlog-sync-batch-window-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="id1">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
-<p>the other option is &#8220;periodic&#8221; where writes may be acked immediately
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
+<p>the other option is “periodic” where writes may be acked immediately
 and the CommitLog is simply synced every commitlog_sync_period_in_ms
 milliseconds.</p>
 <p><em>Default Value:</em> periodic</p>
 </div>
 <div class="section" id="commitlog-sync-period-in-ms">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync_period_in_ms</span></code><a class="headerlink" href="#commitlog-sync-period-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync_period_in_ms</span></code><a class="headerlink" href="#commitlog-sync-period-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="commitlog-segment-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">commitlog_segment_size_in_mb</span></code><a class="headerlink" href="#commitlog-segment-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_segment_size_in_mb</span></code><a class="headerlink" href="#commitlog-segment-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>The size of the individual commitlog file segments.  A commitlog
 segment may be archived, deleted, or recycled once all the data
 in it (potentially from each columnfamily in the system) has been
@@ -790,24 +792,24 @@
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="commitlog-compression">
-<h2><code class="docutils literal"><span class="pre">commitlog_compression</span></code><a class="headerlink" href="#commitlog-compression" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_compression</span></code><a class="headerlink" href="#commitlog-compression" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Compression to apply to the commit log. If omitted, the commit log
 will be written uncompressed.  LZ4, Snappy, and Deflate compressors
 are supported.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
 <span class="c1">#     parameters:</span>
 <span class="c1">#         -</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="seed-provider">
-<h2><code class="docutils literal"><span class="pre">seed_provider</span></code><a class="headerlink" href="#seed-provider" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">seed_provider</span></code><a class="headerlink" href="#seed-provider" title="Permalink to this headline">¶</a></h2>
 <p>any class that implements the SeedProvider interface and has a
 constructor that takes a Map&lt;String, String&gt; of parameters will do.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1"># Addresses of hosts that are deemed contact points.</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1"># Addresses of hosts that are deemed contact points.</span>
 <span class="c1"># Cassandra nodes use this list of hosts to find each other and learn</span>
 <span class="c1"># the topology of the ring.  You must change this if you are running</span>
 <span class="c1"># multiple nodes!</span>
@@ -820,35 +822,35 @@
 </div>
 </div>
 <div class="section" id="concurrent-reads">
-<h2><code class="docutils literal"><span class="pre">concurrent_reads</span></code><a class="headerlink" href="#concurrent-reads" title="Permalink to this headline">¶</a></h2>
-<p>For workloads with more data than can fit in memory, Cassandra&#8217;s
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_reads</span></code><a class="headerlink" href="#concurrent-reads" title="Permalink to this headline">¶</a></h2>
+<p>For workloads with more data than can fit in memory, Cassandra’s
 bottleneck will be reads that need to fetch data from
-disk. &#8220;concurrent_reads&#8221; should be set to (16 * number_of_drives) in
+disk. “concurrent_reads” should be set to (16 * number_of_drives) in
 order to allow the operations to enqueue low enough in the stack
 that the OS and drives can reorder them. Same applies to
-&#8220;concurrent_counter_writes&#8221;, since counter writes read the current
+“concurrent_counter_writes”, since counter writes read the current
 values before incrementing and writing them back.</p>
 <p>On the other hand, since writes are almost never IO bound, the ideal
-number of &#8220;concurrent_writes&#8221; is dependent on the number of cores in
+number of “concurrent_writes” is dependent on the number of cores in
 your system; (8 * number_of_cores) is a good rule of thumb.</p>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="concurrent-writes">
-<h2><code class="docutils literal"><span class="pre">concurrent_writes</span></code><a class="headerlink" href="#concurrent-writes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_writes</span></code><a class="headerlink" href="#concurrent-writes" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="concurrent-counter-writes">
-<h2><code class="docutils literal"><span class="pre">concurrent_counter_writes</span></code><a class="headerlink" href="#concurrent-counter-writes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_counter_writes</span></code><a class="headerlink" href="#concurrent-counter-writes" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="concurrent-materialized-view-writes">
-<h2><code class="docutils literal"><span class="pre">concurrent_materialized_view_writes</span></code><a class="headerlink" href="#concurrent-materialized-view-writes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_materialized_view_writes</span></code><a class="headerlink" href="#concurrent-materialized-view-writes" title="Permalink to this headline">¶</a></h2>
 <p>For materialized view writes, as there is a read involved, so this should
 be limited by the less of concurrent reads or concurrent writes.</p>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="file-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">file_cache_size_in_mb</span></code><a class="headerlink" href="#file-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">file_cache_size_in_mb</span></code><a class="headerlink" href="#file-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Maximum memory to use for sstable chunk cache and buffer pooling.
 32MB of this are reserved for pooling buffers, the rest is used as an
@@ -861,7 +863,7 @@
 <p><em>Default Value:</em> 512</p>
 </div>
 <div class="section" id="buffer-pool-use-heap-if-exhausted">
-<h2><code class="docutils literal"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code><a class="headerlink" href="#buffer-pool-use-heap-if-exhausted" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code><a class="headerlink" href="#buffer-pool-use-heap-if-exhausted" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Flag indicating whether to allocate on or off heap when the sstable buffer
 pool is exhausted, that is when it has exceeded the maximum memory
@@ -869,7 +871,7 @@
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="disk-optimization-strategy">
-<h2><code class="docutils literal"><span class="pre">disk_optimization_strategy</span></code><a class="headerlink" href="#disk-optimization-strategy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">disk_optimization_strategy</span></code><a class="headerlink" href="#disk-optimization-strategy" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The strategy for optimizing disk read
 Possible values are:
@@ -878,7 +880,7 @@
 <p><em>Default Value:</em> ssd</p>
 </div>
 <div class="section" id="memtable-heap-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">memtable_heap_space_in_mb</span></code><a class="headerlink" href="#memtable-heap-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_heap_space_in_mb</span></code><a class="headerlink" href="#memtable-heap-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Total permitted memory to use for memtables. Cassandra will stop
 accepting writes when the limit is exceeded until a flush completes,
@@ -887,12 +889,12 @@
 <p><em>Default Value:</em> 2048</p>
 </div>
 <div class="section" id="memtable-offheap-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">memtable_offheap_space_in_mb</span></code><a class="headerlink" href="#memtable-offheap-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_offheap_space_in_mb</span></code><a class="headerlink" href="#memtable-offheap-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p><em>Default Value:</em> 2048</p>
 </div>
 <div class="section" id="memtable-cleanup-threshold">
-<h2><code class="docutils literal"><span class="pre">memtable_cleanup_threshold</span></code><a class="headerlink" href="#memtable-cleanup-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_cleanup_threshold</span></code><a class="headerlink" href="#memtable-cleanup-threshold" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>memtable_cleanup_threshold is deprecated. The default calculation
 is the only reasonable choice. See the comments on  memtable_flush_writers
@@ -906,7 +908,7 @@
 <p><em>Default Value:</em> 0.11</p>
 </div>
 <div class="section" id="memtable-allocation-type">
-<h2><code class="docutils literal"><span class="pre">memtable_allocation_type</span></code><a class="headerlink" href="#memtable-allocation-type" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_allocation_type</span></code><a class="headerlink" href="#memtable-allocation-type" title="Permalink to this headline">¶</a></h2>
 <p>Specify the way Cassandra allocates and manages memtable memory.
 Options are:</p>
 <dl class="docutils">
@@ -919,8 +921,21 @@
 </dl>
 <p><em>Default Value:</em> heap_buffers</p>
 </div>
+<div class="section" id="repair-session-max-tree-depth">
+<h2><code class="docutils literal notranslate"><span class="pre">repair_session_max_tree_depth</span></code><a class="headerlink" href="#repair-session-max-tree-depth" title="Permalink to this headline">¶</a></h2>
+<p><em>This option is commented out by default.</em></p>
+<p>Limits the maximum Merkle tree depth to avoid consuming too much
+memory during repairs.</p>
+<p>The default setting of 18 generates trees of maximum size around
+50 MiB / tree. If you are running out of memory during repairs consider
+lowering this to 15 (~6 MiB / tree) or lower, but try not to lower it
+too much past that or you will lose too much resolution and stream
+too much redundant data during repair. Cannot be set lower than 10.</p>
+<p>For more details see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-14096">https://issues.apache.org/jira/browse/CASSANDRA-14096</a>.</p>
+<p><em>Default Value:</em> 18</p>
+</div>
 <div class="section" id="commitlog-total-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">commitlog_total_space_in_mb</span></code><a class="headerlink" href="#commitlog-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_total_space_in_mb</span></code><a class="headerlink" href="#commitlog-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Total space to use for commit logs on disk.</p>
 <p>If space gets above this value, Cassandra will flush every dirty CF
@@ -931,7 +946,7 @@
 <p><em>Default Value:</em> 8192</p>
 </div>
 <div class="section" id="memtable-flush-writers">
-<h2><code class="docutils literal"><span class="pre">memtable_flush_writers</span></code><a class="headerlink" href="#memtable-flush-writers" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_flush_writers</span></code><a class="headerlink" href="#memtable-flush-writers" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>This sets the number of memtable flush writer threads per disk
 as well as the total number of memtables that can be flushed concurrently.
@@ -957,7 +972,7 @@
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="cdc-total-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">cdc_total_space_in_mb</span></code><a class="headerlink" href="#cdc-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_total_space_in_mb</span></code><a class="headerlink" href="#cdc-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Total space to use for change-data-capture logs on disk.</p>
 <p>If space gets above this value, Cassandra will throw WriteTimeoutException
@@ -968,7 +983,7 @@
 <p><em>Default Value:</em> 4096</p>
 </div>
 <div class="section" id="cdc-free-space-check-interval-ms">
-<h2><code class="docutils literal"><span class="pre">cdc_free_space_check_interval_ms</span></code><a class="headerlink" href="#cdc-free-space-check-interval-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_free_space_check_interval_ms</span></code><a class="headerlink" href="#cdc-free-space-check-interval-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>When we hit our cdc_raw limit and the CDCCompactor is either running behind
 or experiencing backpressure, we check at the following interval to see if any
@@ -976,7 +991,7 @@
 <p><em>Default Value:</em> 250</p>
 </div>
 <div class="section" id="index-summary-capacity-in-mb">
-<h2><code class="docutils literal"><span class="pre">index_summary_capacity_in_mb</span></code><a class="headerlink" href="#index-summary-capacity-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">index_summary_capacity_in_mb</span></code><a class="headerlink" href="#index-summary-capacity-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>A fixed memory pool size in MB for for SSTable index summaries. If left
 empty, this will default to 5% of the heap size. If the memory usage of
 all index summaries exceeds this limit, SSTables with low read rates will
@@ -985,7 +1000,7 @@
 more than this amount of memory.</p>
 </div>
 <div class="section" id="index-summary-resize-interval-in-minutes">
-<h2><code class="docutils literal"><span class="pre">index_summary_resize_interval_in_minutes</span></code><a class="headerlink" href="#index-summary-resize-interval-in-minutes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">index_summary_resize_interval_in_minutes</span></code><a class="headerlink" href="#index-summary-resize-interval-in-minutes" title="Permalink to this headline">¶</a></h2>
 <p>How frequently index summaries should be resampled.  This is done
 periodically to redistribute memory from the fixed-size pool to sstables
 proportional their recent read rates.  Setting to -1 will disable this
@@ -993,7 +1008,7 @@
 <p><em>Default Value:</em> 60</p>
 </div>
 <div class="section" id="trickle-fsync">
-<h2><code class="docutils literal"><span class="pre">trickle_fsync</span></code><a class="headerlink" href="#trickle-fsync" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">trickle_fsync</span></code><a class="headerlink" href="#trickle-fsync" title="Permalink to this headline">¶</a></h2>
 <p>Whether to, when doing sequential writing, fsync() at intervals in
 order to force the operating system to flush the dirty
 buffers. Enable this to avoid sudden dirty buffer flushing from
@@ -1002,24 +1017,24 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="trickle-fsync-interval-in-kb">
-<h2><code class="docutils literal"><span class="pre">trickle_fsync_interval_in_kb</span></code><a class="headerlink" href="#trickle-fsync-interval-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">trickle_fsync_interval_in_kb</span></code><a class="headerlink" href="#trickle-fsync-interval-in-kb" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 10240</p>
 </div>
 <div class="section" id="storage-port">
-<h2><code class="docutils literal"><span class="pre">storage_port</span></code><a class="headerlink" href="#storage-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">storage_port</span></code><a class="headerlink" href="#storage-port" title="Permalink to this headline">¶</a></h2>
 <p>TCP port, for commands and data
 For security reasons, you should not expose this port to the internet.  Firewall it if needed.</p>
 <p><em>Default Value:</em> 7000</p>
 </div>
 <div class="section" id="ssl-storage-port">
-<h2><code class="docutils literal"><span class="pre">ssl_storage_port</span></code><a class="headerlink" href="#ssl-storage-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code><a class="headerlink" href="#ssl-storage-port" title="Permalink to this headline">¶</a></h2>
 <p>SSL port, for encrypted communication.  Unused unless enabled in
 encryption_options
 For security reasons, you should not expose this port to the internet.  Firewall it if needed.</p>
 <p><em>Default Value:</em> 7001</p>
 </div>
 <div class="section" id="listen-address">
-<h2><code class="docutils literal"><span class="pre">listen_address</span></code><a class="headerlink" href="#listen-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_address</span></code><a class="headerlink" href="#listen-address" title="Permalink to this headline">¶</a></h2>
 <p>Address or interface to bind to and tell other Cassandra nodes to connect to.
 You _must_ change this if you want multiple nodes to be able to communicate!</p>
 <p>Set listen_address OR listen_interface, not both.</p>
@@ -1031,14 +1046,14 @@
 <p><em>Default Value:</em> localhost</p>
 </div>
 <div class="section" id="listen-interface">
-<h2><code class="docutils literal"><span class="pre">listen_interface</span></code><a class="headerlink" href="#listen-interface" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_interface</span></code><a class="headerlink" href="#listen-interface" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Set listen_address OR listen_interface, not both. Interfaces must correspond
 to a single address, IP aliasing is not supported.</p>
 <p><em>Default Value:</em> eth0</p>
 </div>
 <div class="section" id="listen-interface-prefer-ipv6">
-<h2><code class="docutils literal"><span class="pre">listen_interface_prefer_ipv6</span></code><a class="headerlink" href="#listen-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_interface_prefer_ipv6</span></code><a class="headerlink" href="#listen-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>If you choose to specify the interface by name and the interface has an ipv4 and an ipv6 address
 you can specify which should be chosen using listen_interface_prefer_ipv6. If false the first ipv4
@@ -1047,14 +1062,14 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="broadcast-address">
-<h2><code class="docutils literal"><span class="pre">broadcast_address</span></code><a class="headerlink" href="#broadcast-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">broadcast_address</span></code><a class="headerlink" href="#broadcast-address" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Address to broadcast to other Cassandra nodes
 Leaving this blank will set it to the same value as listen_address</p>
 <p><em>Default Value:</em> 1.2.3.4</p>
 </div>
 <div class="section" id="listen-on-broadcast-address">
-<h2><code class="docutils literal"><span class="pre">listen_on_broadcast_address</span></code><a class="headerlink" href="#listen-on-broadcast-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_on_broadcast_address</span></code><a class="headerlink" href="#listen-on-broadcast-address" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>When using multiple physical network interfaces, set this
 to true to listen on broadcast_address in addition to
@@ -1065,27 +1080,27 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="internode-authenticator">
-<h2><code class="docutils literal"><span class="pre">internode_authenticator</span></code><a class="headerlink" href="#internode-authenticator" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_authenticator</span></code><a class="headerlink" href="#internode-authenticator" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Internode authentication backend, implementing IInternodeAuthenticator;
 used to allow/disallow connections from peer nodes.</p>
 <p><em>Default Value:</em> org.apache.cassandra.auth.AllowAllInternodeAuthenticator</p>
 </div>
 <div class="section" id="start-native-transport">
-<h2><code class="docutils literal"><span class="pre">start_native_transport</span></code><a class="headerlink" href="#start-native-transport" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">start_native_transport</span></code><a class="headerlink" href="#start-native-transport" title="Permalink to this headline">¶</a></h2>
 <p>Whether to start the native transport server.
 Please note that the address on which the native transport is bound is the
 same as the rpc_address. The port however is different and specified below.</p>
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="native-transport-port">
-<h2><code class="docutils literal"><span class="pre">native_transport_port</span></code><a class="headerlink" href="#native-transport-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_port</span></code><a class="headerlink" href="#native-transport-port" title="Permalink to this headline">¶</a></h2>
 <p>port for the CQL native transport to listen for clients on
 For security reasons, you should not expose this port to the internet.  Firewall it if needed.</p>
 <p><em>Default Value:</em> 9042</p>
 </div>
 <div class="section" id="native-transport-port-ssl">
-<h2><code class="docutils literal"><span class="pre">native_transport_port_ssl</span></code><a class="headerlink" href="#native-transport-port-ssl" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_port_ssl</span></code><a class="headerlink" href="#native-transport-port-ssl" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
 Enabling native transport encryption in client_encryption_options allows you to either use
 encryption for the standard port or to use a dedicated, additional port along with the unencrypted
@@ -1097,7 +1112,7 @@
 <p><em>Default Value:</em> 9142</p>
 </div>
 <div class="section" id="native-transport-max-threads">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_threads</span></code><a class="headerlink" href="#native-transport-max-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_threads</span></code><a class="headerlink" href="#native-transport-max-threads" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
 The maximum threads for handling requests when the native transport is used.
 This is similar to rpc_max_threads though the default differs slightly (and
@@ -1106,34 +1121,34 @@
 <p><em>Default Value:</em> 128</p>
 </div>
 <div class="section" id="native-transport-max-frame-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_frame_size_in_mb</span></code><a class="headerlink" href="#native-transport-max-frame-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_frame_size_in_mb</span></code><a class="headerlink" href="#native-transport-max-frame-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The maximum size of allowed frame. Frame (requests) larger than this will
-be rejected as invalid. The default is 256MB. If you&#8217;re changing this parameter,
+be rejected as invalid. The default is 256MB. If you’re changing this parameter,
 you may want to adjust max_value_size_in_mb accordingly. This should be positive and less than 2048.</p>
 <p><em>Default Value:</em> 256</p>
 </div>
 <div class="section" id="native-transport-max-concurrent-connections">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The maximum number of concurrent client connections.
 The default is -1, which means unlimited.</p>
 <p><em>Default Value:</em> -1</p>
 </div>
 <div class="section" id="native-transport-max-concurrent-connections-per-ip">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections-per-ip" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections-per-ip" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The maximum number of concurrent client connections per source ip.
 The default is -1, which means unlimited.</p>
 <p><em>Default Value:</em> -1</p>
 </div>
 <div class="section" id="start-rpc">
-<h2><code class="docutils literal"><span class="pre">start_rpc</span></code><a class="headerlink" href="#start-rpc" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">start_rpc</span></code><a class="headerlink" href="#start-rpc" title="Permalink to this headline">¶</a></h2>
 <p>Whether to start the thrift rpc server.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="rpc-address">
-<h2><code class="docutils literal"><span class="pre">rpc_address</span></code><a class="headerlink" href="#rpc-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_address</span></code><a class="headerlink" href="#rpc-address" title="Permalink to this headline">¶</a></h2>
 <p>The address or interface to bind the Thrift RPC service and native transport
 server to.</p>
 <p>Set rpc_address OR rpc_interface, not both.</p>
@@ -1145,14 +1160,14 @@
 <p><em>Default Value:</em> localhost</p>
 </div>
 <div class="section" id="rpc-interface">
-<h2><code class="docutils literal"><span class="pre">rpc_interface</span></code><a class="headerlink" href="#rpc-interface" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_interface</span></code><a class="headerlink" href="#rpc-interface" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Set rpc_address OR rpc_interface, not both. Interfaces must correspond
 to a single address, IP aliasing is not supported.</p>
 <p><em>Default Value:</em> eth1</p>
 </div>
 <div class="section" id="rpc-interface-prefer-ipv6">
-<h2><code class="docutils literal"><span class="pre">rpc_interface_prefer_ipv6</span></code><a class="headerlink" href="#rpc-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_interface_prefer_ipv6</span></code><a class="headerlink" href="#rpc-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>If you choose to specify the interface by name and the interface has an ipv4 and an ipv6 address
 you can specify which should be chosen using rpc_interface_prefer_ipv6. If false the first ipv4
@@ -1161,12 +1176,12 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="rpc-port">
-<h2><code class="docutils literal"><span class="pre">rpc_port</span></code><a class="headerlink" href="#rpc-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_port</span></code><a class="headerlink" href="#rpc-port" title="Permalink to this headline">¶</a></h2>
 <p>port for Thrift to listen for clients on</p>
 <p><em>Default Value:</em> 9160</p>
 </div>
 <div class="section" id="broadcast-rpc-address">
-<h2><code class="docutils literal"><span class="pre">broadcast_rpc_address</span></code><a class="headerlink" href="#broadcast-rpc-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">broadcast_rpc_address</span></code><a class="headerlink" href="#broadcast-rpc-address" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>RPC address to broadcast to drivers and other Cassandra nodes. This cannot
 be set to 0.0.0.0. If left blank, this will be set to the value of
@@ -1175,12 +1190,12 @@
 <p><em>Default Value:</em> 1.2.3.4</p>
 </div>
 <div class="section" id="rpc-keepalive">
-<h2><code class="docutils literal"><span class="pre">rpc_keepalive</span></code><a class="headerlink" href="#rpc-keepalive" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_keepalive</span></code><a class="headerlink" href="#rpc-keepalive" title="Permalink to this headline">¶</a></h2>
 <p>enable or disable keepalive on rpc/native connections</p>
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="rpc-server-type">
-<h2><code class="docutils literal"><span class="pre">rpc_server_type</span></code><a class="headerlink" href="#rpc-server-type" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_server_type</span></code><a class="headerlink" href="#rpc-server-type" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra provides two out-of-the-box options for the RPC Server:</p>
 <dl class="docutils">
 <dt>sync</dt>
@@ -1189,7 +1204,7 @@
 per thread, and that will correspond to your use of virtual memory (but physical memory
 may be limited depending on use of stack space).</dd>
 <dt>hsha</dt>
-<dd>Stands for &#8220;half synchronous, half asynchronous.&#8221; All thrift clients are handled
+<dd>Stands for “half synchronous, half asynchronous.” All thrift clients are handled
 asynchronously using a small number of threads that does not vary with the amount
 of thrift clients (and thus scales well to many clients). The rpc requests are still
 synchronous (one thread per active request). If hsha is selected then it is essential
@@ -1202,7 +1217,7 @@
 <p><em>Default Value:</em> sync</p>
 </div>
 <div class="section" id="rpc-min-threads">
-<h2><code class="docutils literal"><span class="pre">rpc_min_threads</span></code><a class="headerlink" href="#rpc-min-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_min_threads</span></code><a class="headerlink" href="#rpc-min-threads" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Uncomment rpc_min|max_thread to set request pool size limits.</p>
 <p>Regardless of your choice of RPC server (see above), the number of maximum requests in the
@@ -1214,21 +1229,21 @@
 <p><em>Default Value:</em> 16</p>
 </div>
 <div class="section" id="rpc-max-threads">
-<h2><code class="docutils literal"><span class="pre">rpc_max_threads</span></code><a class="headerlink" href="#rpc-max-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_max_threads</span></code><a class="headerlink" href="#rpc-max-threads" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p><em>Default Value:</em> 2048</p>
 </div>
 <div class="section" id="rpc-send-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">rpc_send_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_send_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>uncomment to set socket buffer sizes on rpc connections</p>
 </div>
 <div class="section" id="rpc-recv-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">rpc_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 </div>
 <div class="section" id="internode-send-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">internode_send_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_send_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Uncomment to set socket buffer size for internode communication
 Note that when setting this, the buffer size is limited by net.core.wmem_max
@@ -1238,38 +1253,38 @@
 /proc/sys/net/core/rmem_max
 /proc/sys/net/ipv4/tcp_wmem
 /proc/sys/net/ipv4/tcp_wmem
-and &#8216;man tcp&#8217;</p>
+and ‘man tcp’</p>
 </div>
 <div class="section" id="internode-recv-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">internode_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Uncomment to set socket buffer size for internode communication
 Note that when setting this, the buffer size is limited by net.core.wmem_max
 and when not setting it it is defined by net.ipv4.tcp_wmem</p>
 </div>
 <div class="section" id="thrift-framed-transport-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">thrift_framed_transport_size_in_mb</span></code><a class="headerlink" href="#thrift-framed-transport-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">thrift_framed_transport_size_in_mb</span></code><a class="headerlink" href="#thrift-framed-transport-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Frame size for thrift (maximum message length).</p>
 <p><em>Default Value:</em> 15</p>
 </div>
 <div class="section" id="incremental-backups">
-<h2><code class="docutils literal"><span class="pre">incremental_backups</span></code><a class="headerlink" href="#incremental-backups" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">incremental_backups</span></code><a class="headerlink" href="#incremental-backups" title="Permalink to this headline">¶</a></h2>
 <p>Set to true to have Cassandra create a hard link to each sstable
 flushed or streamed locally in a backups/ subdirectory of the
-keyspace data.  Removing these links is the operator&#8217;s
+keyspace data.  Removing these links is the operator’s
 responsibility.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="snapshot-before-compaction">
-<h2><code class="docutils literal"><span class="pre">snapshot_before_compaction</span></code><a class="headerlink" href="#snapshot-before-compaction" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">snapshot_before_compaction</span></code><a class="headerlink" href="#snapshot-before-compaction" title="Permalink to this headline">¶</a></h2>
 <p>Whether or not to take a snapshot before each compaction.  Be
-careful using this option, since Cassandra won&#8217;t clean up the
-snapshots for you.  Mostly useful if you&#8217;re paranoid when there
+careful using this option, since Cassandra won’t clean up the
+snapshots for you.  Mostly useful if you’re paranoid when there
 is a data format change.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="auto-snapshot">
-<h2><code class="docutils literal"><span class="pre">auto_snapshot</span></code><a class="headerlink" href="#auto-snapshot" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">auto_snapshot</span></code><a class="headerlink" href="#auto-snapshot" title="Permalink to this headline">¶</a></h2>
 <p>Whether or not a snapshot is taken of the data before keyspace truncation
 or dropping of column families. The STRONGLY advised default of true
 should be used to provide data safety. If you set this flag to false, you will
@@ -1277,7 +1292,7 @@
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="column-index-size-in-kb">
-<h2><code class="docutils literal"><span class="pre">column_index_size_in_kb</span></code><a class="headerlink" href="#column-index-size-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">column_index_size_in_kb</span></code><a class="headerlink" href="#column-index-size-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Granularity of the collation index of rows within a partition.
 Increase if your rows are large, or if you have a very large
 number of rows per partition.  The competing goals are these:</p>
@@ -1292,7 +1307,7 @@
 <p><em>Default Value:</em> 64</p>
 </div>
 <div class="section" id="column-index-cache-size-in-kb">
-<h2><code class="docutils literal"><span class="pre">column_index_cache_size_in_kb</span></code><a class="headerlink" href="#column-index-cache-size-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">column_index_cache_size_in_kb</span></code><a class="headerlink" href="#column-index-cache-size-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Per sstable indexed key cache entries (the collation index in memory
 mentioned above) exceeding this size will not be held on heap.
 This means that only partition information is held on heap and the
@@ -1302,10 +1317,10 @@
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="concurrent-compactors">
-<h2><code class="docutils literal"><span class="pre">concurrent_compactors</span></code><a class="headerlink" href="#concurrent-compactors" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_compactors</span></code><a class="headerlink" href="#concurrent-compactors" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of simultaneous compactions to allow, NOT including
-validation &#8220;compactions&#8221; for anti-entropy repair.  Simultaneous
+validation “compactions” for anti-entropy repair.  Simultaneous
 compactions can help preserve read performance in a mixed read/write
 workload, by mitigating the tendency of small sstables to accumulate
 during a single long running compactions. The default is usually
@@ -1319,7 +1334,7 @@
 <p><em>Default Value:</em> 1</p>
 </div>
 <div class="section" id="compaction-throughput-mb-per-sec">
-<h2><code class="docutils literal"><span class="pre">compaction_throughput_mb_per_sec</span></code><a class="headerlink" href="#compaction-throughput-mb-per-sec" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">compaction_throughput_mb_per_sec</span></code><a class="headerlink" href="#compaction-throughput-mb-per-sec" title="Permalink to this headline">¶</a></h2>
 <p>Throttles compaction to the given total throughput across the entire
 system. The faster you insert data, the faster you need to compact in
 order to keep the sstable count down, but in general, setting this to
@@ -1329,7 +1344,7 @@
 <p><em>Default Value:</em> 16</p>
 </div>
 <div class="section" id="sstable-preemptive-open-interval-in-mb">
-<h2><code class="docutils literal"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code><a class="headerlink" href="#sstable-preemptive-open-interval-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code><a class="headerlink" href="#sstable-preemptive-open-interval-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>When compacting, the replacement sstable(s) can be opened before they
 are completely written, and used in place of the prior sstables for
 any range that has been written. This helps to smoothly transfer reads
@@ -1337,7 +1352,7 @@
 <p><em>Default Value:</em> 50</p>
 </div>
 <div class="section" id="stream-throughput-outbound-megabits-per-sec">
-<h2><code class="docutils literal"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Throttles all outbound streaming file transfers on this node to the
 given total throughput in Mbps. This is necessary because Cassandra does
@@ -1347,7 +1362,7 @@
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="inter-dc-stream-throughput-outbound-megabits-per-sec">
-<h2><code class="docutils literal"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#inter-dc-stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#inter-dc-stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Throttles all streaming file transfer between the datacenters,
 this setting allows users to throttle inter dc stream throughput in addition
@@ -1357,52 +1372,52 @@
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="read-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">read_request_timeout_in_ms</span></code><a class="headerlink" href="#read-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">read_request_timeout_in_ms</span></code><a class="headerlink" href="#read-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for read operations to complete</p>
 <p><em>Default Value:</em> 5000</p>
 </div>
 <div class="section" id="range-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">range_request_timeout_in_ms</span></code><a class="headerlink" href="#range-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">range_request_timeout_in_ms</span></code><a class="headerlink" href="#range-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for seq or index scans to complete</p>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="write-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">write_request_timeout_in_ms</span></code><a class="headerlink" href="#write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">write_request_timeout_in_ms</span></code><a class="headerlink" href="#write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for writes to complete</p>
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="counter-write-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">counter_write_request_timeout_in_ms</span></code><a class="headerlink" href="#counter-write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_write_request_timeout_in_ms</span></code><a class="headerlink" href="#counter-write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for counter writes to complete</p>
 <p><em>Default Value:</em> 5000</p>
 </div>
 <div class="section" id="cas-contention-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">cas_contention_timeout_in_ms</span></code><a class="headerlink" href="#cas-contention-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cas_contention_timeout_in_ms</span></code><a class="headerlink" href="#cas-contention-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long a coordinator should continue to retry a CAS operation
 that contends with other proposals for the same row</p>
 <p><em>Default Value:</em> 1000</p>
 </div>
 <div class="section" id="truncate-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">truncate_request_timeout_in_ms</span></code><a class="headerlink" href="#truncate-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">truncate_request_timeout_in_ms</span></code><a class="headerlink" href="#truncate-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for truncates to complete
 (This can be much longer, because unless auto_snapshot is disabled
 we need to flush first so we can snapshot before removing the data.)</p>
 <p><em>Default Value:</em> 60000</p>
 </div>
 <div class="section" id="request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">request_timeout_in_ms</span></code><a class="headerlink" href="#request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">request_timeout_in_ms</span></code><a class="headerlink" href="#request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>The default timeout for other, miscellaneous operations</p>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="slow-query-log-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">slow_query_log_timeout_in_ms</span></code><a class="headerlink" href="#slow-query-log-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">slow_query_log_timeout_in_ms</span></code><a class="headerlink" href="#slow-query-log-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long before a node logs slow queries. Select queries that take longer than
 this timeout to execute, will generate an aggregated log message, so that slow queries
 can be identified. Set this value to zero to disable slow query logging.</p>
 <p><em>Default Value:</em> 500</p>
 </div>
 <div class="section" id="cross-node-timeout">
-<h2><code class="docutils literal"><span class="pre">cross_node_timeout</span></code><a class="headerlink" href="#cross-node-timeout" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cross_node_timeout</span></code><a class="headerlink" href="#cross-node-timeout" title="Permalink to this headline">¶</a></h2>
 <p>Enable operation timeout information exchange between nodes to accurately
 measure request timeouts.  If disabled, replicas will assume that requests
 were forwarded to them instantly by the coordinator, which means that
@@ -1413,7 +1428,7 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="streaming-keep-alive-period-in-secs">
-<h2><code class="docutils literal"><span class="pre">streaming_keep_alive_period_in_secs</span></code><a class="headerlink" href="#streaming-keep-alive-period-in-secs" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">streaming_keep_alive_period_in_secs</span></code><a class="headerlink" href="#streaming-keep-alive-period-in-secs" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Set keep-alive period for streaming
 This node will send a keep-alive message periodically with this period.
@@ -1424,33 +1439,33 @@
 <p><em>Default Value:</em> 300</p>
 </div>
 <div class="section" id="phi-convict-threshold">
-<h2><code class="docutils literal"><span class="pre">phi_convict_threshold</span></code><a class="headerlink" href="#phi-convict-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">phi_convict_threshold</span></code><a class="headerlink" href="#phi-convict-threshold" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>phi value that must be reached for a host to be marked down.
 most users should never need to adjust this.</p>
 <p><em>Default Value:</em> 8</p>
 </div>
 <div class="section" id="endpoint-snitch">
-<h2><code class="docutils literal"><span class="pre">endpoint_snitch</span></code><a class="headerlink" href="#endpoint-snitch" title="Permalink to this headline">¶</a></h2>
-<p>endpoint_snitch &#8211; Set this to a class that implements
+<h2><code class="docutils literal notranslate"><span class="pre">endpoint_snitch</span></code><a class="headerlink" href="#endpoint-snitch" title="Permalink to this headline">¶</a></h2>
+<p>endpoint_snitch – Set this to a class that implements
 IEndpointSnitch.  The snitch has two functions:</p>
 <ul class="simple">
 <li>it teaches Cassandra enough about your network topology to route
 requests efficiently</li>
 <li>it allows Cassandra to spread replicas around your cluster to avoid
 correlated failures. It does this by grouping machines into
-&#8220;datacenters&#8221; and &#8220;racks.&#8221;  Cassandra will do its best not to have
-more than one replica on the same &#8220;rack&#8221; (which may not actually
+“datacenters” and “racks.”  Cassandra will do its best not to have
+more than one replica on the same “rack” (which may not actually
 be a physical location)</li>
 </ul>
 <p>CASSANDRA WILL NOT ALLOW YOU TO SWITCH TO AN INCOMPATIBLE SNITCH
 ONCE DATA IS INSERTED INTO THE CLUSTER.  This would cause data loss.
 This means that if you start with the default SimpleSnitch, which
-locates every node on &#8220;rack1&#8221; in &#8220;datacenter1&#8221;, your only options
+locates every node on “rack1” in “datacenter1”, your only options
 if you need to add another datacenter are GossipingPropertyFileSnitch
 (and the older PFS).  From there, if you want to migrate to an
 incompatible snitch like Ec2Snitch you can do it by adding new nodes
-under Ec2Snitch (which will locate them in a new &#8220;datacenter&#8221;) and
+under Ec2Snitch (which will locate them in a new “datacenter”) and
 decommissioning the old ones.</p>
 <p>Out of the box, Cassandra provides:</p>
 <dl class="docutils">
@@ -1482,7 +1497,7 @@
 establishing a connection.)</dd>
 <dt>RackInferringSnitch:</dt>
 <dd>Proximity is determined by rack and data center, which are
-assumed to correspond to the 3rd and 2nd octet of each node&#8217;s IP
+assumed to correspond to the 3rd and 2nd octet of each node’s IP
 address, respectively.  Unless this happens to match your
 deployment conventions, this is best used as an example of
 writing a custom Snitch class and is provided in that spirit.</dd>
@@ -1492,21 +1507,21 @@
 <p><em>Default Value:</em> SimpleSnitch</p>
 </div>
 <div class="section" id="dynamic-snitch-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>controls how often to perform the more expensive part of host score
 calculation</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="dynamic-snitch-reset-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-reset-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-reset-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>controls how often to reset all host scores, allowing a bad host to
 possibly recover</p>
 <p><em>Default Value:</em> 600000</p>
 </div>
 <div class="section" id="dynamic-snitch-badness-threshold">
-<h2><code class="docutils literal"><span class="pre">dynamic_snitch_badness_threshold</span></code><a class="headerlink" href="#dynamic-snitch-badness-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_badness_threshold</span></code><a class="headerlink" href="#dynamic-snitch-badness-threshold" title="Permalink to this headline">¶</a></h2>
 <p>if set greater than zero and read_repair_chance is &lt; 1.0, this will allow
-&#8216;pinning&#8217; of replicas to hosts in order to increase cache capacity.
+‘pinning’ of replicas to hosts in order to increase cache capacity.
 The badness threshold will control how much worse the pinned host has to be
 before the dynamic snitch will prefer other replicas over it.  This is
 expressed as a double which represents a percentage.  Thus, a value of
@@ -1515,8 +1530,8 @@
 <p><em>Default Value:</em> 0.1</p>
 </div>
 <div class="section" id="request-scheduler">
-<h2><code class="docutils literal"><span class="pre">request_scheduler</span></code><a class="headerlink" href="#request-scheduler" title="Permalink to this headline">¶</a></h2>
-<p>request_scheduler &#8211; Set this to a class that implements
+<h2><code class="docutils literal notranslate"><span class="pre">request_scheduler</span></code><a class="headerlink" href="#request-scheduler" title="Permalink to this headline">¶</a></h2>
+<p>request_scheduler – Set this to a class that implements
 RequestScheduler, which will schedule incoming client requests
 according to the specific policy. This is useful for multi-tenancy
 with a single Cassandra cluster.
@@ -1530,7 +1545,7 @@
 <p><em>Default Value:</em> org.apache.cassandra.scheduler.NoScheduler</p>
 </div>
 <div class="section" id="request-scheduler-options">
-<h2><code class="docutils literal"><span class="pre">request_scheduler_options</span></code><a class="headerlink" href="#request-scheduler-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">request_scheduler_options</span></code><a class="headerlink" href="#request-scheduler-options" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Scheduler Options vary based on the type of scheduler</p>
 <dl class="docutils">
@@ -1557,7 +1572,7 @@
 </dd>
 </dl>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#    throttle_limit: 80</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#    throttle_limit: 80</span>
 <span class="c1">#    default_weight: 5</span>
 <span class="c1">#    weights:</span>
 <span class="c1">#      Keyspace1: 1</span>
@@ -1566,14 +1581,14 @@
 </div>
 </div>
 <div class="section" id="request-scheduler-id">
-<h2><code class="docutils literal"><span class="pre">request_scheduler_id</span></code><a class="headerlink" href="#request-scheduler-id" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">request_scheduler_id</span></code><a class="headerlink" href="#request-scheduler-id" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
-request_scheduler_id &#8211; An identifier based on which to perform
+request_scheduler_id – An identifier based on which to perform
 the request scheduling. Currently the only valid option is keyspace.</p>
 <p><em>Default Value:</em> keyspace</p>
 </div>
 <div class="section" id="server-encryption-options">
-<h2><code class="docutils literal"><span class="pre">server_encryption_options</span></code><a class="headerlink" href="#server-encryption-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">server_encryption_options</span></code><a class="headerlink" href="#server-encryption-options" title="Permalink to this headline">¶</a></h2>
 <p>Enable or disable inter-node encryption
 JVM defaults for supported SSL socket protocols and cipher suites can
 be replaced using custom encryption options. This is not recommended
@@ -1591,7 +1606,7 @@
 the keystore and truststore.  For instructions on generating these files, see:
 <a class="reference external" href="http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore">http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore</a></p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">internode_encryption</span><span class="p">:</span> <span class="n">none</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">internode_encryption</span><span class="p">:</span> <span class="n">none</span>
 <span class="n">keystore</span><span class="p">:</span> <span class="n">conf</span><span class="o">/.</span><span class="n">keystore</span>
 <span class="n">keystore_password</span><span class="p">:</span> <span class="n">cassandra</span>
 <span class="n">truststore</span><span class="p">:</span> <span class="n">conf</span><span class="o">/.</span><span class="n">truststore</span>
@@ -1607,10 +1622,10 @@
 </div>
 </div>
 <div class="section" id="client-encryption-options">
-<h2><code class="docutils literal"><span class="pre">client_encryption_options</span></code><a class="headerlink" href="#client-encryption-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">client_encryption_options</span></code><a class="headerlink" href="#client-encryption-options" title="Permalink to this headline">¶</a></h2>
 <p>enable or disable client/server encryption.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
 <span class="c1"># If enabled and optional is set to true encrypted and unencrypted connections are handled.</span>
 <span class="n">optional</span><span class="p">:</span> <span class="n">false</span>
 <span class="n">keystore</span><span class="p">:</span> <span class="n">conf</span><span class="o">/.</span><span class="n">keystore</span>
@@ -1628,7 +1643,7 @@
 </div>
 </div>
 <div class="section" id="internode-compression">
-<h2><code class="docutils literal"><span class="pre">internode_compression</span></code><a class="headerlink" href="#internode-compression" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_compression</span></code><a class="headerlink" href="#internode-compression" title="Permalink to this headline">¶</a></h2>
 <p>internode_compression controls whether traffic between nodes is
 compressed.
 Can be:</p>
@@ -1643,7 +1658,7 @@
 <p><em>Default Value:</em> dc</p>
 </div>
 <div class="section" id="inter-dc-tcp-nodelay">
-<h2><code class="docutils literal"><span class="pre">inter_dc_tcp_nodelay</span></code><a class="headerlink" href="#inter-dc-tcp-nodelay" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">inter_dc_tcp_nodelay</span></code><a class="headerlink" href="#inter-dc-tcp-nodelay" title="Permalink to this headline">¶</a></h2>
 <p>Enable or disable tcp_nodelay for inter-dc communication.
 Disabling it will result in larger (but fewer) network packets being sent,
 reducing overhead from the TCP protocol itself, at the cost of increasing
@@ -1651,23 +1666,23 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="tracetype-query-ttl">
-<h2><code class="docutils literal"><span class="pre">tracetype_query_ttl</span></code><a class="headerlink" href="#tracetype-query-ttl" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tracetype_query_ttl</span></code><a class="headerlink" href="#tracetype-query-ttl" title="Permalink to this headline">¶</a></h2>
 <p>TTL for different trace types used during logging of the repair process.</p>
 <p><em>Default Value:</em> 86400</p>
 </div>
 <div class="section" id="tracetype-repair-ttl">
-<h2><code class="docutils literal"><span class="pre">tracetype_repair_ttl</span></code><a class="headerlink" href="#tracetype-repair-ttl" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tracetype_repair_ttl</span></code><a class="headerlink" href="#tracetype-repair-ttl" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 604800</p>
 </div>
 <div class="section" id="gc-log-threshold-in-ms">
-<h2><code class="docutils literal"><span class="pre">gc_log_threshold_in_ms</span></code><a class="headerlink" href="#gc-log-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">gc_log_threshold_in_ms</span></code><a class="headerlink" href="#gc-log-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>By default, Cassandra logs GC Pauses greater than 200 ms at INFO level
 This threshold can be adjusted to minimize logging if necessary</p>
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="enable-user-defined-functions">
-<h2><code class="docutils literal"><span class="pre">enable_user_defined_functions</span></code><a class="headerlink" href="#enable-user-defined-functions" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">enable_user_defined_functions</span></code><a class="headerlink" href="#enable-user-defined-functions" title="Permalink to this headline">¶</a></h2>
 <p>If unset, all GC Pauses greater than gc_log_threshold_in_ms will log at
 INFO level
 UDFs (user defined functions) are disabled by default.
@@ -1675,33 +1690,27 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="enable-scripted-user-defined-functions">
-<h2><code class="docutils literal"><span class="pre">enable_scripted_user_defined_functions</span></code><a class="headerlink" href="#enable-scripted-user-defined-functions" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">enable_scripted_user_defined_functions</span></code><a class="headerlink" href="#enable-scripted-user-defined-functions" title="Permalink to this headline">¶</a></h2>
 <p>Enables scripted UDFs (JavaScript UDFs).
 Java UDFs are always enabled, if enable_user_defined_functions is true.
-Enable this option to be able to use UDFs with &#8220;language javascript&#8221; or any custom JSR-223 provider.
+Enable this option to be able to use UDFs with “language javascript” or any custom JSR-223 provider.
 This option has no effect, if enable_user_defined_functions is false.</p>
 <p><em>Default Value:</em> false</p>
 </div>
-<div class="section" id="enable-materialized-views">
-<h2><code class="docutils literal"><span class="pre">enable_materialized_views</span></code><a class="headerlink" href="#enable-materialized-views" title="Permalink to this headline">¶</a></h2>
-<p>Enables materialized view creation on this node.
-Materialized views are considered experimental and are not recommended for production use.</p>
-<p><em>Default Value:</em> true</p>
-</div>
 <div class="section" id="windows-timer-interval">
-<h2><code class="docutils literal"><span class="pre">windows_timer_interval</span></code><a class="headerlink" href="#windows-timer-interval" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">windows_timer_interval</span></code><a class="headerlink" href="#windows-timer-interval" title="Permalink to this headline">¶</a></h2>
 <p>The default Windows kernel timer and scheduling resolution is 15.6ms for power conservation.
 Lowering this value on Windows can provide much tighter latency and better throughput, however
 some virtualized environments may see a negative performance impact from changing this setting
-below their system default. The sysinternals &#8216;clockres&#8217; tool can confirm your system&#8217;s default
+below their system default. The sysinternals ‘clockres’ tool can confirm your system’s default
 setting.</p>
 <p><em>Default Value:</em> 1</p>
 </div>
 <div class="section" id="transparent-data-encryption-options">
-<h2><code class="docutils literal"><span class="pre">transparent_data_encryption_options</span></code><a class="headerlink" href="#transparent-data-encryption-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">transparent_data_encryption_options</span></code><a class="headerlink" href="#transparent-data-encryption-options" title="Permalink to this headline">¶</a></h2>
 <p>Enables encrypting data at-rest (on disk). Different key providers can be plugged in, but the default reads from
 a JCE-style keystore. A single keystore can hold multiple keys, but the one referenced by
-the &#8220;key_alias&#8221; is the only key that will be used for encrypt opertaions; previously used keys
+the “key_alias” is the only key that will be used for encrypt opertaions; previously used keys
 can still (and should!) be in the keystore and will be used on decrypt operations
 (to handle the case of key rotation).</p>
 <p>It is strongly recommended to download and install Java Cryptography Extension (JCE)
@@ -1710,7 +1719,7 @@
 <p>Currently, only the following file types are supported for transparent data encryption, although
 more are coming in future cassandra releases: commitlog, hints</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
 <span class="n">chunk_length_kb</span><span class="p">:</span> <span class="mi">64</span>
 <span class="n">cipher</span><span class="p">:</span> <span class="n">AES</span><span class="o">/</span><span class="n">CBC</span><span class="o">/</span><span class="n">PKCS5Padding</span>
 <span class="n">key_alias</span><span class="p">:</span> <span class="n">testing</span><span class="p">:</span><span class="mi">1</span>
@@ -1727,7 +1736,7 @@
 </div>
 </div>
 <div class="section" id="tombstone-warn-threshold">
-<h2><code class="docutils literal"><span class="pre">tombstone_warn_threshold</span></code><a class="headerlink" href="#tombstone-warn-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tombstone_warn_threshold</span></code><a class="headerlink" href="#tombstone-warn-threshold" title="Permalink to this headline">¶</a></h2>
 <div class="section" id="safety-thresholds">
 <h3>SAFETY THRESHOLDS #<a class="headerlink" href="#safety-thresholds" title="Permalink to this headline">¶</a></h3>
 <p>When executing a scan, within or across a partition, we need to keep the
@@ -1743,39 +1752,39 @@
 </div>
 </div>
 <div class="section" id="tombstone-failure-threshold">
-<h2><code class="docutils literal"><span class="pre">tombstone_failure_threshold</span></code><a class="headerlink" href="#tombstone-failure-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tombstone_failure_threshold</span></code><a class="headerlink" href="#tombstone-failure-threshold" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 100000</p>
 </div>
 <div class="section" id="batch-size-warn-threshold-in-kb">
-<h2><code class="docutils literal"><span class="pre">batch_size_warn_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-warn-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">batch_size_warn_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-warn-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Log WARN on any multiple-partition batch size exceeding this value. 5kb per batch by default.
 Caution should be taken on increasing the size of this threshold as it can lead to node instability.</p>
 <p><em>Default Value:</em> 5</p>
 </div>
 <div class="section" id="batch-size-fail-threshold-in-kb">
-<h2><code class="docutils literal"><span class="pre">batch_size_fail_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-fail-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">batch_size_fail_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-fail-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default.</p>
 <p><em>Default Value:</em> 50</p>
 </div>
 <div class="section" id="unlogged-batch-across-partitions-warn-threshold">
-<h2><code class="docutils literal"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code><a class="headerlink" href="#unlogged-batch-across-partitions-warn-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code><a class="headerlink" href="#unlogged-batch-across-partitions-warn-threshold" title="Permalink to this headline">¶</a></h2>
 <p>Log WARN on any batches not of type LOGGED than span across more partitions than this limit</p>
 <p><em>Default Value:</em> 10</p>
 </div>
 <div class="section" id="compaction-large-partition-warning-threshold-mb">
-<h2><code class="docutils literal"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code><a class="headerlink" href="#compaction-large-partition-warning-threshold-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code><a class="headerlink" href="#compaction-large-partition-warning-threshold-mb" title="Permalink to this headline">¶</a></h2>
 <p>Log a warning when compacting partitions larger than this value</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="gc-warn-threshold-in-ms">
-<h2><code class="docutils literal"><span class="pre">gc_warn_threshold_in_ms</span></code><a class="headerlink" href="#gc-warn-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">gc_warn_threshold_in_ms</span></code><a class="headerlink" href="#gc-warn-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>GC Pauses greater than gc_warn_threshold_in_ms will be logged at WARN level
 Adjust the threshold based on your application throughput requirement
 By default, Cassandra logs GC Pauses greater than 200 ms at INFO level</p>
 <p><em>Default Value:</em> 1000</p>
 </div>
 <div class="section" id="max-value-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">max_value_size_in_mb</span></code><a class="headerlink" href="#max-value-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_value_size_in_mb</span></code><a class="headerlink" href="#max-value-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Maximum size of any value in SSTables. Safety measure to detect SSTable corruption
 early. Any value size larger than this threshold will result into marking an SSTable
@@ -1783,14 +1792,14 @@
 <p><em>Default Value:</em> 256</p>
 </div>
 <div class="section" id="back-pressure-enabled">
-<h2><code class="docutils literal"><span class="pre">back_pressure_enabled</span></code><a class="headerlink" href="#back-pressure-enabled" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">back_pressure_enabled</span></code><a class="headerlink" href="#back-pressure-enabled" title="Permalink to this headline">¶</a></h2>
 <p>Back-pressure settings #
 If enabled, the coordinator will apply the back-pressure strategy specified below to each mutation
 sent to replicas, with the aim of reducing pressure on overloaded replicas.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="back-pressure-strategy">
-<h2><code class="docutils literal"><span class="pre">back_pressure_strategy</span></code><a class="headerlink" href="#back-pressure-strategy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">back_pressure_strategy</span></code><a class="headerlink" href="#back-pressure-strategy" title="Permalink to this headline">¶</a></h2>
 <p>The back-pressure strategy applied.
 The default implementation, RateBasedBackPressure, takes three arguments:
 high ratio, factor, and flow type, and uses the ratio between incoming mutation responses and outgoing mutation requests.
@@ -1798,20 +1807,20 @@
 if above high ratio, the rate limiting is increased by the given factor;
 such factor is usually best configured between 1 and 10, use larger values for a faster recovery
 at the expense of potentially more dropped mutations;
-the rate limiting is applied according to the flow type: if FAST, it&#8217;s rate limited at the speed of the fastest replica,
+the rate limiting is applied according to the flow type: if FAST, it’s rate limited at the speed of the fastest replica,
 if SLOW at the speed of the slowest one.
 New strategies can be added. Implementors need to implement org.apache.cassandra.net.BackpressureStrategy and
 provide a public constructor accepting a Map&lt;String, Object&gt;.</p>
 </div>
 <div class="section" id="otc-coalescing-strategy">
-<h2><code class="docutils literal"><span class="pre">otc_coalescing_strategy</span></code><a class="headerlink" href="#otc-coalescing-strategy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_coalescing_strategy</span></code><a class="headerlink" href="#otc-coalescing-strategy" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Coalescing Strategies #
 Coalescing multiples messages turns out to significantly boost message processing throughput (think doubling or more).
-On bare metal, the floor for packet processing throughput is high enough that many applications won&#8217;t notice, but in
+On bare metal, the floor for packet processing throughput is high enough that many applications won’t notice, but in
 virtualized environments, the point at which an application can be bound by network packet processing can be
-surprisingly low compared to the throughput of task processing that is possible inside a VM. It&#8217;s not that bare metal
-doesn&#8217;t benefit from coalescing messages, it&#8217;s that the number of packets a bare metal network interface can process
+surprisingly low compared to the throughput of task processing that is possible inside a VM. It’s not that bare metal
+doesn’t benefit from coalescing messages, it’s that the number of packets a bare metal network interface can process
 is sufficient for many applications such that no load starvation is experienced even without coalescing.
 There are other benefits to coalescing network messages that are harder to isolate with a simple metric like messages
 per second. By coalescing multiple tasks together, a network thread can process multiple messages for the cost of one
@@ -1824,7 +1833,7 @@
 <p><em>Default Value:</em> DISABLED</p>
 </div>
 <div class="section" id="otc-coalescing-window-us">
-<h2><code class="docutils literal"><span class="pre">otc_coalescing_window_us</span></code><a class="headerlink" href="#otc-coalescing-window-us" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_coalescing_window_us</span></code><a class="headerlink" href="#otc-coalescing-window-us" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>How many microseconds to wait for coalescing. For fixed strategy this is the amount of time after the first
 message is received before it will be sent with any accompanying messages. For moving average this is the
@@ -1833,13 +1842,13 @@
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="otc-coalescing-enough-coalesced-messages">
-<h2><code class="docutils literal"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code><a class="headerlink" href="#otc-coalescing-enough-coalesced-messages" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code><a class="headerlink" href="#otc-coalescing-enough-coalesced-messages" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Do not try to coalesce messages if we already got that many messages. This should be more than 2 and less than 128.</p>
 <p><em>Default Value:</em> 8</p>
 </div>
 <div class="section" id="otc-backlog-expiration-interval-ms">
-<h2><code class="docutils literal"><span class="pre">otc_backlog_expiration_interval_ms</span></code><a class="headerlink" href="#otc-backlog-expiration-interval-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_backlog_expiration_interval_ms</span></code><a class="headerlink" href="#otc-backlog-expiration-interval-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>How many milliseconds to wait between two expiration runs on the backlog (queue) of the OutboundTcpConnection.
 Expiration is done if messages are piling up in the backlog. Droppable messages are expired to free the memory
@@ -1849,6 +1858,21 @@
 An interval of 0 disables any wait time, which is the behavior of former Cassandra versions.</p>
 <p><em>Default Value:</em> 200</p>
 </div>
+<div class="section" id="enable-materialized-views">
+<h2><code class="docutils literal notranslate"><span class="pre">enable_materialized_views</span></code><a class="headerlink" href="#enable-materialized-views" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="experimental-features">
+<h3>EXPERIMENTAL FEATURES #<a class="headerlink" href="#experimental-features" title="Permalink to this headline">¶</a></h3>
+<p>Enables materialized view creation on this node.
+Materialized views are considered experimental and are not recommended for production use.</p>
+<p><em>Default Value:</em> true</p>
+</div>
+</div>
+<div class="section" id="enable-sasi-indexes">
+<h2><code class="docutils literal notranslate"><span class="pre">enable_sasi_indexes</span></code><a class="headerlink" href="#enable-sasi-indexes" title="Permalink to this headline">¶</a></h2>
+<p>Enables SASI index creation on this node.
+SASI indexes are considered experimental and are not recommended for production use.</p>
+<p><em>Default Value:</em> true</p>
+</div>
 </div>
 
 
diff --git a/content/doc/3.11/configuration/index.html b/content/doc/3.11/configuration/index.html
index abddd28..55d89ec 100644
--- a/content/doc/3.11/configuration/index.html
+++ b/content/doc/3.11/configuration/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Cassandra Configuration File" href="cassandra_config_file.html"/> <link rel="prev" title="Changes" href="../cql/changes.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Cassandra Configuration File" href="cassandra_config_file.html"/> <link rel="prev" title="Changes" href="../cql/changes.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/contactus.html b/content/doc/3.11/contactus.html
index d083bf1..a91cbbe 100644
--- a/content/doc/3.11/contactus.html
+++ b/content/doc/3.11/contactus.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/> <link rel="prev" title="Reporting Bugs and Contributing" href="bugs.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/> <link rel="prev" title="Reporting Bugs and Contributing" href="bugs.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -173,9 +173,9 @@
 <p>To chat with developers or users in real-time, join our channels on <a class="reference external" href="http://webchat.freenode.net/">IRC freenode</a>. The
 following channels are available:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">#cassandra</span></code> - for user questions and general discussions.</li>
-<li><code class="docutils literal"><span class="pre">#cassandra-dev</span></code> - strictly for questions or discussions related to Cassandra development.</li>
-<li><code class="docutils literal"><span class="pre">#cassandra-builds</span></code> - results of automated test builds.</li>
+<li><code class="docutils literal notranslate"><span class="pre">#cassandra</span></code> - for user questions and general discussions.</li>
+<li><code class="docutils literal notranslate"><span class="pre">#cassandra-dev</span></code> - strictly for questions or discussions related to Cassandra development.</li>
+<li><code class="docutils literal notranslate"><span class="pre">#cassandra-builds</span></code> - results of automated test builds.</li>
 </ul>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/appendices.html b/content/doc/3.11/cql/appendices.html
index ecc68b9..83d6f5d 100644
--- a/content/doc/3.11/cql/appendices.html
+++ b/content/doc/3.11/cql/appendices.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Changes" href="changes.html"/> <link rel="prev" title="Triggers" href="triggers.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Changes" href="changes.html"/> <link rel="prev" title="Triggers" href="triggers.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -191,373 +191,373 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ADD</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ADD</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AGGREGATE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AGGREGATE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALL</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALL</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALLOW</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALLOW</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AND</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AND</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">APPLY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">APPLY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ASC</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ASC</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ASCII</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ASCII</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">BATCH</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">BATCH</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">BEGIN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">BEGIN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">BIGINT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">BIGINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">BLOB</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">BLOB</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">BOOLEAN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">BOOLEAN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">BY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">BY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CALLED</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CALLED</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CLUSTERING</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CLUSTERING</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">COLUMNFAMILY</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">COLUMNFAMILY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">COMPACT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">COMPACT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CONTAINS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">COUNT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">COUNT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">COUNTER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">COUNTER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CUSTOM</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CUSTOM</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DATE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DECIMAL</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DECIMAL</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DELETE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DELETE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DESC</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DESC</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DISTINCT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DISTINCT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DOUBLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DOUBLE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ENTRIES</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ENTRIES</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXISTS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXISTS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FILTERING</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FILTERING</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FINALFUNC</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FLOAT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FLOAT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FROM</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FROM</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FROZEN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FROZEN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FULL</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FULL</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FUNCTIONS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FUNCTIONS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">GRANT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">GRANT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">IF</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">IF</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">IN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">IN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INDEX</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INDEX</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INET</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INET</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INFINITY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INFINITY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INITCOND</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INITCOND</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INPUT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INPUT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INSERT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INTO</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INTO</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">JSON</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">JSON</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">KEY</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">KEY</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">KEYS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">KEYS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">KEYSPACES</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">KEYSPACES</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">LANGUAGE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">LANGUAGE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">LIMIT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">LIMIT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">LIST</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">LIST</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">LOGIN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">LOGIN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MAP</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MAP</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">NAN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">NAN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">NOLOGIN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">NOLOGIN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">NORECURSIVE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">NORECURSIVE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">NOSUPERUSER</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">NOSUPERUSER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">NOT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">NOT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">NULL</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">NULL</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">OF</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">OF</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ON</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ON</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">OPTIONS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">OPTIONS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">OR</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">OR</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ORDER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ORDER</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">PASSWORD</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">PASSWORD</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">PERMISSION</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">PERMISSION</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">PERMISSIONS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">PERMISSIONS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">PRIMARY</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">PRIMARY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">RENAME</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">RENAME</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">REPLACE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">REPLACE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">RETURNS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">RETURNS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">REVOKE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">REVOKE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ROLE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ROLES</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ROLES</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SCHEMA</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SCHEMA</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SET</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SET</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SFUNC</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SFUNC</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SMALLINT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SMALLINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">STATIC</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">STATIC</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">STORAGE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">STORAGE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">STYPE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">STYPE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SUPERUSER</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TEXT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TEXT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TIME</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TIME</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TIMESTAMP</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TIMEUUID</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TIMEUUID</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TINYINT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TINYINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TO</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TO</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TOKEN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TOKEN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TRIGGER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TRIGGER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TRUNCATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TTL</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TTL</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TUPLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TUPLE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TYPE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TYPE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">UNLOGGED</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">UPDATE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">UPDATE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">USE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">USE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">USER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">USER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">USERS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">USERS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">USING</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">USING</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">UUID</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">UUID</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">VALUES</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">VALUES</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">VARCHAR</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">VARCHAR</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">VARINT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">VARINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">WHERE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">WHERE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">WITH</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">WITH</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">WRITETIME</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code></td>
 <td>no</td>
 </tr>
 </tbody>
@@ -577,17 +577,17 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">bitstring</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">bitstring</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">byte</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">byte</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">complex</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">complex</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">enum</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">enum</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">interval</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">interval</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">macaddr</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">macaddr</span></code></td>
 </tr>
 </tbody>
 </table>
@@ -595,17 +595,17 @@
 <div class="section" id="appendix-c-dropping-compact-storage">
 <h2>Appendix C: Dropping Compact Storage<a class="headerlink" href="#appendix-c-dropping-compact-storage" title="Permalink to this headline">¶</a></h2>
 <p>Starting version 4.0, Thrift and COMPACT STORAGE is no longer supported.</p>
-<p>&#8216;ALTER ... DROP COMPACT STORAGE&#8217; statement makes Compact Tables CQL-compatible,
+<p>‘ALTER … DROP COMPACT STORAGE’ statement makes Compact Tables CQL-compatible,
 exposing internal structure of Thrift/Compact Tables:</p>
 <ul class="simple">
 <li>CQL-created Compact Tables that have no clustering columns, will expose an
-additional clustering column <code class="docutils literal"><span class="pre">column1</span></code> with <code class="docutils literal"><span class="pre">UTF8Type</span></code>.</li>
+additional clustering column <code class="docutils literal notranslate"><span class="pre">column1</span></code> with <code class="docutils literal notranslate"><span class="pre">UTF8Type</span></code>.</li>
 <li>CQL-created Compact Tables that had no regular columns, will expose a
-regular column <code class="docutils literal"><span class="pre">value</span></code> with <code class="docutils literal"><span class="pre">BytesType</span></code>.</li>
+regular column <code class="docutils literal notranslate"><span class="pre">value</span></code> with <code class="docutils literal notranslate"><span class="pre">BytesType</span></code>.</li>
 <li>For CQL-Created Compact Tables, all columns originally defined as
-<code class="docutils literal"><span class="pre">regular</span></code> will be come <code class="docutils literal"><span class="pre">static</span></code></li>
+<code class="docutils literal notranslate"><span class="pre">regular</span></code> will be come <code class="docutils literal notranslate"><span class="pre">static</span></code></li>
 <li>CQL-created Compact Tables that have clustering but have no regular
-columns will have an empty value column (of <code class="docutils literal"><span class="pre">EmptyType</span></code>)</li>
+columns will have an empty value column (of <code class="docutils literal notranslate"><span class="pre">EmptyType</span></code>)</li>
 <li>SuperColumn Tables (can only be created through Thrift) will expose
 a compact value map with an empty name.</li>
 <li>Thrift-created Compact Tables will have types corresponding to their
diff --git a/content/doc/3.11/cql/changes.html b/content/doc/3.11/cql/changes.html
index 53c195e..0808cc8 100644
--- a/content/doc/3.11/cql/changes.html
+++ b/content/doc/3.11/cql/changes.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="../configuration/index.html"/> <link rel="prev" title="Appendices" href="appendices.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="../configuration/index.html"/> <link rel="prev" title="Appendices" href="appendices.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -192,53 +192,53 @@
 <div class="section" id="id1">
 <h2>3.4.4<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal"><span class="pre">ALTER</span></code> has been removed; a column&#8217;s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> <code class="docutils literal"><span class="pre">ALTER</span></code> has been removed; a field&#8217;s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> has been removed; a column’s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> has been removed; a field’s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
 </ul>
 </div>
 <div class="section" id="id2">
 <h2>3.4.3<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Adds a new <a href="#id3"><span class="problematic" id="id4">``</span></a>duration `` <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-11873">CASSANDRA-11873</a>).</li>
-<li>Support for <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10707">CASSANDRA-10707</a>).</li>
-<li>Adds a <code class="docutils literal"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> option for <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> to ignore omitted columns (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-11424">CASSANDRA-11424</a>).</li>
-<li>Allows <code class="docutils literal"><span class="pre">null</span></code> as a legal value for TTL on insert and update. It will be treated as equivalent to</li>
+<li>Support for <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10707">CASSANDRA-10707</a>).</li>
+<li>Adds a <code class="docutils literal notranslate"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> option for <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> to ignore omitted columns (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-11424">CASSANDRA-11424</a>).</li>
+<li>Allows <code class="docutils literal notranslate"><span class="pre">null</span></code> as a legal value for TTL on insert and update. It will be treated as equivalent to</li>
 </ul>
 <p>inserting a 0 (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12216">CASSANDRA-12216</a>).</p>
 </div>
 <div class="section" id="id5">
 <h2>3.4.2<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>If a table has a non zero <code class="docutils literal"><span class="pre">default_time_to_live</span></code>, then explicitly specifying a TTL of 0 in an <code class="docutils literal"><span class="pre">INSERT</span></code> or
-<code class="docutils literal"><span class="pre">UPDATE</span></code> statement will result in the new writes not having any expiration (that is, an explicit TTL of 0 cancels
-the <code class="docutils literal"><span class="pre">default_time_to_live</span></code>). This wasn&#8217;t the case before and the <code class="docutils literal"><span class="pre">default_time_to_live</span></code> was applied even though a
+<li>If a table has a non zero <code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code>, then explicitly specifying a TTL of 0 in an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> or
+<code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement will result in the new writes not having any expiration (that is, an explicit TTL of 0 cancels
+the <code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code>). This wasn’t the case before and the <code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code> was applied even though a
 TTL had been explicitly set.</li>
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal"><span class="pre">ADD</span></code> and <code class="docutils literal"><span class="pre">DROP</span></code> now allow multiple columns to be added/removed.</li>
-<li>New <code class="docutils literal"><span class="pre">PER</span> <span class="pre">PARTITION</span> <span class="pre">LIMIT</span></code> option for <code class="docutils literal"><span class="pre">SELECT</span></code> statements (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7017)">CASSANDRA-7017</a>.</li>
-<li><a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">User-defined functions</span></a> can now instantiate <code class="docutils literal"><span class="pre">UDTValue</span></code> and <code class="docutils literal"><span class="pre">TupleValue</span></code> instances via the
-new <code class="docutils literal"><span class="pre">UDFContext</span></code> interface (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10818)">CASSANDRA-10818</a>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal notranslate"><span class="pre">ADD</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span></code> now allow multiple columns to be added/removed.</li>
+<li>New <code class="docutils literal notranslate"><span class="pre">PER</span> <span class="pre">PARTITION</span> <span class="pre">LIMIT</span></code> option for <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7017)">CASSANDRA-7017</a>.</li>
+<li><a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">User-defined functions</span></a> can now instantiate <code class="docutils literal notranslate"><span class="pre">UDTValue</span></code> and <code class="docutils literal notranslate"><span class="pre">TupleValue</span></code> instances via the
+new <code class="docutils literal notranslate"><span class="pre">UDFContext</span></code> interface (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10818)">CASSANDRA-10818</a>.</li>
 <li><a class="reference internal" href="types.html#udts"><span class="std std-ref">User-defined types</span></a> may now be stored in a non-frozen form, allowing individual fields to be updated and
-deleted in <code class="docutils literal"><span class="pre">UPDATE</span></code> statements and <code class="docutils literal"><span class="pre">DELETE</span></code> statements, respectively. (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7423)">CASSANDRA-7423</a>).</li>
+deleted in <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statements, respectively. (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7423)">CASSANDRA-7423</a>).</li>
 </ul>
 </div>
 <div class="section" id="id6">
 <h2>3.4.1<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Adds <code class="docutils literal"><span class="pre">CAST</span></code> functions.</li>
+<li>Adds <code class="docutils literal notranslate"><span class="pre">CAST</span></code> functions.</li>
 </ul>
 </div>
 <div class="section" id="id7">
 <h2>3.4.0<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Support for <a class="reference internal" href="mvs.html#materialized-views"><span class="std std-ref">materialized views</span></a>.</li>
-<li><code class="docutils literal"><span class="pre">DELETE</span></code> support for inequality expressions and <code class="docutils literal"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
-<li><code class="docutils literal"><span class="pre">UPDATE</span></code> support for <code class="docutils literal"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">DELETE</span></code> support for inequality expressions and <code class="docutils literal notranslate"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> support for <code class="docutils literal notranslate"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
 </ul>
 </div>
 <div class="section" id="id8">
 <h2>3.3.1<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>The syntax <code class="docutils literal"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">X</span></code> is now accepted as an alias for <code class="docutils literal"><span class="pre">TRUNCATE</span> <span class="pre">X</span></code>.</li>
+<li>The syntax <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">X</span></code> is now accepted as an alias for <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span> <span class="pre">X</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="id9">
@@ -247,36 +247,36 @@
 <li><a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">User-defined functions and aggregates</span></a> are now supported.</li>
 <li>Allows double-dollar enclosed strings literals as an alternative to single-quote enclosed strings.</li>
 <li>Introduces Roles to supersede user based authentication and access control</li>
-<li>New <code class="docutils literal"><span class="pre">date</span></code>, <code class="docutils literal"><span class="pre">time</span></code>, <code class="docutils literal"><span class="pre">tinyint</span></code> and <code class="docutils literal"><span class="pre">smallint</span></code> <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> have been added.</li>
+<li>New <code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">time</span></code>, <code class="docutils literal notranslate"><span class="pre">tinyint</span></code> and <code class="docutils literal notranslate"><span class="pre">smallint</span></code> <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> have been added.</li>
 <li><a class="reference internal" href="json.html#cql-json"><span class="std std-ref">JSON support</span></a> has been added</li>
-<li>Adds new time conversion functions and deprecate <code class="docutils literal"><span class="pre">dateOf</span></code> and <code class="docutils literal"><span class="pre">unixTimestampOf</span></code>.</li>
+<li>Adds new time conversion functions and deprecate <code class="docutils literal notranslate"><span class="pre">dateOf</span></code> and <code class="docutils literal notranslate"><span class="pre">unixTimestampOf</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="id10">
 <h2>3.2.0<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li><a class="reference internal" href="types.html#udts"><span class="std std-ref">User-defined types</span></a> supported.</li>
-<li><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now supports indexing collection columns, including indexing the keys of map collections through the
-<code class="docutils literal"><span class="pre">keys()</span></code> function</li>
-<li>Indexes on collections may be queried using the new <code class="docutils literal"><span class="pre">CONTAINS</span></code> and <code class="docutils literal"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operators</li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now supports indexing collection columns, including indexing the keys of map collections through the
+<code class="docutils literal notranslate"><span class="pre">keys()</span></code> function</li>
+<li>Indexes on collections may be queried using the new <code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code> and <code class="docutils literal notranslate"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operators</li>
 <li><a class="reference internal" href="types.html#tuples"><span class="std std-ref">Tuple types</span></a> were added to hold fixed-length sets of typed positional fields.</li>
-<li><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> now supports optionally specifying a keyspace.</li>
+<li><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> now supports optionally specifying a keyspace.</li>
 </ul>
 </div>
 <div class="section" id="id11">
 <h2>3.1.7<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SELECT</span></code> statements now support selecting multiple rows in a single partition using an <code class="docutils literal"><span class="pre">IN</span></code> clause on combinations
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements now support selecting multiple rows in a single partition using an <code class="docutils literal notranslate"><span class="pre">IN</span></code> clause on combinations
 of clustering columns.</li>
-<li><code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> and <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax is now supported by <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">USER</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">USER</span></code> statements,
+<li><code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> and <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax is now supported by <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">USER</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">USER</span></code> statements,
 respectively.</li>
 </ul>
 </div>
 <div class="section" id="id12">
 <h2>3.1.6<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>A new <code class="docutils literal"><span class="pre">uuid()</span></code> method has been added.</li>
-<li>Support for <code class="docutils literal"><span class="pre">DELETE</span> <span class="pre">...</span> <span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax.</li>
+<li>A new <code class="docutils literal notranslate"><span class="pre">uuid()</span></code> method has been added.</li>
+<li>Support for <code class="docutils literal notranslate"><span class="pre">DELETE</span> <span class="pre">...</span> <span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax.</li>
 </ul>
 </div>
 <div class="section" id="id13">
@@ -289,7 +289,7 @@
 <div class="section" id="id14">
 <h2>3.1.4<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now allows specifying options when creating CUSTOM indexes.</li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now allows specifying options when creating CUSTOM indexes.</li>
 </ul>
 </div>
 <div class="section" id="id15">
@@ -301,33 +301,33 @@
 <div class="section" id="id16">
 <h2>3.1.2<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">NaN</span></code> and <code class="docutils literal"><span class="pre">Infinity</span></code> has been added as valid float constants. They are now reserved keywords. In the unlikely case
+<li><code class="docutils literal notranslate"><span class="pre">NaN</span></code> and <code class="docutils literal notranslate"><span class="pre">Infinity</span></code> has been added as valid float constants. They are now reserved keywords. In the unlikely case
 you we using them as a column identifier (or keyspace/table one), you will now need to double quote them.</li>
 </ul>
 </div>
 <div class="section" id="id17">
 <h2>3.1.1<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SELECT</span></code> statement now allows listing the partition keys (using the <code class="docutils literal"><span class="pre">DISTINCT</span></code> modifier). See <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4536">CASSANDRA-4536</a>.</li>
-<li>The syntax <code class="docutils literal"><span class="pre">c</span> <span class="pre">IN</span> <span class="pre">?</span></code> is now supported in <code class="docutils literal"><span class="pre">WHERE</span></code> clauses. In that case, the value expected for the bind variable
-will be a list of whatever type <code class="docutils literal"><span class="pre">c</span></code> is.</li>
-<li>It is now possible to use named bind variables (using <code class="docutils literal"><span class="pre">:name</span></code> instead of <code class="docutils literal"><span class="pre">?</span></code>).</li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement now allows listing the partition keys (using the <code class="docutils literal notranslate"><span class="pre">DISTINCT</span></code> modifier). See <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4536">CASSANDRA-4536</a>.</li>
+<li>The syntax <code class="docutils literal notranslate"><span class="pre">c</span> <span class="pre">IN</span> <span class="pre">?</span></code> is now supported in <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clauses. In that case, the value expected for the bind variable
+will be a list of whatever type <code class="docutils literal notranslate"><span class="pre">c</span></code> is.</li>
+<li>It is now possible to use named bind variables (using <code class="docutils literal notranslate"><span class="pre">:name</span></code> instead of <code class="docutils literal notranslate"><span class="pre">?</span></code>).</li>
 </ul>
 </div>
 <div class="section" id="id18">
 <h2>3.1.0<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal"><span class="pre">DROP</span></code> option added.</li>
-<li><code class="docutils literal"><span class="pre">SELECT</span></code> statement now supports aliases in select clause. Aliases in WHERE and ORDER BY clauses are not supported.</li>
-<li><code class="docutils literal"><span class="pre">CREATE</span></code> statements for <code class="docutils literal"><span class="pre">KEYSPACE</span></code>, <code class="docutils literal"><span class="pre">TABLE</span></code> and <code class="docutils literal"><span class="pre">INDEX</span></code> now supports an <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition.
-Similarly, <code class="docutils literal"><span class="pre">DROP</span></code> statements support a <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> condition.</li>
-<li><code class="docutils literal"><span class="pre">INSERT</span></code> statements optionally supports a <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition and <code class="docutils literal"><span class="pre">UPDATE</span></code> supports <code class="docutils literal"><span class="pre">IF</span></code> conditions.</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal notranslate"><span class="pre">DROP</span></code> option added.</li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement now supports aliases in select clause. Aliases in WHERE and ORDER BY clauses are not supported.</li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span></code> statements for <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code>, <code class="docutils literal notranslate"><span class="pre">TABLE</span></code> and <code class="docutils literal notranslate"><span class="pre">INDEX</span></code> now supports an <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition.
+Similarly, <code class="docutils literal notranslate"><span class="pre">DROP</span></code> statements support a <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> condition.</li>
+<li><code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statements optionally supports a <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> supports <code class="docutils literal notranslate"><span class="pre">IF</span></code> conditions.</li>
 </ul>
 </div>
 <div class="section" id="id19">
 <h2>3.0.5<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, and <code class="docutils literal"><span class="pre">DELETE</span></code> statements now allow empty <code class="docutils literal"><span class="pre">IN</span></code> relations (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-5626)">CASSANDRA-5626</a>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statements now allow empty <code class="docutils literal notranslate"><span class="pre">IN</span></code> relations (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-5626)">CASSANDRA-5626</a>.</li>
 </ul>
 </div>
 <div class="section" id="id20">
@@ -335,7 +335,7 @@
 <ul class="simple">
 <li>Updated the syntax for custom <a class="reference internal" href="indexes.html#secondary-indexes"><span class="std std-ref">secondary indexes</span></a>.</li>
 <li>Non-equal condition on the partition key are now never supported, even for ordering partitioner as this was not
-correct (the order was <strong>not</strong> the one of the type of the partition key). Instead, the <code class="docutils literal"><span class="pre">token</span></code> method should always
+correct (the order was <strong>not</strong> the one of the type of the partition key). Instead, the <code class="docutils literal notranslate"><span class="pre">token</span></code> method should always
 be used for range queries on the partition key (see <a class="reference internal" href="dml.html#where-clause"><span class="std std-ref">WHERE clauses</span></a>).</li>
 </ul>
 </div>
@@ -349,8 +349,8 @@
 <h2>3.0.2<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Type validation for the <a class="reference internal" href="definitions.html#constants"><span class="std std-ref">constants</span></a> has been fixed. For instance, the implementation used to allow
-<code class="docutils literal"><span class="pre">'2'</span></code> as a valid value for an <code class="docutils literal"><span class="pre">int</span></code> column (interpreting it has the equivalent of <code class="docutils literal"><span class="pre">2</span></code>), or <code class="docutils literal"><span class="pre">42</span></code> as a valid
-<code class="docutils literal"><span class="pre">blob</span></code> value (in which case <code class="docutils literal"><span class="pre">42</span></code> was interpreted as an hexadecimal representation of the blob). This is no longer
+<code class="docutils literal notranslate"><span class="pre">'2'</span></code> as a valid value for an <code class="docutils literal notranslate"><span class="pre">int</span></code> column (interpreting it has the equivalent of <code class="docutils literal notranslate"><span class="pre">2</span></code>), or <code class="docutils literal notranslate"><span class="pre">42</span></code> as a valid
+<code class="docutils literal notranslate"><span class="pre">blob</span></code> value (in which case <code class="docutils literal notranslate"><span class="pre">42</span></code> was interpreted as an hexadecimal representation of the blob). This is no longer
 the case, type validation of constants is now more strict. See the <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> section for details
 on which constant is allowed for which type.</li>
 <li>The type validation fixed of the previous point has lead to the introduction of blobs constants to allow the input of
@@ -364,11 +364,11 @@
 <div class="section" id="id23">
 <h2>3.0.1<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Date strings (and timestamps) are no longer accepted as valid <code class="docutils literal"><span class="pre">timeuuid</span></code> values. Doing so was a bug in the sense
-that date string are not valid <code class="docutils literal"><span class="pre">timeuuid</span></code>, and it was thus resulting in <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4936">confusing behaviors</a>. However, the following new methods have been added to help
-working with <code class="docutils literal"><span class="pre">timeuuid</span></code>: <code class="docutils literal"><span class="pre">now</span></code>, <code class="docutils literal"><span class="pre">minTimeuuid</span></code>, <code class="docutils literal"><span class="pre">maxTimeuuid</span></code> ,
-<code class="docutils literal"><span class="pre">dateOf</span></code> and <code class="docutils literal"><span class="pre">unixTimestampOf</span></code>.</li>
-<li>Float constants now support the exponent notation. In other words, <code class="docutils literal"><span class="pre">4.2E10</span></code> is now a valid floating point value.</li>
+<li>Date strings (and timestamps) are no longer accepted as valid <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> values. Doing so was a bug in the sense
+that date string are not valid <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code>, and it was thus resulting in <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4936">confusing behaviors</a>. However, the following new methods have been added to help
+working with <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code>: <code class="docutils literal notranslate"><span class="pre">now</span></code>, <code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code>, <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code> ,
+<code class="docutils literal notranslate"><span class="pre">dateOf</span></code> and <code class="docutils literal notranslate"><span class="pre">unixTimestampOf</span></code>.</li>
+<li>Float constants now support the exponent notation. In other words, <code class="docutils literal notranslate"><span class="pre">4.2E10</span></code> is now a valid floating point value.</li>
 </ul>
 </div>
 <div class="section" id="versioning">
diff --git a/content/doc/3.11/cql/ddl.html b/content/doc/3.11/cql/ddl.html
index d00c4c7..3630515 100644
--- a/content/doc/3.11/cql/ddl.html
+++ b/content/doc/3.11/cql/ddl.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Manipulation" href="dml.html"/> <link rel="prev" title="Data Types" href="types.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Manipulation" href="dml.html"/> <link rel="prev" title="Data Types" href="types.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -184,37 +184,37 @@
 <h2>Common definitions<a class="headerlink" href="#common-definitions" title="Permalink to this headline">¶</a></h2>
 <p>The names of the keyspaces and tables are defined by the following grammar:</p>
 <pre>
-<strong id="grammar-token-keyspace_name">keyspace_name</strong> ::=  <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal"><span class="pre">name</span></code></a>
-<strong id="grammar-token-table_name">table_name   </strong> ::=  [ <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal"><span class="pre">name</span></code></a>
-<strong id="grammar-token-name">name         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted_name"><code class="xref docutils literal"><span class="pre">unquoted_name</span></code></a> | <a class="reference internal" href="#grammar-token-quoted_name"><code class="xref docutils literal"><span class="pre">quoted_name</span></code></a>
-<strong id="grammar-token-unquoted_name">unquoted_name</strong> ::=  re('[a-zA-Z_0-9]{1, 48}')
-<strong id="grammar-token-quoted_name">quoted_name  </strong> ::=  '&quot;' <a class="reference internal" href="#grammar-token-unquoted_name"><code class="xref docutils literal"><span class="pre">unquoted_name</span></code></a> '&quot;'
+<strong id="grammar-token-keyspace-name">keyspace_name</strong> ::=  <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal notranslate"><span class="pre">name</span></code></a>
+<strong id="grammar-token-table-name">table_name   </strong> ::=  [ <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal notranslate"><span class="pre">name</span></code></a>
+<strong id="grammar-token-name">name         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted-name"><code class="xref docutils literal notranslate"><span class="pre">unquoted_name</span></code></a> | <a class="reference internal" href="#grammar-token-quoted-name"><code class="xref docutils literal notranslate"><span class="pre">quoted_name</span></code></a>
+<strong id="grammar-token-unquoted-name">unquoted_name</strong> ::=  re('[a-zA-Z_0-9]{1, 48}')
+<strong id="grammar-token-quoted-name">quoted_name  </strong> ::=  '&quot;' <a class="reference internal" href="#grammar-token-unquoted-name"><code class="xref docutils literal notranslate"><span class="pre">unquoted_name</span></code></a> '&quot;'
 </pre>
 <p>Both keyspace and table name should be comprised of only alphanumeric characters, cannot be empty and are limited in
 size to 48 characters (that limit exists mostly to avoid filenames (which may include the keyspace and table name) to go
-over the limits of certain file systems). By default, keyspace and table names are case insensitive (<code class="docutils literal"><span class="pre">myTable</span></code> is
-equivalent to <code class="docutils literal"><span class="pre">mytable</span></code>) but case sensitivity can be forced by using double-quotes (<code class="docutils literal"><span class="pre">&quot;myTable&quot;</span></code> is different from
-<code class="docutils literal"><span class="pre">mytable</span></code>).</p>
+over the limits of certain file systems). By default, keyspace and table names are case insensitive (<code class="docutils literal notranslate"><span class="pre">myTable</span></code> is
+equivalent to <code class="docutils literal notranslate"><span class="pre">mytable</span></code>) but case sensitivity can be forced by using double-quotes (<code class="docutils literal notranslate"><span class="pre">&quot;myTable&quot;</span></code> is different from
+<code class="docutils literal notranslate"><span class="pre">mytable</span></code>).</p>
 <p>Further, a table is always part of a keyspace and a table name can be provided fully-qualified by the keyspace it is
 part of. If is is not fully-qualified, the table is assumed to be in the <em>current</em> keyspace (see <a class="reference internal" href="#use-statement"><span class="std std-ref">USE statement</span></a>).</p>
 <p>Further, the valid names for columns is simply defined as:</p>
 <pre>
-<strong id="grammar-token-column_name">column_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-column-name">column_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <p>We also define the notion of statement options for use in the following section:</p>
 <pre>
-<strong id="grammar-token-options">options</strong> ::=  <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal"><span class="pre">option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal"><span class="pre">option</span></code></a> )*
-<strong id="grammar-token-option">option </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> '=' ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref docutils literal"><span class="pre">constant</span></code></a> | <a class="reference internal" href="types.html#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a> )
+<strong id="grammar-token-options">options</strong> ::=  <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal notranslate"><span class="pre">option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal notranslate"><span class="pre">option</span></code></a> )*
+<strong id="grammar-token-option">option </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> '=' ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref docutils literal notranslate"><span class="pre">constant</span></code></a> | <a class="reference internal" href="types.html#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a> )
 </pre>
 </div>
 <div class="section" id="create-keyspace">
 <span id="create-keyspace-statement"></span><h2>CREATE KEYSPACE<a class="headerlink" href="#create-keyspace" title="Permalink to this headline">¶</a></h2>
-<p>A keyspace is created using a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> statement:</p>
+<p>A keyspace is created using a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_keyspace_statement">create_keyspace_statement</strong> ::=  CREATE KEYSPACE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
+<strong id="grammar-token-create-keyspace-statement">create_keyspace_statement</strong> ::=  CREATE KEYSPACE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
            <span class="k">WITH</span> <span class="n">replication</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;class&#39;</span><span class="p">:</span> <span class="s1">&#39;SimpleStrategy&#39;</span><span class="p">,</span> <span class="s1">&#39;replication_factor&#39;</span> <span class="p">:</span> <span class="mf">3</span><span class="p">};</span>
 
 <span class="k">CREATE</span> <span class="k">KEYSPACE</span> <span class="n">Excalibur</span>
@@ -222,7 +222,7 @@
             <span class="k">AND</span> <span class="n">durable_writes</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The supported <code class="docutils literal"><span class="pre">options</span></code> are:</p>
+<p>The supported <code class="docutils literal notranslate"><span class="pre">options</span></code> are:</p>
 <table border="1" class="docutils">
 <colgroup>
 <col width="16%" />
@@ -240,14 +240,14 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">replication</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">replication</span></code></td>
 <td><em>map</em></td>
 <td>yes</td>
 <td>&#160;</td>
 <td>The replication strategy and options to use for the keyspace (see
 details below).</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">durable_writes</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">durable_writes</span></code></td>
 <td><em>simple</em></td>
 <td>no</td>
 <td>true</td>
@@ -256,37 +256,37 @@
 </tr>
 </tbody>
 </table>
-<p>The <code class="docutils literal"><span class="pre">replication</span></code> property is mandatory and must at least contains the <code class="docutils literal"><span class="pre">'class'</span></code> sub-option which defines the
+<p>The <code class="docutils literal notranslate"><span class="pre">replication</span></code> property is mandatory and must at least contains the <code class="docutils literal notranslate"><span class="pre">'class'</span></code> sub-option which defines the
 <a class="reference internal" href="../architecture/dynamo.html#replication-strategy"><span class="std std-ref">replication strategy</span></a> class to use. The rest of the sub-options depends on what replication
-strategy is used. By default, Cassandra support the following <code class="docutils literal"><span class="pre">'class'</span></code>:</p>
+strategy is used. By default, Cassandra support the following <code class="docutils literal notranslate"><span class="pre">'class'</span></code>:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">'SimpleStrategy'</span></code>: A simple strategy that defines a replication factor for the whole cluster. The only sub-options
-supported is <code class="docutils literal"><span class="pre">'replication_factor'</span></code> to define that replication factor and is mandatory.</li>
-<li><code class="docutils literal"><span class="pre">'NetworkTopologyStrategy'</span></code>: A replication strategy that allows to set the replication factor independently for
+<li><code class="docutils literal notranslate"><span class="pre">'SimpleStrategy'</span></code>: A simple strategy that defines a replication factor for the whole cluster. The only sub-options
+supported is <code class="docutils literal notranslate"><span class="pre">'replication_factor'</span></code> to define that replication factor and is mandatory.</li>
+<li><code class="docutils literal notranslate"><span class="pre">'NetworkTopologyStrategy'</span></code>: A replication strategy that allows to set the replication factor independently for
 each data-center. The rest of the sub-options are key-value pairs where a key is a data-center name and its value is
 the associated replication factor.</li>
 </ul>
-<p>Attempting to create a keyspace that already exists will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
+<p>Attempting to create a keyspace that already exists will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
 it is used, the statement will be a no-op if the keyspace already exists.</p>
 </div>
 <div class="section" id="use">
 <span id="use-statement"></span><h2>USE<a class="headerlink" href="#use" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">USE</span></code> statement allows to change the <em>current</em> keyspace (for the <em>connection</em> on which it is executed). A number
-of objects in CQL are bound to a keyspace (tables, user-defined types, functions, ...) and the current keyspace is the
+<p>The <code class="docutils literal notranslate"><span class="pre">USE</span></code> statement allows to change the <em>current</em> keyspace (for the <em>connection</em> on which it is executed). A number
+of objects in CQL are bound to a keyspace (tables, user-defined types, functions, …) and the current keyspace is the
 default keyspace used when those objects are referred without a fully-qualified name (that is, without being prefixed a
-keyspace name). A <code class="docutils literal"><span class="pre">USE</span></code> statement simply takes the keyspace to use as current as argument:</p>
+keyspace name). A <code class="docutils literal notranslate"><span class="pre">USE</span></code> statement simply takes the keyspace to use as current as argument:</p>
 <pre>
-<strong id="grammar-token-use_statement">use_statement</strong> ::=  USE <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a>
+<strong id="grammar-token-use-statement">use_statement</strong> ::=  USE <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a>
 </pre>
 </div>
 <div class="section" id="alter-keyspace">
 <span id="alter-keyspace-statement"></span><h2>ALTER KEYSPACE<a class="headerlink" href="#alter-keyspace" title="Permalink to this headline">¶</a></h2>
-<p>An <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> statement allows to modify the options of a keyspace:</p>
+<p>An <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> statement allows to modify the options of a keyspace:</p>
 <pre>
-<strong id="grammar-token-alter_keyspace_statement">alter_keyspace_statement</strong> ::=  ALTER KEYSPACE <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
+<strong id="grammar-token-alter-keyspace-statement">alter_keyspace_statement</strong> ::=  ALTER KEYSPACE <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
           <span class="k">WITH</span> <span class="n">replication</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;class&#39;</span><span class="p">:</span> <span class="s1">&#39;SimpleStrategy&#39;</span><span class="p">,</span> <span class="s1">&#39;replication_factor&#39;</span> <span class="p">:</span> <span class="mf">4</span><span class="p">};</span>
 </pre></div>
 </div>
@@ -294,41 +294,41 @@
 </div>
 <div class="section" id="drop-keyspace">
 <span id="drop-keyspace-statement"></span><h2>DROP KEYSPACE<a class="headerlink" href="#drop-keyspace" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a keyspace can be done using the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> statement:</p>
+<p>Dropping a keyspace can be done using the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_keyspace_statement">drop_keyspace_statement</strong> ::=  DROP KEYSPACE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a>
+<strong id="grammar-token-drop-keyspace-statement">drop_keyspace_statement</strong> ::=  DROP KEYSPACE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>Dropping a keyspace results in the immediate, irreversible removal of that keyspace, including all the tables, UTD and
 functions in it, and all the data contained in those tables.</p>
-<p>If the keyspace does not exists, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
+<p>If the keyspace does not exists, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
 operation is a no-op.</p>
 </div>
 <div class="section" id="create-table">
 <span id="create-table-statement"></span><h2>CREATE TABLE<a class="headerlink" href="#create-table" title="Permalink to this headline">¶</a></h2>
-<p>Creating a new table uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement:</p>
+<p>Creating a new table uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_table_statement">create_table_statement</strong> ::=  CREATE TABLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-create-table-statement">create_table_statement</strong> ::=  CREATE TABLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
                             '('
-                                <a class="reference internal" href="#grammar-token-column_definition"><code class="xref docutils literal"><span class="pre">column_definition</span></code></a>
-                                ( ',' <a class="reference internal" href="#grammar-token-column_definition"><code class="xref docutils literal"><span class="pre">column_definition</span></code></a> )*
-                                [ ',' PRIMARY KEY '(' <a class="reference internal" href="#grammar-token-primary_key"><code class="xref docutils literal"><span class="pre">primary_key</span></code></a> ')' ]
-                            ')' [ WITH <a class="reference internal" href="#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a> ]
-<strong id="grammar-token-column_definition">column_definition     </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> [ STATIC ] [ PRIMARY KEY]
-<strong id="grammar-token-primary_key">primary_key           </strong> ::=  <a class="reference internal" href="#grammar-token-partition_key"><code class="xref docutils literal"><span class="pre">partition_key</span></code></a> [ ',' <a class="reference internal" href="#grammar-token-clustering_columns"><code class="xref docutils literal"><span class="pre">clustering_columns</span></code></a> ]
-<strong id="grammar-token-partition_key">partition_key         </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                            | '(' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')'
-<strong id="grammar-token-clustering_columns">clustering_columns    </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )*
-<strong id="grammar-token-table_options">table_options         </strong> ::=  COMPACT STORAGE [ AND <a class="reference internal" href="#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a> ]
-                            | CLUSTERING ORDER BY '(' <a class="reference internal" href="#grammar-token-clustering_order"><code class="xref docutils literal"><span class="pre">clustering_order</span></code></a> ')' [ AND <a class="reference internal" href="#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a> ]
-                            | <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
-<strong id="grammar-token-clustering_order">clustering_order      </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> (ASC | DESC) ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> (ASC | DESC) )*
+                                <a class="reference internal" href="#grammar-token-column-definition"><code class="xref docutils literal notranslate"><span class="pre">column_definition</span></code></a>
+                                ( ',' <a class="reference internal" href="#grammar-token-column-definition"><code class="xref docutils literal notranslate"><span class="pre">column_definition</span></code></a> )*
+                                [ ',' PRIMARY KEY '(' <a class="reference internal" href="#grammar-token-primary-key"><code class="xref docutils literal notranslate"><span class="pre">primary_key</span></code></a> ')' ]
+                            ')' [ WITH <a class="reference internal" href="#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a> ]
+<strong id="grammar-token-column-definition">column_definition     </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> [ STATIC ] [ PRIMARY KEY]
+<strong id="grammar-token-primary-key">primary_key           </strong> ::=  <a class="reference internal" href="#grammar-token-partition-key"><code class="xref docutils literal notranslate"><span class="pre">partition_key</span></code></a> [ ',' <a class="reference internal" href="#grammar-token-clustering-columns"><code class="xref docutils literal notranslate"><span class="pre">clustering_columns</span></code></a> ]
+<strong id="grammar-token-partition-key">partition_key         </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                            | '(' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')'
+<strong id="grammar-token-clustering-columns">clustering_columns    </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )*
+<strong id="grammar-token-table-options">table_options         </strong> ::=  COMPACT STORAGE [ AND <a class="reference internal" href="#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a> ]
+                            | CLUSTERING ORDER BY '(' <a class="reference internal" href="#grammar-token-clustering-order"><code class="xref docutils literal notranslate"><span class="pre">clustering_order</span></code></a> ')' [ AND <a class="reference internal" href="#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a> ]
+                            | <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
+<strong id="grammar-token-clustering-order">clustering_order      </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> (ASC | DESC) ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> (ASC | DESC) )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">monkeySpecies</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">monkeySpecies</span> <span class="p">(</span>
     <span class="n">species</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">common_name</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">population</span> <span class="nb">varint</span><span class="p">,</span>
@@ -356,26 +356,26 @@
 </div>
 <p>A CQL table has a name and is composed of a set of <em>rows</em>. Creating a table amounts to defining which <a class="reference internal" href="#column-definition"><span class="std std-ref">columns</span></a> the rows will be composed, which of those columns compose the <a class="reference internal" href="#primary-key"><span class="std std-ref">primary key</span></a>, as
 well as optional <a class="reference internal" href="#create-table-options"><span class="std std-ref">options</span></a> for the table.</p>
-<p>Attempting to create an already existing table will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> directive is used. If
+<p>Attempting to create an already existing table will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> directive is used. If
 it is used, the statement will be a no-op if the table already exists.</p>
 <div class="section" id="column-definitions">
 <span id="column-definition"></span><h3>Column definitions<a class="headerlink" href="#column-definitions" title="Permalink to this headline">¶</a></h3>
 <p>Every rows in a CQL table has a set of predefined columns defined at the time of the table creation (or added later
 using an <a class="reference internal" href="#alter-table-statement"><span class="std std-ref">alter statement</span></a>).</p>
-<p>A <a class="reference internal" href="#grammar-token-column_definition"><code class="xref std std-token docutils literal"><span class="pre">column_definition</span></code></a> is primarily comprised of the name of the column defined and it&#8217;s <a class="reference internal" href="types.html#data-types"><span class="std std-ref">type</span></a>,
+<p>A <a class="reference internal" href="#grammar-token-column-definition"><code class="xref std std-token docutils literal notranslate"><span class="pre">column_definition</span></code></a> is primarily comprised of the name of the column defined and it’s <a class="reference internal" href="types.html#data-types"><span class="std std-ref">type</span></a>,
 which restrict which values are accepted for that column. Additionally, a column definition can have the following
 modifiers:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">STATIC</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">STATIC</span></code></dt>
 <dd>it declares the column as being a <a class="reference internal" href="#static-columns"><span class="std std-ref">static column</span></a>.</dd>
-<dt><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code></dt>
 <dd>it declares the column as being the sole component of the <a class="reference internal" href="#primary-key"><span class="std std-ref">primary key</span></a> of the table.</dd>
 </dl>
 <div class="section" id="static-columns">
 <span id="id2"></span><h4>Static columns<a class="headerlink" href="#static-columns" title="Permalink to this headline">¶</a></h4>
-<p>Some columns can be declared as <code class="docutils literal"><span class="pre">STATIC</span></code> in a table definition. A column that is static will be “shared” by all the
+<p>Some columns can be declared as <code class="docutils literal notranslate"><span class="pre">STATIC</span></code> in a table definition. A column that is static will be “shared” by all the
 rows belonging to the same partition (having the same <a class="reference internal" href="#partition-key"><span class="std std-ref">partition key</span></a>). For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">pk</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">t</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">v</span> <span class="nb">text</span><span class="p">,</span>
@@ -393,30 +393,30 @@
    <span class="mf">0</span>  <span class="o">|</span> <span class="mf">1</span> <span class="o">|</span> <span class="s1">&#39;val1&#39;</span> <span class="o">|</span> <span class="s1">&#39;static1&#39;</span>
 </pre></div>
 </div>
-<p>As can be seen, the <code class="docutils literal"><span class="pre">s</span></code> value is the same (<code class="docutils literal"><span class="pre">static1</span></code>) for both of the row in the partition (the partition key in
-that example being <code class="docutils literal"><span class="pre">pk</span></code>, both rows are in that same partition): the 2nd insertion has overridden the value for <code class="docutils literal"><span class="pre">s</span></code>.</p>
+<p>As can be seen, the <code class="docutils literal notranslate"><span class="pre">s</span></code> value is the same (<code class="docutils literal notranslate"><span class="pre">static1</span></code>) for both of the row in the partition (the partition key in
+that example being <code class="docutils literal notranslate"><span class="pre">pk</span></code>, both rows are in that same partition): the 2nd insertion has overridden the value for <code class="docutils literal notranslate"><span class="pre">s</span></code>.</p>
 <p>The use of static columns as the following restrictions:</p>
 <ul class="simple">
-<li>tables with the <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option (see below) cannot use them.</li>
+<li>tables with the <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option (see below) cannot use them.</li>
 <li>a table without clustering columns cannot have static columns (in a table without clustering columns, every partition
 has only one row, and so every column is inherently static).</li>
-<li>only non <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> columns can be static.</li>
+<li>only non <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> columns can be static.</li>
 </ul>
 </div>
 </div>
 <div class="section" id="the-primary-key">
 <span id="primary-key"></span><h3>The Primary key<a class="headerlink" href="#the-primary-key" title="Permalink to this headline">¶</a></h3>
-<p>Within a table, a row is uniquely identified by its <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, and hence all table <strong>must</strong> define a PRIMARY KEY
-(and only one). A <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> definition is composed of one or more of the columns defined in the table.
-Syntactically, the primary key is defined the keywords <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> followed by comma-separated list of the column
+<p>Within a table, a row is uniquely identified by its <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, and hence all table <strong>must</strong> define a PRIMARY KEY
+(and only one). A <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> definition is composed of one or more of the columns defined in the table.
+Syntactically, the primary key is defined the keywords <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> followed by comma-separated list of the column
 names composing it within parenthesis, but if the primary key has only one column, one can alternatively follow that
-column definition by the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> keywords. The order of the columns in the primary key definition matter.</p>
+column definition by the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> keywords. The order of the columns in the primary key definition matter.</p>
 <p>A CQL primary key is composed of 2 parts:</p>
 <ul>
 <li><p class="first">the <a class="reference internal" href="#partition-key"><span class="std std-ref">partition key</span></a> part. It is the first component of the primary key definition. It can be a
 single column or, using additional parenthesis, can be multiple columns. A table always have at least a partition key,
 the smallest possible table definition is:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span><span class="n">k</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span><span class="n">k</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">);</span>
 </pre></div>
 </div>
 </li>
@@ -426,10 +426,10 @@
 </ul>
 <p>Some example of primary key definition are:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a)</span></code>: <code class="docutils literal"><span class="pre">a</span></code> is the partition key and there is no clustering columns.</li>
-<li><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a,</span> <span class="pre">b,</span> <span class="pre">c)</span></code> : <code class="docutils literal"><span class="pre">a</span></code> is the partition key and <code class="docutils literal"><span class="pre">b</span></code> and <code class="docutils literal"><span class="pre">c</span></code> are the clustering columns.</li>
-<li><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">((a,</span> <span class="pre">b),</span> <span class="pre">c)</span></code> : <code class="docutils literal"><span class="pre">a</span></code> and <code class="docutils literal"><span class="pre">b</span></code> compose the partition key (this is often called a <em>composite</em> partition
-key) and <code class="docutils literal"><span class="pre">c</span></code> is the clustering column.</li>
+<li><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a)</span></code>: <code class="docutils literal notranslate"><span class="pre">a</span></code> is the partition key and there is no clustering columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a,</span> <span class="pre">b,</span> <span class="pre">c)</span></code> : <code class="docutils literal notranslate"><span class="pre">a</span></code> is the partition key and <code class="docutils literal notranslate"><span class="pre">b</span></code> and <code class="docutils literal notranslate"><span class="pre">c</span></code> are the clustering columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">((a,</span> <span class="pre">b),</span> <span class="pre">c)</span></code> : <code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> compose the partition key (this is often called a <em>composite</em> partition
+key) and <code class="docutils literal notranslate"><span class="pre">c</span></code> is the clustering column.</li>
 </ul>
 <div class="section" id="the-partition-key">
 <span id="partition-key"></span><h4>The partition key<a class="headerlink" href="#the-partition-key" title="Permalink to this headline">¶</a></h4>
@@ -437,7 +437,7 @@
 for their partition key. Note that if the partition key is composed of multiple columns, then rows belong to the same
 partition only they have the same values for all those partition key column. So for instance, given the following table
 definition and content:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">a</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">b</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c</span> <span class="nb">int</span><span class="p">,</span>
@@ -455,8 +455,8 @@
    <span class="mf">1</span> <span class="o">|</span> <span class="mf">1</span> <span class="o">|</span> <span class="mf">4</span> <span class="o">|</span> <span class="mf">4</span>    <span class="c1">// row 5</span>
 </pre></div>
 </div>
-<p><code class="docutils literal"><span class="pre">row</span> <span class="pre">1</span></code> and <code class="docutils literal"><span class="pre">row</span> <span class="pre">2</span></code> are in the same partition, <code class="docutils literal"><span class="pre">row</span> <span class="pre">3</span></code> and <code class="docutils literal"><span class="pre">row</span> <span class="pre">4</span></code> are also in the same partition (but a
-different one) and <code class="docutils literal"><span class="pre">row</span> <span class="pre">5</span></code> is in yet another partition.</p>
+<p><code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">1</span></code> and <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">2</span></code> are in the same partition, <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">3</span></code> and <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">4</span></code> are also in the same partition (but a
+different one) and <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">5</span></code> is in yet another partition.</p>
 <p>Note that a table always has a partition key, and that if the table has no <a class="reference internal" href="#clustering-columns"><span class="std std-ref">clustering columns</span></a>, then every partition of that table is only comprised of a single row (since the primary key
 uniquely identifies rows and the primary key is equal to the partition key if there is no clustering columns).</p>
 <p>The most important property of partition is that all the rows belonging to the same partition are guarantee to be stored
@@ -476,7 +476,7 @@
 <p>The clustering columns of a table defines the clustering order for the partition of that table. For a given
 <a class="reference internal" href="#partition-key"><span class="std std-ref">partition</span></a>, all the rows are physically ordered inside Cassandra by that clustering order. For
 instance, given:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">a</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">b</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c</span> <span class="nb">int</span><span class="p">,</span>
@@ -493,17 +493,17 @@
 </pre></div>
 </div>
 <p>then the rows (which all belong to the same partition) are all stored internally in the order of the values of their
-<code class="docutils literal"><span class="pre">b</span></code> column (the order they are displayed above). So where the partition key of the table allows to group rows on the
+<code class="docutils literal notranslate"><span class="pre">b</span></code> column (the order they are displayed above). So where the partition key of the table allows to group rows on the
 same replica set, the clustering columns controls how those rows are stored on the replica. That sorting allows the
-retrieval of a range of rows within a partition (for instance, in the example above, <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">t</span> <span class="pre">WHERE</span> <span class="pre">a</span> <span class="pre">=</span> <span class="pre">0</span> <span class="pre">AND</span> <span class="pre">b</span>
+retrieval of a range of rows within a partition (for instance, in the example above, <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">t</span> <span class="pre">WHERE</span> <span class="pre">a</span> <span class="pre">=</span> <span class="pre">0</span> <span class="pre">AND</span> <span class="pre">b</span>
 <span class="pre">&gt;</span> <span class="pre">1</span> <span class="pre">and</span> <span class="pre">b</span> <span class="pre">&lt;=</span> <span class="pre">3</span></code>) to be very efficient.</p>
 </div>
 </div>
 <div class="section" id="table-options">
 <span id="create-table-options"></span><h3>Table options<a class="headerlink" href="#table-options" title="Permalink to this headline">¶</a></h3>
-<p>A CQL table has a number of options that can be set at creation (and, for most of them, <a class="reference internal" href="#alter-table-statement"><span class="std std-ref">altered</span></a> later). These options are specified after the <code class="docutils literal"><span class="pre">WITH</span></code> keyword.</p>
+<p>A CQL table has a number of options that can be set at creation (and, for most of them, <a class="reference internal" href="#alter-table-statement"><span class="std std-ref">altered</span></a> later). These options are specified after the <code class="docutils literal notranslate"><span class="pre">WITH</span></code> keyword.</p>
 <p>Amongst those options, two important ones cannot be changed after creation and influence which queries can be done
-against the table: the <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option and the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option. Those, as well as the other
+against the table: the <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option and the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option. Those, as well as the other
 options of a table are described in the following sections.</p>
 <div class="section" id="compact-tables">
 <span id="id3"></span><h4>Compact tables<a class="headerlink" href="#compact-tables" title="Permalink to this headline">¶</a></h4>
@@ -511,12 +511,12 @@
 <p class="first admonition-title">Warning</p>
 <p class="last">Since Cassandra 3.0, compact tables have the exact same layout internally than non compact ones (for the
 same schema obviously), and declaring a table compact <strong>only</strong> creates artificial limitations on the table definition
-and usage that are necessary to ensure backward compatibility with the deprecated Thrift API. And as <code class="docutils literal"><span class="pre">COMPACT</span>
-<span class="pre">STORAGE</span></code> cannot, as of Cassandra 3.11.3, be removed, it is strongly discouraged to create new table with the
-<code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option.</p>
+and usage that are necessary to ensure backward compatibility with the deprecated Thrift API. And as <code class="docutils literal notranslate"><span class="pre">COMPACT</span>
+<span class="pre">STORAGE</span></code> cannot, as of Cassandra 3.11.7, be removed, it is strongly discouraged to create new table with the
+<code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option.</p>
 </div>
-<p>A <em>compact</em> table is one defined with the <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option. This option is mainly targeted towards backward
-compatibility for definitions created before CQL version 3 (see <a class="reference external" href="http://www.datastax.com/dev/blog/thrift-to-cql3">www.datastax.com/dev/blog/thrift-to-cql3</a> for more details) and shouldn&#8217;t be used for new tables. Declaring a
+<p>A <em>compact</em> table is one defined with the <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option. This option is mainly targeted towards backward
+compatibility for definitions created before CQL version 3 (see <a class="reference external" href="http://www.datastax.com/dev/blog/thrift-to-cql3">www.datastax.com/dev/blog/thrift-to-cql3</a> for more details) and shouldn’t be used for new tables. Declaring a
 table with this option creates limitations for the table which are largely arbitrary but necessary for backward
 compatibility with the (deprecated) Thrift API. Amongst those limitation:</p>
 <ul class="simple">
@@ -529,21 +529,21 @@
 <div class="section" id="reversing-the-clustering-order">
 <span id="clustering-order"></span><h4>Reversing the clustering order<a class="headerlink" href="#reversing-the-clustering-order" title="Permalink to this headline">¶</a></h4>
 <p>The clustering order of a table is defined by the <a class="reference internal" href="#clustering-columns"><span class="std std-ref">clustering columns</span></a> of that table. By
-default, that ordering is based on natural order of those clustering order, but the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> allows to
+default, that ordering is based on natural order of those clustering order, but the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> allows to
 change that clustering order to use the <em>reverse</em> natural order for some (potentially all) of the columns.</p>
-<p>The <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option takes the comma-separated list of the clustering column, each with a <code class="docutils literal"><span class="pre">ASC</span></code> (for
-<em>ascendant</em>, e.g. the natural order) or <code class="docutils literal"><span class="pre">DESC</span></code> (for <em>descendant</em>, e.g. the reverse natural order). Note in particular
-that the default (if the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option is not used) is strictly equivalent to using the option with all
-clustering columns using the <code class="docutils literal"><span class="pre">ASC</span></code> modifier.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option takes the comma-separated list of the clustering column, each with a <code class="docutils literal notranslate"><span class="pre">ASC</span></code> (for
+<em>ascendant</em>, e.g. the natural order) or <code class="docutils literal notranslate"><span class="pre">DESC</span></code> (for <em>descendant</em>, e.g. the reverse natural order). Note in particular
+that the default (if the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option is not used) is strictly equivalent to using the option with all
+clustering columns using the <code class="docutils literal notranslate"><span class="pre">ASC</span></code> modifier.</p>
 <p>Note that this option is basically a hint for the storage engine to change the order in which it stores the row but it
 has 3 visible consequences:</p>
 <dl class="docutils">
-<dt># it limits which <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause are allowed for <a class="reference internal" href="dml.html#select-statement"><span class="std std-ref">selects</span></a> on that table. You can only</dt>
+<dt># it limits which <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause are allowed for <a class="reference internal" href="dml.html#select-statement"><span class="std std-ref">selects</span></a> on that table. You can only</dt>
 <dd>order results by the clustering order or the reverse clustering order. Meaning that if a table has 2 clustering column
-<code class="docutils literal"><span class="pre">a</span></code> and <code class="docutils literal"><span class="pre">b</span></code> and you defined <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">CLUSTERING</span> <span class="pre">ORDER</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code>, then in queries you will be allowed to use
-<code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> and (reverse clustering order) <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code> but <strong>not</strong> <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span>
-<span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> (nor <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code>).</dd>
-<dt># it also change the default order of results when queried (if no <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> is provided). Results are always returned</dt>
+<code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> and you defined <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">CLUSTERING</span> <span class="pre">ORDER</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code>, then in queries you will be allowed to use
+<code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> and (reverse clustering order) <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code> but <strong>not</strong> <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span>
+<span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> (nor <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code>).</dd>
+<dt># it also change the default order of results when queried (if no <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> is provided). Results are always returned</dt>
 <dd>in clustering order (within a partition).</dd>
 <dt># it has a small performance impact on some queries as queries in reverse clustering order are slower than the one in</dt>
 <dd>forward clustering order. In practice, this means that if you plan on querying mostly in the reverse natural order of
@@ -573,19 +573,19 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">comment</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">comment</span></code></td>
 <td><em>simple</em></td>
 <td>none</td>
 <td>A free-form, human-readable comment.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">read_repair_chance</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">read_repair_chance</span></code></td>
 <td><em>simple</em></td>
 <td>0.1</td>
 <td>The probability with which to query extra nodes (e.g.
 more nodes than required by the consistency level) for
 the purpose of read repairs.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">dclocal_read_repair_chance</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">dclocal_read_repair_chance</span></code></td>
 <td><em>simple</em></td>
 <td>0</td>
 <td>The probability with which to query extra nodes (e.g.
@@ -593,13 +593,13 @@
 belonging to the same data center than the read
 coordinator for the purpose of read repairs.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">gc_grace_seconds</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code></td>
 <td><em>simple</em></td>
 <td>864000</td>
 <td>Time to wait before garbage collecting tombstones
 (deletion markers).</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code></td>
 <td><em>simple</em></td>
 <td>0.00075</td>
 <td>The target probability of false positive of the sstable
@@ -607,23 +607,23 @@
 the provided probability (thus lowering this value impact
 the size of bloom filters in-memory and on-disk)</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">default_time_to_live</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code></td>
 <td><em>simple</em></td>
 <td>0</td>
 <td>The default expiration time (“TTL”) in seconds for a
 table.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">compaction</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">compaction</span></code></td>
 <td><em>map</em></td>
 <td><em>see below</em></td>
 <td><a class="reference internal" href="#cql-compaction-options"><span class="std std-ref">Compaction options</span></a>.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">compression</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">compression</span></code></td>
 <td><em>map</em></td>
 <td><em>see below</em></td>
 <td><a class="reference internal" href="#cql-compression-options"><span class="std std-ref">Compression options</span></a>.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">caching</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">caching</span></code></td>
 <td><em>map</em></td>
 <td><em>see below</em></td>
 <td><a class="reference internal" href="#cql-caching-options"><span class="std std-ref">Caching options</span></a>.</td>
@@ -632,17 +632,17 @@
 </table>
 <div class="section" id="compaction-options">
 <span id="cql-compaction-options"></span><h5>Compaction options<a class="headerlink" href="#compaction-options" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">compaction</span></code> options must at least define the <code class="docutils literal"><span class="pre">'class'</span></code> sub-option, that defines the compaction strategy class
-to use. The default supported class are <code class="docutils literal"><span class="pre">'SizeTieredCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#stcs"><span class="std std-ref">STCS</span></a>),
-<code class="docutils literal"><span class="pre">'LeveledCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#lcs"><span class="std std-ref">LCS</span></a>) and <code class="docutils literal"><span class="pre">'TimeWindowCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>) (the
-<code class="docutils literal"><span class="pre">'DateTieredCompactionStrategy'</span></code> is also supported but is deprecated and <code class="docutils literal"><span class="pre">'TimeWindowCompactionStrategy'</span></code> should be
+<p>The <code class="docutils literal notranslate"><span class="pre">compaction</span></code> options must at least define the <code class="docutils literal notranslate"><span class="pre">'class'</span></code> sub-option, that defines the compaction strategy class
+to use. The default supported class are <code class="docutils literal notranslate"><span class="pre">'SizeTieredCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#stcs"><span class="std std-ref">STCS</span></a>),
+<code class="docutils literal notranslate"><span class="pre">'LeveledCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#lcs"><span class="std std-ref">LCS</span></a>) and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>) (the
+<code class="docutils literal notranslate"><span class="pre">'DateTieredCompactionStrategy'</span></code> is also supported but is deprecated and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> should be
 preferred instead). Custom strategy can be provided by specifying the full class name as a <a class="reference internal" href="definitions.html#constants"><span class="std std-ref">string constant</span></a>.</p>
 <p>All default strategies support a number of <a class="reference internal" href="../operating/compaction.html#compaction-options"><span class="std std-ref">common options</span></a>, as well as options specific to
 the strategy chosen (see the section corresponding to your strategy for details: <a class="reference internal" href="../operating/compaction.html#stcs-options"><span class="std std-ref">STCS</span></a>, <a class="reference internal" href="../operating/compaction.html#lcs-options"><span class="std std-ref">LCS</span></a> and <a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>).</p>
 </div>
 <div class="section" id="compression-options">
 <span id="cql-compression-options"></span><h5>Compression options<a class="headerlink" href="#compression-options" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">compression</span></code> options define if and how the sstables of the table are compressed. The following sub-options are
+<p>The <code class="docutils literal notranslate"><span class="pre">compression</span></code> options define if and how the sstables of the table are compressed. The following sub-options are
 available:</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -657,25 +657,25 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">class</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">class</span></code></td>
 <td>LZ4Compressor</td>
 <td>The compression algorithm to use. Default compressor are: LZ4Compressor,
-SnappyCompressor and DeflateCompressor. Use <code class="docutils literal"><span class="pre">'enabled'</span> <span class="pre">:</span> <span class="pre">false</span></code> to disable
+SnappyCompressor and DeflateCompressor. Use <code class="docutils literal notranslate"><span class="pre">'enabled'</span> <span class="pre">:</span> <span class="pre">false</span></code> to disable
 compression. Custom compressor can be provided by specifying the full class
 name as a “string constant”:#constants.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">enabled</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">enabled</span></code></td>
 <td>true</td>
 <td>Enable/disable sstable compression.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code></td>
 <td>64</td>
 <td>On disk SSTables are compressed by block (to allow random reads). This
 defines the size (in KB) of said block. Bigger values may improve the
 compression rate, but increases the minimum size of data to be read from disk
 for a read</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">crc_check_chance</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">crc_check_chance</span></code></td>
 <td>1.0</td>
 <td>When compression is enabled, each compressed block includes a checksum of
 that block for the purpose of detecting disk bitrot and avoiding the
@@ -687,7 +687,7 @@
 </tbody>
 </table>
 <p>For instance, to create a table with LZ4Compressor and a chunk_lenth_in_kb of 4KB:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
    <span class="n">id</span> <span class="nb">int</span><span class="p">,</span>
    <span class="k">key</span> <span class="nb">text</span><span class="p">,</span>
    <span class="n">value</span> <span class="nb">text</span><span class="p">,</span>
@@ -698,7 +698,7 @@
 </div>
 <div class="section" id="caching-options">
 <span id="cql-caching-options"></span><h5>Caching options<a class="headerlink" href="#caching-options" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">caching</span></code> options allows to configure both the <em>key cache</em> and the <em>row cache</em> for the table. The following
+<p>The <code class="docutils literal notranslate"><span class="pre">caching</span></code> options allows to configure both the <em>key cache</em> and the <em>row cache</em> for the table. The following
 sub-options are available:</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -713,22 +713,22 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">keys</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">keys</span></code></td>
 <td>ALL</td>
-<td>Whether to cache keys (“key cache”) for this table. Valid values are: <code class="docutils literal"><span class="pre">ALL</span></code> and
-<code class="docutils literal"><span class="pre">NONE</span></code>.</td>
+<td>Whether to cache keys (“key cache”) for this table. Valid values are: <code class="docutils literal notranslate"><span class="pre">ALL</span></code> and
+<code class="docutils literal notranslate"><span class="pre">NONE</span></code>.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">rows_per_partition</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">rows_per_partition</span></code></td>
 <td>NONE</td>
-<td>The amount of rows to cache per partition (“row cache”). If an integer <code class="docutils literal"><span class="pre">n</span></code> is
-specified, the first <code class="docutils literal"><span class="pre">n</span></code> queried rows of a partition will be cached. Other
-possible options are <code class="docutils literal"><span class="pre">ALL</span></code>, to cache all rows of a queried partition, or <code class="docutils literal"><span class="pre">NONE</span></code>
+<td>The amount of rows to cache per partition (“row cache”). If an integer <code class="docutils literal notranslate"><span class="pre">n</span></code> is
+specified, the first <code class="docutils literal notranslate"><span class="pre">n</span></code> queried rows of a partition will be cached. Other
+possible options are <code class="docutils literal notranslate"><span class="pre">ALL</span></code>, to cache all rows of a queried partition, or <code class="docutils literal notranslate"><span class="pre">NONE</span></code>
 to disable row caching.</td>
 </tr>
 </tbody>
 </table>
 <p>For instance, to create a table with both a key cache and 10 rows per partition:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
 <span class="n">id</span> <span class="nb">int</span><span class="p">,</span>
 <span class="k">key</span> <span class="nb">text</span><span class="p">,</span>
 <span class="n">value</span> <span class="nb">text</span><span class="p">,</span>
@@ -740,7 +740,7 @@
 <div class="section" id="other-considerations">
 <h5>Other considerations:<a class="headerlink" href="#other-considerations" title="Permalink to this headline">¶</a></h5>
 <ul class="simple">
-<li>Adding new columns (see <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> below) is a constant time operation. There is thus no need to try to
+<li>Adding new columns (see <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> below) is a constant time operation. There is thus no need to try to
 anticipate future usage when creating a table.</li>
 </ul>
 </div>
@@ -749,24 +749,24 @@
 </div>
 <div class="section" id="alter-table">
 <span id="alter-table-statement"></span><h2>ALTER TABLE<a class="headerlink" href="#alter-table" title="Permalink to this headline">¶</a></h2>
-<p>Altering an existing table uses the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
+<p>Altering an existing table uses the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_table_statement">alter_table_statement  </strong> ::=  ALTER TABLE <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a> <a class="reference internal" href="#grammar-token-alter_table_instruction"><code class="xref docutils literal"><span class="pre">alter_table_instruction</span></code></a>
-<strong id="grammar-token-alter_table_instruction">alter_table_instruction</strong> ::=  ADD <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )*
-                             | DROP <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )*
-                             | WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
+<strong id="grammar-token-alter-table-statement">alter_table_statement  </strong> ::=  ALTER TABLE <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a> <a class="reference internal" href="#grammar-token-alter-table-instruction"><code class="xref docutils literal notranslate"><span class="pre">alter_table_instruction</span></code></a>
+<strong id="grammar-token-alter-table-instruction">alter_table_instruction</strong> ::=  ADD <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )*
+                             | DROP <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )*
+                             | WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">addamsFamily</span> <span class="k">ADD</span> <span class="n">gravesite</span> <span class="nb">varchar</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">addamsFamily</span> <span class="k">ADD</span> <span class="n">gravesite</span> <span class="nb">varchar</span><span class="p">;</span>
 
 <span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">addamsFamily</span>
        <span class="k">WITH</span> <span class="n">comment</span> <span class="o">=</span> <span class="s1">&#39;A most excellent and useful table&#39;</span>
        <span class="k">AND</span> <span class="n">read_repair_chance</span> <span class="o">=</span> <span class="mf">0.2</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement can:</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement can:</p>
 <ul class="simple">
-<li>Add new column(s) to the table (through the <code class="docutils literal"><span class="pre">ADD</span></code> instruction). Note that the primary key of a table cannot be
+<li>Add new column(s) to the table (through the <code class="docutils literal notranslate"><span class="pre">ADD</span></code> instruction). Note that the primary key of a table cannot be
 changed and thus newly added column will, by extension, never be part of the primary key. Also note that <a class="reference internal" href="#compact-tables"><span class="std std-ref">compact
 tables</span></a> have restrictions regarding column addition. Note that this is constant (in the amount of
 data the cluster contains) time operation.</li>
@@ -774,15 +774,15 @@
 becomes immediately unavailable, its content is only removed lazily during compaction. Please also see the warnings
 below. Due to lazy removal, the altering itself is a constant (in the amount of data removed or contained in the
 cluster) time operation.</li>
-<li>Change some of the table options (through the <code class="docutils literal"><span class="pre">WITH</span></code> instruction). The <a class="reference internal" href="#create-table-options"><span class="std std-ref">supported options</span></a> are the same that when creating a table (outside of <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> and <code class="docutils literal"><span class="pre">CLUSTERING</span>
-<span class="pre">ORDER</span></code> that cannot be changed after creation). Note that setting any <code class="docutils literal"><span class="pre">compaction</span></code> sub-options has the effect of
-erasing all previous <code class="docutils literal"><span class="pre">compaction</span></code> options, so you need to re-specify all the sub-options if you want to keep them.
-The same note applies to the set of <code class="docutils literal"><span class="pre">compression</span></code> sub-options.</li>
+<li>Change some of the table options (through the <code class="docutils literal notranslate"><span class="pre">WITH</span></code> instruction). The <a class="reference internal" href="#create-table-options"><span class="std std-ref">supported options</span></a> are the same that when creating a table (outside of <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> and <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span>
+<span class="pre">ORDER</span></code> that cannot be changed after creation). Note that setting any <code class="docutils literal notranslate"><span class="pre">compaction</span></code> sub-options has the effect of
+erasing all previous <code class="docutils literal notranslate"><span class="pre">compaction</span></code> options, so you need to re-specify all the sub-options if you want to keep them.
+The same note applies to the set of <code class="docutils literal notranslate"><span class="pre">compression</span></code> sub-options.</li>
 </ul>
 <div class="admonition warning">
 <p class="first admonition-title">Warning</p>
-<p class="last">Dropping a column assumes that the timestamps used for the value of this column are &#8220;real&#8221; timestamp in
-microseconds. Using &#8220;real&#8221; timestamps in microseconds is the default is and is <strong>strongly</strong> recommended but as
+<p class="last">Dropping a column assumes that the timestamps used for the value of this column are “real” timestamp in
+microseconds. Using “real” timestamps in microseconds is the default is and is <strong>strongly</strong> recommended but as
 Cassandra allows the client to provide any timestamp on any table it is theoretically possible to use another
 convention. Please be aware that if you do so, dropping a column will not work correctly.</p>
 </div>
@@ -794,22 +794,22 @@
 </div>
 <div class="section" id="drop-table">
 <span id="drop-table-statement"></span><h2>DROP TABLE<a class="headerlink" href="#drop-table" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a table uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement:</p>
+<p>Dropping a table uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_table_statement">drop_table_statement</strong> ::=  DROP TABLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-drop-table-statement">drop_table_statement</strong> ::=  DROP TABLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
 </pre>
 <p>Dropping a table results in the immediate, irreversible removal of the table, including all data it contains.</p>
-<p>If the table does not exist, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
+<p>If the table does not exist, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
 operation is a no-op.</p>
 </div>
 <div class="section" id="truncate">
 <span id="truncate-statement"></span><h2>TRUNCATE<a class="headerlink" href="#truncate" title="Permalink to this headline">¶</a></h2>
-<p>A table can be truncated using the <code class="docutils literal"><span class="pre">TRUNCATE</span></code> statement:</p>
+<p>A table can be truncated using the <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-truncate_statement">truncate_statement</strong> ::=  TRUNCATE [ TABLE ] <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-truncate-statement">truncate_statement</strong> ::=  TRUNCATE [ TABLE ] <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
 </pre>
-<p>Note that <code class="docutils literal"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">foo</span></code> is allowed for consistency with other DDL statements but tables are the only object
-that can be truncated currently and so the <code class="docutils literal"><span class="pre">TABLE</span></code> keyword can be omitted.</p>
+<p>Note that <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">foo</span></code> is allowed for consistency with other DDL statements but tables are the only object
+that can be truncated currently and so the <code class="docutils literal notranslate"><span class="pre">TABLE</span></code> keyword can be omitted.</p>
 <p>Truncating a table permanently removes all existing data from the table, but without removing the table itself.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/definitions.html b/content/doc/3.11/cql/definitions.html
index e49c071..af6e651 100644
--- a/content/doc/3.11/cql/definitions.html
+++ b/content/doc/3.11/cql/definitions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Types" href="types.html"/> <link rel="prev" title="The Cassandra Query Language (CQL)" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Types" href="types.html"/> <link rel="prev" title="The Cassandra Query Language (CQL)" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -177,78 +177,78 @@
 <span id="id1"></span><h2>Conventions<a class="headerlink" href="#conventions" title="Permalink to this headline">¶</a></h2>
 <p>To aid in specifying the CQL syntax, we will use the following conventions in this document:</p>
 <ul class="simple">
-<li>Language rules will be given in an informal <a class="reference external" href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form#Variants">BNF variant</a> notation. In particular, we&#8217;ll use square brakets
-(<code class="docutils literal"><span class="pre">[</span> <span class="pre">item</span> <span class="pre">]</span></code>) for optional items, <code class="docutils literal"><span class="pre">*</span></code> and <code class="docutils literal"><span class="pre">+</span></code> for repeated items (where <code class="docutils literal"><span class="pre">+</span></code> imply at least one).</li>
+<li>Language rules will be given in an informal <a class="reference external" href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form#Variants">BNF variant</a> notation. In particular, we’ll use square brakets
+(<code class="docutils literal notranslate"><span class="pre">[</span> <span class="pre">item</span> <span class="pre">]</span></code>) for optional items, <code class="docutils literal notranslate"><span class="pre">*</span></code> and <code class="docutils literal notranslate"><span class="pre">+</span></code> for repeated items (where <code class="docutils literal notranslate"><span class="pre">+</span></code> imply at least one).</li>
 <li>The grammar will also use the following convention for convenience: non-terminal term will be lowercase (and link to
-their definition) while terminal keywords will be provided &#8220;all caps&#8221;. Note however that keywords are
+their definition) while terminal keywords will be provided “all caps”. Note however that keywords are
 <a class="reference internal" href="#identifiers"><span class="std std-ref">Identifiers and keywords</span></a> and are thus case insensitive in practice. We will also define some early construction using
-regexp, which we&#8217;ll indicate with <code class="docutils literal"><span class="pre">re(&lt;some</span> <span class="pre">regular</span> <span class="pre">expression&gt;)</span></code>.</li>
+regexp, which we’ll indicate with <code class="docutils literal notranslate"><span class="pre">re(&lt;some</span> <span class="pre">regular</span> <span class="pre">expression&gt;)</span></code>.</li>
 <li>The grammar is provided for documentation purposes and leave some minor details out.  For instance, the comma on the
-last column definition in a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement is optional but supported if present even though the grammar in
+last column definition in a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement is optional but supported if present even though the grammar in
 this document suggests otherwise. Also, not everything accepted by the grammar is necessarily valid CQL.</li>
-<li>References to keywords or pieces of CQL code in running text will be shown in a <code class="docutils literal"><span class="pre">fixed-width</span> <span class="pre">font</span></code>.</li>
+<li>References to keywords or pieces of CQL code in running text will be shown in a <code class="docutils literal notranslate"><span class="pre">fixed-width</span> <span class="pre">font</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="identifiers">
 <span id="identifiers-and-keywords"></span><h2>Identifiers and keywords<a class="headerlink" href="#identifiers" title="Permalink to this headline">¶</a></h2>
 <p>The CQL language uses <em>identifiers</em> (or <em>names</em>) to identify tables, columns and other objects. An identifier is a token
-matching the regular expression <code class="docutils literal"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code>.</p>
-<p>A number of such identifiers, like <code class="docutils literal"><span class="pre">SELECT</span></code> or <code class="docutils literal"><span class="pre">WITH</span></code>, are <em>keywords</em>. They have a fixed meaning for the language
+matching the regular expression <code class="docutils literal notranslate"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code>.</p>
+<p>A number of such identifiers, like <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> or <code class="docutils literal notranslate"><span class="pre">WITH</span></code>, are <em>keywords</em>. They have a fixed meaning for the language
 and most are reserved. The list of those keywords can be found in <a class="reference internal" href="appendices.html#appendix-a"><span class="std std-ref">Appendix A: CQL Keywords</span></a>.</p>
-<p>Identifiers and (unquoted) keywords are case insensitive. Thus <code class="docutils literal"><span class="pre">SELECT</span></code> is the same than <code class="docutils literal"><span class="pre">select</span></code> or <code class="docutils literal"><span class="pre">sElEcT</span></code>, and
-<code class="docutils literal"><span class="pre">myId</span></code> is the same than <code class="docutils literal"><span class="pre">myid</span></code> or <code class="docutils literal"><span class="pre">MYID</span></code>. A convention often used (in particular by the samples of this
+<p>Identifiers and (unquoted) keywords are case insensitive. Thus <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> is the same than <code class="docutils literal notranslate"><span class="pre">select</span></code> or <code class="docutils literal notranslate"><span class="pre">sElEcT</span></code>, and
+<code class="docutils literal notranslate"><span class="pre">myId</span></code> is the same than <code class="docutils literal notranslate"><span class="pre">myid</span></code> or <code class="docutils literal notranslate"><span class="pre">MYID</span></code>. A convention often used (in particular by the samples of this
 documentation) is to use upper case for keywords and lower case for other identifiers.</p>
 <p>There is a second kind of identifiers called <em>quoted identifiers</em> defined by enclosing an arbitrary sequence of
-characters (non empty) in double-quotes(<code class="docutils literal"><span class="pre">&quot;</span></code>). Quoted identifiers are never keywords. Thus <code class="docutils literal"><span class="pre">&quot;select&quot;</span></code> is not a
-reserved keyword and can be used to refer to a column (note that using this is particularly advised), while <code class="docutils literal"><span class="pre">select</span></code>
+characters (non empty) in double-quotes(<code class="docutils literal notranslate"><span class="pre">&quot;</span></code>). Quoted identifiers are never keywords. Thus <code class="docutils literal notranslate"><span class="pre">&quot;select&quot;</span></code> is not a
+reserved keyword and can be used to refer to a column (note that using this is particularly advised), while <code class="docutils literal notranslate"><span class="pre">select</span></code>
 would raise a parsing error. Also, contrarily to unquoted identifiers and keywords, quoted identifiers are case
-sensitive (<code class="docutils literal"><span class="pre">&quot;My</span> <span class="pre">Quoted</span> <span class="pre">Id&quot;</span></code> is <em>different</em> from <code class="docutils literal"><span class="pre">&quot;my</span> <span class="pre">quoted</span> <span class="pre">id&quot;</span></code>). A fully lowercase quoted identifier that matches
-<code class="docutils literal"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code> is however <em>equivalent</em> to the unquoted identifier obtained by removing the double-quote (so
-<code class="docutils literal"><span class="pre">&quot;myid&quot;</span></code> is equivalent to <code class="docutils literal"><span class="pre">myid</span></code> and to <code class="docutils literal"><span class="pre">myId</span></code> but different from <code class="docutils literal"><span class="pre">&quot;myId&quot;</span></code>).  Inside a quoted identifier, the
-double-quote character can be repeated to escape it, so <code class="docutils literal"><span class="pre">&quot;foo</span> <span class="pre">&quot;&quot;</span> <span class="pre">bar&quot;</span></code> is a valid identifier.</p>
+sensitive (<code class="docutils literal notranslate"><span class="pre">&quot;My</span> <span class="pre">Quoted</span> <span class="pre">Id&quot;</span></code> is <em>different</em> from <code class="docutils literal notranslate"><span class="pre">&quot;my</span> <span class="pre">quoted</span> <span class="pre">id&quot;</span></code>). A fully lowercase quoted identifier that matches
+<code class="docutils literal notranslate"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code> is however <em>equivalent</em> to the unquoted identifier obtained by removing the double-quote (so
+<code class="docutils literal notranslate"><span class="pre">&quot;myid&quot;</span></code> is equivalent to <code class="docutils literal notranslate"><span class="pre">myid</span></code> and to <code class="docutils literal notranslate"><span class="pre">myId</span></code> but different from <code class="docutils literal notranslate"><span class="pre">&quot;myId&quot;</span></code>).  Inside a quoted identifier, the
+double-quote character can be repeated to escape it, so <code class="docutils literal notranslate"><span class="pre">&quot;foo</span> <span class="pre">&quot;&quot;</span> <span class="pre">bar&quot;</span></code> is a valid identifier.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
 <p class="last"><em>quoted identifiers</em> allows to declare columns with arbitrary names, and those can sometime clash with
 specific names used by the server. For instance, when using conditional update, the server will respond with a
-result-set containing a special result named <code class="docutils literal"><span class="pre">&quot;[applied]&quot;</span></code>. If you’ve declared a column with such a name, this
+result-set containing a special result named <code class="docutils literal notranslate"><span class="pre">&quot;[applied]&quot;</span></code>. If you’ve declared a column with such a name, this
 could potentially confuse some tools and should be avoided. In general, unquoted identifiers should be preferred but
 if you use quoted identifiers, it is strongly advised to avoid any name enclosed by squared brackets (like
-<code class="docutils literal"><span class="pre">&quot;[applied]&quot;</span></code>) and any name that looks like a function call (like <code class="docutils literal"><span class="pre">&quot;f(x)&quot;</span></code>).</p>
+<code class="docutils literal notranslate"><span class="pre">&quot;[applied]&quot;</span></code>) and any name that looks like a function call (like <code class="docutils literal notranslate"><span class="pre">&quot;f(x)&quot;</span></code>).</p>
 </div>
 <p>More formally, we have:</p>
 <pre>
-<strong id="grammar-token-identifier">identifier         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted_identifier"><code class="xref docutils literal"><span class="pre">unquoted_identifier</span></code></a> | <a class="reference internal" href="#grammar-token-quoted_identifier"><code class="xref docutils literal"><span class="pre">quoted_identifier</span></code></a>
-<strong id="grammar-token-unquoted_identifier">unquoted_identifier</strong> ::=  re('[a-zA-Z][a-zA-Z0-9_]*')
-<strong id="grammar-token-quoted_identifier">quoted_identifier  </strong> ::=  '&quot;' (any character where &quot; can appear if doubled)+ '&quot;'
+<strong id="grammar-token-identifier">identifier         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted-identifier"><code class="xref docutils literal notranslate"><span class="pre">unquoted_identifier</span></code></a> | <a class="reference internal" href="#grammar-token-quoted-identifier"><code class="xref docutils literal notranslate"><span class="pre">quoted_identifier</span></code></a>
+<strong id="grammar-token-unquoted-identifier">unquoted_identifier</strong> ::=  re('[a-zA-Z][a-zA-Z0-9_]*')
+<strong id="grammar-token-quoted-identifier">quoted_identifier  </strong> ::=  '&quot;' (any character where &quot; can appear if doubled)+ '&quot;'
 </pre>
 </div>
 <div class="section" id="constants">
 <span id="id2"></span><h2>Constants<a class="headerlink" href="#constants" title="Permalink to this headline">¶</a></h2>
 <p>CQL defines the following kind of <em>constants</em>:</p>
 <pre>
-<strong id="grammar-token-constant">constant</strong> ::=  <a class="reference internal" href="#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> | <a class="reference internal" href="#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="#grammar-token-float"><code class="xref docutils literal"><span class="pre">float</span></code></a> | <a class="reference internal" href="#grammar-token-boolean"><code class="xref docutils literal"><span class="pre">boolean</span></code></a> | <a class="reference internal" href="#grammar-token-uuid"><code class="xref docutils literal"><span class="pre">uuid</span></code></a> | <a class="reference internal" href="#grammar-token-blob"><code class="xref docutils literal"><span class="pre">blob</span></code></a> | NULL
+<strong id="grammar-token-constant">constant</strong> ::=  <a class="reference internal" href="#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> | <a class="reference internal" href="#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="#grammar-token-float"><code class="xref docutils literal notranslate"><span class="pre">float</span></code></a> | <a class="reference internal" href="#grammar-token-boolean"><code class="xref docutils literal notranslate"><span class="pre">boolean</span></code></a> | <a class="reference internal" href="#grammar-token-uuid"><code class="xref docutils literal notranslate"><span class="pre">uuid</span></code></a> | <a class="reference internal" href="#grammar-token-blob"><code class="xref docutils literal notranslate"><span class="pre">blob</span></code></a> | NULL
 <strong id="grammar-token-string">string  </strong> ::=  '\'' (any character where ' can appear if doubled)+ '\''
               '$$' (any character other than '$$') '$$'
 <strong id="grammar-token-integer">integer </strong> ::=  re('-?[0-9]+')
 <strong id="grammar-token-float">float   </strong> ::=  re('-?[0-9]+(\.[0-9]*)?([eE][+-]?[0-9+])?') | NAN | INFINITY
 <strong id="grammar-token-boolean">boolean </strong> ::=  TRUE | FALSE
-<strong id="grammar-token-uuid">uuid    </strong> ::=  <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{8}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{12}
+<strong id="grammar-token-uuid">uuid    </strong> ::=  <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{8}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{12}
 <strong id="grammar-token-hex">hex     </strong> ::=  re(&quot;[0-9a-fA-F]&quot;)
-<strong id="grammar-token-blob">blob    </strong> ::=  '0' ('x' | 'X') <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>+
+<strong id="grammar-token-blob">blob    </strong> ::=  '0' ('x' | 'X') <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>+
 </pre>
 <p>In other words:</p>
 <ul class="simple">
-<li>A string constant is an arbitrary sequence of characters enclosed by single-quote(<code class="docutils literal"><span class="pre">'</span></code>). A single-quote
-can be included by repeating it, e.g. <code class="docutils literal"><span class="pre">'It''s</span> <span class="pre">raining</span> <span class="pre">today'</span></code>. Those are not to be confused with quoted
+<li>A string constant is an arbitrary sequence of characters enclosed by single-quote(<code class="docutils literal notranslate"><span class="pre">'</span></code>). A single-quote
+can be included by repeating it, e.g. <code class="docutils literal notranslate"><span class="pre">'It''s</span> <span class="pre">raining</span> <span class="pre">today'</span></code>. Those are not to be confused with quoted
 <a class="reference internal" href="#identifiers"><span class="std std-ref">Identifiers and keywords</span></a> that use double-quotes. Alternatively, a string can be defined by enclosing the arbitrary sequence
-of characters by two dollar characters, in which case single-quote can be used without escaping (<code class="docutils literal"><span class="pre">$$It's</span> <span class="pre">raining</span>
+of characters by two dollar characters, in which case single-quote can be used without escaping (<code class="docutils literal notranslate"><span class="pre">$$It's</span> <span class="pre">raining</span>
 <span class="pre">today$$</span></code>). That latter form is often used when defining <a class="reference internal" href="functions.html#udfs"><span class="std std-ref">user-defined functions</span></a> to avoid having to
-escape single-quote characters in function body (as they are more likely to occur than <code class="docutils literal"><span class="pre">$$</span></code>).</li>
-<li>Integer, float and boolean constant are defined as expected. Note however than float allows the special <code class="docutils literal"><span class="pre">NaN</span></code> and
-<code class="docutils literal"><span class="pre">Infinity</span></code> constants.</li>
+escape single-quote characters in function body (as they are more likely to occur than <code class="docutils literal notranslate"><span class="pre">$$</span></code>).</li>
+<li>Integer, float and boolean constant are defined as expected. Note however than float allows the special <code class="docutils literal notranslate"><span class="pre">NaN</span></code> and
+<code class="docutils literal notranslate"><span class="pre">Infinity</span></code> constants.</li>
 <li>CQL supports <a class="reference external" href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a> constants.</li>
-<li>Blobs content are provided in hexadecimal and prefixed by <code class="docutils literal"><span class="pre">0x</span></code>.</li>
-<li>The special <code class="docutils literal"><span class="pre">NULL</span></code> constant denotes the absence of value.</li>
+<li>Blobs content are provided in hexadecimal and prefixed by <code class="docutils literal notranslate"><span class="pre">0x</span></code>.</li>
+<li>The special <code class="docutils literal notranslate"><span class="pre">NULL</span></code> constant denotes the absence of value.</li>
 </ul>
 <p>For how these constants are typed, see the <a class="reference internal" href="types.html#data-types"><span class="std std-ref">Data Types</span></a> section.</p>
 </div>
@@ -256,11 +256,11 @@
 <h2>Terms<a class="headerlink" href="#terms" title="Permalink to this headline">¶</a></h2>
 <p>CQL has the notion of a <em>term</em>, which denotes the kind of values that CQL support. Terms are defined by:</p>
 <pre>
-<strong id="grammar-token-term">term         </strong> ::=  <a class="reference internal" href="#grammar-token-constant"><code class="xref docutils literal"><span class="pre">constant</span></code></a> | <a class="reference internal" href="#grammar-token-literal"><code class="xref docutils literal"><span class="pre">literal</span></code></a> | <a class="reference internal" href="#grammar-token-function_call"><code class="xref docutils literal"><span class="pre">function_call</span></code></a> | <a class="reference internal" href="#grammar-token-type_hint"><code class="xref docutils literal"><span class="pre">type_hint</span></code></a> | <a class="reference internal" href="#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a>
-<strong id="grammar-token-literal">literal      </strong> ::=  <a class="reference internal" href="types.html#grammar-token-collection_literal"><code class="xref docutils literal"><span class="pre">collection_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-udt_literal"><code class="xref docutils literal"><span class="pre">udt_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-tuple_literal"><code class="xref docutils literal"><span class="pre">tuple_literal</span></code></a>
-<strong id="grammar-token-function_call">function_call</strong> ::=  <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] ')'
-<strong id="grammar-token-type_hint">type_hint    </strong> ::=  '(' <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> `)` term
-<strong id="grammar-token-bind_marker">bind_marker  </strong> ::=  '?' | ':' <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-term">term         </strong> ::=  <a class="reference internal" href="#grammar-token-constant"><code class="xref docutils literal notranslate"><span class="pre">constant</span></code></a> | <a class="reference internal" href="#grammar-token-literal"><code class="xref docutils literal notranslate"><span class="pre">literal</span></code></a> | <a class="reference internal" href="#grammar-token-function-call"><code class="xref docutils literal notranslate"><span class="pre">function_call</span></code></a> | <a class="reference internal" href="#grammar-token-type-hint"><code class="xref docutils literal notranslate"><span class="pre">type_hint</span></code></a> | <a class="reference internal" href="#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a>
+<strong id="grammar-token-literal">literal      </strong> ::=  <a class="reference internal" href="types.html#grammar-token-collection-literal"><code class="xref docutils literal notranslate"><span class="pre">collection_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-udt-literal"><code class="xref docutils literal notranslate"><span class="pre">udt_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-tuple-literal"><code class="xref docutils literal notranslate"><span class="pre">tuple_literal</span></code></a>
+<strong id="grammar-token-function-call">function_call</strong> ::=  <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] ')'
+<strong id="grammar-token-type-hint">type_hint    </strong> ::=  '(' <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> `)` term
+<strong id="grammar-token-bind-marker">bind_marker  </strong> ::=  '?' | ':' <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <p>A term is thus one of:</p>
 <ul class="simple">
@@ -270,15 +270,15 @@
 <li>A function call: see <a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">the section on functions</span></a> for details on which <a class="reference internal" href="functions.html#native-functions"><span class="std std-ref">native function</span></a> exists and how to define your own <a class="reference internal" href="functions.html#udfs"><span class="std std-ref">user-defined ones</span></a>.</li>
 <li>A <em>type hint</em>: see the <span class="xref std std-ref">related section</span> for details.</li>
 <li>A bind marker, which denotes a variable to be bound at execution time. See the section on <a class="reference internal" href="#prepared-statements"><span class="std std-ref">Prepared Statements</span></a>
-for details. A bind marker can be either anonymous (<code class="docutils literal"><span class="pre">?</span></code>) or named (<code class="docutils literal"><span class="pre">:some_name</span></code>). The latter form provides a more
+for details. A bind marker can be either anonymous (<code class="docutils literal notranslate"><span class="pre">?</span></code>) or named (<code class="docutils literal notranslate"><span class="pre">:some_name</span></code>). The latter form provides a more
 convenient way to refer to the variable for binding it and should generally be preferred.</li>
 </ul>
 </div>
 <div class="section" id="comments">
 <h2>Comments<a class="headerlink" href="#comments" title="Permalink to this headline">¶</a></h2>
-<p>A comment in CQL is a line beginning by either double dashes (<code class="docutils literal"><span class="pre">--</span></code>) or double slash (<code class="docutils literal"><span class="pre">//</span></code>).</p>
-<p>Multi-line comments are also supported through enclosure within <code class="docutils literal"><span class="pre">/*</span></code> and <code class="docutils literal"><span class="pre">*/</span></code> (but nesting is not supported).</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">-- This is a comment</span>
+<p>A comment in CQL is a line beginning by either double dashes (<code class="docutils literal notranslate"><span class="pre">--</span></code>) or double slash (<code class="docutils literal notranslate"><span class="pre">//</span></code>).</p>
+<p>Multi-line comments are also supported through enclosure within <code class="docutils literal notranslate"><span class="pre">/*</span></code> and <code class="docutils literal notranslate"><span class="pre">*/</span></code> (but nesting is not supported).</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">-- This is a comment</span>
 <span class="c1">// This is a comment too</span>
 <span class="cm">/* This is</span>
 <span class="cm">   a multi-line comment */</span>
@@ -301,61 +301,61 @@
 </ul>
 <p>All the statements are listed below and are described in the rest of this documentation (see links above):</p>
 <pre>
-<strong id="grammar-token-cql_statement">cql_statement               </strong> ::=  <a class="reference internal" href="#grammar-token-statement"><code class="xref docutils literal"><span class="pre">statement</span></code></a> [ ';' ]
-<strong id="grammar-token-statement">statement                   </strong> ::=  <a class="reference internal" href="#grammar-token-ddl_statement"><code class="xref docutils literal"><span class="pre">ddl_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-dml_statement"><code class="xref docutils literal"><span class="pre">dml_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-secondary_index_statement"><code class="xref docutils literal"><span class="pre">secondary_index_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-materialized_view_statement"><code class="xref docutils literal"><span class="pre">materialized_view_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-role_or_permission_statement"><code class="xref docutils literal"><span class="pre">role_or_permission_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-udf_statement"><code class="xref docutils literal"><span class="pre">udf_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-udt_statement"><code class="xref docutils literal"><span class="pre">udt_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-trigger_statement"><code class="xref docutils literal"><span class="pre">trigger_statement</span></code></a>
-<strong id="grammar-token-ddl_statement">ddl_statement               </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-use_statement"><code class="xref docutils literal"><span class="pre">use_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-create_keyspace_statement"><code class="xref docutils literal"><span class="pre">create_keyspace_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-alter_keyspace_statement"><code class="xref docutils literal"><span class="pre">alter_keyspace_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-drop_keyspace_statement"><code class="xref docutils literal"><span class="pre">drop_keyspace_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-create_table_statement"><code class="xref docutils literal"><span class="pre">create_table_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-alter_table_statement"><code class="xref docutils literal"><span class="pre">alter_table_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-drop_table_statement"><code class="xref docutils literal"><span class="pre">drop_table_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-truncate_statement"><code class="xref docutils literal"><span class="pre">truncate_statement</span></code></a>
-<strong id="grammar-token-dml_statement">dml_statement               </strong> ::=  <a class="reference internal" href="dml.html#grammar-token-select_statement"><code class="xref docutils literal"><span class="pre">select_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-insert_statement"><code class="xref docutils literal"><span class="pre">insert_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-update_statement"><code class="xref docutils literal"><span class="pre">update_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-delete_statement"><code class="xref docutils literal"><span class="pre">delete_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-batch_statement"><code class="xref docutils literal"><span class="pre">batch_statement</span></code></a>
-<strong id="grammar-token-secondary_index_statement">secondary_index_statement   </strong> ::=  <a class="reference internal" href="indexes.html#grammar-token-create_index_statement"><code class="xref docutils literal"><span class="pre">create_index_statement</span></code></a>
-                                  | <a class="reference internal" href="indexes.html#grammar-token-drop_index_statement"><code class="xref docutils literal"><span class="pre">drop_index_statement</span></code></a>
-<strong id="grammar-token-materialized_view_statement">materialized_view_statement </strong> ::=  <a class="reference internal" href="mvs.html#grammar-token-create_materialized_view_statement"><code class="xref docutils literal"><span class="pre">create_materialized_view_statement</span></code></a>
-                                  | <a class="reference internal" href="mvs.html#grammar-token-drop_materialized_view_statement"><code class="xref docutils literal"><span class="pre">drop_materialized_view_statement</span></code></a>
-<strong id="grammar-token-role_or_permission_statement">role_or_permission_statement</strong> ::=  <a class="reference internal" href="security.html#grammar-token-create_role_statement"><code class="xref docutils literal"><span class="pre">create_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-alter_role_statement"><code class="xref docutils literal"><span class="pre">alter_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-drop_role_statement"><code class="xref docutils literal"><span class="pre">drop_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-grant_role_statement"><code class="xref docutils literal"><span class="pre">grant_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-revoke_role_statement"><code class="xref docutils literal"><span class="pre">revoke_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-list_roles_statement"><code class="xref docutils literal"><span class="pre">list_roles_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-grant_permission_statement"><code class="xref docutils literal"><span class="pre">grant_permission_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-revoke_permission_statement"><code class="xref docutils literal"><span class="pre">revoke_permission_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-list_permissions_statement"><code class="xref docutils literal"><span class="pre">list_permissions_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-create_user_statement"><code class="xref docutils literal"><span class="pre">create_user_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-alter_user_statement"><code class="xref docutils literal"><span class="pre">alter_user_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-drop_user_statement"><code class="xref docutils literal"><span class="pre">drop_user_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-list_users_statement"><code class="xref docutils literal"><span class="pre">list_users_statement</span></code></a>
-<strong id="grammar-token-udf_statement">udf_statement               </strong> ::=  <a class="reference internal" href="functions.html#grammar-token-create_function_statement"><code class="xref docutils literal"><span class="pre">create_function_statement</span></code></a>
-                                  | <a class="reference internal" href="functions.html#grammar-token-drop_function_statement"><code class="xref docutils literal"><span class="pre">drop_function_statement</span></code></a>
-                                  | <a class="reference internal" href="functions.html#grammar-token-create_aggregate_statement"><code class="xref docutils literal"><span class="pre">create_aggregate_statement</span></code></a>
-                                  | <a class="reference internal" href="functions.html#grammar-token-drop_aggregate_statement"><code class="xref docutils literal"><span class="pre">drop_aggregate_statement</span></code></a>
-<strong id="grammar-token-udt_statement">udt_statement               </strong> ::=  <a class="reference internal" href="types.html#grammar-token-create_type_statement"><code class="xref docutils literal"><span class="pre">create_type_statement</span></code></a>
-                                  | <a class="reference internal" href="types.html#grammar-token-alter_type_statement"><code class="xref docutils literal"><span class="pre">alter_type_statement</span></code></a>
-                                  | <a class="reference internal" href="types.html#grammar-token-drop_type_statement"><code class="xref docutils literal"><span class="pre">drop_type_statement</span></code></a>
-<strong id="grammar-token-trigger_statement">trigger_statement           </strong> ::=  <a class="reference internal" href="triggers.html#grammar-token-create_trigger_statement"><code class="xref docutils literal"><span class="pre">create_trigger_statement</span></code></a>
-                                  | <a class="reference internal" href="triggers.html#grammar-token-drop_trigger_statement"><code class="xref docutils literal"><span class="pre">drop_trigger_statement</span></code></a>
+<strong id="grammar-token-cql-statement">cql_statement               </strong> ::=  <a class="reference internal" href="#grammar-token-statement"><code class="xref docutils literal notranslate"><span class="pre">statement</span></code></a> [ ';' ]
+<strong id="grammar-token-statement">statement                   </strong> ::=  <a class="reference internal" href="#grammar-token-ddl-statement"><code class="xref docutils literal notranslate"><span class="pre">ddl_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-dml-statement"><code class="xref docutils literal notranslate"><span class="pre">dml_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-secondary-index-statement"><code class="xref docutils literal notranslate"><span class="pre">secondary_index_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-materialized-view-statement"><code class="xref docutils literal notranslate"><span class="pre">materialized_view_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-role-or-permission-statement"><code class="xref docutils literal notranslate"><span class="pre">role_or_permission_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-udf-statement"><code class="xref docutils literal notranslate"><span class="pre">udf_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-udt-statement"><code class="xref docutils literal notranslate"><span class="pre">udt_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-trigger-statement"><code class="xref docutils literal notranslate"><span class="pre">trigger_statement</span></code></a>
+<strong id="grammar-token-ddl-statement">ddl_statement               </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-use-statement"><code class="xref docutils literal notranslate"><span class="pre">use_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-create-keyspace-statement"><code class="xref docutils literal notranslate"><span class="pre">create_keyspace_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-alter-keyspace-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_keyspace_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-drop-keyspace-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_keyspace_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-create-table-statement"><code class="xref docutils literal notranslate"><span class="pre">create_table_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-alter-table-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_table_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-drop-table-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_table_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-truncate-statement"><code class="xref docutils literal notranslate"><span class="pre">truncate_statement</span></code></a>
+<strong id="grammar-token-dml-statement">dml_statement               </strong> ::=  <a class="reference internal" href="dml.html#grammar-token-select-statement"><code class="xref docutils literal notranslate"><span class="pre">select_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-insert-statement"><code class="xref docutils literal notranslate"><span class="pre">insert_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-update-statement"><code class="xref docutils literal notranslate"><span class="pre">update_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-delete-statement"><code class="xref docutils literal notranslate"><span class="pre">delete_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-batch-statement"><code class="xref docutils literal notranslate"><span class="pre">batch_statement</span></code></a>
+<strong id="grammar-token-secondary-index-statement">secondary_index_statement   </strong> ::=  <a class="reference internal" href="indexes.html#grammar-token-create-index-statement"><code class="xref docutils literal notranslate"><span class="pre">create_index_statement</span></code></a>
+                                  | <a class="reference internal" href="indexes.html#grammar-token-drop-index-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_index_statement</span></code></a>
+<strong id="grammar-token-materialized-view-statement">materialized_view_statement </strong> ::=  <a class="reference internal" href="mvs.html#grammar-token-create-materialized-view-statement"><code class="xref docutils literal notranslate"><span class="pre">create_materialized_view_statement</span></code></a>
+                                  | <a class="reference internal" href="mvs.html#grammar-token-drop-materialized-view-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_materialized_view_statement</span></code></a>
+<strong id="grammar-token-role-or-permission-statement">role_or_permission_statement</strong> ::=  <a class="reference internal" href="security.html#grammar-token-create-role-statement"><code class="xref docutils literal notranslate"><span class="pre">create_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-alter-role-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-drop-role-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-grant-role-statement"><code class="xref docutils literal notranslate"><span class="pre">grant_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-revoke-role-statement"><code class="xref docutils literal notranslate"><span class="pre">revoke_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-list-roles-statement"><code class="xref docutils literal notranslate"><span class="pre">list_roles_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-grant-permission-statement"><code class="xref docutils literal notranslate"><span class="pre">grant_permission_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-revoke-permission-statement"><code class="xref docutils literal notranslate"><span class="pre">revoke_permission_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-list-permissions-statement"><code class="xref docutils literal notranslate"><span class="pre">list_permissions_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-create-user-statement"><code class="xref docutils literal notranslate"><span class="pre">create_user_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-alter-user-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_user_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-drop-user-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_user_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-list-users-statement"><code class="xref docutils literal notranslate"><span class="pre">list_users_statement</span></code></a>
+<strong id="grammar-token-udf-statement">udf_statement               </strong> ::=  <a class="reference internal" href="functions.html#grammar-token-create-function-statement"><code class="xref docutils literal notranslate"><span class="pre">create_function_statement</span></code></a>
+                                  | <a class="reference internal" href="functions.html#grammar-token-drop-function-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_function_statement</span></code></a>
+                                  | <a class="reference internal" href="functions.html#grammar-token-create-aggregate-statement"><code class="xref docutils literal notranslate"><span class="pre">create_aggregate_statement</span></code></a>
+                                  | <a class="reference internal" href="functions.html#grammar-token-drop-aggregate-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_aggregate_statement</span></code></a>
+<strong id="grammar-token-udt-statement">udt_statement               </strong> ::=  <a class="reference internal" href="types.html#grammar-token-create-type-statement"><code class="xref docutils literal notranslate"><span class="pre">create_type_statement</span></code></a>
+                                  | <a class="reference internal" href="types.html#grammar-token-alter-type-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_type_statement</span></code></a>
+                                  | <a class="reference internal" href="types.html#grammar-token-drop-type-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_type_statement</span></code></a>
+<strong id="grammar-token-trigger-statement">trigger_statement           </strong> ::=  <a class="reference internal" href="triggers.html#grammar-token-create-trigger-statement"><code class="xref docutils literal notranslate"><span class="pre">create_trigger_statement</span></code></a>
+                                  | <a class="reference internal" href="triggers.html#grammar-token-drop-trigger-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_trigger_statement</span></code></a>
 </pre>
 </div>
 <div class="section" id="prepared-statements">
 <span id="id3"></span><h2>Prepared Statements<a class="headerlink" href="#prepared-statements" title="Permalink to this headline">¶</a></h2>
 <p>CQL supports <em>prepared statements</em>. Prepared statements are an optimization that allows to parse a query only once but
 execute it multiple times with different concrete values.</p>
-<p>Any statement that uses at least one bind marker (see <a class="reference internal" href="#grammar-token-bind_marker"><code class="xref std std-token docutils literal"><span class="pre">bind_marker</span></code></a>) will need to be <em>prepared</em>. After which the statement
+<p>Any statement that uses at least one bind marker (see <a class="reference internal" href="#grammar-token-bind-marker"><code class="xref std std-token docutils literal notranslate"><span class="pre">bind_marker</span></code></a>) will need to be <em>prepared</em>. After which the statement
 can be <em>executed</em> by provided concrete values for each of its marker. The exact details of how a statement is prepared
 and then executed depends on the CQL driver used and you should refer to your driver documentation.</p>
 </div>
diff --git a/content/doc/3.11/cql/dml.html b/content/doc/3.11/cql/dml.html
index 3cb22ed..56b85f3 100644
--- a/content/doc/3.11/cql/dml.html
+++ b/content/doc/3.11/cql/dml.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Secondary Indexes" href="indexes.html"/> <link rel="prev" title="Data Definition" href="ddl.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Secondary Indexes" href="indexes.html"/> <link rel="prev" title="Data Definition" href="ddl.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -174,32 +174,32 @@
 <p>This section describes the statements supported by CQL to insert, update, delete and query data.</p>
 <div class="section" id="select">
 <span id="select-statement"></span><h2>SELECT<a class="headerlink" href="#select" title="Permalink to this headline">¶</a></h2>
-<p>Querying data from data is done using a <code class="docutils literal"><span class="pre">SELECT</span></code> statement:</p>
+<p>Querying data from data is done using a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-select_statement">select_statement</strong> ::=  SELECT [ JSON | DISTINCT ] ( <a class="reference internal" href="#grammar-token-select_clause"><code class="xref docutils literal"><span class="pre">select_clause</span></code></a> | '*' )
-                      FROM <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                      [ WHERE <a class="reference internal" href="#grammar-token-where_clause"><code class="xref docutils literal"><span class="pre">where_clause</span></code></a> ]
-                      [ GROUP BY <a class="reference internal" href="#grammar-token-group_by_clause"><code class="xref docutils literal"><span class="pre">group_by_clause</span></code></a> ]
-                      [ ORDER BY <a class="reference internal" href="#grammar-token-ordering_clause"><code class="xref docutils literal"><span class="pre">ordering_clause</span></code></a> ]
-                      [ PER PARTITION LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a>) ]
-                      [ LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a>) ]
+<strong id="grammar-token-select-statement">select_statement</strong> ::=  SELECT [ JSON | DISTINCT ] ( <a class="reference internal" href="#grammar-token-select-clause"><code class="xref docutils literal notranslate"><span class="pre">select_clause</span></code></a> | '*' )
+                      FROM <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                      [ WHERE <a class="reference internal" href="#grammar-token-where-clause"><code class="xref docutils literal notranslate"><span class="pre">where_clause</span></code></a> ]
+                      [ GROUP BY <a class="reference internal" href="#grammar-token-group-by-clause"><code class="xref docutils literal notranslate"><span class="pre">group_by_clause</span></code></a> ]
+                      [ ORDER BY <a class="reference internal" href="#grammar-token-ordering-clause"><code class="xref docutils literal notranslate"><span class="pre">ordering_clause</span></code></a> ]
+                      [ PER PARTITION LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a>) ]
+                      [ LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a>) ]
                       [ ALLOW FILTERING ]
-<strong id="grammar-token-select_clause">select_clause   </strong> ::=  <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ] ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ] )
-<strong id="grammar-token-selector">selector        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                      | <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                      | CAST '(' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> AS <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ')'
-                      | <a class="reference internal" href="functions.html#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> )* ] ')'
+<strong id="grammar-token-select-clause">select_clause   </strong> ::=  <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ] ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ] )
+<strong id="grammar-token-selector">selector        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                      | <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                      | CAST '(' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> AS <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ')'
+                      | <a class="reference internal" href="functions.html#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> )* ] ')'
                       | COUNT '(' '*' ')'
-<strong id="grammar-token-where_clause">where_clause    </strong> ::=  <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal"><span class="pre">relation</span></code></a> ( AND <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal"><span class="pre">relation</span></code></a> )*
-<strong id="grammar-token-relation">relation        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                      '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="types.html#grammar-token-tuple_literal"><code class="xref docutils literal"><span class="pre">tuple_literal</span></code></a>
-                      TOKEN '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
+<strong id="grammar-token-where-clause">where_clause    </strong> ::=  <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal notranslate"><span class="pre">relation</span></code></a> ( AND <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal notranslate"><span class="pre">relation</span></code></a> )*
+<strong id="grammar-token-relation">relation        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                      '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="types.html#grammar-token-tuple-literal"><code class="xref docutils literal notranslate"><span class="pre">tuple_literal</span></code></a>
+                      TOKEN '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
 <strong id="grammar-token-operator">operator        </strong> ::=  '=' | '&lt;' | '&gt;' | '&lt;=' | '&gt;=' | '!=' | IN | CONTAINS | CONTAINS KEY
-<strong id="grammar-token-group_by_clause">group_by_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )*
-<strong id="grammar-token-ordering_clause">ordering_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> [ ASC | DESC ] ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> [ ASC | DESC ] )*
+<strong id="grammar-token-group-by-clause">group_by_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )*
+<strong id="grammar-token-ordering-clause">ordering_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> [ ASC | DESC ] ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> [ ASC | DESC ] )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="k">IN</span> <span class="p">(</span><span class="mf">199</span><span class="p">,</span> <span class="mf">200</span><span class="p">,</span> <span class="mf">207</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="k">IN</span> <span class="p">(</span><span class="mf">199</span><span class="p">,</span> <span class="mf">200</span><span class="p">,</span> <span class="mf">207</span><span class="p">);</span>
 <span class="k">SELECT</span> <span class="k">JSON</span> <span class="n">name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="mf">199</span><span class="p">;</span>
 <span class="k">SELECT</span> <span class="n">name</span> <span class="k">AS</span> <span class="n">user_name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">AS</span> <span class="n">user_occupation</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
 
@@ -212,22 +212,22 @@
 <span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="o">*</span><span class="p">)</span> <span class="k">AS</span> <span class="n">user_count</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">SELECT</span></code> statements reads one or more columns for one or more rows in a table. It returns a result-set of the rows
+<p>The <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements reads one or more columns for one or more rows in a table. It returns a result-set of the rows
 matching the request, where each row contains the values for the selection corresponding to the query. Additionally,
 <a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">functions</span></a> including <a class="reference internal" href="functions.html#aggregate-functions"><span class="std std-ref">aggregation</span></a> ones can be applied to the result.</p>
-<p>A <code class="docutils literal"><span class="pre">SELECT</span></code> statement contains at least a <a class="reference internal" href="#selection-clause"><span class="std std-ref">selection clause</span></a> and the name of the table on which
+<p>A <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement contains at least a <a class="reference internal" href="#selection-clause"><span class="std std-ref">selection clause</span></a> and the name of the table on which
 the selection is on (note that CQL does <strong>not</strong> joins or sub-queries and thus a select statement only apply to a single
 table). In most case, a select will also have a <a class="reference internal" href="#where-clause"><span class="std std-ref">where clause</span></a> and it can optionally have additional
 clauses to <a class="reference internal" href="#ordering-clause"><span class="std std-ref">order</span></a> or <a class="reference internal" href="#limit-clause"><span class="std std-ref">limit</span></a> the results. Lastly, <a class="reference internal" href="#allow-filtering"><span class="std std-ref">queries that require
-filtering</span></a> can be allowed if the <code class="docutils literal"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> flag is provided.</p>
+filtering</span></a> can be allowed if the <code class="docutils literal notranslate"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> flag is provided.</p>
 <div class="section" id="selection-clause">
 <span id="id2"></span><h3>Selection clause<a class="headerlink" href="#selection-clause" title="Permalink to this headline">¶</a></h3>
-<p>The <a class="reference internal" href="#grammar-token-select_clause"><code class="xref std std-token docutils literal"><span class="pre">select_clause</span></code></a> determines which columns needs to be queried and returned in the result-set, as well as any
+<p>The <a class="reference internal" href="#grammar-token-select-clause"><code class="xref std std-token docutils literal notranslate"><span class="pre">select_clause</span></code></a> determines which columns needs to be queried and returned in the result-set, as well as any
 transformation to apply to this result before returning. It consists of a comma-separated list of <em>selectors</em> or,
-alternatively, of the wildcard character (<code class="docutils literal"><span class="pre">*</span></code>) to select all the columns defined in the table.</p>
+alternatively, of the wildcard character (<code class="docutils literal notranslate"><span class="pre">*</span></code>) to select all the columns defined in the table.</p>
 <div class="section" id="selectors">
 <h4>Selectors<a class="headerlink" href="#selectors" title="Permalink to this headline">¶</a></h4>
-<p>A <a class="reference internal" href="#grammar-token-selector"><code class="xref std std-token docutils literal"><span class="pre">selector</span></code></a> can be one of:</p>
+<p>A <a class="reference internal" href="#grammar-token-selector"><code class="xref std std-token docutils literal notranslate"><span class="pre">selector</span></code></a> can be one of:</p>
 <ul class="simple">
 <li>A column name of the table selected, to retrieve the values for that column.</li>
 <li>A term, which is usually used nested inside other selectors like functions (if a term is selected directly, then the
@@ -235,14 +235,14 @@
 <li>A casting, which allows to convert a nested selector to a (compatible) type.</li>
 <li>A function call, where the arguments are selector themselves. See the section on <a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">functions</span></a> for
 more details.</li>
-<li>The special call <code class="docutils literal"><span class="pre">COUNT(*)</span></code> to the <a class="reference internal" href="functions.html#count-function"><span class="std std-ref">COUNT function</span></a>, which counts all non-null results.</li>
+<li>The special call <code class="docutils literal notranslate"><span class="pre">COUNT(*)</span></code> to the <a class="reference internal" href="functions.html#count-function"><span class="std std-ref">COUNT function</span></a>, which counts all non-null results.</li>
 </ul>
 </div>
 <div class="section" id="aliases">
 <h4>Aliases<a class="headerlink" href="#aliases" title="Permalink to this headline">¶</a></h4>
 <p>Every <em>top-level</em> selector can also be aliased (using <cite>AS</cite>). If so, the name of the corresponding column in the result
 set will be that of the alias. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">// Without alias</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">// Without alias</span>
 <span class="k">SELECT</span> <span class="n">intAsBlob</span><span class="p">(</span><span class="mf">4</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">t</span><span class="p">;</span>
 
 <span class="c1">//  intAsBlob(4)</span>
@@ -259,31 +259,31 @@
 </div>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">Currently, aliases aren&#8217;t recognized anywhere else in the statement where they are used (not in the <code class="docutils literal"><span class="pre">WHERE</span></code>
-clause, not in the <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause, ...). You must use the orignal column name instead.</p>
+<p class="last">Currently, aliases aren’t recognized anywhere else in the statement where they are used (not in the <code class="docutils literal notranslate"><span class="pre">WHERE</span></code>
+clause, not in the <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause, …). You must use the orignal column name instead.</p>
 </div>
 </div>
 <div class="section" id="writetime-and-ttl-function">
-<h4><code class="docutils literal"><span class="pre">WRITETIME</span></code> and <code class="docutils literal"><span class="pre">TTL</span></code> function<a class="headerlink" href="#writetime-and-ttl-function" title="Permalink to this headline">¶</a></h4>
-<p>Selection supports two special functions (that aren&#8217;t allowed anywhere else): <code class="docutils literal"><span class="pre">WRITETIME</span></code> and <code class="docutils literal"><span class="pre">TTL</span></code>. Both function
-take only one argument and that argument <em>must</em> be a column name (so for instance <code class="docutils literal"><span class="pre">TTL(3)</span></code> is invalid).</p>
+<h4><code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code> and <code class="docutils literal notranslate"><span class="pre">TTL</span></code> function<a class="headerlink" href="#writetime-and-ttl-function" title="Permalink to this headline">¶</a></h4>
+<p>Selection supports two special functions (that aren’t allowed anywhere else): <code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code> and <code class="docutils literal notranslate"><span class="pre">TTL</span></code>. Both function
+take only one argument and that argument <em>must</em> be a column name (so for instance <code class="docutils literal notranslate"><span class="pre">TTL(3)</span></code> is invalid).</p>
 <p>Those functions allow to retrieve meta-information that are stored internally for each column, namely:</p>
 <ul class="simple">
-<li>the timestamp of the value of the column for <code class="docutils literal"><span class="pre">WRITETIME</span></code>.</li>
-<li>the remaining time to live (in seconds) for the value of the column if it set to expire (and <code class="docutils literal"><span class="pre">null</span></code> otherwise).</li>
+<li>the timestamp of the value of the column for <code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code>.</li>
+<li>the remaining time to live (in seconds) for the value of the column if it set to expire (and <code class="docutils literal notranslate"><span class="pre">null</span></code> otherwise).</li>
 </ul>
 </div>
 </div>
 <div class="section" id="the-where-clause">
-<span id="where-clause"></span><h3>The <code class="docutils literal"><span class="pre">WHERE</span></code> clause<a class="headerlink" href="#the-where-clause" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">WHERE</span></code> clause specifies which rows must be queried. It is composed of relations on the columns that are part of
-the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> and/or have a <a class="reference external" href="#createIndexStmt">secondary index</a> defined on them.</p>
-<p>Not all relations are allowed in a query. For instance, non-equal relations (where <code class="docutils literal"><span class="pre">IN</span></code> is considered as an equal
-relation) on a partition key are not supported (but see the use of the <code class="docutils literal"><span class="pre">TOKEN</span></code> method below to do non-equal queries on
+<span id="where-clause"></span><h3>The <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause<a class="headerlink" href="#the-where-clause" title="Permalink to this headline">¶</a></h3>
+<p>The <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause specifies which rows must be queried. It is composed of relations on the columns that are part of
+the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> and/or have a <a class="reference external" href="#createIndexStmt">secondary index</a> defined on them.</p>
+<p>Not all relations are allowed in a query. For instance, non-equal relations (where <code class="docutils literal notranslate"><span class="pre">IN</span></code> is considered as an equal
+relation) on a partition key are not supported (but see the use of the <code class="docutils literal notranslate"><span class="pre">TOKEN</span></code> method below to do non-equal queries on
 the partition key). Moreover, for a given partition key, the clustering columns induce an ordering of rows and relations
 on them is restricted to the relations that allow to select a <strong>contiguous</strong> (for the ordering) set of rows. For
 instance, given:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">posts</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">posts</span> <span class="p">(</span>
     <span class="n">userid</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">blog_title</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">posted_at</span> <span class="nb">timestamp</span><span class="p">,</span>
@@ -295,7 +295,7 @@
 </pre></div>
 </div>
 <p>The following query is allowed:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">entry_title</span><span class="p">,</span> <span class="n">content</span> <span class="k">FROM</span> <span class="n">posts</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">entry_title</span><span class="p">,</span> <span class="n">content</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="n">blog_title</span><span class="o">=</span><span class="s1">&#39;John&#39;&#39;s Blog&#39;</span>
    <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&gt;=</span> <span class="s1">&#39;2012-01-01&#39;</span> <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&lt;</span> <span class="s1">&#39;2012-01-31&#39;</span>
@@ -303,92 +303,92 @@
 </div>
 <p>But the following one is not, as it does not select a contiguous set of rows (and we suppose no secondary indexes are
 set):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">// Needs a blog_title to be set to select ranges of posted_at</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">// Needs a blog_title to be set to select ranges of posted_at</span>
 <span class="k">SELECT</span> <span class="n">entry_title</span><span class="p">,</span> <span class="n">content</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&gt;=</span> <span class="s1">&#39;2012-01-01&#39;</span> <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&lt;</span> <span class="s1">&#39;2012-01-31&#39;</span>
 </pre></div>
 </div>
-<p>When specifying relations, the <code class="docutils literal"><span class="pre">TOKEN</span></code> function can be used on the <code class="docutils literal"><span class="pre">PARTITION</span> <span class="pre">KEY</span></code> column to query. In that case,
-rows will be selected based on the token of their <code class="docutils literal"><span class="pre">PARTITION_KEY</span></code> rather than on the value. Note that the token of a
-key depends on the partitioner in use, and that in particular the RandomPartitioner won&#8217;t yield a meaningful order. Also
+<p>When specifying relations, the <code class="docutils literal notranslate"><span class="pre">TOKEN</span></code> function can be used on the <code class="docutils literal notranslate"><span class="pre">PARTITION</span> <span class="pre">KEY</span></code> column to query. In that case,
+rows will be selected based on the token of their <code class="docutils literal notranslate"><span class="pre">PARTITION_KEY</span></code> rather than on the value. Note that the token of a
+key depends on the partitioner in use, and that in particular the RandomPartitioner won’t yield a meaningful order. Also
 note that ordering partitioners always order token values by bytes (so even if the partition key is of type int,
-<code class="docutils literal"><span class="pre">token(-1)</span> <span class="pre">&gt;</span> <span class="pre">token(0)</span></code> in particular). Example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<code class="docutils literal notranslate"><span class="pre">token(-1)</span> <span class="pre">&gt;</span> <span class="pre">token(0)</span></code> in particular). Example:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="k">token</span><span class="p">(</span><span class="n">userid</span><span class="p">)</span> <span class="o">&gt;</span> <span class="k">token</span><span class="p">(</span><span class="s1">&#39;tom&#39;</span><span class="p">)</span> <span class="k">AND</span> <span class="k">token</span><span class="p">(</span><span class="n">userid</span><span class="p">)</span> <span class="o">&lt;</span> <span class="k">token</span><span class="p">(</span><span class="s1">&#39;bob&#39;</span><span class="p">)</span>
 </pre></div>
 </div>
-<p>Moreover, the <code class="docutils literal"><span class="pre">IN</span></code> relation is only allowed on the last column of the partition key and on the last column of the full
+<p>Moreover, the <code class="docutils literal notranslate"><span class="pre">IN</span></code> relation is only allowed on the last column of the partition key and on the last column of the full
 primary key.</p>
-<p>It is also possible to “group” <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">COLUMNS</span></code> together in a relation using the tuple notation. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<p>It is also possible to “group” <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">COLUMNS</span></code> together in a relation using the tuple notation. For instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="p">(</span><span class="n">blog_title</span><span class="p">,</span> <span class="n">posted_at</span><span class="p">)</span> <span class="o">&gt;</span> <span class="p">(</span><span class="s1">&#39;John&#39;&#39;s Blog&#39;</span><span class="p">,</span> <span class="s1">&#39;2012-01-01&#39;</span><span class="p">)</span>
 </pre></div>
 </div>
-<p>will request all rows that sorts after the one having “John&#8217;s Blog” as <code class="docutils literal"><span class="pre">blog_tile</span></code> and &#8216;2012-01-01&#8217; for <code class="docutils literal"><span class="pre">posted_at</span></code>
-in the clustering order. In particular, rows having a <code class="docutils literal"><span class="pre">post_at</span> <span class="pre">&lt;=</span> <span class="pre">'2012-01-01'</span></code> will be returned as long as their
-<code class="docutils literal"><span class="pre">blog_title</span> <span class="pre">&gt;</span> <span class="pre">'John''s</span> <span class="pre">Blog'</span></code>, which would not be the case for:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<p>will request all rows that sorts after the one having “John’s Blog” as <code class="docutils literal notranslate"><span class="pre">blog_tile</span></code> and ‘2012-01-01’ for <code class="docutils literal notranslate"><span class="pre">posted_at</span></code>
+in the clustering order. In particular, rows having a <code class="docutils literal notranslate"><span class="pre">post_at</span> <span class="pre">&lt;=</span> <span class="pre">'2012-01-01'</span></code> will be returned as long as their
+<code class="docutils literal notranslate"><span class="pre">blog_title</span> <span class="pre">&gt;</span> <span class="pre">'John''s</span> <span class="pre">Blog'</span></code>, which would not be the case for:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="n">blog_title</span> <span class="o">&gt;</span> <span class="s1">&#39;John&#39;&#39;s Blog&#39;</span>
    <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&gt;</span> <span class="s1">&#39;2012-01-01&#39;</span>
 </pre></div>
 </div>
-<p>The tuple notation may also be used for <code class="docutils literal"><span class="pre">IN</span></code> clauses on clustering columns:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<p>The tuple notation may also be used for <code class="docutils literal notranslate"><span class="pre">IN</span></code> clauses on clustering columns:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="p">(</span><span class="n">blog_title</span><span class="p">,</span> <span class="n">posted_at</span><span class="p">)</span> <span class="k">IN</span> <span class="p">((</span><span class="s1">&#39;John&#39;&#39;s Blog&#39;</span><span class="p">,</span> <span class="s1">&#39;2012-01-01&#39;</span><span class="p">),</span> <span class="p">(</span><span class="s1">&#39;Extreme Chess&#39;</span><span class="p">,</span> <span class="s1">&#39;2014-06-01&#39;</span><span class="p">))</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">CONTAINS</span></code> operator may only be used on collection columns (lists, sets, and maps). In the case of maps,
-<code class="docutils literal"><span class="pre">CONTAINS</span></code> applies to the map values. The <code class="docutils literal"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operator may only be used on map columns and applies to the
+<p>The <code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code> operator may only be used on collection columns (lists, sets, and maps). In the case of maps,
+<code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code> applies to the map values. The <code class="docutils literal notranslate"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operator may only be used on map columns and applies to the
 map keys.</p>
 </div>
 <div class="section" id="grouping-results">
 <span id="group-by-clause"></span><h3>Grouping results<a class="headerlink" href="#grouping-results" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option allows to condense into a single row all selected rows that share the same values for a set
+<p>The <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option allows to condense into a single row all selected rows that share the same values for a set
 of columns.</p>
-<p>Using the <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option, it is only possible to group rows at the partition key level or at a clustering column
-level. By consequence, the <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option only accept as arguments primary key column names in the primary key
+<p>Using the <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option, it is only possible to group rows at the partition key level or at a clustering column
+level. By consequence, the <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option only accept as arguments primary key column names in the primary key
 order. If a primary key column is restricted by an equality restriction it is not required to be present in the
-<code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause.</p>
-<p>Aggregate functions will produce a separate value for each group. If no <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause is specified,
+<code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause.</p>
+<p>Aggregate functions will produce a separate value for each group. If no <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause is specified,
 aggregates functions will produce a single value for all the rows.</p>
-<p>If a column is selected without an aggregate function, in a statement with a <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code>, the first value encounter
+<p>If a column is selected without an aggregate function, in a statement with a <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code>, the first value encounter
 in each group will be returned.</p>
 </div>
 <div class="section" id="ordering-results">
 <span id="ordering-clause"></span><h3>Ordering results<a class="headerlink" href="#ordering-results" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause allows to select the order of the returned results. It takes as argument a list of column names
-along with the order for the column (<code class="docutils literal"><span class="pre">ASC</span></code> for ascendant and <code class="docutils literal"><span class="pre">DESC</span></code> for descendant, omitting the order being
-equivalent to <code class="docutils literal"><span class="pre">ASC</span></code>). Currently the possible orderings are limited by the <a class="reference internal" href="ddl.html#clustering-order"><span class="std std-ref">clustering order</span></a>
+<p>The <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause allows to select the order of the returned results. It takes as argument a list of column names
+along with the order for the column (<code class="docutils literal notranslate"><span class="pre">ASC</span></code> for ascendant and <code class="docutils literal notranslate"><span class="pre">DESC</span></code> for descendant, omitting the order being
+equivalent to <code class="docutils literal notranslate"><span class="pre">ASC</span></code>). Currently the possible orderings are limited by the <a class="reference internal" href="ddl.html#clustering-order"><span class="std std-ref">clustering order</span></a>
 defined on the table:</p>
 <ul class="simple">
-<li>if the table has been defined without any specific <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code>, then then allowed orderings are the order
+<li>if the table has been defined without any specific <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code>, then then allowed orderings are the order
 induced by the clustering columns and the reverse of that one.</li>
-<li>otherwise, the orderings allowed are the order of the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option and the reversed one.</li>
+<li>otherwise, the orderings allowed are the order of the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option and the reversed one.</li>
 </ul>
 </div>
 <div class="section" id="limiting-results">
 <span id="limit-clause"></span><h3>Limiting results<a class="headerlink" href="#limiting-results" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">LIMIT</span></code> option to a <code class="docutils literal"><span class="pre">SELECT</span></code> statement limits the number of rows returned by a query, while the <code class="docutils literal"><span class="pre">PER</span> <span class="pre">PARTITION</span>
+<p>The <code class="docutils literal notranslate"><span class="pre">LIMIT</span></code> option to a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement limits the number of rows returned by a query, while the <code class="docutils literal notranslate"><span class="pre">PER</span> <span class="pre">PARTITION</span>
 <span class="pre">LIMIT</span></code> option limits the number of rows returned for a given partition by the query. Note that both type of limit can
 used in the same statement.</p>
 </div>
 <div class="section" id="allowing-filtering">
 <span id="allow-filtering"></span><h3>Allowing filtering<a class="headerlink" href="#allowing-filtering" title="Permalink to this headline">¶</a></h3>
-<p>By default, CQL only allows select queries that don&#8217;t involve “filtering” server side, i.e. queries where we know that
+<p>By default, CQL only allows select queries that don’t involve “filtering” server side, i.e. queries where we know that
 all (live) record read will be returned (maybe partly) in the result set. The reasoning is that those “non filtering”
 queries have predictable performance in the sense that they will execute in a time that is proportional to the amount of
-data <strong>returned</strong> by the query (which can be controlled through <code class="docutils literal"><span class="pre">LIMIT</span></code>).</p>
-<p>The <code class="docutils literal"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> option allows to explicitly allow (some) queries that require filtering. Please note that a
-query using <code class="docutils literal"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> may thus have unpredictable performance (for the definition above), i.e. even a query
+data <strong>returned</strong> by the query (which can be controlled through <code class="docutils literal notranslate"><span class="pre">LIMIT</span></code>).</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> option allows to explicitly allow (some) queries that require filtering. Please note that a
+query using <code class="docutils literal notranslate"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> may thus have unpredictable performance (for the definition above), i.e. even a query
 that selects a handful of records <strong>may</strong> exhibit performance that depends on the total amount of data stored in the
 cluster.</p>
 <p>For instance, considering the following table holding user profiles with their year of birth (with a secondary index on
 it) and country of residence:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
     <span class="n">username</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">firstname</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">lastname</span> <span class="nb">text</span><span class="p">,</span>
@@ -400,7 +400,7 @@
 </pre></div>
 </div>
 <p>Then the following queries are valid:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
 <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span><span class="p">;</span>
 </pre></div>
 </div>
@@ -410,33 +410,33 @@
 query may still depend on the number of node in the cluster, which indirectly depends on the amount of data stored.
 Nevertheless, the number of nodes will always be multiple number of magnitude lower than the number of user profile
 stored). Of course, both query may return very large result set in practice, but the amount of data returned can always
-be controlled by adding a <code class="docutils literal"><span class="pre">LIMIT</span></code>.</p>
+be controlled by adding a <code class="docutils literal notranslate"><span class="pre">LIMIT</span></code>.</p>
 <p>However, the following query will be rejected:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>because Cassandra cannot guarantee that it won&#8217;t have to scan large amount of data even if the result to those query is
+<p>because Cassandra cannot guarantee that it won’t have to scan large amount of data even if the result to those query is
 small. Typically, it will scan all the index entries for users born in 1981 even if only a handful are actually from
-France. However, if you “know what you are doing”, you can force the execution of this query by using <code class="docutils literal"><span class="pre">ALLOW</span>
+France. However, if you “know what you are doing”, you can force the execution of this query by using <code class="docutils literal notranslate"><span class="pre">ALLOW</span>
 <span class="pre">FILTERING</span></code> and so the following query is valid:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span> <span class="k">ALLOW</span> <span class="k">FILTERING</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span> <span class="k">ALLOW</span> <span class="k">FILTERING</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 </div>
 <div class="section" id="insert">
 <span id="insert-statement"></span><h2>INSERT<a class="headerlink" href="#insert" title="Permalink to this headline">¶</a></h2>
-<p>Inserting data for a row is done using an <code class="docutils literal"><span class="pre">INSERT</span></code> statement:</p>
+<p>Inserting data for a row is done using an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-insert_statement">insert_statement</strong> ::=  INSERT INTO <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a> ( <a class="reference internal" href="#grammar-token-names_values"><code class="xref docutils literal"><span class="pre">names_values</span></code></a> | <a class="reference internal" href="#grammar-token-json_clause"><code class="xref docutils literal"><span class="pre">json_clause</span></code></a> )
+<strong id="grammar-token-insert-statement">insert_statement</strong> ::=  INSERT INTO <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a> ( <a class="reference internal" href="#grammar-token-names-values"><code class="xref docutils literal notranslate"><span class="pre">names_values</span></code></a> | <a class="reference internal" href="#grammar-token-json-clause"><code class="xref docutils literal notranslate"><span class="pre">json_clause</span></code></a> )
                       [ IF NOT EXISTS ]
-                      [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-<strong id="grammar-token-names_values">names_values    </strong> ::=  <a class="reference internal" href="#grammar-token-names"><code class="xref docutils literal"><span class="pre">names</span></code></a> VALUES <a class="reference internal" href="types.html#grammar-token-tuple_literal"><code class="xref docutils literal"><span class="pre">tuple_literal</span></code></a>
-<strong id="grammar-token-json_clause">json_clause     </strong> ::=  JSON <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> [ DEFAULT ( NULL | UNSET ) ]
-<strong id="grammar-token-names">names           </strong> ::=  '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')'
+                      [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+<strong id="grammar-token-names-values">names_values    </strong> ::=  <a class="reference internal" href="#grammar-token-names"><code class="xref docutils literal notranslate"><span class="pre">names</span></code></a> VALUES <a class="reference internal" href="types.html#grammar-token-tuple-literal"><code class="xref docutils literal notranslate"><span class="pre">tuple_literal</span></code></a>
+<strong id="grammar-token-json-clause">json_clause     </strong> ::=  JSON <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> [ DEFAULT ( NULL | UNSET ) ]
+<strong id="grammar-token-names">names           </strong> ::=  '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')'
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="n">movie</span><span class="p">,</span> <span class="n">director</span><span class="p">,</span> <span class="n">main_actor</span><span class="p">,</span> <span class="n">year</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="n">movie</span><span class="p">,</span> <span class="n">director</span><span class="p">,</span> <span class="n">main_actor</span><span class="p">,</span> <span class="n">year</span><span class="p">)</span>
                 <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;Serenity&#39;</span><span class="p">,</span> <span class="s1">&#39;Joss Whedon&#39;</span><span class="p">,</span> <span class="s1">&#39;Nathan Fillion&#39;</span><span class="p">,</span> <span class="mf">2005</span><span class="p">)</span>
       <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">86400</span><span class="p">;</span>
 
@@ -445,39 +445,39 @@
 <span class="s1">                              &quot;year&quot;: 2005}&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">INSERT</span></code> statement writes one or more columns for a given row in a table. Note that since a row is identified by
-its <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, at least the columns composing it must be specified. The list of columns to insert to must be
-supplied when using the <code class="docutils literal"><span class="pre">VALUES</span></code> syntax. When using the <code class="docutils literal"><span class="pre">JSON</span></code> syntax, they are optional. See the
+<p>The <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statement writes one or more columns for a given row in a table. Note that since a row is identified by
+its <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, at least the columns composing it must be specified. The list of columns to insert to must be
+supplied when using the <code class="docutils literal notranslate"><span class="pre">VALUES</span></code> syntax. When using the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> syntax, they are optional. See the
 section on <a class="reference internal" href="json.html#cql-json"><span class="std std-ref">JSON support</span></a> for more detail.</p>
-<p>Note that unlike in SQL, <code class="docutils literal"><span class="pre">INSERT</span></code> does not check the prior existence of the row by default: the row is created if none
+<p>Note that unlike in SQL, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> does not check the prior existence of the row by default: the row is created if none
 existed before, and updated otherwise. Furthermore, there is no mean to know which of creation or update happened.</p>
-<p>It is however possible to use the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition to only insert if the row does not exist prior to the
-insertion. But please note that using <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> will incur a non negligible performance cost (internally, Paxos
+<p>It is however possible to use the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition to only insert if the row does not exist prior to the
+insertion. But please note that using <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> will incur a non negligible performance cost (internally, Paxos
 will be used) so this should be used sparingly.</p>
-<p>All updates for an <code class="docutils literal"><span class="pre">INSERT</span></code> are applied atomically and in isolation.</p>
-<p>Please refer to the <a class="reference internal" href="#update-parameters"><span class="std std-ref">UPDATE</span></a> section for informations on the <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref std std-token docutils literal"><span class="pre">update_parameter</span></code></a>.</p>
-<p>Also note that <code class="docutils literal"><span class="pre">INSERT</span></code> does not support counters, while <code class="docutils literal"><span class="pre">UPDATE</span></code> does.</p>
+<p>All updates for an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> are applied atomically and in isolation.</p>
+<p>Please refer to the <a class="reference internal" href="#update-parameters"><span class="std std-ref">UPDATE</span></a> section for informations on the <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref std std-token docutils literal notranslate"><span class="pre">update_parameter</span></code></a>.</p>
+<p>Also note that <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> does not support counters, while <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> does.</p>
 </div>
 <div class="section" id="update">
 <span id="update-statement"></span><h2>UPDATE<a class="headerlink" href="#update" title="Permalink to this headline">¶</a></h2>
-<p>Updating a row is done using an <code class="docutils literal"><span class="pre">UPDATE</span></code> statement:</p>
+<p>Updating a row is done using an <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-update_statement">update_statement</strong> ::=  UPDATE <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                      [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-                      SET <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal"><span class="pre">assignment</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal"><span class="pre">assignment</span></code></a> )*
-                      WHERE <a class="reference internal" href="#grammar-token-where_clause"><code class="xref docutils literal"><span class="pre">where_clause</span></code></a>
-                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> )*) ]
-<strong id="grammar-token-update_parameter">update_parameter</strong> ::=  ( TIMESTAMP | TTL ) ( <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a> )
-<strong id="grammar-token-assignment">assignment      </strong> ::=  <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> '=' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( '+' | '-' ) <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="types.html#grammar-token-list_literal"><code class="xref docutils literal"><span class="pre">list_literal</span></code></a> '+' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-<strong id="grammar-token-simple_selection">simple_selection</strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '[' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ']'
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '.' `field_name
-<strong id="grammar-token-condition">condition       </strong> ::=  <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
+<strong id="grammar-token-update-statement">update_statement</strong> ::=  UPDATE <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                      [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+                      SET <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal notranslate"><span class="pre">assignment</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal notranslate"><span class="pre">assignment</span></code></a> )*
+                      WHERE <a class="reference internal" href="#grammar-token-where-clause"><code class="xref docutils literal notranslate"><span class="pre">where_clause</span></code></a>
+                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> )*) ]
+<strong id="grammar-token-update-parameter">update_parameter</strong> ::=  ( TIMESTAMP | TTL ) ( <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a> )
+<strong id="grammar-token-assignment">assignment      </strong> ::=  <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> '=' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( '+' | '-' ) <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="types.html#grammar-token-list-literal"><code class="xref docutils literal notranslate"><span class="pre">list_literal</span></code></a> '+' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+<strong id="grammar-token-simple-selection">simple_selection</strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '[' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ']'
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '.' `field_name
+<strong id="grammar-token-condition">condition       </strong> ::=  <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">400</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">400</span>
    <span class="k">SET</span> <span class="n">director</span>   <span class="o">=</span> <span class="s1">&#39;Joss Whedon&#39;</span><span class="p">,</span>
        <span class="n">main_actor</span> <span class="o">=</span> <span class="s1">&#39;Nathan Fillion&#39;</span><span class="p">,</span>
        <span class="n">year</span>       <span class="o">=</span> <span class="mf">2005</span>
@@ -489,81 +489,81 @@
      <span class="k">AND</span> <span class="n">action</span> <span class="o">=</span> <span class="s1">&#39;click&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">UPDATE</span></code> statement writes one or more columns for a given row in a table. The <a class="reference internal" href="#grammar-token-where_clause"><code class="xref std std-token docutils literal"><span class="pre">where_clause</span></code></a> is used to
-select the row to update and must include all columns composing the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. Non primary key columns are then
-set using the <code class="docutils literal"><span class="pre">SET</span></code> keyword.</p>
-<p>Note that unlike in SQL, <code class="docutils literal"><span class="pre">UPDATE</span></code> does not check the prior existence of the row by default (except through <code class="docutils literal"><span class="pre">IF</span></code>, see
+<p>The <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement writes one or more columns for a given row in a table. The <a class="reference internal" href="#grammar-token-where-clause"><code class="xref std std-token docutils literal notranslate"><span class="pre">where_clause</span></code></a> is used to
+select the row to update and must include all columns composing the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. Non primary key columns are then
+set using the <code class="docutils literal notranslate"><span class="pre">SET</span></code> keyword.</p>
+<p>Note that unlike in SQL, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> does not check the prior existence of the row by default (except through <code class="docutils literal notranslate"><span class="pre">IF</span></code>, see
 below): the row is created if none existed before, and updated otherwise. Furthermore, there are no means to know
 whether a creation or update occurred.</p>
-<p>It is however possible to use the conditions on some columns through <code class="docutils literal"><span class="pre">IF</span></code>, in which case the row will not be updated
-unless the conditions are met. But, please note that using <code class="docutils literal"><span class="pre">IF</span></code> conditions will incur a non-negligible performance
+<p>It is however possible to use the conditions on some columns through <code class="docutils literal notranslate"><span class="pre">IF</span></code>, in which case the row will not be updated
+unless the conditions are met. But, please note that using <code class="docutils literal notranslate"><span class="pre">IF</span></code> conditions will incur a non-negligible performance
 cost (internally, Paxos will be used) so this should be used sparingly.</p>
-<p>In an <code class="docutils literal"><span class="pre">UPDATE</span></code> statement, all updates within the same partition key are applied atomically and in isolation.</p>
-<p>Regarding the <a class="reference internal" href="#grammar-token-assignment"><code class="xref std std-token docutils literal"><span class="pre">assignment</span></code></a>:</p>
+<p>In an <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement, all updates within the same partition key are applied atomically and in isolation.</p>
+<p>Regarding the <a class="reference internal" href="#grammar-token-assignment"><code class="xref std std-token docutils literal notranslate"><span class="pre">assignment</span></code></a>:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">c</span> <span class="pre">=</span> <span class="pre">c</span> <span class="pre">+</span> <span class="pre">3</span></code> is used to increment/decrement counters. The column name after the &#8216;=&#8217; sign <strong>must</strong> be the same than
-the one before the &#8216;=&#8217; sign. Note that increment/decrement is only allowed on counters, and are the <em>only</em> update
+<li><code class="docutils literal notranslate"><span class="pre">c</span> <span class="pre">=</span> <span class="pre">c</span> <span class="pre">+</span> <span class="pre">3</span></code> is used to increment/decrement counters. The column name after the ‘=’ sign <strong>must</strong> be the same than
+the one before the ‘=’ sign. Note that increment/decrement is only allowed on counters, and are the <em>only</em> update
 operations allowed on counters. See the section on <a class="reference internal" href="types.html#counters"><span class="std std-ref">counters</span></a> for details.</li>
-<li><code class="docutils literal"><span class="pre">id</span> <span class="pre">=</span> <span class="pre">id</span> <span class="pre">+</span> <span class="pre">&lt;some-collection&gt;</span></code> and <code class="docutils literal"><span class="pre">id[value1]</span> <span class="pre">=</span> <span class="pre">value2</span></code> are for collections, see the <a class="reference internal" href="types.html#collections"><span class="std std-ref">relevant section</span></a> for details.</li>
-<li><code class="docutils literal"><span class="pre">id.field</span> <span class="pre">=</span> <span class="pre">3</span></code> is for setting the value of a field on a non-frozen user-defined types. see the <a class="reference internal" href="types.html#udts"><span class="std std-ref">relevant section</span></a> for details.</li>
+<li><code class="docutils literal notranslate"><span class="pre">id</span> <span class="pre">=</span> <span class="pre">id</span> <span class="pre">+</span> <span class="pre">&lt;some-collection&gt;</span></code> and <code class="docutils literal notranslate"><span class="pre">id[value1]</span> <span class="pre">=</span> <span class="pre">value2</span></code> are for collections, see the <a class="reference internal" href="types.html#collections"><span class="std std-ref">relevant section</span></a> for details.</li>
+<li><code class="docutils literal notranslate"><span class="pre">id.field</span> <span class="pre">=</span> <span class="pre">3</span></code> is for setting the value of a field on a non-frozen user-defined types. see the <a class="reference internal" href="types.html#udts"><span class="std std-ref">relevant section</span></a> for details.</li>
 </ul>
 <div class="section" id="update-parameters">
 <span id="id3"></span><h3>Update parameters<a class="headerlink" href="#update-parameters" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> (and <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">BATCH</span></code> for the <code class="docutils literal"><span class="pre">TIMESTAMP</span></code>) statements support the following
+<p>The <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> (and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> for the <code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code>) statements support the following
 parameters:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">TIMESTAMP</span></code>: sets the timestamp for the operation. If not specified, the coordinator will use the current time (in
+<li><code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code>: sets the timestamp for the operation. If not specified, the coordinator will use the current time (in
 microseconds) at the start of statement execution as the timestamp. This is usually a suitable default.</li>
-<li><code class="docutils literal"><span class="pre">TTL</span></code>: specifies an optional Time To Live (in seconds) for the inserted values. If set, the inserted values are
+<li><code class="docutils literal notranslate"><span class="pre">TTL</span></code>: specifies an optional Time To Live (in seconds) for the inserted values. If set, the inserted values are
 automatically removed from the database after the specified time. Note that the TTL concerns the inserted values, not
 the columns themselves. This means that any subsequent update of the column will also reset the TTL (to whatever TTL
 is specified in that update). By default, values never expire. A TTL of 0 is equivalent to no TTL. If the table has a
-default_time_to_live, a TTL of 0 will remove the TTL for the inserted or updated values. A TTL of <code class="docutils literal"><span class="pre">null</span></code> is equivalent
+default_time_to_live, a TTL of 0 will remove the TTL for the inserted or updated values. A TTL of <code class="docutils literal notranslate"><span class="pre">null</span></code> is equivalent
 to inserting with a TTL of 0.</li>
 </ul>
 </div>
 </div>
 <div class="section" id="delete">
 <span id="delete-statement"></span><h2>DELETE<a class="headerlink" href="#delete" title="Permalink to this headline">¶</a></h2>
-<p>Deleting rows or parts of rows uses the <code class="docutils literal"><span class="pre">DELETE</span></code> statement:</p>
+<p>Deleting rows or parts of rows uses the <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-delete_statement">delete_statement</strong> ::=  DELETE [ <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> ) ]
-                      FROM <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                      [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-                      WHERE <a class="reference internal" href="#grammar-token-where_clause"><code class="xref docutils literal"><span class="pre">where_clause</span></code></a>
-                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> )*) ]
+<strong id="grammar-token-delete-statement">delete_statement</strong> ::=  DELETE [ <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> ) ]
+                      FROM <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                      [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+                      WHERE <a class="reference internal" href="#grammar-token-where-clause"><code class="xref docutils literal notranslate"><span class="pre">where_clause</span></code></a>
+                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> )*) ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="k">FROM</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="nb">TIMESTAMP</span> <span class="mf">1240003134</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="k">FROM</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="nb">TIMESTAMP</span> <span class="mf">1240003134</span>
  <span class="k">WHERE</span> <span class="n">movie</span> <span class="o">=</span> <span class="s1">&#39;Serenity&#39;</span><span class="p">;</span>
 
 <span class="k">DELETE</span> <span class="n">phone</span> <span class="k">FROM</span> <span class="k">Users</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="k">IN</span> <span class="p">(</span><span class="m">C73DE1D3-AF08-40F3-B124-3FF3E5109F22</span><span class="p">,</span> <span class="m">B70DE1D0-9908-4AE3-BE34-5573E5B09F14</span><span class="p">);</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">DELETE</span></code> statement deletes columns and rows. If column names are provided directly after the <code class="docutils literal"><span class="pre">DELETE</span></code> keyword,
-only those columns are deleted from the row indicated by the <code class="docutils literal"><span class="pre">WHERE</span></code> clause. Otherwise, whole rows are removed.</p>
-<p>The <code class="docutils literal"><span class="pre">WHERE</span></code> clause specifies which rows are to be deleted. Multiple rows may be deleted with one statement by using an
-<code class="docutils literal"><span class="pre">IN</span></code> operator. A range of rows may be deleted using an inequality operator (such as <code class="docutils literal"><span class="pre">&gt;=</span></code>).</p>
-<p><code class="docutils literal"><span class="pre">DELETE</span></code> supports the <code class="docutils literal"><span class="pre">TIMESTAMP</span></code> option with the same semantics as in <a class="reference internal" href="#update-parameters"><span class="std std-ref">updates</span></a>.</p>
-<p>In a <code class="docutils literal"><span class="pre">DELETE</span></code> statement, all deletions within the same partition key are applied atomically and in isolation.</p>
-<p>A <code class="docutils literal"><span class="pre">DELETE</span></code> operation can be conditional through the use of an <code class="docutils literal"><span class="pre">IF</span></code> clause, similar to <code class="docutils literal"><span class="pre">UPDATE</span></code> and <code class="docutils literal"><span class="pre">INSERT</span></code>
-statements. However, as with <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> statements, this will incur a non-negligible performance cost
+<p>The <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statement deletes columns and rows. If column names are provided directly after the <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> keyword,
+only those columns are deleted from the row indicated by the <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause. Otherwise, whole rows are removed.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause specifies which rows are to be deleted. Multiple rows may be deleted with one statement by using an
+<code class="docutils literal notranslate"><span class="pre">IN</span></code> operator. A range of rows may be deleted using an inequality operator (such as <code class="docutils literal notranslate"><span class="pre">&gt;=</span></code>).</p>
+<p><code class="docutils literal notranslate"><span class="pre">DELETE</span></code> supports the <code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code> option with the same semantics as in <a class="reference internal" href="#update-parameters"><span class="std std-ref">updates</span></a>.</p>
+<p>In a <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statement, all deletions within the same partition key are applied atomically and in isolation.</p>
+<p>A <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> operation can be conditional through the use of an <code class="docutils literal notranslate"><span class="pre">IF</span></code> clause, similar to <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> and <code class="docutils literal notranslate"><span class="pre">INSERT</span></code>
+statements. However, as with <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements, this will incur a non-negligible performance cost
 (internally, Paxos will be used) and so should be used sparingly.</p>
 </div>
 <div class="section" id="batch">
 <span id="batch-statement"></span><h2>BATCH<a class="headerlink" href="#batch" title="Permalink to this headline">¶</a></h2>
-<p>Multiple <code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code> and <code class="docutils literal"><span class="pre">DELETE</span></code> can be executed in a single statement by grouping them through a
-<code class="docutils literal"><span class="pre">BATCH</span></code> statement:</p>
+<p>Multiple <code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> can be executed in a single statement by grouping them through a
+<code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-batch_statement">batch_statement       </strong> ::=  BEGIN [ UNLOGGED | COUNTER ] BATCH
-                            [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-                            <a class="reference internal" href="#grammar-token-modification_statement"><code class="xref docutils literal"><span class="pre">modification_statement</span></code></a> ( ';' <a class="reference internal" href="#grammar-token-modification_statement"><code class="xref docutils literal"><span class="pre">modification_statement</span></code></a> )*
+<strong id="grammar-token-batch-statement">batch_statement       </strong> ::=  BEGIN [ UNLOGGED | COUNTER ] BATCH
+                            [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+                            <a class="reference internal" href="#grammar-token-modification-statement"><code class="xref docutils literal notranslate"><span class="pre">modification_statement</span></code></a> ( ';' <a class="reference internal" href="#grammar-token-modification-statement"><code class="xref docutils literal notranslate"><span class="pre">modification_statement</span></code></a> )*
                             APPLY BATCH
-<strong id="grammar-token-modification_statement">modification_statement</strong> ::=  <a class="reference internal" href="#grammar-token-insert_statement"><code class="xref docutils literal"><span class="pre">insert_statement</span></code></a> | <a class="reference internal" href="#grammar-token-update_statement"><code class="xref docutils literal"><span class="pre">update_statement</span></code></a> | <a class="reference internal" href="#grammar-token-delete_statement"><code class="xref docutils literal"><span class="pre">delete_statement</span></code></a>
+<strong id="grammar-token-modification-statement">modification_statement</strong> ::=  <a class="reference internal" href="#grammar-token-insert-statement"><code class="xref docutils literal notranslate"><span class="pre">insert_statement</span></code></a> | <a class="reference internal" href="#grammar-token-update-statement"><code class="xref docutils literal notranslate"><span class="pre">update_statement</span></code></a> | <a class="reference internal" href="#grammar-token-delete-statement"><code class="xref docutils literal notranslate"><span class="pre">delete_statement</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">BEGIN</span> <span class="k">BATCH</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">BEGIN</span> <span class="k">BATCH</span>
    <span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">users</span> <span class="p">(</span><span class="n">userid</span><span class="p">,</span> <span class="k">password</span><span class="p">,</span> <span class="n">name</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;user2&#39;</span><span class="p">,</span> <span class="s1">&#39;ch@ngem3b&#39;</span><span class="p">,</span> <span class="s1">&#39;second user&#39;</span><span class="p">);</span>
    <span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="k">password</span> <span class="o">=</span> <span class="s1">&#39;ps22dhds&#39;</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;user3&#39;</span><span class="p">;</span>
    <span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">users</span> <span class="p">(</span><span class="n">userid</span><span class="p">,</span> <span class="k">password</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;user4&#39;</span><span class="p">,</span> <span class="s1">&#39;ch@ngem3c&#39;</span><span class="p">);</span>
@@ -571,37 +571,37 @@
 <span class="k">APPLY</span> <span class="k">BATCH</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">BATCH</span></code> statement group multiple modification statements (insertions/updates and deletions) into a single
+<p>The <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statement group multiple modification statements (insertions/updates and deletions) into a single
 statement. It serves several purposes:</p>
 <ul class="simple">
 <li>It saves network round-trips between the client and the server (and sometimes between the server coordinator and the
 replicas) when batching multiple updates.</li>
-<li>All updates in a <code class="docutils literal"><span class="pre">BATCH</span></code> belonging to a given partition key are performed in isolation.</li>
+<li>All updates in a <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> belonging to a given partition key are performed in isolation.</li>
 <li>By default, all operations in the batch are performed as <em>logged</em>, to ensure all mutations eventually complete (or
 none will). See the notes on <a class="reference internal" href="#unlogged-batches"><span class="std std-ref">UNLOGGED batches</span></a> for more details.</li>
 </ul>
 <p>Note that:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">BATCH</span></code> statements may only contain <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">DELETE</span></code> statements (not other batches for instance).</li>
+<li><code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statements may only contain <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statements (not other batches for instance).</li>
 <li>Batches are <em>not</em> a full analogue for SQL transactions.</li>
 <li>If a timestamp is not specified for each operation, then all operations will be applied with the same timestamp
-(either one generated automatically, or the timestamp provided at the batch level). Due to Cassandra&#8217;s conflict
+(either one generated automatically, or the timestamp provided at the batch level). Due to Cassandra’s conflict
 resolution procedure in the case of <a class="reference external" href="http://wiki.apache.org/cassandra/FAQ#clocktie">timestamp ties</a>, operations may
-be applied in an order that is different from the order they are listed in the <code class="docutils literal"><span class="pre">BATCH</span></code> statement. To force a
+be applied in an order that is different from the order they are listed in the <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statement. To force a
 particular operation ordering, you must specify per-operation timestamps.</li>
 <li>A LOGGED batch to a single partition will be converted to an UNLOGGED batch as an optimization.</li>
 </ul>
 <div class="section" id="unlogged-batches">
-<span id="id4"></span><h3><code class="docutils literal"><span class="pre">UNLOGGED</span></code> batches<a class="headerlink" href="#unlogged-batches" title="Permalink to this headline">¶</a></h3>
+<span id="id4"></span><h3><code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code> batches<a class="headerlink" href="#unlogged-batches" title="Permalink to this headline">¶</a></h3>
 <p>By default, Cassandra uses a batch log to ensure all operations in a batch eventually complete or none will (note
 however that operations are only isolated within a single partition).</p>
 <p>There is a performance penalty for batch atomicity when a batch spans multiple partitions. If you do not want to incur
-this penalty, you can tell Cassandra to skip the batchlog with the <code class="docutils literal"><span class="pre">UNLOGGED</span></code> option. If the <code class="docutils literal"><span class="pre">UNLOGGED</span></code> option is
+this penalty, you can tell Cassandra to skip the batchlog with the <code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code> option. If the <code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code> option is
 used, a failed batch might leave the patch only partly applied.</p>
 </div>
 <div class="section" id="counter-batches">
-<h3><code class="docutils literal"><span class="pre">COUNTER</span></code> batches<a class="headerlink" href="#counter-batches" title="Permalink to this headline">¶</a></h3>
-<p>Use the <code class="docutils literal"><span class="pre">COUNTER</span></code> option for batched counter updates. Unlike other
+<h3><code class="docutils literal notranslate"><span class="pre">COUNTER</span></code> batches<a class="headerlink" href="#counter-batches" title="Permalink to this headline">¶</a></h3>
+<p>Use the <code class="docutils literal notranslate"><span class="pre">COUNTER</span></code> option for batched counter updates. Unlike other
 updates in Cassandra, counter updates are not idempotent.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/functions.html b/content/doc/3.11/cql/functions.html
index a5593cc..b1ba746 100644
--- a/content/doc/3.11/cql/functions.html
+++ b/content/doc/3.11/cql/functions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="JSON Support" href="json.html"/> <link rel="prev" title="Security" href="security.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="JSON Support" href="json.html"/> <link rel="prev" title="Security" href="security.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -172,20 +172,20 @@
 <ul class="simple">
 <li>the <a class="reference internal" href="#scalar-functions"><span class="std std-ref">scalar functions</span></a>, which simply take a number of values and produce an output with it.</li>
 <li>the <a class="reference internal" href="#aggregate-functions"><span class="std std-ref">aggregate functions</span></a>, which are used to aggregate multiple rows results from a
-<code class="docutils literal"><span class="pre">SELECT</span></code> statement.</li>
+<code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</li>
 </ul>
-<p>In both cases, CQL provides a number of native &#8220;hard-coded&#8221; functions as well as the ability to create new user-defined
+<p>In both cases, CQL provides a number of native “hard-coded” functions as well as the ability to create new user-defined
 functions.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
 <p class="last">By default, the use of user-defined functions is disabled by default for security concerns (even when
-enabled, the execution of user-defined functions is sandboxed and a &#8220;rogue&#8221; function should not be allowed to do
-evil, but no sandbox is perfect so using user-defined functions is opt-in). See the <code class="docutils literal"><span class="pre">enable_user_defined_functions</span></code>
-in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to enable them.</p>
+enabled, the execution of user-defined functions is sandboxed and a “rogue” function should not be allowed to do
+evil, but no sandbox is perfect so using user-defined functions is opt-in). See the <code class="docutils literal notranslate"><span class="pre">enable_user_defined_functions</span></code>
+in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to enable them.</p>
 </div>
 <p>A function is identifier by its name:</p>
 <pre>
-<strong id="grammar-token-function_name">function_name</strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="ddl.html#grammar-token-name"><code class="xref docutils literal"><span class="pre">name</span></code></a>
+<strong id="grammar-token-function-name">function_name</strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="ddl.html#grammar-token-name"><code class="xref docutils literal notranslate"><span class="pre">name</span></code></a>
 </pre>
 <div class="section" id="scalar-functions">
 <span id="id1"></span><h2>Scalar functions<a class="headerlink" href="#scalar-functions" title="Permalink to this headline">¶</a></h2>
@@ -193,8 +193,8 @@
 <span id="id2"></span><h3>Native functions<a class="headerlink" href="#scalar-native-functions" title="Permalink to this headline">¶</a></h3>
 <div class="section" id="cast">
 <h4>Cast<a class="headerlink" href="#cast" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">cast</span></code> function can be used to converts one native datatype to another.</p>
-<p>The following table describes the conversions supported by the <code class="docutils literal"><span class="pre">cast</span></code> function. Cassandra will silently ignore any
+<p>The <code class="docutils literal notranslate"><span class="pre">cast</span></code> function can be used to converts one native datatype to another.</p>
+<p>The following table describes the conversions supported by the <code class="docutils literal notranslate"><span class="pre">cast</span></code> function. Cassandra will silently ignore any
 cast converting a datatype into its own datatype.</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -207,130 +207,130 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ascii</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ascii</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">bigint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">bigint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">boolean</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">boolean</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">counter</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>,
-<code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">counter</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>,
+<code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">decimal</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">decimal</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">double</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">double</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">float</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">float</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">inet</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">inet</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">int</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">int</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">smallint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">smallint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">time</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">time</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">date</span></code>, <code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code>, <code class="docutils literal"><span class="pre">date</span></code>, <code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code>, <code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">tinyint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>,
-<code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>,
+<code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">uuid</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">uuid</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">varint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">varint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
 </tbody>
 </table>
-<p>The conversions rely strictly on Java&#8217;s semantics. For example, the double value 1 will be converted to the text value
-&#8216;1.0&#8217;. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">avg</span><span class="p">(</span><span class="k">cast</span><span class="p">(</span><span class="k">count</span> <span class="k">as</span> <span class="nb">double</span><span class="p">))</span> <span class="k">FROM</span> <span class="n">myTable</span>
+<p>The conversions rely strictly on Java’s semantics. For example, the double value 1 will be converted to the text value
+‘1.0’. For instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">avg</span><span class="p">(</span><span class="k">cast</span><span class="p">(</span><span class="k">count</span> <span class="k">as</span> <span class="nb">double</span><span class="p">))</span> <span class="k">FROM</span> <span class="n">myTable</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="token">
 <h4>Token<a class="headerlink" href="#token" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">token</span></code> function allows to compute the token for a given partition key. The exact signature of the token function
+<p>The <code class="docutils literal notranslate"><span class="pre">token</span></code> function allows to compute the token for a given partition key. The exact signature of the token function
 depends on the table concerned and of the partitioner used by the cluster.</p>
-<p>The type of the arguments of the <code class="docutils literal"><span class="pre">token</span></code> depend on the type of the partition key columns. The return type depend on
+<p>The type of the arguments of the <code class="docutils literal notranslate"><span class="pre">token</span></code> depend on the type of the partition key columns. The return type depend on
 the partitioner in use:</p>
 <ul class="simple">
-<li>For Murmur3Partitioner, the return type is <code class="docutils literal"><span class="pre">bigint</span></code>.</li>
-<li>For RandomPartitioner, the return type is <code class="docutils literal"><span class="pre">varint</span></code>.</li>
-<li>For ByteOrderedPartitioner, the return type is <code class="docutils literal"><span class="pre">blob</span></code>.</li>
+<li>For Murmur3Partitioner, the return type is <code class="docutils literal notranslate"><span class="pre">bigint</span></code>.</li>
+<li>For RandomPartitioner, the return type is <code class="docutils literal notranslate"><span class="pre">varint</span></code>.</li>
+<li>For ByteOrderedPartitioner, the return type is <code class="docutils literal notranslate"><span class="pre">blob</span></code>.</li>
 </ul>
 <p>For instance, in a cluster using the default Murmur3Partitioner, if a table is defined by:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
     <span class="n">userid</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">username</span> <span class="nb">text</span><span class="p">,</span>
 <span class="p">)</span>
 </pre></div>
 </div>
-<p>then the <code class="docutils literal"><span class="pre">token</span></code> function will take a single argument of type <code class="docutils literal"><span class="pre">text</span></code> (in that case, the partition key is <code class="docutils literal"><span class="pre">userid</span></code>
+<p>then the <code class="docutils literal notranslate"><span class="pre">token</span></code> function will take a single argument of type <code class="docutils literal notranslate"><span class="pre">text</span></code> (in that case, the partition key is <code class="docutils literal notranslate"><span class="pre">userid</span></code>
 (there is no clustering columns so the partition key is the same than the primary key)), and the return type will be
-<code class="docutils literal"><span class="pre">bigint</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">bigint</span></code>.</p>
 </div>
 <div class="section" id="uuid">
 <h4>Uuid<a class="headerlink" href="#uuid" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">uuid</span></code> function takes no parameters and generates a random type 4 uuid suitable for use in <code class="docutils literal"><span class="pre">INSERT</span></code> or
-<code class="docutils literal"><span class="pre">UPDATE</span></code> statements.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">uuid</span></code> function takes no parameters and generates a random type 4 uuid suitable for use in <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> or
+<code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements.</p>
 </div>
 <div class="section" id="timeuuid-functions">
 <span id="id3"></span><h4>Timeuuid functions<a class="headerlink" href="#timeuuid-functions" title="Permalink to this headline">¶</a></h4>
 <div class="section" id="now">
-<h5><code class="docutils literal"><span class="pre">now</span></code><a class="headerlink" href="#now" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">now</span></code> function takes no arguments and generates, on the coordinator node, a new unique timeuuid (at the time where
+<h5><code class="docutils literal notranslate"><span class="pre">now</span></code><a class="headerlink" href="#now" title="Permalink to this headline">¶</a></h5>
+<p>The <code class="docutils literal notranslate"><span class="pre">now</span></code> function takes no arguments and generates, on the coordinator node, a new unique timeuuid (at the time where
 the statement using it is executed). Note that this method is useful for insertion but is largely non-sensical in
-<code class="docutils literal"><span class="pre">WHERE</span></code> clauses. For instance, a query of the form:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span> <span class="k">WHERE</span> <span class="n">t</span> <span class="o">=</span> <span class="n">now</span><span class="p">()</span>
+<code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clauses. For instance, a query of the form:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span> <span class="k">WHERE</span> <span class="n">t</span> <span class="o">=</span> <span class="n">now</span><span class="p">()</span>
 </pre></div>
 </div>
-<p>will never return any result by design, since the value returned by <code class="docutils literal"><span class="pre">now()</span></code> is guaranteed to be unique.</p>
+<p>will never return any result by design, since the value returned by <code class="docutils literal notranslate"><span class="pre">now()</span></code> is guaranteed to be unique.</p>
 </div>
 <div class="section" id="mintimeuuid-and-maxtimeuuid">
-<h5><code class="docutils literal"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal"><span class="pre">maxTimeuuid</span></code><a class="headerlink" href="#mintimeuuid-and-maxtimeuuid" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">minTimeuuid</span></code> (resp. <code class="docutils literal"><span class="pre">maxTimeuuid</span></code>) function takes a <code class="docutils literal"><span class="pre">timestamp</span></code> value <code class="docutils literal"><span class="pre">t</span></code> (which can be <cite>either a timestamp
-or a date string &lt;timestamps&gt;</cite>) and return a <em>fake</em> <code class="docutils literal"><span class="pre">timeuuid</span></code> corresponding to the <em>smallest</em> (resp. <em>biggest</em>)
-possible <code class="docutils literal"><span class="pre">timeuuid</span></code> having for timestamp <code class="docutils literal"><span class="pre">t</span></code>. So for instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span>
+<h5><code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code><a class="headerlink" href="#mintimeuuid-and-maxtimeuuid" title="Permalink to this headline">¶</a></h5>
+<p>The <code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code> (resp. <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code>) function takes a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> value <code class="docutils literal notranslate"><span class="pre">t</span></code> (which can be <cite>either a timestamp
+or a date string &lt;timestamps&gt;</cite>) and return a <em>fake</em> <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> corresponding to the <em>smallest</em> (resp. <em>biggest</em>)
+possible <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> having for timestamp <code class="docutils literal notranslate"><span class="pre">t</span></code>. So for instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span>
  <span class="k">WHERE</span> <span class="n">t</span> <span class="o">&gt;</span> <span class="n">maxTimeuuid</span><span class="p">(</span><span class="s1">&#39;2013-01-01 00:05+0000&#39;</span><span class="p">)</span>
    <span class="k">AND</span> <span class="n">t</span> <span class="o">&lt;</span> <span class="n">minTimeuuid</span><span class="p">(</span><span class="s1">&#39;2013-02-02 10:00+0000&#39;</span><span class="p">)</span>
 </pre></div>
 </div>
-<p>will select all rows where the <code class="docutils literal"><span class="pre">timeuuid</span></code> column <code class="docutils literal"><span class="pre">t</span></code> is strictly older than <code class="docutils literal"><span class="pre">'2013-01-01</span> <span class="pre">00:05+0000'</span></code> but strictly
-younger than <code class="docutils literal"><span class="pre">'2013-02-02</span> <span class="pre">10:00+0000'</span></code>. Please note that <code class="docutils literal"><span class="pre">t</span> <span class="pre">&gt;=</span> <span class="pre">maxTimeuuid('2013-01-01</span> <span class="pre">00:05+0000')</span></code> would still
-<em>not</em> select a <code class="docutils literal"><span class="pre">timeuuid</span></code> generated exactly at &#8216;2013-01-01 00:05+0000&#8217; and is essentially equivalent to <code class="docutils literal"><span class="pre">t</span> <span class="pre">&gt;</span>
+<p>will select all rows where the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> column <code class="docutils literal notranslate"><span class="pre">t</span></code> is strictly older than <code class="docutils literal notranslate"><span class="pre">'2013-01-01</span> <span class="pre">00:05+0000'</span></code> but strictly
+younger than <code class="docutils literal notranslate"><span class="pre">'2013-02-02</span> <span class="pre">10:00+0000'</span></code>. Please note that <code class="docutils literal notranslate"><span class="pre">t</span> <span class="pre">&gt;=</span> <span class="pre">maxTimeuuid('2013-01-01</span> <span class="pre">00:05+0000')</span></code> would still
+<em>not</em> select a <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> generated exactly at ‘2013-01-01 00:05+0000’ and is essentially equivalent to <code class="docutils literal notranslate"><span class="pre">t</span> <span class="pre">&gt;</span>
 <span class="pre">maxTimeuuid('2013-01-01</span> <span class="pre">00:05+0000')</span></code>.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">We called the values generated by <code class="docutils literal"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal"><span class="pre">maxTimeuuid</span></code> <em>fake</em> UUID because they do no respect
+<p class="last">We called the values generated by <code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code> <em>fake</em> UUID because they do no respect
 the Time-Based UUID generation process specified by the <a class="reference external" href="http://www.ietf.org/rfc/rfc4122.txt">RFC 4122</a>. In
 particular, the value returned by these 2 methods will not be unique. This means you should only use those methods
 for querying (as in the example above). Inserting the result of those methods is almost certainly <em>a bad idea</em>.</p>
@@ -339,7 +339,7 @@
 </div>
 <div class="section" id="time-conversion-functions">
 <h4>Time conversion functions<a class="headerlink" href="#time-conversion-functions" title="Permalink to this headline">¶</a></h4>
-<p>A number of functions are provided to “convert” a <code class="docutils literal"><span class="pre">timeuuid</span></code>, a <code class="docutils literal"><span class="pre">timestamp</span></code> or a <code class="docutils literal"><span class="pre">date</span></code> into another <code class="docutils literal"><span class="pre">native</span></code>
+<p>A number of functions are provided to “convert” a <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code>, a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> or a <code class="docutils literal notranslate"><span class="pre">date</span></code> into another <code class="docutils literal notranslate"><span class="pre">native</span></code>
 type.</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -354,52 +354,52 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toDate</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal"><span class="pre">date</span></code> type</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toDate</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">date</span></code> type</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">toDate</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal"><span class="pre">date</span></code> type</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">toDate</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">date</span></code> type</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal"><span class="pre">timestamp</span></code> type</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> type</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">toTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">date</span></code> argument into a <code class="docutils literal"><span class="pre">timestamp</span></code> type</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">toTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">date</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> type</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toUnixTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal"><span class="pre">bigInt</span></code> raw value</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toUnixTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">bigInt</span></code> raw value</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">toUnixTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal"><span class="pre">bigInt</span></code> raw value</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">toUnixTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">bigInt</span></code> raw value</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toUnixTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">date</span></code> argument into a <code class="docutils literal"><span class="pre">bigInt</span></code> raw value</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toUnixTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">date</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">bigInt</span></code> raw value</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">dateOf</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Similar to <code class="docutils literal"><span class="pre">toTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">dateOf</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Similar to <code class="docutils literal notranslate"><span class="pre">toTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">unixTimestampOf</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Similar to <code class="docutils literal"><span class="pre">toUnixTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">unixTimestampOf</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Similar to <code class="docutils literal notranslate"><span class="pre">toUnixTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
 </tr>
 </tbody>
 </table>
 </div>
 <div class="section" id="blob-conversion-functions">
 <h4>Blob conversion functions<a class="headerlink" href="#blob-conversion-functions" title="Permalink to this headline">¶</a></h4>
-<p>A number of functions are provided to “convert” the native types into binary data (<code class="docutils literal"><span class="pre">blob</span></code>). For every
-<code class="docutils literal"><span class="pre">&lt;native-type&gt;</span></code> <code class="docutils literal"><span class="pre">type</span></code> supported by CQL (a notable exceptions is <code class="docutils literal"><span class="pre">blob</span></code>, for obvious reasons), the function
-<code class="docutils literal"><span class="pre">typeAsBlob</span></code> takes a argument of type <code class="docutils literal"><span class="pre">type</span></code> and return it as a <code class="docutils literal"><span class="pre">blob</span></code>. Conversely, the function <code class="docutils literal"><span class="pre">blobAsType</span></code>
-takes a 64-bit <code class="docutils literal"><span class="pre">blob</span></code> argument and convert it to a <code class="docutils literal"><span class="pre">bigint</span></code> value. And so for instance, <code class="docutils literal"><span class="pre">bigintAsBlob(3)</span></code> is
-<code class="docutils literal"><span class="pre">0x0000000000000003</span></code> and <code class="docutils literal"><span class="pre">blobAsBigint(0x0000000000000003)</span></code> is <code class="docutils literal"><span class="pre">3</span></code>.</p>
+<p>A number of functions are provided to “convert” the native types into binary data (<code class="docutils literal notranslate"><span class="pre">blob</span></code>). For every
+<code class="docutils literal notranslate"><span class="pre">&lt;native-type&gt;</span></code> <code class="docutils literal notranslate"><span class="pre">type</span></code> supported by CQL (a notable exceptions is <code class="docutils literal notranslate"><span class="pre">blob</span></code>, for obvious reasons), the function
+<code class="docutils literal notranslate"><span class="pre">typeAsBlob</span></code> takes a argument of type <code class="docutils literal notranslate"><span class="pre">type</span></code> and return it as a <code class="docutils literal notranslate"><span class="pre">blob</span></code>. Conversely, the function <code class="docutils literal notranslate"><span class="pre">blobAsType</span></code>
+takes a 64-bit <code class="docutils literal notranslate"><span class="pre">blob</span></code> argument and convert it to a <code class="docutils literal notranslate"><span class="pre">bigint</span></code> value. And so for instance, <code class="docutils literal notranslate"><span class="pre">bigintAsBlob(3)</span></code> is
+<code class="docutils literal notranslate"><span class="pre">0x0000000000000003</span></code> and <code class="docutils literal notranslate"><span class="pre">blobAsBigint(0x0000000000000003)</span></code> is <code class="docutils literal notranslate"><span class="pre">3</span></code>.</p>
 </div>
 </div>
 <div class="section" id="user-defined-functions">
@@ -409,7 +409,7 @@
 Scala) can be added by adding a JAR to the classpath.</p>
 <p>UDFs are part of the Cassandra schema. As such, they are automatically propagated to all nodes in the cluster.</p>
 <p>UDFs can be <em>overloaded</em> - i.e. multiple UDFs with different argument types but the same function name. Example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">sample</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">sample</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">sample</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">text</span> <span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
 </pre></div>
 </div>
@@ -421,11 +421,11 @@
 documentation of the Java Driver for details on handling tuple types and user-defined types.</p>
 <p>Arguments for functions can be literals or terms. Prepared statement placeholders can be used, too.</p>
 <p>Note that you can use the double-quoted string syntax to enclose the UDF source code. For example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">some_function</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">some_function</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span>
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="nb">int</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
-    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">arg</span><span class="o">;</span> <span class="s">$$</span><span class="p">;</span>
+    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">arg</span><span class="p">;</span> <span class="s">$$</span><span class="p">;</span>
 
 <span class="k">SELECT</span> <span class="n">some_function</span><span class="p">(</span><span class="n">column</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">atable</span> <span class="mf">...</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="n">atable</span> <span class="k">SET</span> <span class="n">col</span> <span class="o">=</span> <span class="n">some_function</span><span class="p">(</span><span class="o">?</span><span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
@@ -435,66 +435,66 @@
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="nb">text</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
-    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">udtarg</span><span class="o">.</span><span class="na">getString</span><span class="o">(</span><span class="s">&quot;txt&quot;</span><span class="o">);</span> <span class="s">$$</span><span class="p">;</span>
+    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">udtarg</span><span class="p">.</span><span class="na">getString</span><span class="p">(</span><span class="s">&quot;txt&quot;</span><span class="p">);</span> <span class="s">$$</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>User-defined functions can be used in <code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> statements.</p>
-<p>The implicitly available <code class="docutils literal"><span class="pre">udfContext</span></code> field (or binding for script UDFs) provides the necessary functionality to
+<p>User-defined functions can be used in <code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements.</p>
+<p>The implicitly available <code class="docutils literal notranslate"><span class="pre">udfContext</span></code> field (or binding for script UDFs) provides the necessary functionality to
 create new UDT and tuple values:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">custom_type</span> <span class="p">(</span><span class="n">txt</span> <span class="nb">text</span><span class="p">,</span> <span class="n">i</span> <span class="nb">int</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">custom_type</span> <span class="p">(</span><span class="n">txt</span> <span class="nb">text</span><span class="p">,</span> <span class="n">i</span> <span class="nb">int</span><span class="p">);</span>
 <span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">fct</span><span class="err">\</span><span class="n">_using</span><span class="err">\</span><span class="n">_udt</span> <span class="p">(</span> <span class="n">somearg</span> <span class="nb">int</span> <span class="p">)</span>
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="n">custom_type</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
     <span class="k">AS</span> <span class="s">$$</span>
-        <span class="n">UDTValue</span> <span class="n">udt</span> <span class="o">=</span> <span class="n">udfContext</span><span class="o">.</span><span class="na">newReturnUDTValue</span><span class="o">();</span>
-        <span class="n">udt</span><span class="o">.</span><span class="na">setString</span><span class="o">(</span><span class="s">&quot;txt&quot;</span><span class="o">,</span> <span class="s">&quot;some string&quot;</span><span class="o">);</span>
-        <span class="n">udt</span><span class="o">.</span><span class="na">setInt</span><span class="o">(</span><span class="s">&quot;i&quot;</span><span class="o">,</span> <span class="mi">42</span><span class="o">);</span>
-        <span class="k">return</span> <span class="n">udt</span><span class="o">;</span>
+        <span class="n">UDTValue</span> <span class="n">udt</span> <span class="o">=</span> <span class="n">udfContext</span><span class="p">.</span><span class="na">newReturnUDTValue</span><span class="p">();</span>
+        <span class="n">udt</span><span class="p">.</span><span class="na">setString</span><span class="p">(</span><span class="s">&quot;txt&quot;</span><span class="p">,</span> <span class="s">&quot;some string&quot;</span><span class="p">);</span>
+        <span class="n">udt</span><span class="p">.</span><span class="na">setInt</span><span class="p">(</span><span class="s">&quot;i&quot;</span><span class="p">,</span> <span class="mi">42</span><span class="p">);</span>
+        <span class="k">return</span> <span class="n">udt</span><span class="p">;</span>
     <span class="s">$$</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The definition of the <code class="docutils literal"><span class="pre">UDFContext</span></code> interface can be found in the Apache Cassandra source code for
-<code class="docutils literal"><span class="pre">org.apache.cassandra.cql3.functions.UDFContext</span></code>.</p>
-<div class="highlight-java"><div class="highlight"><pre><span></span><span class="kd">public</span> <span class="kd">interface</span> <span class="nc">UDFContext</span>
-<span class="o">{</span>
-    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="o">(</span><span class="n">String</span> <span class="n">argName</span><span class="o">);</span>
-    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="o">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="o">);</span>
-    <span class="n">UDTValue</span> <span class="nf">newReturnUDTValue</span><span class="o">();</span>
-    <span class="n">UDTValue</span> <span class="nf">newUDTValue</span><span class="o">(</span><span class="n">String</span> <span class="n">udtName</span><span class="o">);</span>
-    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="o">(</span><span class="n">String</span> <span class="n">argName</span><span class="o">);</span>
-    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="o">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="o">);</span>
-    <span class="n">TupleValue</span> <span class="nf">newReturnTupleValue</span><span class="o">();</span>
-    <span class="n">TupleValue</span> <span class="nf">newTupleValue</span><span class="o">(</span><span class="n">String</span> <span class="n">cqlDefinition</span><span class="o">);</span>
-<span class="o">}</span>
+<p>The definition of the <code class="docutils literal notranslate"><span class="pre">UDFContext</span></code> interface can be found in the Apache Cassandra source code for
+<code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.cql3.functions.UDFContext</span></code>.</p>
+<div class="highlight-java notranslate"><div class="highlight"><pre><span></span><span class="kd">public</span> <span class="kd">interface</span> <span class="nc">UDFContext</span>
+<span class="p">{</span>
+    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="p">(</span><span class="n">String</span> <span class="n">argName</span><span class="p">);</span>
+    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="p">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="p">);</span>
+    <span class="n">UDTValue</span> <span class="nf">newReturnUDTValue</span><span class="p">();</span>
+    <span class="n">UDTValue</span> <span class="nf">newUDTValue</span><span class="p">(</span><span class="n">String</span> <span class="n">udtName</span><span class="p">);</span>
+    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="p">(</span><span class="n">String</span> <span class="n">argName</span><span class="p">);</span>
+    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="p">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="p">);</span>
+    <span class="n">TupleValue</span> <span class="nf">newReturnTupleValue</span><span class="p">();</span>
+    <span class="n">TupleValue</span> <span class="nf">newTupleValue</span><span class="p">(</span><span class="n">String</span> <span class="n">cqlDefinition</span><span class="p">);</span>
+<span class="p">}</span>
 </pre></div>
 </div>
 <p>Java UDFs already have some imports for common interfaces and classes defined. These imports are:</p>
-<div class="highlight-java"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">java.nio.ByteBuffer</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">java.util.List</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">java.util.Map</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">java.util.Set</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">org.apache.cassandra.cql3.functions.UDFContext</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TypeCodec</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TupleValue</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">com.datastax.driver.core.UDTValue</span><span class="o">;</span>
+<div class="highlight-java notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">java.nio.ByteBuffer</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">java.util.List</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">java.util.Map</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">java.util.Set</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">org.apache.cassandra.cql3.functions.UDFContext</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TypeCodec</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TupleValue</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">com.datastax.driver.core.UDTValue</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>Please note, that these convenience imports are not available for script UDFs.</p>
 <div class="section" id="create-function">
 <span id="create-function-statement"></span><h4>CREATE FUNCTION<a class="headerlink" href="#create-function" title="Permalink to this headline">¶</a></h4>
-<p>Creating a new user-defined function uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> statement:</p>
+<p>Creating a new user-defined function uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_function_statement">create_function_statement</strong> ::=  CREATE [ OR REPLACE ] FUNCTION [ IF NOT EXISTS]
-                                   <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments_declaration"><code class="xref docutils literal"><span class="pre">arguments_declaration</span></code></a> ')'
+<strong id="grammar-token-create-function-statement">create_function_statement</strong> ::=  CREATE [ OR REPLACE ] FUNCTION [ IF NOT EXISTS]
+                                   <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments-declaration"><code class="xref docutils literal notranslate"><span class="pre">arguments_declaration</span></code></a> ')'
                                    [ CALLED | RETURNS NULL ] ON NULL INPUT
-                                   RETURNS <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a>
-                                   LANGUAGE <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
-                                   AS <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
-<strong id="grammar-token-arguments_declaration">arguments_declaration    </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )*
+                                   RETURNS <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a>
+                                   LANGUAGE <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
+                                   AS <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
+<strong id="grammar-token-arguments-declaration">arguments_declaration    </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">somefunction</span><span class="p">(</span><span class="n">somearg</span> <span class="nb">int</span><span class="p">,</span> <span class="n">anotherarg</span> <span class="nb">text</span><span class="p">,</span> <span class="n">complexarg</span> <span class="k">frozen</span><span class="o">&lt;</span><span class="n">someUDT</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">listarg</span> <span class="k">list</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">somefunction</span><span class="p">(</span><span class="n">somearg</span> <span class="nb">int</span><span class="p">,</span> <span class="n">anotherarg</span> <span class="nb">text</span><span class="p">,</span> <span class="n">complexarg</span> <span class="k">frozen</span><span class="o">&lt;</span><span class="n">someUDT</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">listarg</span> <span class="k">list</span><span class="p">)</span>
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="nb">text</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
@@ -511,19 +511,19 @@
     <span class="s">$$</span><span class="p">;</span>
 </pre></div>
 </div>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates a function or replaces an existing one with
-the same signature. A <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> without <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if a function with the same signature already
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates a function or replaces an existing one with
+the same signature. A <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> without <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if a function with the same signature already
 exists.</p>
-<p>If the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords are used, the function will
+<p>If the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords are used, the function will
 only be created if another function with the same signature does not
 exist.</p>
-<p><code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
-<p>Behavior on invocation with <code class="docutils literal"><span class="pre">null</span></code> values must be defined for each
+<p><code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
+<p>Behavior on invocation with <code class="docutils literal notranslate"><span class="pre">null</span></code> values must be defined for each
 function. There are two options:</p>
 <ol class="arabic simple">
-<li><code class="docutils literal"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always
-return <code class="docutils literal"><span class="pre">null</span></code> if any of the input arguments is <code class="docutils literal"><span class="pre">null</span></code>.</li>
-<li><code class="docutils literal"><span class="pre">CALLED</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always be
+<li><code class="docutils literal notranslate"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always
+return <code class="docutils literal notranslate"><span class="pre">null</span></code> if any of the input arguments is <code class="docutils literal notranslate"><span class="pre">null</span></code>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">CALLED</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always be
 executed.</li>
 </ol>
 <div class="section" id="function-signature">
@@ -535,71 +535,71 @@
 </ol>
 <p>Note that keyspace names, function names and argument types are subject to the default naming conventions and
 case-sensitivity rules.</p>
-<p>Functions belong to a keyspace. If no keyspace is specified in <code class="docutils literal"><span class="pre">&lt;function-name&gt;</span></code>, the current keyspace is used (i.e.
-the keyspace specified using the <code class="docutils literal"><span class="pre">USE</span></code> statement). It is not possible to create a user-defined function in one of the
+<p>Functions belong to a keyspace. If no keyspace is specified in <code class="docutils literal notranslate"><span class="pre">&lt;function-name&gt;</span></code>, the current keyspace is used (i.e.
+the keyspace specified using the <code class="docutils literal notranslate"><span class="pre">USE</span></code> statement). It is not possible to create a user-defined function in one of the
 system keyspaces.</p>
 </div>
 </div>
 <div class="section" id="drop-function">
 <span id="drop-function-statement"></span><h4>DROP FUNCTION<a class="headerlink" href="#drop-function" title="Permalink to this headline">¶</a></h4>
-<p>Dropping a function uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> statement:</p>
+<p>Dropping a function uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_function_statement">drop_function_statement</strong> ::=  DROP FUNCTION [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref docutils literal"><span class="pre">arguments_signature</span></code></a> ')' ]
-<strong id="grammar-token-arguments_signature">arguments_signature    </strong> ::=  <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )*
+<strong id="grammar-token-drop-function-statement">drop_function_statement</strong> ::=  DROP FUNCTION [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref docutils literal notranslate"><span class="pre">arguments_signature</span></code></a> ')' ]
+<strong id="grammar-token-arguments-signature">arguments_signature    </strong> ::=  <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">myfunction</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">myfunction</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">mykeyspace</span><span class="mf">.</span><span class="n">afunction</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">afunction</span> <span class="p">(</span> <span class="nb">int</span> <span class="p">);</span>
 <span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">afunction</span> <span class="p">(</span> <span class="nb">text</span> <span class="p">);</span>
 </pre></div>
 </div>
-<p>You must specify the argument types (<a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref std std-token docutils literal"><span class="pre">arguments_signature</span></code></a>) of the function to drop if there are multiple
+<p>You must specify the argument types (<a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref std std-token docutils literal notranslate"><span class="pre">arguments_signature</span></code></a>) of the function to drop if there are multiple
 functions with the same name but a different signature (overloaded functions).</p>
-<p><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops a function if it exists, but does not throw an error if
-it doesn&#8217;t</p>
+<p><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops a function if it exists, but does not throw an error if
+it doesn’t</p>
 </div>
 </div>
 </div>
 <div class="section" id="aggregate-functions">
 <span id="id4"></span><h2>Aggregate functions<a class="headerlink" href="#aggregate-functions" title="Permalink to this headline">¶</a></h2>
 <p>Aggregate functions work on a set of rows. They receive values for each row and returns one value for the whole set.</p>
-<p>If <code class="docutils literal"><span class="pre">normal</span></code> columns, <code class="docutils literal"><span class="pre">scalar</span> <span class="pre">functions</span></code>, <code class="docutils literal"><span class="pre">UDT</span></code> fields, <code class="docutils literal"><span class="pre">writetime</span></code> or <code class="docutils literal"><span class="pre">ttl</span></code> are selected together with
+<p>If <code class="docutils literal notranslate"><span class="pre">normal</span></code> columns, <code class="docutils literal notranslate"><span class="pre">scalar</span> <span class="pre">functions</span></code>, <code class="docutils literal notranslate"><span class="pre">UDT</span></code> fields, <code class="docutils literal notranslate"><span class="pre">writetime</span></code> or <code class="docutils literal notranslate"><span class="pre">ttl</span></code> are selected together with
 aggregate functions, the values returned for them will be the ones of the first row matching the query.</p>
 <div class="section" id="native-aggregates">
 <h3>Native aggregates<a class="headerlink" href="#native-aggregates" title="Permalink to this headline">¶</a></h3>
 <div class="section" id="count">
 <span id="count-function"></span><h4>Count<a class="headerlink" href="#count" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">count</span></code> function can be used to count the rows returned by a query. Example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="o">*</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<p>The <code class="docutils literal notranslate"><span class="pre">count</span></code> function can be used to count the rows returned by a query. Example:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="o">*</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 <span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="mf">1</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>It also can be used to count the non null value of a given column:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="n">scores</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="n">scores</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="max-and-min">
 <h4>Max and Min<a class="headerlink" href="#max-and-min" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">max</span></code> and <code class="docutils literal"><span class="pre">min</span></code> functions can be used to compute the maximum and the minimum value returned by a query for a
+<p>The <code class="docutils literal notranslate"><span class="pre">max</span></code> and <code class="docutils literal notranslate"><span class="pre">min</span></code> functions can be used to compute the maximum and the minimum value returned by a query for a
 given column. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">MIN</span> <span class="p">(</span><span class="n">players</span><span class="p">),</span> <span class="n">MAX</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">game</span> <span class="o">=</span> <span class="s1">&#39;quake&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">MIN</span> <span class="p">(</span><span class="n">players</span><span class="p">),</span> <span class="n">MAX</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">game</span> <span class="o">=</span> <span class="s1">&#39;quake&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="sum">
 <h4>Sum<a class="headerlink" href="#sum" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">sum</span></code> function can be used to sum up all the values returned by a query for a given column. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">SUM</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<p>The <code class="docutils literal notranslate"><span class="pre">sum</span></code> function can be used to sum up all the values returned by a query for a given column. For instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">SUM</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="avg">
 <h4>Avg<a class="headerlink" href="#avg" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">avg</span></code> function can be used to compute the average of all the values returned by a query for a given column. For
+<p>The <code class="docutils literal notranslate"><span class="pre">avg</span></code> function can be used to compute the average of all the values returned by a query for a given column. For
 instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">AVG</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">AVG</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
@@ -608,26 +608,26 @@
 <span id="user-defined-aggregates-functions"></span><h3>User-Defined Aggregates<a class="headerlink" href="#user-defined-aggregates" title="Permalink to this headline">¶</a></h3>
 <p>User-defined aggregates allow the creation of custom aggregate functions. Common examples of aggregate functions are
 <em>count</em>, <em>min</em>, and <em>max</em>.</p>
-<p>Each aggregate requires an <em>initial state</em> (<code class="docutils literal"><span class="pre">INITCOND</span></code>, which defaults to <code class="docutils literal"><span class="pre">null</span></code>) of type <code class="docutils literal"><span class="pre">STYPE</span></code>. The first
-argument of the state function must have type <code class="docutils literal"><span class="pre">STYPE</span></code>. The remaining arguments of the state function must match the
+<p>Each aggregate requires an <em>initial state</em> (<code class="docutils literal notranslate"><span class="pre">INITCOND</span></code>, which defaults to <code class="docutils literal notranslate"><span class="pre">null</span></code>) of type <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The first
+argument of the state function must have type <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The remaining arguments of the state function must match the
 types of the user-defined aggregate arguments. The state function is called once for each row, and the value returned by
-the state function becomes the new state. After all rows are processed, the optional <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is executed with last
+the state function becomes the new state. After all rows are processed, the optional <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is executed with last
 state value as its argument.</p>
-<p><code class="docutils literal"><span class="pre">STYPE</span></code> is mandatory in order to be able to distinguish possibly overloaded versions of the state and/or final
+<p><code class="docutils literal notranslate"><span class="pre">STYPE</span></code> is mandatory in order to be able to distinguish possibly overloaded versions of the state and/or final
 function (since the overload can appear after creation of the aggregate).</p>
-<p>User-defined aggregates can be used in <code class="docutils literal"><span class="pre">SELECT</span></code> statement.</p>
-<p>A complete working example for user-defined aggregates (assuming that a keyspace has been selected using the <code class="docutils literal"><span class="pre">USE</span></code>
+<p>User-defined aggregates can be used in <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</p>
+<p>A complete working example for user-defined aggregates (assuming that a keyspace has been selected using the <code class="docutils literal notranslate"><span class="pre">USE</span></code>
 statement):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">averageState</span><span class="p">(</span><span class="n">state</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span><span class="nb">bigint</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">val</span> <span class="nb">int</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">averageState</span><span class="p">(</span><span class="n">state</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span><span class="nb">bigint</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">val</span> <span class="nb">int</span><span class="p">)</span>
     <span class="k">CALLED</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="k">tuple</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
     <span class="k">AS</span> <span class="s">$$</span>
-        <span class="k">if</span> <span class="o">(</span><span class="n">val</span> <span class="o">!=</span> <span class="kc">null</span><span class="o">)</span> <span class="o">{</span>
-            <span class="n">state</span><span class="o">.</span><span class="na">setInt</span><span class="o">(</span><span class="mi">0</span><span class="o">,</span> <span class="n">state</span><span class="o">.</span><span class="na">getInt</span><span class="o">(</span><span class="mi">0</span><span class="o">)+</span><span class="mi">1</span><span class="o">);</span>
-            <span class="n">state</span><span class="o">.</span><span class="na">setLong</span><span class="o">(</span><span class="mi">1</span><span class="o">,</span> <span class="n">state</span><span class="o">.</span><span class="na">getLong</span><span class="o">(</span><span class="mi">1</span><span class="o">)+</span><span class="n">val</span><span class="o">.</span><span class="na">intValue</span><span class="o">());</span>
-        <span class="o">}</span>
-        <span class="k">return</span> <span class="n">state</span><span class="o">;</span>
+        <span class="k">if</span> <span class="p">(</span><span class="n">val</span> <span class="o">!=</span> <span class="kc">null</span><span class="p">)</span> <span class="p">{</span>
+            <span class="n">state</span><span class="p">.</span><span class="na">setInt</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="n">state</span><span class="p">.</span><span class="na">getInt</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span><span class="o">+</span><span class="mi">1</span><span class="p">);</span>
+            <span class="n">state</span><span class="p">.</span><span class="na">setLong</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span> <span class="n">state</span><span class="p">.</span><span class="na">getLong</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">+</span><span class="n">val</span><span class="p">.</span><span class="na">intValue</span><span class="p">());</span>
+        <span class="p">}</span>
+        <span class="k">return</span> <span class="n">state</span><span class="p">;</span>
     <span class="s">$$</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">averageFinal</span> <span class="p">(</span><span class="n">state</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span><span class="nb">bigint</span><span class="o">&gt;</span><span class="p">)</span>
@@ -635,11 +635,11 @@
     <span class="k">RETURNS</span> <span class="nb">double</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
     <span class="k">AS</span> <span class="s">$$</span>
-        <span class="kt">double</span> <span class="n">r</span> <span class="o">=</span> <span class="mi">0</span><span class="o">;</span>
-        <span class="k">if</span> <span class="o">(</span><span class="n">state</span><span class="o">.</span><span class="na">getInt</span><span class="o">(</span><span class="mi">0</span><span class="o">)</span> <span class="o">==</span> <span class="mi">0</span><span class="o">)</span> <span class="k">return</span> <span class="kc">null</span><span class="o">;</span>
-        <span class="n">r</span> <span class="o">=</span> <span class="n">state</span><span class="o">.</span><span class="na">getLong</span><span class="o">(</span><span class="mi">1</span><span class="o">);</span>
-        <span class="n">r</span> <span class="o">/=</span> <span class="n">state</span><span class="o">.</span><span class="na">getInt</span><span class="o">(</span><span class="mi">0</span><span class="o">);</span>
-        <span class="k">return</span> <span class="n">Double</span><span class="o">.</span><span class="na">valueOf</span><span class="o">(</span><span class="n">r</span><span class="o">);</span>
+        <span class="kt">double</span> <span class="n">r</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
+        <span class="k">if</span> <span class="p">(</span><span class="n">state</span><span class="p">.</span><span class="na">getInt</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span> <span class="o">==</span> <span class="mi">0</span><span class="p">)</span> <span class="k">return</span> <span class="kc">null</span><span class="p">;</span>
+        <span class="n">r</span> <span class="o">=</span> <span class="n">state</span><span class="p">.</span><span class="na">getLong</span><span class="p">(</span><span class="mi">1</span><span class="p">);</span>
+        <span class="n">r</span> <span class="o">/=</span> <span class="n">state</span><span class="p">.</span><span class="na">getInt</span><span class="p">(</span><span class="mi">0</span><span class="p">);</span>
+        <span class="k">return</span> <span class="n">Double</span><span class="p">.</span><span class="na">valueOf</span><span class="p">(</span><span class="n">r</span><span class="p">);</span>
     <span class="s">$$</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">AGGREGATE</span> <span class="n">average</span><span class="p">(</span><span class="nb">int</span><span class="p">)</span>
@@ -663,52 +663,52 @@
 </div>
 <div class="section" id="create-aggregate">
 <span id="create-aggregate-statement"></span><h4>CREATE AGGREGATE<a class="headerlink" href="#create-aggregate" title="Permalink to this headline">¶</a></h4>
-<p>Creating (or replacing) a user-defined aggregate function uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> statement:</p>
+<p>Creating (or replacing) a user-defined aggregate function uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_aggregate_statement">create_aggregate_statement</strong> ::=  CREATE [ OR REPLACE ] AGGREGATE [ IF NOT EXISTS ]
-                                    <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref docutils literal"><span class="pre">arguments_signature</span></code></a> ')'
-                                    SFUNC <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a>
-                                    STYPE <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a>
-                                    [ FINALFUNC <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> ]
-                                    [ INITCOND <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ]
+<strong id="grammar-token-create-aggregate-statement">create_aggregate_statement</strong> ::=  CREATE [ OR REPLACE ] AGGREGATE [ IF NOT EXISTS ]
+                                    <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref docutils literal notranslate"><span class="pre">arguments_signature</span></code></a> ')'
+                                    SFUNC <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a>
+                                    STYPE <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a>
+                                    [ FINALFUNC <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> ]
+                                    [ INITCOND <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ]
 </pre>
 <p>See above for a complete example.</p>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates an aggregate or replaces an existing one
-with the same signature. A <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> without <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if an aggregate with the same signature
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates an aggregate or replaces an existing one
+with the same signature. A <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> without <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if an aggregate with the same signature
 already exists.</p>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords either creates an aggregate if it does not already
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords either creates an aggregate if it does not already
 exist.</p>
-<p><code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
-<p><code class="docutils literal"><span class="pre">STYPE</span></code> defines the type of the state value and must be specified.</p>
-<p>The optional <code class="docutils literal"><span class="pre">INITCOND</span></code> defines the initial state value for the aggregate. It defaults to <code class="docutils literal"><span class="pre">null</span></code>. A non-<code class="docutils literal"><span class="pre">null</span></code>
-<code class="docutils literal"><span class="pre">INITCOND</span></code> must be specified for state functions that are declared with <code class="docutils literal"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code>.</p>
-<p><code class="docutils literal"><span class="pre">SFUNC</span></code> references an existing function to be used as the state modifying function. The type of first argument of the
-state function must match <code class="docutils literal"><span class="pre">STYPE</span></code>. The remaining argument types of the state function must match the argument types of
-the aggregate function. State is not updated for state functions declared with <code class="docutils literal"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> and called
-with <code class="docutils literal"><span class="pre">null</span></code>.</p>
-<p>The optional <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is called just before the aggregate result is returned. It must take only one argument with
-type <code class="docutils literal"><span class="pre">STYPE</span></code>. The return type of the <code class="docutils literal"><span class="pre">FINALFUNC</span></code> may be a different type. A final function declared with <code class="docutils literal"><span class="pre">RETURNS</span>
-<span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> means that the aggregate&#8217;s return value will be <code class="docutils literal"><span class="pre">null</span></code>, if the last state is <code class="docutils literal"><span class="pre">null</span></code>.</p>
-<p>If no <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is defined, the overall return type of the aggregate function is <code class="docutils literal"><span class="pre">STYPE</span></code>. If a <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is
+<p><code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
+<p><code class="docutils literal notranslate"><span class="pre">STYPE</span></code> defines the type of the state value and must be specified.</p>
+<p>The optional <code class="docutils literal notranslate"><span class="pre">INITCOND</span></code> defines the initial state value for the aggregate. It defaults to <code class="docutils literal notranslate"><span class="pre">null</span></code>. A non-<code class="docutils literal notranslate"><span class="pre">null</span></code>
+<code class="docutils literal notranslate"><span class="pre">INITCOND</span></code> must be specified for state functions that are declared with <code class="docutils literal notranslate"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code>.</p>
+<p><code class="docutils literal notranslate"><span class="pre">SFUNC</span></code> references an existing function to be used as the state modifying function. The type of first argument of the
+state function must match <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The remaining argument types of the state function must match the argument types of
+the aggregate function. State is not updated for state functions declared with <code class="docutils literal notranslate"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> and called
+with <code class="docutils literal notranslate"><span class="pre">null</span></code>.</p>
+<p>The optional <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is called just before the aggregate result is returned. It must take only one argument with
+type <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The return type of the <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> may be a different type. A final function declared with <code class="docutils literal notranslate"><span class="pre">RETURNS</span>
+<span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> means that the aggregate’s return value will be <code class="docutils literal notranslate"><span class="pre">null</span></code>, if the last state is <code class="docutils literal notranslate"><span class="pre">null</span></code>.</p>
+<p>If no <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is defined, the overall return type of the aggregate function is <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. If a <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is
 defined, it is the return type of that function.</p>
 </div>
 <div class="section" id="drop-aggregate">
 <span id="drop-aggregate-statement"></span><h4>DROP AGGREGATE<a class="headerlink" href="#drop-aggregate" title="Permalink to this headline">¶</a></h4>
-<p>Dropping an user-defined aggregate function uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement:</p>
+<p>Dropping an user-defined aggregate function uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_aggregate_statement">drop_aggregate_statement</strong> ::=  DROP AGGREGATE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref docutils literal"><span class="pre">arguments_signature</span></code></a> ')' ]
+<strong id="grammar-token-drop-aggregate-statement">drop_aggregate_statement</strong> ::=  DROP AGGREGATE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref docutils literal notranslate"><span class="pre">arguments_signature</span></code></a> ')' ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">myAggregate</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">myAggregate</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">myKeyspace</span><span class="mf">.</span><span class="n">anAggregate</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">someAggregate</span> <span class="p">(</span> <span class="nb">int</span> <span class="p">);</span>
 <span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">someAggregate</span> <span class="p">(</span> <span class="nb">text</span> <span class="p">);</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement removes an aggregate created using <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>. You must specify the argument
+<p>The <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement removes an aggregate created using <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>. You must specify the argument
 types of the aggregate to drop if there are multiple aggregates with the same name but a different signature (overloaded
 aggregates).</p>
-<p><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops an aggregate if it exists, and does nothing if a
+<p><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops an aggregate if it exists, and does nothing if a
 function with the signature does not exist.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/index.html b/content/doc/3.11/cql/index.html
index 899c315..8c05f31 100644
--- a/content/doc/3.11/cql/index.html
+++ b/content/doc/3.11/cql/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Definitions" href="definitions.html"/> <link rel="prev" title="Data Modeling" href="../data_modeling/index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Definitions" href="definitions.html"/> <link rel="prev" title="Data Modeling" href="../data_modeling/index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/cql/indexes.html b/content/doc/3.11/cql/indexes.html
index 9088893..14adfa1 100644
--- a/content/doc/3.11/cql/indexes.html
+++ b/content/doc/3.11/cql/indexes.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Materialized Views" href="mvs.html"/> <link rel="prev" title="Data Manipulation" href="dml.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Materialized Views" href="mvs.html"/> <link rel="prev" title="Data Manipulation" href="dml.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,48 +171,48 @@
 <p>CQL supports creating secondary indexes on tables, allowing queries on the table to use those indexes. A secondary index
 is identified by a name defined by:</p>
 <pre>
-<strong id="grammar-token-index_name">index_name</strong> ::=  re('[a-zA-Z_0-9]+')
+<strong id="grammar-token-index-name">index_name</strong> ::=  re('[a-zA-Z_0-9]+')
 </pre>
 <div class="section" id="create-index">
 <span id="create-index-statement"></span><h2>CREATE INDEX<a class="headerlink" href="#create-index" title="Permalink to this headline">¶</a></h2>
-<p>Creating a secondary index on a table uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement:</p>
+<p>Creating a secondary index on a table uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_index_statement">create_index_statement</strong> ::=  CREATE [ CUSTOM ] INDEX [ IF NOT EXISTS ] [ <a class="reference internal" href="#grammar-token-index_name"><code class="xref docutils literal"><span class="pre">index_name</span></code></a> ]
-                                ON <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-index_identifier"><code class="xref docutils literal"><span class="pre">index_identifier</span></code></a> ')'
-                                [ USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> [ WITH OPTIONS = <a class="reference internal" href="types.html#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a> ] ]
-<strong id="grammar-token-index_identifier">index_identifier      </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                           | ( KEYS | VALUES | ENTRIES | FULL ) '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ')'
+<strong id="grammar-token-create-index-statement">create_index_statement</strong> ::=  CREATE [ CUSTOM ] INDEX [ IF NOT EXISTS ] [ <a class="reference internal" href="#grammar-token-index-name"><code class="xref docutils literal notranslate"><span class="pre">index_name</span></code></a> ]
+                                ON <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-index-identifier"><code class="xref docutils literal notranslate"><span class="pre">index_identifier</span></code></a> ')'
+                                [ USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> [ WITH OPTIONS = <a class="reference internal" href="types.html#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a> ] ]
+<strong id="grammar-token-index-identifier">index_identifier      </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                           | ( KEYS | VALUES | ENTRIES | FULL ) '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ')'
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">INDEX</span> <span class="n">userIndex</span> <span class="k">ON</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="k">user</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">INDEX</span> <span class="n">userIndex</span> <span class="k">ON</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="k">user</span><span class="p">);</span>
 <span class="k">CREATE</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="n">Mutants</span> <span class="p">(</span><span class="n">abilityId</span><span class="p">);</span>
 <span class="k">CREATE</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="k">users</span> <span class="p">(</span><span class="k">keys</span><span class="p">(</span><span class="n">favs</span><span class="p">));</span>
 <span class="k">CREATE</span> <span class="k">CUSTOM</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="k">users</span> <span class="p">(</span><span class="n">email</span><span class="p">)</span> <span class="k">USING</span> <span class="s1">&#39;path.to.the.IndexClass&#39;</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">CUSTOM</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="k">users</span> <span class="p">(</span><span class="n">email</span><span class="p">)</span> <span class="k">USING</span> <span class="s1">&#39;path.to.the.IndexClass&#39;</span> <span class="k">WITH</span> <span class="k">OPTIONS</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;storage&#39;</span><span class="p">:</span> <span class="s1">&#39;/mnt/ssd/indexes/&#39;</span><span class="p">};</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement is used to create a new (automatic) secondary index for a given (existing) column in a
-given table. A name for the index itself can be specified before the <code class="docutils literal"><span class="pre">ON</span></code> keyword, if desired. If data already exists
+<p>The <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement is used to create a new (automatic) secondary index for a given (existing) column in a
+given table. A name for the index itself can be specified before the <code class="docutils literal notranslate"><span class="pre">ON</span></code> keyword, if desired. If data already exists
 for the column, it will be indexed asynchronously. After the index is created, new data for the column is indexed
 automatically at insertion time.</p>
-<p>Attempting to create an already existing index will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If it
+<p>Attempting to create an already existing index will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If it
 is used, the statement will be a no-op if the index already exists.</p>
 <div class="section" id="indexes-on-map-keys">
 <h3>Indexes on Map Keys<a class="headerlink" href="#indexes-on-map-keys" title="Permalink to this headline">¶</a></h3>
 <p>When creating an index on a <a class="reference internal" href="types.html#maps"><span class="std std-ref">maps</span></a>, you may index either the keys or the values. If the column identifier is
-placed within the <code class="docutils literal"><span class="pre">keys()</span></code> function, the index will be on the map keys, allowing you to use <code class="docutils literal"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> in
-<code class="docutils literal"><span class="pre">WHERE</span></code> clauses. Otherwise, the index will be on the map values.</p>
+placed within the <code class="docutils literal notranslate"><span class="pre">keys()</span></code> function, the index will be on the map keys, allowing you to use <code class="docutils literal notranslate"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> in
+<code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clauses. Otherwise, the index will be on the map values.</p>
 </div>
 </div>
 <div class="section" id="drop-index">
 <span id="drop-index-statement"></span><h2>DROP INDEX<a class="headerlink" href="#drop-index" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a secondary index uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement:</p>
+<p>Dropping a secondary index uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_index_statement">drop_index_statement</strong> ::=  DROP INDEX [ IF EXISTS ] <a class="reference internal" href="#grammar-token-index_name"><code class="xref docutils literal"><span class="pre">index_name</span></code></a>
+<strong id="grammar-token-drop-index-statement">drop_index_statement</strong> ::=  DROP INDEX [ IF EXISTS ] <a class="reference internal" href="#grammar-token-index-name"><code class="xref docutils literal notranslate"><span class="pre">index_name</span></code></a>
 </pre>
-<p>The <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement is used to drop an existing secondary index. The argument of the statement is the index
+<p>The <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement is used to drop an existing secondary index. The argument of the statement is the index
 name, which may optionally specify the keyspace of the index.</p>
-<p>If the index does not exists, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
+<p>If the index does not exists, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
 operation is a no-op.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/json.html b/content/doc/3.11/cql/json.html
index 204ac87..2b97b6d 100644
--- a/content/doc/3.11/cql/json.html
+++ b/content/doc/3.11/cql/json.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Triggers" href="triggers.html"/> <link rel="prev" title="Functions" href="functions.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Triggers" href="triggers.html"/> <link rel="prev" title="Functions" href="functions.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -176,39 +176,39 @@
 provides a convenient way to work with JSON documents.</p>
 <div class="section" id="select-json">
 <h2>SELECT JSON<a class="headerlink" href="#select-json" title="Permalink to this headline">¶</a></h2>
-<p>With <code class="docutils literal"><span class="pre">SELECT</span></code> statements, the <code class="docutils literal"><span class="pre">JSON</span></code> keyword can be used to return each row as a single <code class="docutils literal"><span class="pre">JSON</span></code> encoded map. The
-remainder of the <code class="docutils literal"><span class="pre">SELECT</span></code> statement behavior is the same.</p>
-<p>The result map keys are the same as the column names in a normal result set. For example, a statement like <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span>
-<span class="pre">a,</span> <span class="pre">ttl(b)</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map with keys <code class="docutils literal"><span class="pre">&quot;a&quot;</span></code> and <code class="docutils literal"><span class="pre">&quot;ttl(b)&quot;</span></code>. However, this is one notable exception:
-for symmetry with <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> behavior, case-sensitive column names with upper-case letters will be surrounded with
-double quotes. For example, <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span> <span class="pre">myColumn</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map key <code class="docutils literal"><span class="pre">&quot;\&quot;myColumn\&quot;&quot;</span></code> (note the
+<p>With <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements, the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> keyword can be used to return each row as a single <code class="docutils literal notranslate"><span class="pre">JSON</span></code> encoded map. The
+remainder of the <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement behavior is the same.</p>
+<p>The result map keys are the same as the column names in a normal result set. For example, a statement like <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span>
+<span class="pre">a,</span> <span class="pre">ttl(b)</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map with keys <code class="docutils literal notranslate"><span class="pre">&quot;a&quot;</span></code> and <code class="docutils literal notranslate"><span class="pre">&quot;ttl(b)&quot;</span></code>. However, this is one notable exception:
+for symmetry with <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> behavior, case-sensitive column names with upper-case letters will be surrounded with
+double quotes. For example, <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span> <span class="pre">myColumn</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map key <code class="docutils literal notranslate"><span class="pre">&quot;\&quot;myColumn\&quot;&quot;</span></code> (note the
 escaped quotes).</p>
-<p>The map values will <code class="docutils literal"><span class="pre">JSON</span></code>-encoded representations (as described below) of the result set values.</p>
+<p>The map values will <code class="docutils literal notranslate"><span class="pre">JSON</span></code>-encoded representations (as described below) of the result set values.</p>
 </div>
 <div class="section" id="insert-json">
 <h2>INSERT JSON<a class="headerlink" href="#insert-json" title="Permalink to this headline">¶</a></h2>
-<p>With <code class="docutils literal"><span class="pre">INSERT</span></code> statements, the new <code class="docutils literal"><span class="pre">JSON</span></code> keyword can be used to enable inserting a <code class="docutils literal"><span class="pre">JSON</span></code> encoded map as a single
-row. The format of the <code class="docutils literal"><span class="pre">JSON</span></code> map should generally match that returned by a <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statement on the same
+<p>With <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statements, the new <code class="docutils literal notranslate"><span class="pre">JSON</span></code> keyword can be used to enable inserting a <code class="docutils literal notranslate"><span class="pre">JSON</span></code> encoded map as a single
+row. The format of the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> map should generally match that returned by a <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statement on the same
 table. In particular, case-sensitive column names should be surrounded with double quotes. For example, to insert into a
-table with two columns named &#8220;myKey&#8221; and &#8220;value&#8221;, you would do the following:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">mytable</span> <span class="k">JSON</span> <span class="s1">&#39;{ &quot;\&quot;myKey\&quot;&quot;: 0, &quot;value&quot;: 0}&#39;</span>
+table with two columns named “myKey” and “value”, you would do the following:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">mytable</span> <span class="k">JSON</span> <span class="s1">&#39;{ &quot;\&quot;myKey\&quot;&quot;: 0, &quot;value&quot;: 0}&#39;</span>
 </pre></div>
 </div>
-<p>By default (or if <code class="docutils literal"><span class="pre">DEFAULT</span> <span class="pre">NULL</span></code> is explicitly used), a column omitted from the <code class="docutils literal"><span class="pre">JSON</span></code> map will be set to <code class="docutils literal"><span class="pre">NULL</span></code>,
+<p>By default (or if <code class="docutils literal notranslate"><span class="pre">DEFAULT</span> <span class="pre">NULL</span></code> is explicitly used), a column omitted from the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> map will be set to <code class="docutils literal notranslate"><span class="pre">NULL</span></code>,
 meaning that any pre-existing value for that column will be removed (resulting in a tombstone being created).
-Alternatively, if the <code class="docutils literal"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> directive is used after the value, omitted column values will be left unset,
+Alternatively, if the <code class="docutils literal notranslate"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> directive is used after the value, omitted column values will be left unset,
 meaning that pre-existing values for those column will be preserved.</p>
 </div>
 <div class="section" id="json-encoding-of-cassandra-data-types">
 <h2>JSON Encoding of Cassandra Data Types<a class="headerlink" href="#json-encoding-of-cassandra-data-types" title="Permalink to this headline">¶</a></h2>
-<p>Where possible, Cassandra will represent and accept data types in their native <code class="docutils literal"><span class="pre">JSON</span></code> representation. Cassandra will
+<p>Where possible, Cassandra will represent and accept data types in their native <code class="docutils literal notranslate"><span class="pre">JSON</span></code> representation. Cassandra will
 also accept string representations matching the CQL literal format for all single-field types. For example, floats,
 ints, UUIDs, and dates can be represented by CQL literal strings. However, compound types, such as collections, tuples,
-and user-defined types must be represented by native <code class="docutils literal"><span class="pre">JSON</span></code> collections (maps and lists) or a JSON-encoded string
+and user-defined types must be represented by native <code class="docutils literal notranslate"><span class="pre">JSON</span></code> collections (maps and lists) or a JSON-encoded string
 representation of the collection.</p>
-<p>The following table describes the encodings that Cassandra will accept in <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> values (and <code class="docutils literal"><span class="pre">fromJson()</span></code>
-arguments) as well as the format Cassandra will use when returning data for <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statements (and
-<code class="docutils literal"><span class="pre">fromJson()</span></code>):</p>
+<p>The following table describes the encodings that Cassandra will accept in <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> values (and <code class="docutils literal notranslate"><span class="pre">fromJson()</span></code>
+arguments) as well as the format Cassandra will use when returning data for <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statements (and
+<code class="docutils literal notranslate"><span class="pre">fromJson()</span></code>):</p>
 <table border="1" class="docutils">
 <colgroup>
 <col width="13%" />
@@ -224,125 +224,125 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ascii</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ascii</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Uses JSON&#8217;s <code class="docutils literal"><span class="pre">\u</span></code> character escape</td>
+<td>Uses JSON’s <code class="docutils literal notranslate"><span class="pre">\u</span></code> character escape</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">bigint</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">bigint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 64 bit integer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">blob</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">blob</span></code></td>
 <td>string</td>
 <td>string</td>
 <td>String should be 0x followed by an even number of hex digits</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">boolean</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">boolean</span></code></td>
 <td>boolean, string</td>
 <td>boolean</td>
-<td>String must be &#8220;true&#8221; or &#8220;false&#8221;</td>
+<td>String must be “true” or “false”</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">date</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Date in format <code class="docutils literal"><span class="pre">YYYY-MM-DD</span></code>, timezone UTC</td>
+<td>Date in format <code class="docutils literal notranslate"><span class="pre">YYYY-MM-DD</span></code>, timezone UTC</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">decimal</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">decimal</span></code></td>
 <td>integer, float, string</td>
 <td>float</td>
 <td>May exceed 32 or 64-bit IEEE-754 floating point precision in
 client-side decoder</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">double</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">double</span></code></td>
 <td>integer, float, string</td>
 <td>float</td>
 <td>String must be valid integer or float</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">float</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">float</span></code></td>
 <td>integer, float, string</td>
 <td>float</td>
 <td>String must be valid integer or float</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">inet</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">inet</span></code></td>
 <td>string</td>
 <td>string</td>
 <td>IPv4 or IPv6 address</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">int</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">int</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 32 bit integer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">list</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">list</span></code></td>
 <td>list, string</td>
 <td>list</td>
-<td>Uses JSON&#8217;s native list representation</td>
+<td>Uses JSON’s native list representation</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">map</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">map</span></code></td>
 <td>map, string</td>
 <td>map</td>
-<td>Uses JSON&#8217;s native map representation</td>
+<td>Uses JSON’s native map representation</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">smallint</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">smallint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 16 bit integer</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">set</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">set</span></code></td>
 <td>list, string</td>
 <td>list</td>
-<td>Uses JSON&#8217;s native list representation</td>
+<td>Uses JSON’s native list representation</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">text</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">text</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Uses JSON&#8217;s <code class="docutils literal"><span class="pre">\u</span></code> character escape</td>
+<td>Uses JSON’s <code class="docutils literal notranslate"><span class="pre">\u</span></code> character escape</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">time</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">time</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Time of day in format <code class="docutils literal"><span class="pre">HH-MM-SS[.fffffffff]</span></code></td>
+<td>Time of day in format <code class="docutils literal notranslate"><span class="pre">HH-MM-SS[.fffffffff]</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
 <td>integer, string</td>
 <td>string</td>
 <td>A timestamp. Strings constant allows to input <a class="reference internal" href="types.html#timestamps"><span class="std std-ref">timestamps
-as dates</span></a>. Datestamps with format <code class="docutils literal"><span class="pre">YYYY-MM-DD</span>
+as dates</span></a>. Datestamps with format <code class="docutils literal notranslate"><span class="pre">YYYY-MM-DD</span>
 <span class="pre">HH:MM:SS.SSS</span></code> are returned.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Type 1 UUID. See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal"><span class="pre">constant</span></code></a> for the UUID format</td>
+<td>Type 1 UUID. See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal notranslate"><span class="pre">constant</span></code></a> for the UUID format</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">tinyint</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 8 bit integer</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">tuple</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">tuple</span></code></td>
 <td>list, string</td>
 <td>list</td>
-<td>Uses JSON&#8217;s native list representation</td>
+<td>Uses JSON’s native list representation</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">UDT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">UDT</span></code></td>
 <td>map, string</td>
 <td>map</td>
-<td>Uses JSON&#8217;s native map representation with field names as keys</td>
+<td>Uses JSON’s native map representation with field names as keys</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">uuid</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">uuid</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal"><span class="pre">constant</span></code></a> for the UUID format</td>
+<td>See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal notranslate"><span class="pre">constant</span></code></a> for the UUID format</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Uses JSON&#8217;s <code class="docutils literal"><span class="pre">\u</span></code> character escape</td>
+<td>Uses JSON’s <code class="docutils literal notranslate"><span class="pre">\u</span></code> character escape</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">varint</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">varint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>Variable length; may overflow 32 or 64 bit integers in
@@ -353,14 +353,14 @@
 </div>
 <div class="section" id="the-fromjson-function">
 <h2>The fromJson() Function<a class="headerlink" href="#the-fromjson-function" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">fromJson()</span></code> function may be used similarly to <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
-in the <code class="docutils literal"><span class="pre">VALUES</span></code> clause of an <code class="docutils literal"><span class="pre">INSERT</span></code> statement or as one of the column values in an <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code>, or
-<code class="docutils literal"><span class="pre">SELECT</span></code> statement. For example, it cannot be used in the selection clause of a <code class="docutils literal"><span class="pre">SELECT</span></code> statement.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">fromJson()</span></code> function may be used similarly to <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
+in the <code class="docutils literal notranslate"><span class="pre">VALUES</span></code> clause of an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statement or as one of the column values in an <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code>, or
+<code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement. For example, it cannot be used in the selection clause of a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</p>
 </div>
 <div class="section" id="the-tojson-function">
 <h2>The toJson() Function<a class="headerlink" href="#the-tojson-function" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">toJson()</span></code> function may be used similarly to <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
-in the selection clause of a <code class="docutils literal"><span class="pre">SELECT</span></code> statement.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">toJson()</span></code> function may be used similarly to <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
+in the selection clause of a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</p>
 </div>
 </div>
 
diff --git a/content/doc/3.11/cql/mvs.html b/content/doc/3.11/cql/mvs.html
index 3a87d4b..fa7cbc6 100644
--- a/content/doc/3.11/cql/mvs.html
+++ b/content/doc/3.11/cql/mvs.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Secondary Indexes" href="indexes.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Secondary Indexes" href="indexes.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,27 +171,27 @@
 <span id="id1"></span><h1>Materialized Views<a class="headerlink" href="#materialized-views" title="Permalink to this headline">¶</a></h1>
 <p>Materialized views names are defined by:</p>
 <pre>
-<strong id="grammar-token-view_name">view_name</strong> ::=  re('[a-zA-Z_0-9]+')
+<strong id="grammar-token-view-name">view_name</strong> ::=  re('[a-zA-Z_0-9]+')
 </pre>
 <div class="section" id="create-materialized-view">
 <span id="create-materialized-view-statement"></span><h2>CREATE MATERIALIZED VIEW<a class="headerlink" href="#create-materialized-view" title="Permalink to this headline">¶</a></h2>
-<p>You can create a materialized view on a table using a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
+<p>You can create a materialized view on a table using a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_materialized_view_statement">create_materialized_view_statement</strong> ::=  CREATE MATERIALIZED VIEW [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-view_name"><code class="xref docutils literal"><span class="pre">view_name</span></code></a> AS
-                                            <a class="reference internal" href="dml.html#grammar-token-select_statement"><code class="xref docutils literal"><span class="pre">select_statement</span></code></a>
-                                            PRIMARY KEY '(' <a class="reference internal" href="ddl.html#grammar-token-primary_key"><code class="xref docutils literal"><span class="pre">primary_key</span></code></a> ')'
-                                            WITH <a class="reference internal" href="ddl.html#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a>
+<strong id="grammar-token-create-materialized-view-statement">create_materialized_view_statement</strong> ::=  CREATE MATERIALIZED VIEW [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-view-name"><code class="xref docutils literal notranslate"><span class="pre">view_name</span></code></a> AS
+                                            <a class="reference internal" href="dml.html#grammar-token-select-statement"><code class="xref docutils literal notranslate"><span class="pre">select_statement</span></code></a>
+                                            PRIMARY KEY '(' <a class="reference internal" href="ddl.html#grammar-token-primary-key"><code class="xref docutils literal notranslate"><span class="pre">primary_key</span></code></a> ')'
+                                            WITH <a class="reference internal" href="ddl.html#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">monkeySpecies_by_population</span> <span class="k">AS</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">monkeySpecies_by_population</span> <span class="k">AS</span>
     <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">monkeySpecies</span>
     <span class="k">WHERE</span> <span class="n">population</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">species</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span>
     <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">population</span><span class="p">,</span> <span class="n">species</span><span class="p">)</span>
     <span class="k">WITH</span> <span class="n">comment</span><span class="o">=</span><span class="s1">&#39;Allow query by population instead of species&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement creates a new materialized view. Each such view is a set of <em>rows</em> which
-corresponds to rows which are present in the underlying, or base, table specified in the <code class="docutils literal"><span class="pre">SELECT</span></code> statement. A
+<p>The <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement creates a new materialized view. Each such view is a set of <em>rows</em> which
+corresponds to rows which are present in the underlying, or base, table specified in the <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement. A
 materialized view cannot be directly updated, but updates to the base table will cause corresponding updates in the
 view.</p>
 <p>Creating a materialized view has 3 main parts:</p>
@@ -200,7 +200,7 @@
 <li>The <a class="reference internal" href="#mv-primary-key"><span class="std std-ref">primary key</span></a> definition for the view.</li>
 <li>The <a class="reference internal" href="#mv-options"><span class="std std-ref">options</span></a> for the view.</li>
 </ul>
-<p>Attempting to create an already existing materialized view will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is
+<p>Attempting to create an already existing materialized view will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is
 used. If it is used, the statement will be a no-op if the materialized view already exists.</p>
 <div class="section" id="mv-select-statement">
 <span id="mv-select"></span><h3>MV select statement<a class="headerlink" href="#mv-select-statement" title="Permalink to this headline">¶</a></h3>
@@ -208,15 +208,15 @@
 statement is limited in a number of ways:</p>
 <ul class="simple">
 <li>the <a class="reference internal" href="dml.html#selection-clause"><span class="std std-ref">selection</span></a> is limited to those that only select columns of the base table. In other
-words, you can&#8217;t use any function (aggregate or not), casting, term, etc. Aliases are also not supported. You can
+words, you can’t use any function (aggregate or not), casting, term, etc. Aliases are also not supported. You can
 however use <cite>*</cite> as a shortcut of selecting all columns. Further, <a class="reference internal" href="ddl.html#static-columns"><span class="std std-ref">static columns</span></a> cannot be
-included in a materialized view (which means <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">*</span></code> isn&#8217;t allowed if the base table has static columns).</li>
-<li>the <code class="docutils literal"><span class="pre">WHERE</span></code> clause have the following restrictions:<ul>
-<li>it cannot include any <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref std std-token docutils literal"><span class="pre">bind_marker</span></code></a>.</li>
-<li>the columns that are not part of the <em>base table</em> primary key can only be restricted by an <code class="docutils literal"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code>
+included in a materialized view (which means <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">*</span></code> isn’t allowed if the base table has static columns).</li>
+<li>the <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause have the following restrictions:<ul>
+<li>it cannot include any <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref std std-token docutils literal notranslate"><span class="pre">bind_marker</span></code></a>.</li>
+<li>the columns that are not part of the <em>base table</em> primary key can only be restricted by an <code class="docutils literal notranslate"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code>
 restriction. No other restriction is allowed.</li>
 <li>as the columns that are part of the <em>view</em> primary key cannot be null, they must always be at least restricted by a
-<code class="docutils literal"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code> restriction (or any other restriction, but they must have one).</li>
+<code class="docutils literal notranslate"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code> restriction (or any other restriction, but they must have one).</li>
 </ul>
 </li>
 <li>it cannot have neither an <a class="reference internal" href="dml.html#ordering-clause"><span class="std std-ref">ordering clause</span></a>, nor a <a class="reference internal" href="dml.html#limit-clause"><span class="std std-ref">limit</span></a>, nor <a class="reference internal" href="dml.html#allow-filtering"><span class="std std-ref">ALLOW
@@ -232,7 +232,7 @@
 <li>it can only contain a single column that is not a primary key column in the base table.</li>
 </ul>
 <p>So for instance, give the following base table definition:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">k</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c1</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c2</span> <span class="nb">int</span><span class="p">,</span>
@@ -243,7 +243,7 @@
 </pre></div>
 </div>
 <p>then the following view definitions are allowed:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">mv1</span> <span class="k">AS</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">mv1</span> <span class="k">AS</span>
     <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">t</span> <span class="k">WHERE</span> <span class="n">k</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c1</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c2</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span>
     <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">c1</span><span class="p">,</span> <span class="n">k</span><span class="p">,</span> <span class="n">c2</span><span class="p">)</span>
 
@@ -253,7 +253,7 @@
 </pre></div>
 </div>
 <p>but the following ones are <strong>not</strong> allowed:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">// Error: cannot include both v1 and v2 in the primary key as both are not in the base table primary key</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">// Error: cannot include both v1 and v2 in the primary key as both are not in the base table primary key</span>
 <span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">mv1</span> <span class="k">AS</span>
     <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">t</span> <span class="k">WHERE</span> <span class="n">k</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c1</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c2</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">v1</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span>
     <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">v1</span><span class="p">,</span> <span class="n">v2</span><span class="p">,</span> <span class="n">k</span><span class="p">,</span> <span class="n">c1</span><span class="p">,</span> <span class="n">c2</span><span class="p">)</span>
@@ -273,19 +273,19 @@
 </div>
 <div class="section" id="alter-materialized-view">
 <span id="alter-materialized-view-statement"></span><h2>ALTER MATERIALIZED VIEW<a class="headerlink" href="#alter-materialized-view" title="Permalink to this headline">¶</a></h2>
-<p>After creation, you can alter the options of a materialized view using the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
+<p>After creation, you can alter the options of a materialized view using the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_materialized_view_statement">alter_materialized_view_statement</strong> ::=  ALTER MATERIALIZED VIEW <a class="reference internal" href="#grammar-token-view_name"><code class="xref docutils literal"><span class="pre">view_name</span></code></a> WITH <a class="reference internal" href="ddl.html#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a>
+<strong id="grammar-token-alter-materialized-view-statement">alter_materialized_view_statement</strong> ::=  ALTER MATERIALIZED VIEW <a class="reference internal" href="#grammar-token-view-name"><code class="xref docutils literal notranslate"><span class="pre">view_name</span></code></a> WITH <a class="reference internal" href="ddl.html#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a>
 </pre>
 <p>The options that can be updated are the same than at creation time and thus the <a class="reference internal" href="ddl.html#create-table-options"><span class="std std-ref">same than for tables</span></a>.</p>
 </div>
 <div class="section" id="drop-materialized-view">
 <span id="drop-materialized-view-statement"></span><h2>DROP MATERIALIZED VIEW<a class="headerlink" href="#drop-materialized-view" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a materialized view users the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
+<p>Dropping a materialized view users the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_materialized_view_statement">drop_materialized_view_statement</strong> ::=  DROP MATERIALIZED VIEW [ IF EXISTS ] <a class="reference internal" href="#grammar-token-view_name"><code class="xref docutils literal"><span class="pre">view_name</span></code></a>;
+<strong id="grammar-token-drop-materialized-view-statement">drop_materialized_view_statement</strong> ::=  DROP MATERIALIZED VIEW [ IF EXISTS ] <a class="reference internal" href="#grammar-token-view-name"><code class="xref docutils literal notranslate"><span class="pre">view_name</span></code></a>;
 </pre>
-<p>If the materialized view does not exists, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case
+<p>If the materialized view does not exists, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case
 the operation is a no-op.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/security.html b/content/doc/3.11/cql/security.html
index 888d1bb..280aa65 100644
--- a/content/doc/3.11/cql/security.html
+++ b/content/doc/3.11/cql/security.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Functions" href="functions.html"/> <link rel="prev" title="Materialized Views" href="mvs.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Functions" href="functions.html"/> <link rel="prev" title="Materialized Views" href="mvs.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -173,50 +173,50 @@
 <span id="cql-roles"></span><h2>Database Roles<a class="headerlink" href="#database-roles" title="Permalink to this headline">¶</a></h2>
 <p>CQL uses database roles to represent users and group of users. Syntactically, a role is defined by:</p>
 <pre>
-<strong id="grammar-token-role_name">role_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+<strong id="grammar-token-role-name">role_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
 <div class="section" id="create-role">
 <span id="create-role-statement"></span><h3>CREATE ROLE<a class="headerlink" href="#create-role" title="Permalink to this headline">¶</a></h3>
-<p>Creating a role uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Creating a role uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_role_statement">create_role_statement</strong> ::=  CREATE ROLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
-                               [ WITH <a class="reference internal" href="#grammar-token-role_options"><code class="xref docutils literal"><span class="pre">role_options</span></code></a> ]
-<strong id="grammar-token-role_options">role_options         </strong> ::=  <a class="reference internal" href="#grammar-token-role_option"><code class="xref docutils literal"><span class="pre">role_option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-role_option"><code class="xref docutils literal"><span class="pre">role_option</span></code></a> )*
-<strong id="grammar-token-role_option">role_option          </strong> ::=  PASSWORD '=' <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
-                          | LOGIN '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal"><span class="pre">boolean</span></code></a>
-                          | SUPERUSER '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal"><span class="pre">boolean</span></code></a>
-                          | OPTIONS '=' <a class="reference internal" href="types.html#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a>
+<strong id="grammar-token-create-role-statement">create_role_statement</strong> ::=  CREATE ROLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
+                               [ WITH <a class="reference internal" href="#grammar-token-role-options"><code class="xref docutils literal notranslate"><span class="pre">role_options</span></code></a> ]
+<strong id="grammar-token-role-options">role_options         </strong> ::=  <a class="reference internal" href="#grammar-token-role-option"><code class="xref docutils literal notranslate"><span class="pre">role_option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-role-option"><code class="xref docutils literal notranslate"><span class="pre">role_option</span></code></a> )*
+<strong id="grammar-token-role-option">role_option          </strong> ::=  PASSWORD '=' <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
+                          | LOGIN '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal notranslate"><span class="pre">boolean</span></code></a>
+                          | SUPERUSER '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal notranslate"><span class="pre">boolean</span></code></a>
+                          | OPTIONS '=' <a class="reference internal" href="types.html#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">new_role</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">new_role</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_b&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">carlos</span> <span class="k">WITH</span> <span class="k">OPTIONS</span> <span class="o">=</span> <span class="p">{</span> <span class="s1">&#39;custom_option1&#39;</span> <span class="p">:</span> <span class="s1">&#39;option1_value&#39;</span><span class="p">,</span> <span class="s1">&#39;custom_option2&#39;</span> <span class="p">:</span> <span class="mf">99</span> <span class="p">};</span>
 </pre></div>
 </div>
-<p>By default roles do not possess <code class="docutils literal"><span class="pre">LOGIN</span></code> privileges or <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status.</p>
+<p>By default roles do not possess <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privileges or <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status.</p>
 <p><a class="reference internal" href="#cql-permissions"><span class="std std-ref">Permissions</span></a> on database resources are granted to roles; types of resources include keyspaces,
 tables, functions and roles themselves. Roles may be granted to other roles to create hierarchical permissions
-structures; in these hierarchies, permissions and <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status are inherited, but the <code class="docutils literal"><span class="pre">LOGIN</span></code> privilege is
+structures; in these hierarchies, permissions and <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status are inherited, but the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privilege is
 not.</p>
-<p>If a role has the <code class="docutils literal"><span class="pre">LOGIN</span></code> privilege, clients may identify as that role when connecting. For the duration of that
+<p>If a role has the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privilege, clients may identify as that role when connecting. For the duration of that
 connection, the client will acquire any roles and privileges granted to that role.</p>
-<p>Only a client with with the <code class="docutils literal"><span class="pre">CREATE</span></code> permission on the database roles resource may issue <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> requests (see
-the <a class="reference internal" href="#cql-permissions"><span class="std std-ref">relevant section</span></a> below), unless the client is a <code class="docutils literal"><span class="pre">SUPERUSER</span></code>. Role management in Cassandra
+<p>Only a client with with the <code class="docutils literal notranslate"><span class="pre">CREATE</span></code> permission on the database roles resource may issue <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> requests (see
+the <a class="reference internal" href="#cql-permissions"><span class="std std-ref">relevant section</span></a> below), unless the client is a <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code>. Role management in Cassandra
 is pluggable and custom implementations may support only a subset of the listed options.</p>
 <p>Role names should be quoted if they contain non-alphanumeric characters.</p>
 <div class="section" id="setting-credentials-for-internal-authentication">
 <span id="id1"></span><h4>Setting credentials for internal authentication<a class="headerlink" href="#setting-credentials-for-internal-authentication" title="Permalink to this headline">¶</a></h4>
-<p>Use the <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code> clause to set a password for internal authentication, enclosing the password in single
+<p>Use the <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code> clause to set a password for internal authentication, enclosing the password in single
 quotation marks.</p>
-<p>If internal authentication has not been set up or the role does not have <code class="docutils literal"><span class="pre">LOGIN</span></code> privileges, the <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code>
+<p>If internal authentication has not been set up or the role does not have <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privileges, the <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code>
 clause is not necessary.</p>
 </div>
 <div class="section" id="creating-a-role-conditionally">
 <h4>Creating a role conditionally<a class="headerlink" href="#creating-a-role-conditionally" title="Permalink to this headline">¶</a></h4>
-<p>Attempting to create an existing role results in an invalid query condition unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used.
+<p>Attempting to create an existing role results in an invalid query condition unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used.
 If the option is used and the role exists, the statement is a no-op:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">other_role</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">other_role</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="k">IF</span> <span class="k">NOT</span> <span class="k">EXISTS</span> <span class="n">other_role</span><span class="p">;</span>
 </pre></div>
 </div>
@@ -224,49 +224,49 @@
 </div>
 <div class="section" id="alter-role">
 <span id="alter-role-statement"></span><h3>ALTER ROLE<a class="headerlink" href="#alter-role" title="Permalink to this headline">¶</a></h3>
-<p>Altering a role options uses the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Altering a role options uses the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_role_statement">alter_role_statement</strong> ::=  ALTER ROLE <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-role_options"><code class="xref docutils literal"><span class="pre">role_options</span></code></a>
+<strong id="grammar-token-alter-role-statement">alter_role_statement</strong> ::=  ALTER ROLE <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-role-options"><code class="xref docutils literal notranslate"><span class="pre">role_options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">ROLE</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;PASSWORD_B&#39;</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">ROLE</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;PASSWORD_B&#39;</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Conditions on executing <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statements:</p>
+<p>Conditions on executing <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statements:</p>
 <ul class="simple">
-<li>A client must have <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status to alter the <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status of another role</li>
-<li>A client cannot alter the <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status of any role it currently holds</li>
-<li>A client can only modify certain properties of the role with which it identified at login (e.g. <code class="docutils literal"><span class="pre">PASSWORD</span></code>)</li>
-<li>To modify properties of a role, the client must be granted <code class="docutils literal"><span class="pre">ALTER</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on that role</li>
+<li>A client must have <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status to alter the <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status of another role</li>
+<li>A client cannot alter the <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status of any role it currently holds</li>
+<li>A client can only modify certain properties of the role with which it identified at login (e.g. <code class="docutils literal notranslate"><span class="pre">PASSWORD</span></code>)</li>
+<li>To modify properties of a role, the client must be granted <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on that role</li>
 </ul>
 </div>
 <div class="section" id="drop-role">
 <span id="drop-role-statement"></span><h3>DROP ROLE<a class="headerlink" href="#drop-role" title="Permalink to this headline">¶</a></h3>
-<p>Dropping a role uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Dropping a role uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_role_statement">drop_role_statement</strong> ::=  DROP ROLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-drop-role-statement">drop_role_statement</strong> ::=  DROP ROLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
-<p><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> requires the client to have <code class="docutils literal"><span class="pre">DROP</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on the role in question. In
-addition, client may not <code class="docutils literal"><span class="pre">DROP</span></code> the role with which it identified at login. Finally, only a client with <code class="docutils literal"><span class="pre">SUPERUSER</span></code>
-status may <code class="docutils literal"><span class="pre">DROP</span></code> another <code class="docutils literal"><span class="pre">SUPERUSER</span></code> role.</p>
-<p>Attempting to drop a role which does not exist results in an invalid query condition unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> option is
+<p><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> requires the client to have <code class="docutils literal notranslate"><span class="pre">DROP</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on the role in question. In
+addition, client may not <code class="docutils literal notranslate"><span class="pre">DROP</span></code> the role with which it identified at login. Finally, only a client with <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code>
+status may <code class="docutils literal notranslate"><span class="pre">DROP</span></code> another <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> role.</p>
+<p>Attempting to drop a role which does not exist results in an invalid query condition unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> option is
 used. If the option is used and the role does not exist the statement is a no-op.</p>
 </div>
 <div class="section" id="grant-role">
 <span id="grant-role-statement"></span><h3>GRANT ROLE<a class="headerlink" href="#grant-role" title="Permalink to this headline">¶</a></h3>
-<p>Granting a role to another uses the <code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Granting a role to another uses the <code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-grant_role_statement">grant_role_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> TO <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-grant-role-statement">grant_role_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> TO <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">report_writer</span> <span class="k">TO</span> <span class="n">alice</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">report_writer</span> <span class="k">TO</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This statement grants the <code class="docutils literal"><span class="pre">report_writer</span></code> role to <code class="docutils literal"><span class="pre">alice</span></code>. Any permissions granted to <code class="docutils literal"><span class="pre">report_writer</span></code> are also
-acquired by <code class="docutils literal"><span class="pre">alice</span></code>.</p>
+<p>This statement grants the <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role to <code class="docutils literal notranslate"><span class="pre">alice</span></code>. Any permissions granted to <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> are also
+acquired by <code class="docutils literal notranslate"><span class="pre">alice</span></code>.</p>
 <p>Roles are modelled as a directed acyclic graph, so circular grants are not permitted. The following examples result in
 error conditions:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">role_a</span> <span class="k">TO</span> <span class="n">role_b</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">role_a</span> <span class="k">TO</span> <span class="n">role_b</span><span class="p">;</span>
 <span class="k">GRANT</span> <span class="n">role_b</span> <span class="k">TO</span> <span class="n">role_a</span><span class="p">;</span>
 
 <span class="k">GRANT</span> <span class="n">role_a</span> <span class="k">TO</span> <span class="n">role_b</span><span class="p">;</span>
@@ -277,105 +277,105 @@
 </div>
 <div class="section" id="revoke-role">
 <span id="revoke-role-statement"></span><h3>REVOKE ROLE<a class="headerlink" href="#revoke-role" title="Permalink to this headline">¶</a></h3>
-<p>Revoking a role uses the <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Revoking a role uses the <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-revoke_role_statement">revoke_role_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> FROM <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-revoke-role-statement">revoke_role_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> FROM <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="n">report_writer</span> <span class="k">FROM</span> <span class="n">alice</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="n">report_writer</span> <span class="k">FROM</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This statement revokes the <code class="docutils literal"><span class="pre">report_writer</span></code> role from <code class="docutils literal"><span class="pre">alice</span></code>. Any permissions that <code class="docutils literal"><span class="pre">alice</span></code> has acquired via the
-<code class="docutils literal"><span class="pre">report_writer</span></code> role are also revoked.</p>
+<p>This statement revokes the <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role from <code class="docutils literal notranslate"><span class="pre">alice</span></code>. Any permissions that <code class="docutils literal notranslate"><span class="pre">alice</span></code> has acquired via the
+<code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role are also revoked.</p>
 </div>
 <div class="section" id="list-roles">
 <span id="list-roles-statement"></span><h3>LIST ROLES<a class="headerlink" href="#list-roles" title="Permalink to this headline">¶</a></h3>
-<p>All the known roles (in the system or granted to specific role) can be listed using the <code class="docutils literal"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> statement:</p>
+<p>All the known roles (in the system or granted to specific role) can be listed using the <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-list_roles_statement">list_roles_statement</strong> ::=  LIST ROLES [ OF <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> ] [ NORECURSIVE ]
+<strong id="grammar-token-list-roles-statement">list_roles_statement</strong> ::=  LIST ROLES [ OF <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> ] [ NORECURSIVE ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>returns all known roles in the system, this requires <code class="docutils literal"><span class="pre">DESCRIBE</span></code> permission on the database roles resource. And:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
+<p>returns all known roles in the system, this requires <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code> permission on the database roles resource. And:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>enumerates all roles granted to <code class="docutils literal"><span class="pre">alice</span></code>, including those transitively acquired. But:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">bob</span> <span class="k">NORECURSIVE</span>
+<p>enumerates all roles granted to <code class="docutils literal notranslate"><span class="pre">alice</span></code>, including those transitively acquired. But:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">bob</span> <span class="k">NORECURSIVE</span>
 </pre></div>
 </div>
-<p>lists all roles directly granted to <code class="docutils literal"><span class="pre">bob</span></code> without including any of the transitively acquired ones.</p>
+<p>lists all roles directly granted to <code class="docutils literal notranslate"><span class="pre">bob</span></code> without including any of the transitively acquired ones.</p>
 </div>
 </div>
 <div class="section" id="users">
 <h2>Users<a class="headerlink" href="#users" title="Permalink to this headline">¶</a></h2>
 <p>Prior to the introduction of roles in Cassandra 2.2, authentication and authorization were based around the concept of a
-<code class="docutils literal"><span class="pre">USER</span></code>. For backward compatibility, the legacy syntax has been preserved with <code class="docutils literal"><span class="pre">USER</span></code> centric statements becoming
-synonyms for the <code class="docutils literal"><span class="pre">ROLE</span></code> based equivalents. In other words, creating/updating a user is just a different syntax for
+<code class="docutils literal notranslate"><span class="pre">USER</span></code>. For backward compatibility, the legacy syntax has been preserved with <code class="docutils literal notranslate"><span class="pre">USER</span></code> centric statements becoming
+synonyms for the <code class="docutils literal notranslate"><span class="pre">ROLE</span></code> based equivalents. In other words, creating/updating a user is just a different syntax for
 creating/updating a role.</p>
 <div class="section" id="create-user">
 <span id="create-user-statement"></span><h3>CREATE USER<a class="headerlink" href="#create-user" title="Permalink to this headline">¶</a></h3>
-<p>Creating a user uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">USER</span></code> statement:</p>
+<p>Creating a user uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">USER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_user_statement">create_user_statement</strong> ::=  CREATE USER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user_option"><code class="xref docutils literal"><span class="pre">user_option</span></code></a> ]
-<strong id="grammar-token-user_option">user_option          </strong> ::=  SUPERUSER | NOSUPERUSER
+<strong id="grammar-token-create-user-statement">create_user_statement</strong> ::=  CREATE USER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user-option"><code class="xref docutils literal notranslate"><span class="pre">user_option</span></code></a> ]
+<strong id="grammar-token-user-option">user_option          </strong> ::=  SUPERUSER | NOSUPERUSER
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_b&#39;</span> <span class="k">NOSUPERUSER</span><span class="p">;</span>
 </pre></div>
 </div>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">USER</span></code> is equivalent to <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> where the <code class="docutils literal"><span class="pre">LOGIN</span></code> option is <code class="docutils literal"><span class="pre">true</span></code>. So, the following pairs of
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">USER</span></code> is equivalent to <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> where the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> option is <code class="docutils literal notranslate"><span class="pre">true</span></code>. So, the following pairs of
 statements are equivalent:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 
-<span class="k">CREATE</span> <span class="k">USER</span> <span class="k">IF</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
-<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="k">IF</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">USER</span> <span class="k">IF</span> <span class="k">NOT</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="k">IF</span> <span class="k">NOT</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">NOSUPERUSER</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">NOSUPERUSER</span><span class="p">;</span>
-<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">WITH</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span><span class="p">;</span>
-<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">WITH</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="alter-user">
 <span id="alter-user-statement"></span><h3>ALTER USER<a class="headerlink" href="#alter-user" title="Permalink to this headline">¶</a></h3>
-<p>Altering the options of a user uses the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">USER</span></code> statement:</p>
+<p>Altering the options of a user uses the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">USER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_user_statement">alter_user_statement</strong> ::=  ALTER USER <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user_option"><code class="xref docutils literal"><span class="pre">user_option</span></code></a> ]
+<strong id="grammar-token-alter-user-statement">alter_user_statement</strong> ::=  ALTER USER <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user-option"><code class="xref docutils literal notranslate"><span class="pre">user_option</span></code></a> ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;PASSWORD_A&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;PASSWORD_A&#39;</span><span class="p">;</span>
 <span class="k">ALTER</span> <span class="k">USER</span> <span class="n">bob</span> <span class="k">SUPERUSER</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="drop-user">
 <span id="drop-user-statement"></span><h3>DROP USER<a class="headerlink" href="#drop-user" title="Permalink to this headline">¶</a></h3>
-<p>Dropping a user uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">USER</span></code> statement:</p>
+<p>Dropping a user uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">USER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_user_statement">drop_user_statement</strong> ::=  DROP USER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-drop-user-statement">drop_user_statement</strong> ::=  DROP USER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 </div>
 <div class="section" id="list-users">
 <span id="list-users-statement"></span><h3>LIST USERS<a class="headerlink" href="#list-users" title="Permalink to this headline">¶</a></h3>
-<p>Existing users can be listed using the <code class="docutils literal"><span class="pre">LIST</span> <span class="pre">USERS</span></code> statement:</p>
+<p>Existing users can be listed using the <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">USERS</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-list_users_statement">list_users_statement</strong> ::=  LIST USERS
+<strong id="grammar-token-list-users-statement">list_users_statement</strong> ::=  LIST USERS
 </pre>
 <p>Note that this statement is equivalent to:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>but only roles with the <code class="docutils literal"><span class="pre">LOGIN</span></code> privilege are included in the output.</p>
+<p>but only roles with the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privilege are included in the output.</p>
 </div>
 </div>
 <div class="section" id="data-control">
@@ -385,33 +385,33 @@
 <p>Permissions on resources are granted to roles; there are several different types of resources in Cassandra and each type
 is modelled hierarchically:</p>
 <ul class="simple">
-<li>The hierarchy of Data resources, Keyspaces and Tables has the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code> -&gt; <code class="docutils literal"><span class="pre">KEYSPACE</span></code> -&gt;
-<code class="docutils literal"><span class="pre">TABLE</span></code>.</li>
-<li>Function resources have the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> -&gt; <code class="docutils literal"><span class="pre">KEYSPACE</span></code> -&gt; <code class="docutils literal"><span class="pre">FUNCTION</span></code></li>
-<li>Resources representing roles have the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code> -&gt; <code class="docutils literal"><span class="pre">ROLE</span></code></li>
-<li>Resources representing JMX ObjectNames, which map to sets of MBeans/MXBeans, have the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code> -&gt;
-<code class="docutils literal"><span class="pre">MBEAN</span></code></li>
+<li>The hierarchy of Data resources, Keyspaces and Tables has the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code> -&gt;
+<code class="docutils literal notranslate"><span class="pre">TABLE</span></code>.</li>
+<li>Function resources have the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></li>
+<li>Resources representing roles have the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">ROLE</span></code></li>
+<li>Resources representing JMX ObjectNames, which map to sets of MBeans/MXBeans, have the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code> -&gt;
+<code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></li>
 </ul>
 <p>Permissions can be granted at any level of these hierarchies and they flow downwards. So granting a permission on a
 resource higher up the chain automatically grants that same permission on all resources lower down. For example,
-granting <code class="docutils literal"><span class="pre">SELECT</span></code> on a <code class="docutils literal"><span class="pre">KEYSPACE</span></code> automatically grants it on all <code class="docutils literal"><span class="pre">TABLES</span></code> in that <code class="docutils literal"><span class="pre">KEYSPACE</span></code>. Likewise, granting
-a permission on <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> grants it on every defined function, regardless of which keyspace it is scoped in. It
+granting <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on a <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code> automatically grants it on all <code class="docutils literal notranslate"><span class="pre">TABLES</span></code> in that <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code>. Likewise, granting
+a permission on <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> grants it on every defined function, regardless of which keyspace it is scoped in. It
 is also possible to grant permissions on all functions scoped to a particular keyspace.</p>
 <p>Modifications to permissions are visible to existing client sessions; that is, connections need not be re-established
 following permissions changes.</p>
 <p>The full set of available permissions is:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">CREATE</span></code></li>
-<li><code class="docutils literal"><span class="pre">ALTER</span></code></li>
-<li><code class="docutils literal"><span class="pre">DROP</span></code></li>
-<li><code class="docutils literal"><span class="pre">SELECT</span></code></li>
-<li><code class="docutils literal"><span class="pre">MODIFY</span></code></li>
-<li><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></li>
-<li><code class="docutils literal"><span class="pre">DESCRIBE</span></code></li>
-<li><code class="docutils literal"><span class="pre">EXECUTE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">DROP</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></li>
 </ul>
-<p>Not all permissions are applicable to every type of resource. For instance, <code class="docutils literal"><span class="pre">EXECUTE</span></code> is only relevant in the context
-of functions or mbeans; granting <code class="docutils literal"><span class="pre">EXECUTE</span></code> on a resource representing a table is nonsensical. Attempting to <code class="docutils literal"><span class="pre">GRANT</span></code>
+<p>Not all permissions are applicable to every type of resource. For instance, <code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code> is only relevant in the context
+of functions or mbeans; granting <code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code> on a resource representing a table is nonsensical. Attempting to <code class="docutils literal notranslate"><span class="pre">GRANT</span></code>
 a permission on resource to which it cannot be applied results in an error response. The following illustrates which
 permissions can be granted on which types of resource, and which statements are enabled by that permission.</p>
 <table border="1" class="docutils">
@@ -427,230 +427,230 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in any keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> in any keyspace and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in any
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> in any keyspace and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in any
 keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in any keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing any existing</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing any existing</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing in
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing in
 specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> on any role</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> on any role</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ROLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ROLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in any keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in any keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> on any role</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> on any role</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ROLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ROLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code> on any table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on any table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code> on any table in specified keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on any table in specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code> on specified table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on specified table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
 <td>Call getter methods on any mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Call getter methods on any mbean matching a wildcard pattern</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
 <td>Call getter methods on named mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> on any table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> on any table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> on any table in
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> on any table in
 specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> on specified table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> on specified table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
 <td>Call setter methods on any mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Call setter methods on any mbean matching a wildcard pattern</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
 <td>Call setter methods on named mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table in
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table in
 specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any function</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any function</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified function</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified function</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean matching
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean matching
 a wildcard pattern</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on named mbean</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on named mbean</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on any role</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on any role</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on specified roles</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on specified roles</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> on all roles or only roles granted to another,
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> on all roles or only roles granted to another,
 specified role</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
-<td>Retrieve metadata about any mbean from the platform&#8217;s MBeanServer</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<td>Retrieve metadata about any mbean from the platform’s MBeanServer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Retrieve metadata about any mbean matching a wildcard patter from the
-platform&#8217;s MBeanServer</td>
+platform’s MBeanServer</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
-<td>Retrieve metadata about a named mbean from the platform&#8217;s MBeanServer</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
+<td>Retrieve metadata about a named mbean from the platform’s MBeanServer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> using any function, and use of
-any function in <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> using any function, and use of
+any function in <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> using any function in specified
-keyspace and use of any function in keyspace in <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> using any function in specified
+keyspace and use of any function in keyspace in <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> using specified function and use
-of the function in <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> using specified function and use
+of the function in <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
 <td>Execute operations on any mbean</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Execute operations on any mbean matching a wildcard pattern</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
 <td>Execute operations on named mbean</td>
 </tr>
 </tbody>
@@ -658,66 +658,66 @@
 </div>
 <div class="section" id="grant-permission">
 <span id="grant-permission-statement"></span><h3>GRANT PERMISSION<a class="headerlink" href="#grant-permission" title="Permalink to this headline">¶</a></h3>
-<p>Granting a permission uses the <code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> statement:</p>
+<p>Granting a permission uses the <code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-grant_permission_statement">grant_permission_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal"><span class="pre">resource</span></code></a> TO <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
-<strong id="grammar-token-permissions">permissions               </strong> ::=  ALL [ PERMISSIONS ] | <a class="reference internal" href="#grammar-token-permission"><code class="xref docutils literal"><span class="pre">permission</span></code></a> [ PERMISSION ]
+<strong id="grammar-token-grant-permission-statement">grant_permission_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal notranslate"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal notranslate"><span class="pre">resource</span></code></a> TO <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-permissions">permissions               </strong> ::=  ALL [ PERMISSIONS ] | <a class="reference internal" href="#grammar-token-permission"><code class="xref docutils literal notranslate"><span class="pre">permission</span></code></a> [ PERMISSION ]
 <strong id="grammar-token-permission">permission                </strong> ::=  CREATE | ALTER | DROP | SELECT | MODIFY | AUTHORIZE | DESCRIBE | EXECUTE
 <strong id="grammar-token-resource">resource                  </strong> ::=  ALL KEYSPACES
-                               | KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a>
-                               | [ TABLE ] <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+                               | KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a>
+                               | [ TABLE ] <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
                                | ALL ROLES
-                               | ROLE <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
-                               | ALL FUNCTIONS [ IN KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> ]
-                               | FUNCTION <a class="reference internal" href="functions.html#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )* ] ')'
+                               | ROLE <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
+                               | ALL FUNCTIONS [ IN KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> ]
+                               | FUNCTION <a class="reference internal" href="functions.html#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )* ] ')'
                                | ALL MBEANS
-                               | ( MBEAN | MBEANS ) <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+                               | ( MBEAN | MBEANS ) <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">TO</span> <span class="n">data_reader</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">TO</span> <span class="n">data_reader</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This gives any user with the role <code class="docutils literal"><span class="pre">data_reader</span></code> permission to execute <code class="docutils literal"><span class="pre">SELECT</span></code> statements on any table across all
+<p>This gives any user with the role <code class="docutils literal notranslate"><span class="pre">data_reader</span></code> permission to execute <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements on any table across all
 keyspaces:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">MODIFY</span> <span class="k">ON</span> <span class="k">KEYSPACE</span> <span class="n">keyspace1</span> <span class="k">TO</span> <span class="n">data_writer</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">MODIFY</span> <span class="k">ON</span> <span class="k">KEYSPACE</span> <span class="n">keyspace1</span> <span class="k">TO</span> <span class="n">data_writer</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This give any user with the role <code class="docutils literal"><span class="pre">data_writer</span></code> permission to perform <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code>
-and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> queries on all tables in the <code class="docutils literal"><span class="pre">keyspace1</span></code> keyspace:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DROP</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">TO</span> <span class="n">schema_owner</span><span class="p">;</span>
+<p>This give any user with the role <code class="docutils literal notranslate"><span class="pre">data_writer</span></code> permission to perform <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code>
+and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> queries on all tables in the <code class="docutils literal notranslate"><span class="pre">keyspace1</span></code> keyspace:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DROP</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">TO</span> <span class="n">schema_owner</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This gives any user with the <code class="docutils literal"><span class="pre">schema_owner</span></code> role permissions to <code class="docutils literal"><span class="pre">DROP</span></code> <code class="docutils literal"><span class="pre">keyspace1.table1</span></code>:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">EXECUTE</span> <span class="k">ON</span> <span class="k">FUNCTION</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">user_function</span><span class="p">(</span> <span class="nb">int</span> <span class="p">)</span> <span class="k">TO</span> <span class="n">report_writer</span><span class="p">;</span>
+<p>This gives any user with the <code class="docutils literal notranslate"><span class="pre">schema_owner</span></code> role permissions to <code class="docutils literal notranslate"><span class="pre">DROP</span></code> <code class="docutils literal notranslate"><span class="pre">keyspace1.table1</span></code>:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">EXECUTE</span> <span class="k">ON</span> <span class="k">FUNCTION</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">user_function</span><span class="p">(</span> <span class="nb">int</span> <span class="p">)</span> <span class="k">TO</span> <span class="n">report_writer</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This grants any user with the <code class="docutils literal"><span class="pre">report_writer</span></code> role permission to execute <code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> queries
-which use the function <code class="docutils literal"><span class="pre">keyspace1.user_function(</span> <span class="pre">int</span> <span class="pre">)</span></code>:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DESCRIBE</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">ROLES</span> <span class="k">TO</span> <span class="n">role_admin</span><span class="p">;</span>
+<p>This grants any user with the <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role permission to execute <code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> queries
+which use the function <code class="docutils literal notranslate"><span class="pre">keyspace1.user_function(</span> <span class="pre">int</span> <span class="pre">)</span></code>:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DESCRIBE</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">ROLES</span> <span class="k">TO</span> <span class="n">role_admin</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This grants any user with the <code class="docutils literal"><span class="pre">role_admin</span></code> role permission to view any and all roles in the system with a <code class="docutils literal"><span class="pre">LIST</span>
+<p>This grants any user with the <code class="docutils literal notranslate"><span class="pre">role_admin</span></code> role permission to view any and all roles in the system with a <code class="docutils literal notranslate"><span class="pre">LIST</span>
 <span class="pre">ROLES</span></code> statement</p>
 <div class="section" id="grant-all">
 <span id="id2"></span><h4>GRANT ALL<a class="headerlink" href="#grant-all" title="Permalink to this headline">¶</a></h4>
-<p>When the <code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ALL</span></code> form is used, the appropriate set of permissions is determined automatically based on the target
+<p>When the <code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ALL</span></code> form is used, the appropriate set of permissions is determined automatically based on the target
 resource.</p>
 </div>
 <div class="section" id="automatic-granting">
 <h4>Automatic Granting<a class="headerlink" href="#automatic-granting" title="Permalink to this headline">¶</a></h4>
-<p>When a resource is created, via a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code>, <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code>, <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code>, <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> or
-<code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement, the creator (the role the database user who issues the statement is identified as), is
+<p>When a resource is created, via a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code>, <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code>, <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code>, <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> or
+<code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement, the creator (the role the database user who issues the statement is identified as), is
 automatically granted all applicable permissions on the new resource.</p>
 </div>
 </div>
 <div class="section" id="revoke-permission">
 <span id="revoke-permission-statement"></span><h3>REVOKE PERMISSION<a class="headerlink" href="#revoke-permission" title="Permalink to this headline">¶</a></h3>
-<p>Revoking a permission from a role uses the <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> statement:</p>
+<p>Revoking a permission from a role uses the <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-revoke_permission_statement">revoke_permission_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal"><span class="pre">resource</span></code></a> FROM <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-revoke-permission-statement">revoke_permission_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal notranslate"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal notranslate"><span class="pre">resource</span></code></a> FROM <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">FROM</span> <span class="n">data_reader</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">FROM</span> <span class="n">data_reader</span><span class="p">;</span>
 <span class="k">REVOKE</span> <span class="k">MODIFY</span> <span class="k">ON</span> <span class="k">KEYSPACE</span> <span class="n">keyspace1</span> <span class="k">FROM</span> <span class="n">data_writer</span><span class="p">;</span>
 <span class="k">REVOKE</span> <span class="k">DROP</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">FROM</span> <span class="n">schema_owner</span><span class="p">;</span>
 <span class="k">REVOKE</span> <span class="k">EXECUTE</span> <span class="k">ON</span> <span class="k">FUNCTION</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">user_function</span><span class="p">(</span> <span class="nb">int</span> <span class="p">)</span> <span class="k">FROM</span> <span class="n">report_writer</span><span class="p">;</span>
@@ -727,27 +727,27 @@
 </div>
 <div class="section" id="list-permissions">
 <span id="list-permissions-statement"></span><h3>LIST PERMISSIONS<a class="headerlink" href="#list-permissions" title="Permalink to this headline">¶</a></h3>
-<p>Listing granted permissions uses the <code class="docutils literal"><span class="pre">LIST</span> <span class="pre">PERMISSIONS</span></code> statement:</p>
+<p>Listing granted permissions uses the <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">PERMISSIONS</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-list_permissions_statement">list_permissions_statement</strong> ::=  LIST <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal"><span class="pre">permissions</span></code></a> [ ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal"><span class="pre">resource</span></code></a> ] [ OF <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> [ NORECURSIVE ] ]
+<strong id="grammar-token-list-permissions-statement">list_permissions_statement</strong> ::=  LIST <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal notranslate"><span class="pre">permissions</span></code></a> [ ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal notranslate"><span class="pre">resource</span></code></a> ] [ OF <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> [ NORECURSIVE ] ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Show all permissions granted to <code class="docutils literal"><span class="pre">alice</span></code>, including those acquired transitively from any other roles:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">OF</span> <span class="n">bob</span><span class="p">;</span>
+<p>Show all permissions granted to <code class="docutils literal notranslate"><span class="pre">alice</span></code>, including those acquired transitively from any other roles:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">OF</span> <span class="n">bob</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Show all permissions on <code class="docutils literal"><span class="pre">keyspace1.table1</span></code> granted to <code class="docutils literal"><span class="pre">bob</span></code>, including those acquired transitively from any other
-roles. This also includes any permissions higher up the resource hierarchy which can be applied to <code class="docutils literal"><span class="pre">keyspace1.table1</span></code>.
-For example, should <code class="docutils literal"><span class="pre">bob</span></code> have <code class="docutils literal"><span class="pre">ALTER</span></code> permission on <code class="docutils literal"><span class="pre">keyspace1</span></code>, that would be included in the results of this
-query. Adding the <code class="docutils literal"><span class="pre">NORECURSIVE</span></code> switch restricts the results to only those permissions which were directly granted to
-<code class="docutils literal"><span class="pre">bob</span></code> or one of <code class="docutils literal"><span class="pre">bob</span></code>&#8216;s roles:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">SELECT</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">carlos</span><span class="p">;</span>
+<p>Show all permissions on <code class="docutils literal notranslate"><span class="pre">keyspace1.table1</span></code> granted to <code class="docutils literal notranslate"><span class="pre">bob</span></code>, including those acquired transitively from any other
+roles. This also includes any permissions higher up the resource hierarchy which can be applied to <code class="docutils literal notranslate"><span class="pre">keyspace1.table1</span></code>.
+For example, should <code class="docutils literal notranslate"><span class="pre">bob</span></code> have <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> permission on <code class="docutils literal notranslate"><span class="pre">keyspace1</span></code>, that would be included in the results of this
+query. Adding the <code class="docutils literal notranslate"><span class="pre">NORECURSIVE</span></code> switch restricts the results to only those permissions which were directly granted to
+<code class="docutils literal notranslate"><span class="pre">bob</span></code> or one of <code class="docutils literal notranslate"><span class="pre">bob</span></code>’s roles:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">SELECT</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">carlos</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Show any permissions granted to <code class="docutils literal"><span class="pre">carlos</span></code> or any of <code class="docutils literal"><span class="pre">carlos</span></code>&#8216;s roles, limited to <code class="docutils literal"><span class="pre">SELECT</span></code> permissions on any
+<p>Show any permissions granted to <code class="docutils literal notranslate"><span class="pre">carlos</span></code> or any of <code class="docutils literal notranslate"><span class="pre">carlos</span></code>’s roles, limited to <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> permissions on any
 resource.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/triggers.html b/content/doc/3.11/cql/triggers.html
index 40c4520..05a41e8 100644
--- a/content/doc/3.11/cql/triggers.html
+++ b/content/doc/3.11/cql/triggers.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Appendices" href="appendices.html"/> <link rel="prev" title="JSON Support" href="json.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Appendices" href="appendices.html"/> <link rel="prev" title="JSON Support" href="json.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -170,33 +170,33 @@
 <span id="cql-triggers"></span><h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this headline">¶</a></h1>
 <p>Triggers are identified by a name defined by:</p>
 <pre>
-<strong id="grammar-token-trigger_name">trigger_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-trigger-name">trigger_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <div class="section" id="create-trigger">
 <span id="create-trigger-statement"></span><h2>CREATE TRIGGER<a class="headerlink" href="#create-trigger" title="Permalink to this headline">¶</a></h2>
-<p>Creating a new trigger uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TRIGGER</span></code> statement:</p>
+<p>Creating a new trigger uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TRIGGER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_trigger_statement">create_trigger_statement</strong> ::=  CREATE TRIGGER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-trigger_name"><code class="xref docutils literal"><span class="pre">trigger_name</span></code></a>
-                                  ON <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                                  USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+<strong id="grammar-token-create-trigger-statement">create_trigger_statement</strong> ::=  CREATE TRIGGER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-trigger-name"><code class="xref docutils literal notranslate"><span class="pre">trigger_name</span></code></a>
+                                  ON <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                                  USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span> <span class="k">USING</span> <span class="s1">&#39;org.apache.cassandra.triggers.InvertedIndex&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span> <span class="k">USING</span> <span class="s1">&#39;org.apache.cassandra.triggers.InvertedIndex&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>The actual logic that makes up the trigger can be written in any Java (JVM) language and exists outside the database.
-You place the trigger code in a <code class="docutils literal"><span class="pre">lib/triggers</span></code> subdirectory of the Cassandra installation directory, it loads during
+You place the trigger code in a <code class="docutils literal notranslate"><span class="pre">lib/triggers</span></code> subdirectory of the Cassandra installation directory, it loads during
 cluster startup, and exists on every node that participates in a cluster. The trigger defined on a table fires before a
 requested DML statement occurs, which ensures the atomicity of the transaction.</p>
 </div>
 <div class="section" id="drop-trigger">
 <span id="drop-trigger-statement"></span><h2>DROP TRIGGER<a class="headerlink" href="#drop-trigger" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a trigger uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TRIGGER</span></code> statement:</p>
+<p>Dropping a trigger uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TRIGGER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_trigger_statement">drop_trigger_statement</strong> ::=  DROP TRIGGER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-trigger_name"><code class="xref docutils literal"><span class="pre">trigger_name</span></code></a> ON <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-drop-trigger-statement">drop_trigger_statement</strong> ::=  DROP TRIGGER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-trigger-name"><code class="xref docutils literal notranslate"><span class="pre">trigger_name</span></code></a> ON <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
diff --git a/content/doc/3.11/cql/types.html b/content/doc/3.11/cql/types.html
index 999a816..9754a9b 100644
--- a/content/doc/3.11/cql/types.html
+++ b/content/doc/3.11/cql/types.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Definition" href="ddl.html"/> <link rel="prev" title="Definitions" href="definitions.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Definition" href="ddl.html"/> <link rel="prev" title="Definitions" href="definitions.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -179,13 +179,13 @@
 <a class="reference internal" href="#collections"><span class="std std-ref">collection types</span></a>, <a class="reference internal" href="#udts"><span class="std std-ref">user-defined types</span></a>, <a class="reference internal" href="#tuples"><span class="std std-ref">tuple types</span></a> and <a class="reference internal" href="#custom-types"><span class="std std-ref">custom
 types</span></a>:</p>
 <pre>
-<strong id="grammar-token-cql_type">cql_type</strong> ::=  <a class="reference internal" href="#grammar-token-native_type"><code class="xref docutils literal"><span class="pre">native_type</span></code></a> | <a class="reference internal" href="#grammar-token-collection_type"><code class="xref docutils literal"><span class="pre">collection_type</span></code></a> | <a class="reference internal" href="#grammar-token-user_defined_type"><code class="xref docutils literal"><span class="pre">user_defined_type</span></code></a> | <a class="reference internal" href="#grammar-token-tuple_type"><code class="xref docutils literal"><span class="pre">tuple_type</span></code></a> | <a class="reference internal" href="#grammar-token-custom_type"><code class="xref docutils literal"><span class="pre">custom_type</span></code></a>
+<strong id="grammar-token-cql-type">cql_type</strong> ::=  <a class="reference internal" href="#grammar-token-native-type"><code class="xref docutils literal notranslate"><span class="pre">native_type</span></code></a> | <a class="reference internal" href="#grammar-token-collection-type"><code class="xref docutils literal notranslate"><span class="pre">collection_type</span></code></a> | <a class="reference internal" href="#grammar-token-user-defined-type"><code class="xref docutils literal notranslate"><span class="pre">user_defined_type</span></code></a> | <a class="reference internal" href="#grammar-token-tuple-type"><code class="xref docutils literal notranslate"><span class="pre">tuple_type</span></code></a> | <a class="reference internal" href="#grammar-token-custom-type"><code class="xref docutils literal notranslate"><span class="pre">custom_type</span></code></a>
 </pre>
 <div class="section" id="native-types">
 <span id="id2"></span><h2>Native Types<a class="headerlink" href="#native-types" title="Permalink to this headline">¶</a></h2>
 <p>The native types supported by CQL are:</p>
 <pre>
-<strong id="grammar-token-native_type">native_type</strong> ::=  ASCII
+<strong id="grammar-token-native-type">native_type</strong> ::=  ASCII
                  | BIGINT
                  | BLOB
                  | BOOLEAN
@@ -221,112 +221,112 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ascii</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ascii</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>ASCII character string</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">bigint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">bigint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>64-bit signed long</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">blob</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal"><span class="pre">blob</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">blob</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal notranslate"><span class="pre">blob</span></code></a></td>
 <td>Arbitrary bytes (no validation)</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">boolean</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref std std-token docutils literal"><span class="pre">boolean</span></code></a></td>
-<td>Either <code class="docutils literal"><span class="pre">true</span></code> or <code class="docutils literal"><span class="pre">false</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">boolean</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref std std-token docutils literal notranslate"><span class="pre">boolean</span></code></a></td>
+<td>Either <code class="docutils literal notranslate"><span class="pre">true</span></code> or <code class="docutils literal notranslate"><span class="pre">false</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">counter</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">counter</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>Counter column (64-bit signed value). See <a class="reference internal" href="#counters"><span class="std std-ref">Counters</span></a> for details</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>A date (with no corresponding time value). See <a class="reference internal" href="#dates"><span class="std std-ref">Working with dates</span></a> below for details</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">decimal</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal"><span class="pre">float</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">decimal</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal notranslate"><span class="pre">float</span></code></a></td>
 <td>Variable-precision decimal</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">double</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>
-<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal"><span class="pre">float</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">double</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>
+<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal notranslate"><span class="pre">float</span></code></a></td>
 <td>64-bit IEEE-754 floating point</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">duration</span></code></td>
-<td><code class="xref std std-token docutils literal"><span class="pre">duration</span></code>,</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">duration</span></code></td>
+<td><code class="xref std std-token docutils literal notranslate"><span class="pre">duration</span></code>,</td>
 <td>A duration with nanosecond precision. See <a class="reference internal" href="#durations"><span class="std std-ref">Working with durations</span></a> below for details</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">float</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal"><span class="pre">float</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">float</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal notranslate"><span class="pre">float</span></code></a></td>
 <td>32-bit IEEE-754 floating point</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">inet</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">inet</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>An IP address, either IPv4 (4 bytes long) or IPv6 (16 bytes long). Note that
-there is no <code class="docutils literal"><span class="pre">inet</span></code> constant, IP address should be input as strings</td>
+there is no <code class="docutils literal notranslate"><span class="pre">inet</span></code> constant, IP address should be input as strings</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">int</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">int</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>32-bit signed int</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">smallint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">smallint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>16-bit signed int</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">text</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">text</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>UTF8 encoded string</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">time</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">time</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>A time (with no corresponding date value) with nanosecond precision. See
 <a class="reference internal" href="#times"><span class="std std-ref">Working with times</span></a> below for details</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>A timestamp (date and time) with millisecond precision. See <a class="reference internal" href="#timestamps"><span class="std std-ref">Working with timestamps</span></a>
 below for details</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal"><span class="pre">uuid</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal notranslate"><span class="pre">uuid</span></code></a></td>
 <td>Version 1 <a class="reference external" href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a>, generally used as a “conflict-free” timestamp. Also see
 <a class="reference internal" href="functions.html#timeuuid-functions"><span class="std std-ref">Timeuuid functions</span></a></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">tinyint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>8-bit signed int</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">uuid</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal"><span class="pre">uuid</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">uuid</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal notranslate"><span class="pre">uuid</span></code></a></td>
 <td>A <a class="reference external" href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a> (of any version)</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">varchar</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>UTF8 encoded string</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">varint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">varint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>Arbitrary-precision integer</td>
 </tr>
 </tbody>
 </table>
 <div class="section" id="counters">
 <span id="id3"></span><h3>Counters<a class="headerlink" href="#counters" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">counter</span></code> type is used to define <em>counter columns</em>. A counter column is a column whose value is a 64-bit signed
+<p>The <code class="docutils literal notranslate"><span class="pre">counter</span></code> type is used to define <em>counter columns</em>. A counter column is a column whose value is a 64-bit signed
 integer and on which 2 operations are supported: incrementing and decrementing (see the <a class="reference internal" href="dml.html#update-statement"><span class="std std-ref">UPDATE statement</span></a> for syntax). Note that the value of a counter cannot be set: a counter does not exist until first
 incremented/decremented, and that first increment/decrement is made as if the prior value was 0.</p>
 <p id="counter-limitations">Counters have a number of important limitations:</p>
 <ul class="simple">
-<li>They cannot be used for columns part of the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> of a table.</li>
+<li>They cannot be used for columns part of the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> of a table.</li>
 <li>A table that contains a counter can only contain counters. In other words, either all the columns of a table outside
-the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> have the <code class="docutils literal"><span class="pre">counter</span></code> type, or none of them have it.</li>
+the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> have the <code class="docutils literal notranslate"><span class="pre">counter</span></code> type, or none of them have it.</li>
 <li>Counters do not support <span class="xref std std-ref">expiration</span>.</li>
 <li>The deletion of counters is supported, but is only guaranteed to work the first time you delete a counter. In other
 words, you should not re-update a counter that you have deleted (if you do, proper behavior is not guaranteed).</li>
@@ -339,53 +339,53 @@
 </div>
 <div class="section" id="working-with-timestamps">
 <span id="timestamps"></span><h2>Working with timestamps<a class="headerlink" href="#working-with-timestamps" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">timestamp</span></code> type are encoded as 64-bit signed integers representing a number of milliseconds since the
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> type are encoded as 64-bit signed integers representing a number of milliseconds since the
 standard base time known as <a class="reference external" href="https://en.wikipedia.org/wiki/Unix_time">the epoch</a>: January 1 1970 at 00:00:00 GMT.</p>
-<p>Timestamps can be input in CQL either using their value as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>, or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a> that
+<p>Timestamps can be input in CQL either using their value as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>, or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a> that
 represents an <a class="reference external" href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a> date. For instance, all of the values below are
-valid <code class="docutils literal"><span class="pre">timestamp</span></code> values for  Mar 2, 2011, at 04:05:00 AM, GMT:</p>
+valid <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> values for  Mar 2, 2011, at 04:05:00 AM, GMT:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">1299038700000</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00.000+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03T04:05+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03T04:05:00+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03T04:05:00.000+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">1299038700000</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00.000+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03T04:05+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03T04:05:00+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03T04:05:00.000+0000'</span></code></li>
 </ul>
-<p>The <code class="docutils literal"><span class="pre">+0000</span></code> above is an RFC 822 4-digit time zone specification; <code class="docutils literal"><span class="pre">+0000</span></code> refers to GMT. US Pacific Standard Time is
-<code class="docutils literal"><span class="pre">-0800</span></code>. The time zone may be omitted if desired (<code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00'</span></code>), and if so, the date will be interpreted
+<p>The <code class="docutils literal notranslate"><span class="pre">+0000</span></code> above is an RFC 822 4-digit time zone specification; <code class="docutils literal notranslate"><span class="pre">+0000</span></code> refers to GMT. US Pacific Standard Time is
+<code class="docutils literal notranslate"><span class="pre">-0800</span></code>. The time zone may be omitted if desired (<code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00'</span></code>), and if so, the date will be interpreted
 as being in the time zone under which the coordinating Cassandra node is configured. There are however difficulties
 inherent in relying on the time zone configuration being as expected, so it is recommended that the time zone always be
 specified for timestamps when feasible.</p>
-<p>The time of day may also be omitted (<code class="docutils literal"><span class="pre">'2011-02-03'</span></code> or <code class="docutils literal"><span class="pre">'2011-02-03+0000'</span></code>), in which case the time of day will
+<p>The time of day may also be omitted (<code class="docutils literal notranslate"><span class="pre">'2011-02-03'</span></code> or <code class="docutils literal notranslate"><span class="pre">'2011-02-03+0000'</span></code>), in which case the time of day will
 default to 00:00:00 in the specified or default time zone. However, if only the date part is relevant, consider using
 the <a class="reference internal" href="#dates"><span class="std std-ref">date</span></a> type.</p>
 </div>
 <div class="section" id="working-with-dates">
 <span id="dates"></span><h2>Working with dates<a class="headerlink" href="#working-with-dates" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">date</span></code> type are encoded as 32-bit unsigned integers representing a number of days with “the epoch” at
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">date</span></code> type are encoded as 32-bit unsigned integers representing a number of days with “the epoch” at
 the center of the range (2^31). Epoch is January 1st, 1970</p>
-<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a date can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a> or using a date
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a>. In the later case, the format should be <code class="docutils literal"><span class="pre">yyyy-mm-dd</span></code> (so <code class="docutils literal"><span class="pre">'2011-02-03'</span></code> for instance).</p>
+<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a date can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a> or using a date
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a>. In the later case, the format should be <code class="docutils literal notranslate"><span class="pre">yyyy-mm-dd</span></code> (so <code class="docutils literal notranslate"><span class="pre">'2011-02-03'</span></code> for instance).</p>
 </div>
 <div class="section" id="working-with-times">
 <span id="times"></span><h2>Working with times<a class="headerlink" href="#working-with-times" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">time</span></code> type are encoded as 64-bit signed integers representing the number of nanoseconds since midnight.</p>
-<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a time can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a> or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a>
-representing the time. In the later case, the format should be <code class="docutils literal"><span class="pre">hh:mm:ss[.fffffffff]</span></code> (where the sub-second precision
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">time</span></code> type are encoded as 64-bit signed integers representing the number of nanoseconds since midnight.</p>
+<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a time can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a> or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a>
+representing the time. In the later case, the format should be <code class="docutils literal notranslate"><span class="pre">hh:mm:ss[.fffffffff]</span></code> (where the sub-second precision
 is optional and if provided, can be less than the nanosecond). So for instance, the following are valid inputs for a
 time:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">'08:12:54'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'08:12:54.123'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'08:12:54.123456'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'08:12:54.123456789'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54.123'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54.123456'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54.123456789'</span></code></li>
 </ul>
 </div>
 <div class="section" id="working-with-durations">
 <span id="durations"></span><h2>Working with durations<a class="headerlink" href="#working-with-durations" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">duration</span></code> type are encoded as 3 signed integer of variable lengths. The first integer represents the
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">duration</span></code> type are encoded as 3 signed integer of variable lengths. The first integer represents the
 number of months, the second the number of days and the third the number of nanoseconds. This is due to the fact that
 the number of days in a month can change, and a day can have 23 or 25 hours depending on the daylight saving.
 Internally, the number of months and days are decoded as 32 bits integers whereas the number of nanoseconds is decoded
@@ -393,38 +393,38 @@
 <p>A duration can be input as:</p>
 <blockquote>
 <div><ol class="arabic">
-<li><p class="first"><code class="docutils literal"><span class="pre">(quantity</span> <span class="pre">unit)+</span></code> like <code class="docutils literal"><span class="pre">12h30m</span></code> where the unit can be:</p>
+<li><p class="first"><code class="docutils literal notranslate"><span class="pre">(quantity</span> <span class="pre">unit)+</span></code> like <code class="docutils literal notranslate"><span class="pre">12h30m</span></code> where the unit can be:</p>
 <blockquote>
 <div><ul class="simple">
-<li><code class="docutils literal"><span class="pre">y</span></code>: years (12 months)</li>
-<li><code class="docutils literal"><span class="pre">mo</span></code>: months (1 month)</li>
-<li><code class="docutils literal"><span class="pre">w</span></code>: weeks (7 days)</li>
-<li><code class="docutils literal"><span class="pre">d</span></code>: days (1 day)</li>
-<li><code class="docutils literal"><span class="pre">h</span></code>: hours (3,600,000,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">m</span></code>: minutes (60,000,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">s</span></code>: seconds (1,000,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">ms</span></code>: milliseconds (1,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">us</span></code> or <code class="docutils literal"><span class="pre">µs</span></code> : microseconds (1000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">ns</span></code>: nanoseconds (1 nanosecond)</li>
+<li><code class="docutils literal notranslate"><span class="pre">y</span></code>: years (12 months)</li>
+<li><code class="docutils literal notranslate"><span class="pre">mo</span></code>: months (1 month)</li>
+<li><code class="docutils literal notranslate"><span class="pre">w</span></code>: weeks (7 days)</li>
+<li><code class="docutils literal notranslate"><span class="pre">d</span></code>: days (1 day)</li>
+<li><code class="docutils literal notranslate"><span class="pre">h</span></code>: hours (3,600,000,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">m</span></code>: minutes (60,000,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">s</span></code>: seconds (1,000,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">ms</span></code>: milliseconds (1,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">us</span></code> or <code class="docutils literal notranslate"><span class="pre">µs</span></code> : microseconds (1000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">ns</span></code>: nanoseconds (1 nanosecond)</li>
 </ul>
 </div></blockquote>
 </li>
-<li><p class="first">ISO 8601 format:  <code class="docutils literal"><span class="pre">P[n]Y[n]M[n]DT[n]H[n]M[n]S</span> <span class="pre">or</span> <span class="pre">P[n]W</span></code></p>
+<li><p class="first">ISO 8601 format:  <code class="docutils literal notranslate"><span class="pre">P[n]Y[n]M[n]DT[n]H[n]M[n]S</span> <span class="pre">or</span> <span class="pre">P[n]W</span></code></p>
 </li>
-<li><p class="first">ISO 8601 alternative format: <code class="docutils literal"><span class="pre">P[YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]</span></code></p>
+<li><p class="first">ISO 8601 alternative format: <code class="docutils literal notranslate"><span class="pre">P[YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]</span></code></p>
 </li>
 </ol>
 </div></blockquote>
 <p>For example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;Christopher Froome&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="mf">89</span><span class="n">h4m48s</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;Christopher Froome&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="mf">89</span><span class="n">h4m48s</span><span class="p">);</span>
 <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;BARDET Romain&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="n">PT89H8M53S</span><span class="p">);</span>
 <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;QUINTANA Nairo&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="n">P0000</span><span class="o">-</span><span class="mf">00</span><span class="o">-</span><span class="mf">00</span><span class="n">T89</span><span class="p">:</span><span class="mf">09</span><span class="p">:</span><span class="mf">09</span><span class="p">);</span>
 </pre></div>
 </div>
-<p id="duration-limitation">Duration columns cannot be used in a table&#8217;s <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. This limitation is due to the fact that
-durations cannot be ordered. It is effectively not possible to know if <code class="docutils literal"><span class="pre">1mo</span></code> is greater than <code class="docutils literal"><span class="pre">29d</span></code> without a date
+<p id="duration-limitation">Duration columns cannot be used in a table’s <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. This limitation is due to the fact that
+durations cannot be ordered. It is effectively not possible to know if <code class="docutils literal notranslate"><span class="pre">1mo</span></code> is greater than <code class="docutils literal notranslate"><span class="pre">29d</span></code> without a date
 context.</p>
-<p>A <code class="docutils literal"><span class="pre">1d</span></code> duration is not equals to a <code class="docutils literal"><span class="pre">24h</span></code> one as the duration type has been created to be able to support daylight
+<p>A <code class="docutils literal notranslate"><span class="pre">1d</span></code> duration is not equals to a <code class="docutils literal notranslate"><span class="pre">24h</span></code> one as the duration type has been created to be able to support daylight
 saving.</p>
 </div>
 <div class="section" id="collections">
@@ -432,23 +432,23 @@
 <p>CQL supports 3 kind of collections: <a class="reference internal" href="#maps"><span class="std std-ref">Maps</span></a>, <a class="reference internal" href="#sets"><span class="std std-ref">Sets</span></a> and <a class="reference internal" href="#lists"><span class="std std-ref">Lists</span></a>. The types of those collections is defined
 by:</p>
 <pre>
-<strong id="grammar-token-collection_type">collection_type</strong> ::=  MAP '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ',' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> '&gt;'
-                     | SET '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> '&gt;'
-                     | LIST '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> '&gt;'
+<strong id="grammar-token-collection-type">collection_type</strong> ::=  MAP '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ',' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> '&gt;'
+                     | SET '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> '&gt;'
+                     | LIST '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> '&gt;'
 </pre>
 <p>and their values can be inputd using collection literals:</p>
 <pre>
-<strong id="grammar-token-collection_literal">collection_literal</strong> ::=  <a class="reference internal" href="#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a> | <a class="reference internal" href="#grammar-token-set_literal"><code class="xref docutils literal"><span class="pre">set_literal</span></code></a> | <a class="reference internal" href="#grammar-token-list_literal"><code class="xref docutils literal"><span class="pre">list_literal</span></code></a>
-<strong id="grammar-token-map_literal">map_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> : <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] '}'
-<strong id="grammar-token-set_literal">set_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] '}'
-<strong id="grammar-token-list_literal">list_literal      </strong> ::=  '[' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] ']'
+<strong id="grammar-token-collection-literal">collection_literal</strong> ::=  <a class="reference internal" href="#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a> | <a class="reference internal" href="#grammar-token-set-literal"><code class="xref docutils literal notranslate"><span class="pre">set_literal</span></code></a> | <a class="reference internal" href="#grammar-token-list-literal"><code class="xref docutils literal notranslate"><span class="pre">list_literal</span></code></a>
+<strong id="grammar-token-map-literal">map_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> : <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] '}'
+<strong id="grammar-token-set-literal">set_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] '}'
+<strong id="grammar-token-list-literal">list_literal      </strong> ::=  '[' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] ']'
 </pre>
-<p>Note however that neither <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref std std-token docutils literal"><span class="pre">bind_marker</span></code></a> nor <code class="docutils literal"><span class="pre">NULL</span></code> are supported inside collection literals.</p>
+<p>Note however that neither <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref std std-token docutils literal notranslate"><span class="pre">bind_marker</span></code></a> nor <code class="docutils literal notranslate"><span class="pre">NULL</span></code> are supported inside collection literals.</p>
 <div class="section" id="noteworthy-characteristics">
 <h3>Noteworthy characteristics<a class="headerlink" href="#noteworthy-characteristics" title="Permalink to this headline">¶</a></h3>
 <p>Collections are meant for storing/denormalizing relatively small amount of data. They work well for things like “the
 phone numbers of a given user”, “labels applied to an email”, etc. But when items are expected to grow unbounded (“all
-messages sent by a user”, “events registered by a sensor”...), then collections are not appropriate and a specific table
+messages sent by a user”, “events registered by a sensor”…), then collections are not appropriate and a specific table
 (with clustering columns) should be used. Concretely, (non-frozen) collections have the following noteworthy
 characteristics and limitations:</p>
 <ul class="simple">
@@ -464,9 +464,9 @@
 </div>
 <div class="section" id="maps">
 <span id="id5"></span><h3>Maps<a class="headerlink" href="#maps" title="Permalink to this headline">¶</a></h3>
-<p>A <code class="docutils literal"><span class="pre">map</span></code> is a (sorted) set of key-value pairs, where keys are unique and the map is sorted by its keys. You can define
+<p>A <code class="docutils literal notranslate"><span class="pre">map</span></code> is a (sorted) set of key-value pairs, where keys are unique and the map is sorted by its keys. You can define
 and insert a map with:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
     <span class="n">id</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">name</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">favs</span> <span class="k">map</span><span class="o">&lt;</span><span class="nb">text</span><span class="p">,</span> <span class="nb">text</span><span class="o">&gt;</span> <span class="c1">// A map of text keys, and text values</span>
@@ -482,30 +482,30 @@
 <p>Further, maps support:</p>
 <ul>
 <li><p class="first">Updating or inserting one or more elements:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;Ed Poe&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;Ed Poe&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span> <span class="o">=</span> <span class="n">favs</span> <span class="o">+</span> <span class="p">{</span> <span class="s1">&#39;movie&#39;</span> <span class="p">:</span> <span class="s1">&#39;Cassablanca&#39;</span><span class="p">,</span> <span class="s1">&#39;band&#39;</span> <span class="p">:</span> <span class="s1">&#39;ZZ Top&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
-<li><p class="first">Removing one or more element (if an element doesn&#8217;t exist, removing it is a no-op but no error is thrown):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
+<li><p class="first">Removing one or more element (if an element doesn’t exist, removing it is a no-op but no error is thrown):</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span> <span class="o">=</span> <span class="n">favs</span> <span class="o">-</span> <span class="p">{</span> <span class="s1">&#39;movie&#39;</span><span class="p">,</span> <span class="s1">&#39;band&#39;</span><span class="p">}</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Note that for removing multiple elements in a <code class="docutils literal"><span class="pre">map</span></code>, you remove from it a <code class="docutils literal"><span class="pre">set</span></code> of keys.</p>
+<p>Note that for removing multiple elements in a <code class="docutils literal notranslate"><span class="pre">map</span></code>, you remove from it a <code class="docutils literal notranslate"><span class="pre">set</span></code> of keys.</p>
 </li>
 </ul>
-<p>Lastly, TTLs are allowed for both <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code>, but in both case the TTL set only apply to the newly
+<p>Lastly, TTLs are allowed for both <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, but in both case the TTL set only apply to the newly
 inserted/updated elements. In other words:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">10</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;color&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;green&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">10</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;color&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;green&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>will only apply the TTL to the <code class="docutils literal"><span class="pre">{</span> <span class="pre">'color'</span> <span class="pre">:</span> <span class="pre">'green'</span> <span class="pre">}</span></code> record, the rest of the map remaining unaffected.</p>
+<p>will only apply the TTL to the <code class="docutils literal notranslate"><span class="pre">{</span> <span class="pre">'color'</span> <span class="pre">:</span> <span class="pre">'green'</span> <span class="pre">}</span></code> record, the rest of the map remaining unaffected.</p>
 </div>
 <div class="section" id="sets">
 <span id="id6"></span><h3>Sets<a class="headerlink" href="#sets" title="Permalink to this headline">¶</a></h3>
-<p>A <code class="docutils literal"><span class="pre">set</span></code> is a (sorted) collection of unique values. You can define and insert a map with:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">images</span> <span class="p">(</span>
+<p>A <code class="docutils literal notranslate"><span class="pre">set</span></code> is a (sorted) collection of unique values. You can define and insert a map with:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">images</span> <span class="p">(</span>
     <span class="n">name</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">owner</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">tags</span> <span class="k">set</span><span class="o">&lt;</span><span class="nb">text</span><span class="o">&gt;</span> <span class="c1">// A set of text values</span>
@@ -521,12 +521,12 @@
 <p>Further, sets support:</p>
 <ul>
 <li><p class="first">Adding one or multiple elements (as this is a set, inserting an already existing element is a no-op):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">+</span> <span class="p">{</span> <span class="s1">&#39;gray&#39;</span><span class="p">,</span> <span class="s1">&#39;cuddly&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">+</span> <span class="p">{</span> <span class="s1">&#39;gray&#39;</span><span class="p">,</span> <span class="s1">&#39;cuddly&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
-<li><p class="first">Removing one or multiple elements (if an element doesn&#8217;t exist, removing it is a no-op but no error is thrown):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">-</span> <span class="p">{</span> <span class="s1">&#39;cat&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
+<li><p class="first">Removing one or multiple elements (if an element doesn’t exist, removing it is a no-op but no error is thrown):</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">-</span> <span class="p">{</span> <span class="s1">&#39;cat&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
@@ -541,9 +541,9 @@
 performance considerations that you should take into account before using them. In general, if you can use a
 <a class="reference internal" href="#sets"><span class="std std-ref">set</span></a> instead of list, always prefer a set.</p>
 </div>
-<p>A <code class="docutils literal"><span class="pre">list</span></code> is a (sorted) collection of non-unique values where elements are ordered by there position in the list. You
+<p>A <code class="docutils literal notranslate"><span class="pre">list</span></code> is a (sorted) collection of non-unique values where elements are ordered by there position in the list. You
 can define and insert a list with:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">plays</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">plays</span> <span class="p">(</span>
     <span class="n">id</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">game</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">players</span> <span class="nb">int</span><span class="p">,</span>
@@ -560,27 +560,27 @@
 <p>Further, lists support:</p>
 <ul>
 <li><p class="first">Appending and prepending values to a list:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">players</span> <span class="o">=</span> <span class="mf">5</span><span class="p">,</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">+</span> <span class="p">[</span> <span class="mf">14</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">players</span> <span class="o">=</span> <span class="mf">5</span><span class="p">,</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">+</span> <span class="p">[</span> <span class="mf">14</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">players</span> <span class="o">=</span> <span class="mf">6</span><span class="p">,</span> <span class="n">scores</span> <span class="o">=</span> <span class="p">[</span> <span class="mf">3</span> <span class="p">]</span> <span class="o">+</span> <span class="n">scores</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
 <li><p class="first">Setting the value at a particular position in the list. This imply that the list has a pre-existing element for that
 position or an error will be thrown that the list is too small:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="o">=</span> <span class="mf">7</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="o">=</span> <span class="mf">7</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
 <li><p class="first">Removing an element by its position in the list. This imply that the list has a pre-existing element for that position
 or an error will be thrown that the list is too small. Further, as the operation removes an element from the list, the
 list size will be diminished by 1, shifting the position of all the elements following the one deleted:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
-<li><p class="first">Deleting <em>all</em> the occurrences of particular values in the list (if a particular element doesn&#8217;t occur at all in the
+<li><p class="first">Deleting <em>all</em> the occurrences of particular values in the list (if a particular element doesn’t occur at all in the
 list, it is simply ignored and no error is thrown):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">-</span> <span class="p">[</span> <span class="mf">12</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">-</span> <span class="p">[</span> <span class="mf">12</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
@@ -603,23 +603,23 @@
 <div class="section" id="user-defined-types">
 <span id="udts"></span><h2>User-Defined Types<a class="headerlink" href="#user-defined-types" title="Permalink to this headline">¶</a></h2>
 <p>CQL support the definition of user-defined types (UDT for short). Such a type can be created, modified and removed using
-the <a class="reference internal" href="#grammar-token-create_type_statement"><code class="xref std std-token docutils literal"><span class="pre">create_type_statement</span></code></a>, <a class="reference internal" href="#grammar-token-alter_type_statement"><code class="xref std std-token docutils literal"><span class="pre">alter_type_statement</span></code></a> and <a class="reference internal" href="#grammar-token-drop_type_statement"><code class="xref std std-token docutils literal"><span class="pre">drop_type_statement</span></code></a> described below. But
+the <a class="reference internal" href="#grammar-token-create-type-statement"><code class="xref std std-token docutils literal notranslate"><span class="pre">create_type_statement</span></code></a>, <a class="reference internal" href="#grammar-token-alter-type-statement"><code class="xref std std-token docutils literal notranslate"><span class="pre">alter_type_statement</span></code></a> and <a class="reference internal" href="#grammar-token-drop-type-statement"><code class="xref std std-token docutils literal notranslate"><span class="pre">drop_type_statement</span></code></a> described below. But
 once created, a UDT is simply referred to by its name:</p>
 <pre>
-<strong id="grammar-token-user_defined_type">user_defined_type</strong> ::=  <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a>
-<strong id="grammar-token-udt_name">udt_name         </strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-user-defined-type">user_defined_type</strong> ::=  <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a>
+<strong id="grammar-token-udt-name">udt_name         </strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <div class="section" id="creating-a-udt">
 <h3>Creating a UDT<a class="headerlink" href="#creating-a-udt" title="Permalink to this headline">¶</a></h3>
-<p>Creating a new user-defined type is done using a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TYPE</span></code> statement defined by:</p>
+<p>Creating a new user-defined type is done using a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TYPE</span></code> statement defined by:</p>
 <pre>
-<strong id="grammar-token-create_type_statement">create_type_statement</strong> ::=  CREATE TYPE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a>
-                               '(' <a class="reference internal" href="#grammar-token-field_definition"><code class="xref docutils literal"><span class="pre">field_definition</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-field_definition"><code class="xref docutils literal"><span class="pre">field_definition</span></code></a> )* ')'
-<strong id="grammar-token-field_definition">field_definition     </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a>
+<strong id="grammar-token-create-type-statement">create_type_statement</strong> ::=  CREATE TYPE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a>
+                               '(' <a class="reference internal" href="#grammar-token-field-definition"><code class="xref docutils literal notranslate"><span class="pre">field_definition</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-field-definition"><code class="xref docutils literal notranslate"><span class="pre">field_definition</span></code></a> )* ')'
+<strong id="grammar-token-field-definition">field_definition     </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a>
 </pre>
 <p>A UDT has a name (used to declared columns of that type) and is a set of named and typed fields. Fields name can be any
 type, including collections or other UDT. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">phone</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">phone</span> <span class="p">(</span>
     <span class="n">country_code</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">number</span> <span class="nb">text</span><span class="p">,</span>
 <span class="p">)</span>
@@ -639,12 +639,12 @@
 </div>
 <p>Note that:</p>
 <ul class="simple">
-<li>Attempting to create an already existing type will result in an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
+<li>Attempting to create an already existing type will result in an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
 it is used, the statement will be a no-op if the type already exists.</li>
 <li>A type is intrinsically bound to the keyspace in which it is created, and can only be used in that keyspace. At
 creation, if the type name is prefixed by a keyspace name, it is created in that keyspace. Otherwise, it is created in
 the current keyspace.</li>
-<li>As of Cassandra 3.11.3, UDT have to be frozen in most cases, hence the <code class="docutils literal"><span class="pre">frozen&lt;address&gt;</span></code> in the table definition
+<li>As of Cassandra 3.11.7, UDT have to be frozen in most cases, hence the <code class="docutils literal notranslate"><span class="pre">frozen&lt;address&gt;</span></code> in the table definition
 above. Please see the section on <span class="xref std std-ref">frozen</span> for more details.</li>
 </ul>
 </div>
@@ -652,11 +652,11 @@
 <h3>UDT literals<a class="headerlink" href="#udt-literals" title="Permalink to this headline">¶</a></h3>
 <p>Once a used-defined type has been created, value can be input using a UDT literal:</p>
 <pre>
-<strong id="grammar-token-udt_literal">udt_literal</strong> ::=  '{' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> )* '}'
+<strong id="grammar-token-udt-literal">udt_literal</strong> ::=  '{' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> )* '}'
 </pre>
 <p>In other words, a UDT literal is like a <a class="reference internal" href="#maps"><span class="std std-ref">map</span></a> literal but its keys are the names of the fields of the type.
 For instance, one could insert into the table define in the previous section using:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">user</span> <span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">addresses</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">user</span> <span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">addresses</span><span class="p">)</span>
           <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;z3 Pr3z1den7&#39;</span><span class="p">,</span> <span class="p">{</span>
               <span class="s1">&#39;home&#39;</span> <span class="p">:</span> <span class="p">{</span>
                   <span class="n">street</span><span class="p">:</span> <span class="s1">&#39;1600 Pennsylvania Ave NW&#39;</span><span class="p">,</span>
@@ -675,32 +675,32 @@
 </pre></div>
 </div>
 <p>To be valid, a UDT literal should only include fields defined by the type it is a literal of, but it can omit some field
-(in which case those will be <code class="docutils literal"><span class="pre">null</span></code>).</p>
+(in which case those will be <code class="docutils literal notranslate"><span class="pre">null</span></code>).</p>
 </div>
 <div class="section" id="altering-a-udt">
 <h3>Altering a UDT<a class="headerlink" href="#altering-a-udt" title="Permalink to this headline">¶</a></h3>
-<p>An existing user-defined type can be modified using an <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> statement:</p>
+<p>An existing user-defined type can be modified using an <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_type_statement">alter_type_statement   </strong> ::=  ALTER TYPE <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a> <a class="reference internal" href="#grammar-token-alter_type_modification"><code class="xref docutils literal"><span class="pre">alter_type_modification</span></code></a>
-<strong id="grammar-token-alter_type_modification">alter_type_modification</strong> ::=  ADD <a class="reference internal" href="#grammar-token-field_definition"><code class="xref docutils literal"><span class="pre">field_definition</span></code></a>
-                             | RENAME <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> )*
+<strong id="grammar-token-alter-type-statement">alter_type_statement   </strong> ::=  ALTER TYPE <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a> <a class="reference internal" href="#grammar-token-alter-type-modification"><code class="xref docutils literal notranslate"><span class="pre">alter_type_modification</span></code></a>
+<strong id="grammar-token-alter-type-modification">alter_type_modification</strong> ::=  ADD <a class="reference internal" href="#grammar-token-field-definition"><code class="xref docutils literal notranslate"><span class="pre">field_definition</span></code></a>
+                             | RENAME <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> )*
 </pre>
 <p>You can:</p>
 <ul class="simple">
-<li>add a new field to the type (<code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">ADD</span> <span class="pre">country</span> <span class="pre">text</span></code>). That new field will be <code class="docutils literal"><span class="pre">null</span></code> for any values
+<li>add a new field to the type (<code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">ADD</span> <span class="pre">country</span> <span class="pre">text</span></code>). That new field will be <code class="docutils literal notranslate"><span class="pre">null</span></code> for any values
 of the type created before the addition.</li>
-<li>rename the fields of the type (<code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">RENAME</span> <span class="pre">zip</span> <span class="pre">TO</span> <span class="pre">zipcode</span></code>).</li>
+<li>rename the fields of the type (<code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">RENAME</span> <span class="pre">zip</span> <span class="pre">TO</span> <span class="pre">zipcode</span></code>).</li>
 </ul>
 </div>
 <div class="section" id="dropping-a-udt">
 <h3>Dropping a UDT<a class="headerlink" href="#dropping-a-udt" title="Permalink to this headline">¶</a></h3>
-<p>You can drop an existing user-defined type using a <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TYPE</span></code> statement:</p>
+<p>You can drop an existing user-defined type using a <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TYPE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_type_statement">drop_type_statement</strong> ::=  DROP TYPE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a>
+<strong id="grammar-token-drop-type-statement">drop_type_statement</strong> ::=  DROP TYPE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a>
 </pre>
 <p>Dropping a type results in the immediate, irreversible removal of that type. However, attempting to drop a type that is
 still in use by another type, table or function will result in an error.</p>
-<p>If the type dropped does not exist, an error will be returned unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used, in which case the operation
+<p>If the type dropped does not exist, an error will be returned unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used, in which case the operation
 is a no-op.</p>
 </div>
 </div>
@@ -709,11 +709,11 @@
 <p>CQL also support tuples and tuple types (where the elements can be of different types). Functionally, tuples can be
 though as anonymous UDT with anonymous fields. Tuple types and tuple literals are defined by:</p>
 <pre>
-<strong id="grammar-token-tuple_type">tuple_type   </strong> ::=  TUPLE '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )* '&gt;'
-<strong id="grammar-token-tuple_literal">tuple_literal</strong> ::=  '(' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> )* ')'
+<strong id="grammar-token-tuple-type">tuple_type   </strong> ::=  TUPLE '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )* '&gt;'
+<strong id="grammar-token-tuple-literal">tuple_literal</strong> ::=  '(' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> )* ')'
 </pre>
 <p>and can be used thusly:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">durations</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">durations</span> <span class="p">(</span>
     <span class="n">event</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">duration</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span> <span class="nb">text</span><span class="o">&gt;</span><span class="p">,</span>
 <span class="p">)</span>
@@ -721,7 +721,7 @@
 <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">durations</span> <span class="p">(</span><span class="n">event</span><span class="p">,</span> <span class="n">duration</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;ev1&#39;</span><span class="p">,</span> <span class="p">(</span><span class="mf">3</span><span class="p">,</span> <span class="s1">&#39;hours&#39;</span><span class="p">));</span>
 </pre></div>
 </div>
-<p>Unlike other &#8220;composed&#8221; types (collections and UDT), a tuple is always <span class="xref std std-ref">frozen</span> (without the need of the
+<p>Unlike other “composed” types (collections and UDT), a tuple is always <span class="xref std std-ref">frozen</span> (without the need of the
 <cite>frozen</cite> keyword) and it is not possible to update only some elements of a tuple (without updating the whole tuple).
 Also, a tuple literal should always have the same number of value than declared in the type it is a tuple of (some of
 those values can be null but they need to be explicitly declared as so).</p>
@@ -736,13 +736,13 @@
 </div>
 <p>A custom type is defined by:</p>
 <pre>
-<strong id="grammar-token-custom_type">custom_type</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+<strong id="grammar-token-custom-type">custom_type</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
-<p>A custom type is a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a> that contains the name of Java class that extends the server side <code class="docutils literal"><span class="pre">AbstractType</span></code>
-class and that can be loaded by Cassandra (it should thus be in the <code class="docutils literal"><span class="pre">CLASSPATH</span></code> of every node running Cassandra). That
+<p>A custom type is a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a> that contains the name of Java class that extends the server side <code class="docutils literal notranslate"><span class="pre">AbstractType</span></code>
+class and that can be loaded by Cassandra (it should thus be in the <code class="docutils literal notranslate"><span class="pre">CLASSPATH</span></code> of every node running Cassandra). That
 class will define what values are valid for the type and how the time sorts when used for a clustering column. For any
-other purpose, a value of a custom type is the same than that of a <code class="docutils literal"><span class="pre">blob</span></code>, and can in particular be input using the
-<a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal"><span class="pre">blob</span></code></a> literal syntax.</p>
+other purpose, a value of a custom type is the same than that of a <code class="docutils literal notranslate"><span class="pre">blob</span></code>, and can in particular be input using the
+<a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal notranslate"><span class="pre">blob</span></code></a> literal syntax.</p>
 </div>
 </div>
 
diff --git a/content/doc/3.11/data_modeling/index.html b/content/doc/3.11/data_modeling/index.html
index ae8a810..a8d2ef6 100644
--- a/content/doc/3.11/data_modeling/index.html
+++ b/content/doc/3.11/data_modeling/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="The Cassandra Query Language (CQL)" href="../cql/index.html"/> <link rel="prev" title="Guarantees" href="../architecture/guarantees.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="The Cassandra Query Language (CQL)" href="../cql/index.html"/> <link rel="prev" title="Guarantees" href="../architecture/guarantees.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/development/code_style.html b/content/doc/3.11/development/code_style.html
index e89c9a4..a6fe980 100644
--- a/content/doc/3.11/development/code_style.html
+++ b/content/doc/3.11/development/code_style.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Review Checklist" href="how_to_review.html"/> <link rel="prev" title="Contributing Code Changes" href="patches.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Review Checklist" href="how_to_review.html"/> <link rel="prev" title="Contributing Code Changes" href="patches.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,7 +171,7 @@
 <h2>General Code Conventions<a class="headerlink" href="#general-code-conventions" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>The Cassandra project follows <a class="reference external" href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Sun&#8217;s Java coding conventions</a> with an important exception: <code class="docutils literal"><span class="pre">{</span></code> and <code class="docutils literal"><span class="pre">}</span></code> are always placed on a new line</li>
+<li>The Cassandra project follows <a class="reference external" href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Sun’s Java coding conventions</a> with an important exception: <code class="docutils literal notranslate"><span class="pre">{</span></code> and <code class="docutils literal notranslate"><span class="pre">}</span></code> are always placed on a new line</li>
 </ul>
 </div></blockquote>
 </div>
@@ -179,10 +179,10 @@
 <h2>Exception handling<a class="headerlink" href="#exception-handling" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>Never ever write <code class="docutils literal"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{}</span></code> or <code class="docutils literal"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{</span> <span class="pre">logger.error()</span> <span class="pre">}</span></code> merely to satisfy Java&#8217;s compile-time exception checking. Always propagate the exception up or throw <code class="docutils literal"><span class="pre">RuntimeException</span></code> (or, if it &#8220;can&#8217;t happen,&#8221; <code class="docutils literal"><span class="pre">AssertionError</span></code>). This makes the exceptions visible to automated tests.</li>
-<li>Avoid propagating up checked exceptions that no caller handles. Rethrow as <code class="docutils literal"><span class="pre">RuntimeException</span></code> (or <code class="docutils literal"><span class="pre">IOError</span></code>, if that is more applicable).</li>
-<li>Similarly, logger.warn() is often a cop-out: is this an error or not? If it is don&#8217;t hide it behind a warn; if it isn&#8217;t, no need for the warning.</li>
-<li>If you genuinely know an exception indicates an expected condition, it&#8217;s okay to ignore it BUT this must be explicitly explained in a comment.</li>
+<li>Never ever write <code class="docutils literal notranslate"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{}</span></code> or <code class="docutils literal notranslate"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{</span> <span class="pre">logger.error()</span> <span class="pre">}</span></code> merely to satisfy Java’s compile-time exception checking. Always propagate the exception up or throw <code class="docutils literal notranslate"><span class="pre">RuntimeException</span></code> (or, if it “can’t happen,” <code class="docutils literal notranslate"><span class="pre">AssertionError</span></code>). This makes the exceptions visible to automated tests.</li>
+<li>Avoid propagating up checked exceptions that no caller handles. Rethrow as <code class="docutils literal notranslate"><span class="pre">RuntimeException</span></code> (or <code class="docutils literal notranslate"><span class="pre">IOError</span></code>, if that is more applicable).</li>
+<li>Similarly, logger.warn() is often a cop-out: is this an error or not? If it is don’t hide it behind a warn; if it isn’t, no need for the warning.</li>
+<li>If you genuinely know an exception indicates an expected condition, it’s okay to ignore it BUT this must be explicitly explained in a comment.</li>
 </ul>
 </div></blockquote>
 </div>
@@ -190,11 +190,11 @@
 <h2>Boilerplate<a class="headerlink" href="#boilerplate" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>Avoid redundant <code class="docutils literal"><span class="pre">&#64;Override</span></code> annotations when implementing abstract or interface methods.</li>
+<li>Avoid redundant <code class="docutils literal notranslate"><span class="pre">&#64;Override</span></code> annotations when implementing abstract or interface methods.</li>
 <li>Do not implement equals or hashcode methods unless they are actually needed.</li>
-<li>Prefer public final fields to private fields with getters. (But prefer encapsulating behavior in &#8220;real&#8221; methods to either.)</li>
+<li>Prefer public final fields to private fields with getters. (But prefer encapsulating behavior in “real” methods to either.)</li>
 <li>Prefer requiring initialization in the constructor to setters.</li>
-<li>Avoid redundant <code class="docutils literal"><span class="pre">this</span></code> references to member fields or methods.</li>
+<li>Avoid redundant <code class="docutils literal notranslate"><span class="pre">this</span></code> references to member fields or methods.</li>
 <li>Do not extract interfaces (or abstract classes) unless you actually need multiple implementations of it.</li>
 <li>Always include braces for nested levels of conditionals and loops. Only avoid braces for single level.</li>
 </ul>
@@ -204,10 +204,10 @@
 <h2>Multiline statements<a class="headerlink" href="#multiline-statements" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>Try to keep lines under 120 characters, but use good judgement &#8211; it&#8217;s better to exceed 120 by a little, than split a line that has no natural splitting points.</li>
+<li>Try to keep lines under 120 characters, but use good judgement – it’s better to exceed 120 by a little, than split a line that has no natural splitting points.</li>
 <li>When splitting inside a method call, use one line per parameter and align them, like this:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>SSTableWriter writer = new SSTableWriter(cfs.getTempSSTablePath(),
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>SSTableWriter writer = new SSTableWriter(cfs.getTempSSTablePath(),
                                          columnFamilies.size(),
                                          StorageService.getPartitioner());
 </pre></div>
@@ -215,7 +215,7 @@
 <ul class="simple">
 <li>When splitting a ternary, use one line per clause, carry the operator, and align like this:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>var = bar == null
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>var = bar == null
     ? doFoo()
     : doBar();
 </pre></div>
@@ -227,14 +227,14 @@
 <blockquote>
 <div><ul class="simple">
 <li>Please make sure to use 4 spaces instead of the tab character for all your indentation.</li>
-<li>Many lines in many files have a bunch of trailing whitespace... Please either clean these up in a separate patch, or leave them alone, so that reviewers now and anyone reading code history later doesn&#8217;t have to pay attention to whitespace diffs.</li>
+<li>Many lines in many files have a bunch of trailing whitespace… Please either clean these up in a separate patch, or leave them alone, so that reviewers now and anyone reading code history later doesn’t have to pay attention to whitespace diffs.</li>
 </ul>
 </div></blockquote>
 </div>
 <div class="section" id="imports">
 <h2>Imports<a class="headerlink" href="#imports" title="Permalink to this headline">¶</a></h2>
 <p>Please observe the following order for your imports:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>java
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>java
 [blank line]
 com.google.common
 org.apache.commons
diff --git a/content/doc/3.11/development/how_to_commit.html b/content/doc/3.11/development/how_to_commit.html
index ea36747..5459b87 100644
--- a/content/doc/3.11/development/how_to_commit.html
+++ b/content/doc/3.11/development/how_to_commit.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Frequently Asked Questions" href="../faq/index.html"/> <link rel="prev" title="Review Checklist" href="how_to_review.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Frequently Asked Questions" href="../faq/index.html"/> <link rel="prev" title="Review Checklist" href="how_to_review.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -164,26 +164,26 @@
 <dl class="docutils">
 <dt>On cassandra-3.0:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">am</span> <span class="pre">-3</span> <span class="pre">12345-3.0.patch</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix  it ourselves, in place)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">am</span> <span class="pre">-3</span> <span class="pre">12345-3.0.patch</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix  it ourselves, in place)</li>
 </ol>
 </dd>
 <dt>On cassandra-3.3:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-3.3.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-3.3.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On trunk:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-trunk.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-trunk.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On any branch:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
 </ol>
 </dd>
 </dl>
@@ -191,36 +191,36 @@
 <dl class="docutils">
 <dt>On cassandra-3.0:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">cherry-pick</span> <span class="pre">&lt;sha-of-3.0-commit&gt;</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix it ourselves, in place)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">cherry-pick</span> <span class="pre">&lt;sha-of-3.0-commit&gt;</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix it ourselves, in place)</li>
 </ol>
 </dd>
 <dt>On cassandra-3.3:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-3.3-commit&gt;</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-3.3-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-3.3-commit&gt;</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-3.3-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On trunk:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-trunk-commit&gt;</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-trunk-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-trunk-commit&gt;</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-trunk-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On any branch:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
 </ol>
 </dd>
 </dl>
 <div class="admonition tip">
 <p class="first admonition-title">Tip</p>
 <p>Notes on git flags:
-<code class="docutils literal"><span class="pre">-3</span></code> flag to am and apply will instruct git to perform a 3-way merge for you. If a conflict is detected, you can either resolve it manually or invoke git mergetool - for both am and apply.</p>
-<p class="last"><code class="docutils literal"><span class="pre">—atomic</span></code> flag to git push does the obvious thing: pushes all or nothing. Without the flag, the command is equivalent to running git push once per each branch. This is nifty in case a race condition happens - you won’t push half the branches, blocking other committers’ progress while you are resolving the issue.</p>
+<code class="docutils literal notranslate"><span class="pre">-3</span></code> flag to am and apply will instruct git to perform a 3-way merge for you. If a conflict is detected, you can either resolve it manually or invoke git mergetool - for both am and apply.</p>
+<p class="last"><code class="docutils literal notranslate"><span class="pre">—atomic</span></code> flag to git push does the obvious thing: pushes all or nothing. Without the flag, the command is equivalent to running git push once per each branch. This is nifty in case a race condition happens - you won’t push half the branches, blocking other committers’ progress while you are resolving the issue.</p>
 </div>
 <div class="admonition tip">
 <p class="first admonition-title">Tip</p>
diff --git a/content/doc/3.11/development/how_to_review.html b/content/doc/3.11/development/how_to_review.html
index 59147cb..3d469c9 100644
--- a/content/doc/3.11/development/how_to_review.html
+++ b/content/doc/3.11/development/how_to_review.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="How-to Commit" href="how_to_commit.html"/> <link rel="prev" title="Code Style" href="code_style.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="How-to Commit" href="how_to_commit.html"/> <link rel="prev" title="Code Style" href="code_style.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -184,14 +184,14 @@
 <p><strong>Documentation</strong></p>
 <blockquote>
 <div><ul class="simple">
-<li>Do comments exist and describe the intent of the code (the &#8220;why&#8221;, not the &#8220;how&#8221;)?</li>
+<li>Do comments exist and describe the intent of the code (the “why”, not the “how”)?</li>
 <li>Are javadocs added where appropriate?</li>
 <li>Is any unusual behavior or edge-case handling described?</li>
 <li>Are data structures and units of measurement explained?</li>
 <li>Is there any incomplete code? If so, should it be removed or flagged with a suitable marker like ‘TODO’?</li>
 <li>Does the code self-document via clear naming, abstractions, and flow control?</li>
 <li>Have NEWS.txt, the cql3 docs, and the native protocol spec been updated if needed?</li>
-<li>Is the ticket tagged with &#8220;client-impacting&#8221; and &#8220;doc-impacting&#8221;, where appropriate?</li>
+<li>Is the ticket tagged with “client-impacting” and “doc-impacting”, where appropriate?</li>
 <li>Has lib/licences been updated for third-party libs? Are they Apache License compatible?</li>
 <li>Is the Component on the JIRA ticket set appropriately?</li>
 </ul>
diff --git a/content/doc/3.11/development/ide.html b/content/doc/3.11/development/ide.html
index 8c3bcce..15962fa 100644
--- a/content/doc/3.11/development/ide.html
+++ b/content/doc/3.11/development/ide.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Testing" href="testing.html"/> <link rel="prev" title="Cassandra Development" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Testing" href="testing.html"/> <link rel="prev" title="Cassandra Development" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -167,16 +167,16 @@
 <h2>Building From Source<a class="headerlink" href="#building-from-source" title="Permalink to this headline">¶</a></h2>
 <p>Getting started with Cassandra and IntelliJ IDEA or Eclipse is simple, once you manage to build Cassandra from source using <a class="reference external" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Java 8</a>, <a class="reference external" href="https://git-scm.com/">Git</a> and <a class="reference external" href="http://ant.apache.org/">Ant</a>.</p>
 <p>The source code for Cassandra is shared through the central Apache Git repository and organized by different branches. You can access the code for the current development branch through git as follows:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">clone</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">git</span><span class="o">-</span><span class="n">wip</span><span class="o">-</span><span class="n">us</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">cassandra</span><span class="o">.</span><span class="n">git</span> <span class="n">cassandra</span><span class="o">-</span><span class="n">trunk</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">clone</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">git</span><span class="o">-</span><span class="n">wip</span><span class="o">-</span><span class="n">us</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">cassandra</span><span class="o">.</span><span class="n">git</span> <span class="n">cassandra</span><span class="o">-</span><span class="n">trunk</span>
 </pre></div>
 </div>
 <p>Other branches will point to different versions of Cassandra. Switching to a different branch requires checking out the branch by its name:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">checkout</span> <span class="n">cassandra</span><span class="o">-</span><span class="mf">3.0</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">checkout</span> <span class="n">cassandra</span><span class="o">-</span><span class="mf">3.0</span>
 </pre></div>
 </div>
-<p>You can get a list of available branches with <code class="docutils literal"><span class="pre">git</span> <span class="pre">branch</span></code>.</p>
+<p>You can get a list of available branches with <code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">branch</span></code>.</p>
 <p>Finally build Cassandra using ant:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">ant</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">ant</span>
 </pre></div>
 </div>
 <p>This may take a significant amount of time depending on whether artifacts have to be downloaded and the number of classes that need to be compiled.</p>
@@ -194,19 +194,19 @@
 <p><a class="reference external" href="https://www.jetbrains.com/idea/">IntelliJ IDEA</a> by JetBrains is one of the most popular IDEs for Cassandra and Java development in general. The Community Edition is provided as a free download with all features needed to get started developing Cassandra.</p>
 <div class="section" id="setup-cassandra-as-a-project-c-2-1-and-newer">
 <h3>Setup Cassandra as a Project (C* 2.1 and newer)<a class="headerlink" href="#setup-cassandra-as-a-project-c-2-1-and-newer" title="Permalink to this headline">¶</a></h3>
-<p>Since 2.1.5, there is a new ant target: <code class="docutils literal"><span class="pre">generate-idea-files</span></code>. Please see our <a class="reference external" href="https://wiki.apache.org/cassandra/RunningCassandraInIDEA">wiki</a> for instructions for older Cassandra versions.</p>
+<p>Since 2.1.5, there is a new ant target: <code class="docutils literal notranslate"><span class="pre">generate-idea-files</span></code>. Please see our <a class="reference external" href="https://wiki.apache.org/cassandra/RunningCassandraInIDEA">wiki</a> for instructions for older Cassandra versions.</p>
 <p>Please clone and build Cassandra as described above and execute the following steps:</p>
 <ol class="arabic simple">
 <li>Once Cassandra is built, generate the IDEA files using ant:</li>
 </ol>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">ant</span> <span class="n">generate</span><span class="o">-</span><span class="n">idea</span><span class="o">-</span><span class="n">files</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">ant</span> <span class="n">generate</span><span class="o">-</span><span class="n">idea</span><span class="o">-</span><span class="n">files</span>
 </pre></div>
 </div>
 <ol class="arabic simple" start="2">
 <li>Start IDEA</li>
-<li>Open the IDEA project from the checked out Cassandra directory using the menu item Open in IDEA&#8217;s File menu</li>
+<li>Open the IDEA project from the checked out Cassandra directory using the menu item Open in IDEA’s File menu</li>
 </ol>
-<p>The project generated by the ant task <code class="docutils literal"><span class="pre">generate-idea-files</span></code> contains nearly everything you need to debug Cassandra and execute unit tests.</p>
+<p>The project generated by the ant task <code class="docutils literal notranslate"><span class="pre">generate-idea-files</span></code> contains nearly everything you need to debug Cassandra and execute unit tests.</p>
 <blockquote>
 <div><ul class="simple">
 <li>Run/debug defaults for JUnit</li>
@@ -220,7 +220,7 @@
 </div>
 <div class="section" id="setting-up-cassandra-in-eclipse">
 <h2>Setting up Cassandra in Eclipse<a class="headerlink" href="#setting-up-cassandra-in-eclipse" title="Permalink to this headline">¶</a></h2>
-<p>Eclipse is a popular open source IDE that can be used for Cassandra development. Various Eclipse environments are available from the <a class="reference external" href="https://www.eclipse.org/downloads/eclipse-packages/">download page</a>. The following guide was created with &#8220;Eclipse IDE for Java Developers&#8221;.</p>
+<p>Eclipse is a popular open source IDE that can be used for Cassandra development. Various Eclipse environments are available from the <a class="reference external" href="https://www.eclipse.org/downloads/eclipse-packages/">download page</a>. The following guide was created with “Eclipse IDE for Java Developers”.</p>
 <p>These instructions were tested on Ubuntu 16.04 with Eclipse Neon (4.6) using Cassandra 2.1, 2.2 and 3.x.</p>
 <div class="section" id="project-settings">
 <h3>Project Settings<a class="headerlink" href="#project-settings" title="Permalink to this headline">¶</a></h3>
@@ -228,56 +228,56 @@
 <blockquote>
 <div><ul class="simple">
 <li>Clone and build Cassandra as described above.</li>
-<li>Run <code class="docutils literal"><span class="pre">ant</span> <span class="pre">generate-eclipse-files</span></code> to create the Eclipse settings.</li>
+<li>Run <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">generate-eclipse-files</span></code> to create the Eclipse settings.</li>
 <li>Start Eclipse.</li>
-<li>Select <code class="docutils literal"><span class="pre">File-&gt;Import-&gt;Existing</span> <span class="pre">Projects</span> <span class="pre">into</span> <span class="pre">Workspace-&gt;Select</span> <span class="pre">git</span> <span class="pre">directory</span></code>.</li>
-<li>Make sure &#8220;cassandra-trunk&#8221; is recognized and selected as a project (assuming you checked the code out into the folder cassandra-trunk as described above).</li>
-<li>Confirm &#8220;Finish&#8221; to have your project imported.</li>
+<li>Select <code class="docutils literal notranslate"><span class="pre">File-&gt;Import-&gt;Existing</span> <span class="pre">Projects</span> <span class="pre">into</span> <span class="pre">Workspace-&gt;Select</span> <span class="pre">git</span> <span class="pre">directory</span></code>.</li>
+<li>Make sure “cassandra-trunk” is recognized and selected as a project (assuming you checked the code out into the folder cassandra-trunk as described above).</li>
+<li>Confirm “Finish” to have your project imported.</li>
 </ul>
 </div></blockquote>
-<p>You should now be able to find the project as part of the &#8220;Package Explorer&#8221; or &#8220;Project Explorer&#8221; without having Eclipse complain about any errors after building the project automatically.</p>
+<p>You should now be able to find the project as part of the “Package Explorer” or “Project Explorer” without having Eclipse complain about any errors after building the project automatically.</p>
 </div>
 <div class="section" id="unit-tests">
 <h3>Unit Tests<a class="headerlink" href="#unit-tests" title="Permalink to this headline">¶</a></h3>
-<p>Unit tests can be run from Eclipse by simply right-clicking the class file or method and selecting <code class="docutils literal"><span class="pre">Run</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>. Tests can be debugged this way as well by defining breakpoints (double-click line number) and selecting <code class="docutils literal"><span class="pre">Debug</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>.</p>
+<p>Unit tests can be run from Eclipse by simply right-clicking the class file or method and selecting <code class="docutils literal notranslate"><span class="pre">Run</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>. Tests can be debugged this way as well by defining breakpoints (double-click line number) and selecting <code class="docutils literal notranslate"><span class="pre">Debug</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>.</p>
 <p>Alternatively all unit tests can be run from the command line as described in <a class="reference internal" href="testing.html"><span class="doc">Testing</span></a></p>
 </div>
 <div class="section" id="debugging-cassandra-using-eclipse">
 <h3>Debugging Cassandra Using Eclipse<a class="headerlink" href="#debugging-cassandra-using-eclipse" title="Permalink to this headline">¶</a></h3>
-<p>There are two ways how to start and debug a local Cassandra instance with Eclipse. You can either start Cassandra just as you normally would by using the <code class="docutils literal"><span class="pre">./bin/cassandra</span></code> script and connect to the JVM through <a class="reference external" href="https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/introclientissues005.html">remotely</a> from Eclipse or start Cassandra from Eclipse right away.</p>
+<p>There are two ways how to start and debug a local Cassandra instance with Eclipse. You can either start Cassandra just as you normally would by using the <code class="docutils literal notranslate"><span class="pre">./bin/cassandra</span></code> script and connect to the JVM through <a class="reference external" href="https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/introclientissues005.html">remotely</a> from Eclipse or start Cassandra from Eclipse right away.</p>
 <div class="section" id="starting-cassandra-from-command-line">
 <h4>Starting Cassandra From Command Line<a class="headerlink" href="#starting-cassandra-from-command-line" title="Permalink to this headline">¶</a></h4>
 <blockquote>
 <div><ul class="simple">
 <li>Set environment variable to define remote debugging options for the JVM:
-<code class="docutils literal"><span class="pre">export</span> <span class="pre">JVM_EXTRA_OPTS=&quot;-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414&quot;</span></code></li>
-<li>Start Cassandra by executing the <code class="docutils literal"><span class="pre">./bin/cassandra</span></code></li>
+<code class="docutils literal notranslate"><span class="pre">export</span> <span class="pre">JVM_EXTRA_OPTS=&quot;-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414&quot;</span></code></li>
+<li>Start Cassandra by executing the <code class="docutils literal notranslate"><span class="pre">./bin/cassandra</span></code></li>
 </ul>
 </div></blockquote>
 <p>Afterwards you should be able to connect to the running Cassandra process through the following steps:</p>
-<p>From the menu, select <code class="docutils literal"><span class="pre">Run-&gt;Debug</span> <span class="pre">Configurations..</span></code></p>
+<p>From the menu, select <code class="docutils literal notranslate"><span class="pre">Run-&gt;Debug</span> <span class="pre">Configurations..</span></code></p>
 <img alt="../_images/eclipse_debug0.png" src="../_images/eclipse_debug0.png" />
 <p>Create new remote application</p>
 <img alt="../_images/eclipse_debug1.png" src="../_images/eclipse_debug1.png" />
 <p>Configure connection settings by specifying a name and port 1414</p>
 <img alt="../_images/eclipse_debug2.png" src="../_images/eclipse_debug2.png" />
-<p>Afterwards confirm &#8220;Debug&#8221; to connect to the JVM and start debugging Cassandra!</p>
+<p>Afterwards confirm “Debug” to connect to the JVM and start debugging Cassandra!</p>
 </div>
 <div class="section" id="starting-cassandra-from-eclipse">
 <h4>Starting Cassandra From Eclipse<a class="headerlink" href="#starting-cassandra-from-eclipse" title="Permalink to this headline">¶</a></h4>
-<p>Cassandra can also be started directly from Eclipse if you don&#8217;t want to use the command line.</p>
-<p>From the menu, select <code class="docutils literal"><span class="pre">Run-&gt;Run</span> <span class="pre">Configurations..</span></code></p>
+<p>Cassandra can also be started directly from Eclipse if you don’t want to use the command line.</p>
+<p>From the menu, select <code class="docutils literal notranslate"><span class="pre">Run-&gt;Run</span> <span class="pre">Configurations..</span></code></p>
 <img alt="../_images/eclipse_debug3.png" src="../_images/eclipse_debug3.png" />
 <p>Create new application</p>
 <img alt="../_images/eclipse_debug4.png" src="../_images/eclipse_debug4.png" />
-<p>Specify name, project and main class <code class="docutils literal"><span class="pre">org.apache.cassandra.service.CassandraDaemon</span></code></p>
+<p>Specify name, project and main class <code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.service.CassandraDaemon</span></code></p>
 <img alt="../_images/eclipse_debug5.png" src="../_images/eclipse_debug5.png" />
 <p>Configure additional JVM specific parameters that will start Cassandra with some of the settings created by the regular startup script. Change heap related values as needed.</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="o">-</span><span class="n">Xms1024M</span> <span class="o">-</span><span class="n">Xmx1024M</span> <span class="o">-</span><span class="n">Xmn220M</span> <span class="o">-</span><span class="n">Xss256k</span> <span class="o">-</span><span class="n">ea</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseThreadPriorities</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="n">ThreadPriorityPolicy</span><span class="o">=</span><span class="mi">42</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseParNewGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseConcMarkSweepGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">CMSParallelRemarkEnabled</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseCondCardMark</span> <span class="o">-</span><span class="n">javaagent</span><span class="p">:</span><span class="o">./</span><span class="n">lib</span><span class="o">/</span><span class="n">jamm</span><span class="o">-</span><span class="mf">0.3</span><span class="o">.</span><span class="mf">0.</span><span class="n">jar</span> <span class="o">-</span><span class="n">Djava</span><span class="o">.</span><span class="n">net</span><span class="o">.</span><span class="n">preferIPv4Stack</span><span class="o">=</span><span class="n">true</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="o">-</span><span class="n">Xms1024M</span> <span class="o">-</span><span class="n">Xmx1024M</span> <span class="o">-</span><span class="n">Xmn220M</span> <span class="o">-</span><span class="n">Xss256k</span> <span class="o">-</span><span class="n">ea</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseThreadPriorities</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="n">ThreadPriorityPolicy</span><span class="o">=</span><span class="mi">42</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseParNewGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseConcMarkSweepGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">CMSParallelRemarkEnabled</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseCondCardMark</span> <span class="o">-</span><span class="n">javaagent</span><span class="p">:</span><span class="o">./</span><span class="n">lib</span><span class="o">/</span><span class="n">jamm</span><span class="o">-</span><span class="mf">0.3</span><span class="o">.</span><span class="mf">0.</span><span class="n">jar</span> <span class="o">-</span><span class="n">Djava</span><span class="o">.</span><span class="n">net</span><span class="o">.</span><span class="n">preferIPv4Stack</span><span class="o">=</span><span class="n">true</span>
 </pre></div>
 </div>
 <img alt="../_images/eclipse_debug6.png" src="../_images/eclipse_debug6.png" />
-<p>Now just confirm &#8220;Debug&#8221; and you should see the output of Cassandra starting up in the Eclipse console and should be able to set breakpoints and start debugging!</p>
+<p>Now just confirm “Debug” and you should see the output of Cassandra starting up in the Eclipse console and should be able to set breakpoints and start debugging!</p>
 </div>
 </div>
 </div>
diff --git a/content/doc/3.11/development/index.html b/content/doc/3.11/development/index.html
index 2dc872a..6675086 100644
--- a/content/doc/3.11/development/index.html
+++ b/content/doc/3.11/development/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Building and IDE Integration" href="ide.html"/> <link rel="prev" title="Troubleshooting" href="../troubleshooting/index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Building and IDE Integration" href="ide.html"/> <link rel="prev" title="Troubleshooting" href="../troubleshooting/index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/development/patches.html b/content/doc/3.11/development/patches.html
index bca5347..0bbce90 100644
--- a/content/doc/3.11/development/patches.html
+++ b/content/doc/3.11/development/patches.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Code Style" href="code_style.html"/> <link rel="prev" title="Testing" href="testing.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Code Style" href="code_style.html"/> <link rel="prev" title="Testing" href="testing.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -165,7 +165,7 @@
 <h1>Contributing Code Changes<a class="headerlink" href="#contributing-code-changes" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="choosing-what-to-work-on">
 <h2>Choosing What to Work on<a class="headerlink" href="#choosing-what-to-work-on" title="Permalink to this headline">¶</a></h2>
-<p>Submitted patches can include bug fixes, changes to the Java code base, improvements for tooling (both Java or Python), documentation, testing or any other changes that requires changing the code base. Although the process of contributing code is always the same, the amount of work and time it takes to get a patch accepted also depends on the kind of issue you&#8217;re addressing.</p>
+<p>Submitted patches can include bug fixes, changes to the Java code base, improvements for tooling (both Java or Python), documentation, testing or any other changes that requires changing the code base. Although the process of contributing code is always the same, the amount of work and time it takes to get a patch accepted also depends on the kind of issue you’re addressing.</p>
 <dl class="docutils">
 <dt>As a general rule of thumb:</dt>
 <dd><ul class="first last simple">
@@ -183,12 +183,12 @@
 </div>
 <div class="section" id="before-you-start-coding">
 <h2>Before You Start Coding<a class="headerlink" href="#before-you-start-coding" title="Permalink to this headline">¶</a></h2>
-<p>Although contributions are highly appreciated, we do not guarantee that each contribution will become a part of Cassandra. Therefor it&#8217;s generally a good idea to first get some feedback on the things you plan to work on, especially about any new features or major changes to the code base. You can reach out to other developers on the mailing list or IRC channel listed on our <a class="reference external" href="http://cassandra.apache.org/community/">community page</a>.</p>
+<p>Although contributions are highly appreciated, we do not guarantee that each contribution will become a part of Cassandra. Therefor it’s generally a good idea to first get some feedback on the things you plan to work on, especially about any new features or major changes to the code base. You can reach out to other developers on the mailing list or IRC channel listed on our <a class="reference external" href="http://cassandra.apache.org/community/">community page</a>.</p>
 <dl class="docutils">
 <dt>You should also</dt>
 <dd><ul class="first last simple">
 <li>Avoid redundant work by searching for already reported issues in <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA">JIRA</a></li>
-<li>Create a new issue early in the process describing what you&#8217;re working on - not just after finishing your patch</li>
+<li>Create a new issue early in the process describing what you’re working on - not just after finishing your patch</li>
 <li>Link related JIRA issues with your own ticket to provide a better context</li>
 <li>Update your ticket from time to time by giving feedback on your progress and link a GitHub WIP branch with your current code</li>
 <li>Ping people who you actively like to ask for advice on JIRA by <a class="reference external" href="https://confluence.atlassian.com/conf54/confluence-user-s-guide/sharing-content/using-mentions">mentioning users</a></li>
@@ -232,14 +232,14 @@
 </tr>
 </tbody>
 </table>
-<p>Corresponding branches in git are easy to recognize as they are named <code class="docutils literal"><span class="pre">cassandra-&lt;release&gt;</span></code> (e.g. <code class="docutils literal"><span class="pre">cassandra-3.0</span></code>). The <code class="docutils literal"><span class="pre">trunk</span></code> branch is an exception, as it contains the most recent commits from all other branches and is used for creating new branches for future tick-tock releases.</p>
+<p>Corresponding branches in git are easy to recognize as they are named <code class="docutils literal notranslate"><span class="pre">cassandra-&lt;release&gt;</span></code> (e.g. <code class="docutils literal notranslate"><span class="pre">cassandra-3.0</span></code>). The <code class="docutils literal notranslate"><span class="pre">trunk</span></code> branch is an exception, as it contains the most recent commits from all other branches and is used for creating new branches for future tick-tock releases.</p>
 <div class="section" id="tick-tock-releases">
 <h4>Tick-Tock Releases<a class="headerlink" href="#tick-tock-releases" title="Permalink to this headline">¶</a></h4>
 <p>New releases created as part of the <a class="reference external" href="http://www.planetcassandra.org/blog/cassandra-2-2-3-0-and-beyond/">tick-tock release process</a> will either focus on stability (odd version numbers) or introduce new features (even version numbers). Any code for new Cassandra features you should be based on the latest, unreleased 3.x branch with even version number or based on trunk.</p>
 </div>
 <div class="section" id="bug-fixes">
 <h4>Bug Fixes<a class="headerlink" href="#bug-fixes" title="Permalink to this headline">¶</a></h4>
-<p>Creating patches for bug fixes is a bit more complicated as this will depend on how many different versions of Cassandra are affected. In each case, the order for merging such changes will be <code class="docutils literal"><span class="pre">cassandra-2.1</span></code> -&gt; <code class="docutils literal"><span class="pre">cassandra-2.2</span></code> -&gt; <code class="docutils literal"><span class="pre">cassandra-3.0</span></code> -&gt; <code class="docutils literal"><span class="pre">cassandra-3.x</span></code> -&gt; <code class="docutils literal"><span class="pre">trunk</span></code>. But don&#8217;t worry, merging from 2.1 would be the worst case for bugs that affect all currently supported versions, which isn&#8217;t very common. As a contributor, you&#8217;re also not expected to provide a single patch for each version. What you need to do however is:</p>
+<p>Creating patches for bug fixes is a bit more complicated as this will depend on how many different versions of Cassandra are affected. In each case, the order for merging such changes will be <code class="docutils literal notranslate"><span class="pre">cassandra-2.1</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">cassandra-2.2</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">cassandra-3.0</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">cassandra-3.x</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">trunk</span></code>. But don’t worry, merging from 2.1 would be the worst case for bugs that affect all currently supported versions, which isn’t very common. As a contributor, you’re also not expected to provide a single patch for each version. What you need to do however is:</p>
 <blockquote>
 <div><ul class="simple">
 <li>Be clear about which versions you could verify to be affected by the bug</li>
@@ -254,12 +254,12 @@
 </div>
 <div class="section" id="creating-a-patch">
 <h2>Creating a Patch<a class="headerlink" href="#creating-a-patch" title="Permalink to this headline">¶</a></h2>
-<p>So you&#8217;ve finished coding and the great moment arrives: it&#8217;s time to submit your patch!</p>
+<p>So you’ve finished coding and the great moment arrives: it’s time to submit your patch!</p>
 <blockquote>
 <div><ol class="arabic simple">
-<li>Create a branch for your changes if you haven&#8217;t done already. Many contributors name their branches based on ticket number and Cassandra version, e.g. <code class="docutils literal"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre">-b</span> <span class="pre">12345-3.0</span></code></li>
-<li>Verify that you follow Cassandra&#8217;s <a class="reference internal" href="code_style.html"><span class="doc">Code Style</span></a></li>
-<li>Make sure all tests (including yours) pass using ant as described in <a class="reference internal" href="testing.html"><span class="doc">Testing</span></a>. If you suspect a test failure is unrelated to your change, it may be useful to check the test&#8217;s status by searching the issue tracker or looking at <a class="reference external" href="https://cassci.datastax.com/">CI</a> results for the relevant upstream version.  Note that the full test suites take many hours to complete, so it is common to only run specific relevant tests locally before uploading a patch.  Once a patch has been uploaded, the reviewer or committer can help setup CI jobs to run the full test suites.</li>
+<li>Create a branch for your changes if you haven’t done already. Many contributors name their branches based on ticket number and Cassandra version, e.g. <code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre">-b</span> <span class="pre">12345-3.0</span></code></li>
+<li>Verify that you follow Cassandra’s <a class="reference internal" href="code_style.html"><span class="doc">Code Style</span></a></li>
+<li>Make sure all tests (including yours) pass using ant as described in <a class="reference internal" href="testing.html"><span class="doc">Testing</span></a>. If you suspect a test failure is unrelated to your change, it may be useful to check the test’s status by searching the issue tracker or looking at <a class="reference external" href="https://cassci.datastax.com/">CI</a> results for the relevant upstream version.  Note that the full test suites take many hours to complete, so it is common to only run specific relevant tests locally before uploading a patch.  Once a patch has been uploaded, the reviewer or committer can help setup CI jobs to run the full test suites.</li>
 <li>Consider going through the <a class="reference internal" href="how_to_review.html"><span class="doc">Review Checklist</span></a> for your code. This will help you to understand how others will consider your change for inclusion.</li>
 <li>Don’t make the committer squash commits for you in the root branch either. Multiple commits are fine - and often preferable - during review stage, especially for incremental review, but once +1d, do either:</li>
 </ol>
@@ -270,26 +270,26 @@
 </ol>
 </div></blockquote>
 <ol class="arabic simple" start="6">
-<li>Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch ending with the following statement on the last line: <code class="docutils literal"><span class="pre">patch</span> <span class="pre">by</span> <span class="pre">X;</span> <span class="pre">reviewed</span> <span class="pre">by</span> <span class="pre">Y</span> <span class="pre">for</span> <span class="pre">CASSANDRA-ZZZZZ</span></code></li>
-<li>When you&#8217;re happy with the result, create a patch:</li>
+<li>Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch ending with the following statement on the last line: <code class="docutils literal notranslate"><span class="pre">patch</span> <span class="pre">by</span> <span class="pre">X;</span> <span class="pre">reviewed</span> <span class="pre">by</span> <span class="pre">Y</span> <span class="pre">for</span> <span class="pre">CASSANDRA-ZZZZZ</span></code></li>
+<li>When you’re happy with the result, create a patch:</li>
 </ol>
 <blockquote>
-<div><div class="highlight-none"><div class="highlight"><pre><span></span>git add &lt;any new or modified file&gt;
+<div><div class="highlight-none notranslate"><div class="highlight"><pre><span></span>git add &lt;any new or modified file&gt;
 git commit -m &#39;&lt;message&gt;&#39;
 git format-patch HEAD~1
 mv &lt;patch-file&gt; &lt;ticket-branchname.txt&gt; (e.g. 12345-trunk.txt, 12345-3.0.txt)
 </pre></div>
 </div>
 <p>Alternatively, many contributors prefer to make their branch available on GitHub. In this case, fork the Cassandra repository on GitHub and push your branch:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>git push --set-upstream origin 12345-3.0
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>git push --set-upstream origin 12345-3.0
 </pre></div>
 </div>
 </div></blockquote>
 <ol class="arabic simple" start="8">
 <li>To make life easier for your reviewer/committer, you may want to make sure your patch applies cleanly to later branches and create additional patches/branches for later Cassandra versions to which your original patch does not apply cleanly. That said, this is not critical, and you will receive feedback on your patch regardless.</li>
-<li>Attach the newly generated patch to the ticket/add a link to your branch and click &#8220;Submit Patch&#8221; at the top of the ticket. This will move the ticket into &#8220;Patch Available&#8221; status, indicating that your submission is ready for review.</li>
+<li>Attach the newly generated patch to the ticket/add a link to your branch and click “Submit Patch” at the top of the ticket. This will move the ticket into “Patch Available” status, indicating that your submission is ready for review.</li>
 <li>Wait for other developers or committers to review it and hopefully +1 the ticket (see <a class="reference internal" href="how_to_review.html"><span class="doc">Review Checklist</span></a>). If your change does not receive a +1, do not be discouraged. If possible, the reviewer will give suggestions to improve your patch or explain why it is not suitable.</li>
-<li>If the reviewer has given feedback to improve the patch, make the necessary changes and move the ticket into &#8220;Patch Available&#8221; once again.</li>
+<li>If the reviewer has given feedback to improve the patch, make the necessary changes and move the ticket into “Patch Available” once again.</li>
 </ol>
 </div></blockquote>
 <p>Once the review process is complete, you will receive a +1. Wait for a committer to commit it. Do not delete your branches immediately after they’ve been committed - keep them on GitHub for a while. Alternatively, attach a patch to JIRA for historical record. It’s not that uncommon for a committer to mess up a merge. In case of that happening, access to the original code is required, or else you’ll have to redo some of the work.</p>
diff --git a/content/doc/3.11/development/testing.html b/content/doc/3.11/development/testing.html
index e82482b..4150a8e 100644
--- a/content/doc/3.11/development/testing.html
+++ b/content/doc/3.11/development/testing.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Contributing Code Changes" href="patches.html"/> <link rel="prev" title="Building and IDE Integration" href="ide.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Contributing Code Changes" href="patches.html"/> <link rel="prev" title="Building and IDE Integration" href="ide.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -163,43 +163,43 @@
           
   <div class="section" id="testing">
 <h1>Testing<a class="headerlink" href="#testing" title="Permalink to this headline">¶</a></h1>
-<p>Creating tests is one of the most important and also most difficult parts of developing Cassandra. There are different ways to test your code depending on what you&#8217;re working on.</p>
+<p>Creating tests is one of the most important and also most difficult parts of developing Cassandra. There are different ways to test your code depending on what you’re working on.</p>
 <div class="section" id="unit-testing">
 <h2>Unit Testing<a class="headerlink" href="#unit-testing" title="Permalink to this headline">¶</a></h2>
-<p>The most simple way to test code in Cassandra is probably by writing a unit test. Cassandra uses JUnit as a testing framework and test cases can be found in the <code class="docutils literal"><span class="pre">test/unit</span></code> directory. Ideally you’d be able to create a unit test for your implementation that would exclusively cover the class you created (the unit under test). Unfortunately this is not always possible and Cassandra doesn’t have a very mock friendly code base. Often you’ll find yourself in a situation where you have to make use of an embedded Cassandra instance that you’ll be able to interact with in your test. If you want to make use of CQL in your test, you can simply extend CQLTester and use some of the convenient helper methods such as in the following example.</p>
-<div class="highlight-java"><div class="highlight"><pre><span></span><span class="nd">@Test</span>
-<span class="kd">public</span> <span class="kt">void</span> <span class="nf">testBatchAndList</span><span class="o">()</span> <span class="kd">throws</span> <span class="n">Throwable</span>
-<span class="o">{</span>
-   <span class="n">createTable</span><span class="o">(</span><span class="s">&quot;CREATE TABLE %s (k int PRIMARY KEY, l list&lt;int&gt;)&quot;</span><span class="o">);</span>
-   <span class="n">execute</span><span class="o">(</span><span class="s">&quot;BEGIN BATCH &quot;</span> <span class="o">+</span>
+<p>The most simple way to test code in Cassandra is probably by writing a unit test. Cassandra uses JUnit as a testing framework and test cases can be found in the <code class="docutils literal notranslate"><span class="pre">test/unit</span></code> directory. Ideally you’d be able to create a unit test for your implementation that would exclusively cover the class you created (the unit under test). Unfortunately this is not always possible and Cassandra doesn’t have a very mock friendly code base. Often you’ll find yourself in a situation where you have to make use of an embedded Cassandra instance that you’ll be able to interact with in your test. If you want to make use of CQL in your test, you can simply extend CQLTester and use some of the convenient helper methods such as in the following example.</p>
+<div class="highlight-java notranslate"><div class="highlight"><pre><span></span><span class="nd">@Test</span>
+<span class="kd">public</span> <span class="kt">void</span> <span class="nf">testBatchAndList</span><span class="p">()</span> <span class="kd">throws</span> <span class="n">Throwable</span>
+<span class="p">{</span>
+   <span class="n">createTable</span><span class="p">(</span><span class="s">&quot;CREATE TABLE %s (k int PRIMARY KEY, l list&lt;int&gt;)&quot;</span><span class="p">);</span>
+   <span class="n">execute</span><span class="p">(</span><span class="s">&quot;BEGIN BATCH &quot;</span> <span class="o">+</span>
            <span class="s">&quot;UPDATE %1$s SET l = l +[ 1 ] WHERE k = 0; &quot;</span> <span class="o">+</span>
            <span class="s">&quot;UPDATE %1$s SET l = l + [ 2 ] WHERE k = 0; &quot;</span> <span class="o">+</span>
            <span class="s">&quot;UPDATE %1$s SET l = l + [ 3 ] WHERE k = 0; &quot;</span> <span class="o">+</span>
-           <span class="s">&quot;APPLY BATCH&quot;</span><span class="o">);</span>
+           <span class="s">&quot;APPLY BATCH&quot;</span><span class="p">);</span>
 
-   <span class="n">assertRows</span><span class="o">(</span><span class="n">execute</span><span class="o">(</span><span class="s">&quot;SELECT l FROM %s WHERE k = 0&quot;</span><span class="o">),</span>
-              <span class="n">row</span><span class="o">(</span><span class="n">list</span><span class="o">(</span><span class="mi">1</span><span class="o">,</span> <span class="mi">2</span><span class="o">,</span> <span class="mi">3</span><span class="o">)));</span>
-<span class="o">}</span>
+   <span class="n">assertRows</span><span class="p">(</span><span class="n">execute</span><span class="p">(</span><span class="s">&quot;SELECT l FROM %s WHERE k = 0&quot;</span><span class="p">),</span>
+              <span class="n">row</span><span class="p">(</span><span class="n">list</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">3</span><span class="p">)));</span>
+<span class="p">}</span>
 </pre></div>
 </div>
-<p>Unit tests can be run from the command line using the <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test</span></code> command, <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test</span> <span class="pre">-Dtest.name=&lt;simple_classname&gt;</span></code> to execute a test suite or <code class="docutils literal"><span class="pre">ant</span> <span class="pre">testsome</span> <span class="pre">-Dtest.name=&lt;FQCN&gt;</span> <span class="pre">-Dtest.methods=&lt;testmethod1&gt;[,testmethod2]</span></code> for individual tests.  For example, to run all test methods in the <code class="docutils literal"><span class="pre">org.apache.cassandra.cql3.SimpleQueryTest</span></code> class, you would run:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ant test -Dtest.name=SimpleQueryTest
+<p>Unit tests can be run from the command line using the <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test</span></code> command, <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test</span> <span class="pre">-Dtest.name=&lt;simple_classname&gt;</span></code> to execute a test suite or <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">testsome</span> <span class="pre">-Dtest.name=&lt;FQCN&gt;</span> <span class="pre">-Dtest.methods=&lt;testmethod1&gt;[,testmethod2]</span></code> for individual tests.  For example, to run all test methods in the <code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.cql3.SimpleQueryTest</span></code> class, you would run:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ant test -Dtest.name=SimpleQueryTest
 </pre></div>
 </div>
-<p>To run only the <code class="docutils literal"><span class="pre">testStaticCompactTables()</span></code> test method from that class, you would run:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ant testsome -Dtest.name=org.apache.cassandra.cql3.SimpleQueryTest -Dtest.methods=testStaticCompactTables
+<p>To run only the <code class="docutils literal notranslate"><span class="pre">testStaticCompactTables()</span></code> test method from that class, you would run:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ant testsome -Dtest.name=org.apache.cassandra.cql3.SimpleQueryTest -Dtest.methods=testStaticCompactTables
 </pre></div>
 </div>
 <div class="section" id="long-running-tests">
 <h3>Long running tests<a class="headerlink" href="#long-running-tests" title="Permalink to this headline">¶</a></h3>
-<p>Test that consume a significant amount of time during execution can be found in the <code class="docutils literal"><span class="pre">test/long</span></code> directory and executed as a regular JUnit test or standalone program. Except for the execution time, there’s nothing really special about them. However, ant will execute tests under <code class="docutils literal"><span class="pre">test/long</span></code> only when using the <code class="docutils literal"><span class="pre">ant</span> <span class="pre">long-test</span></code> target.</p>
+<p>Test that consume a significant amount of time during execution can be found in the <code class="docutils literal notranslate"><span class="pre">test/long</span></code> directory and executed as a regular JUnit test or standalone program. Except for the execution time, there’s nothing really special about them. However, ant will execute tests under <code class="docutils literal notranslate"><span class="pre">test/long</span></code> only when using the <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">long-test</span></code> target.</p>
 </div>
 </div>
 <div class="section" id="dtests">
 <h2>DTests<a class="headerlink" href="#dtests" title="Permalink to this headline">¶</a></h2>
-<p>One way of doing integration or system testing at larger scale is by using <a class="reference external" href="https://github.com/riptano/cassandra-dtest">dtest</a>, which stands for “Cassandra Distributed Tests”. The idea is to automatically setup Cassandra clusters using various configurations and simulate certain use cases you want to test. This is done using Python scripts and <code class="docutils literal"><span class="pre">ccmlib</span></code> from the <a class="reference external" href="https://github.com/pcmanus/ccm">ccm</a> project. Dtests will setup clusters using this library just as you do running ad-hoc <code class="docutils literal"><span class="pre">ccm</span></code> commands on your local machine. Afterwards dtests will use the <a class="reference external" href="http://datastax.github.io/python-driver/installation.html">Python driver</a> to interact with the nodes, manipulate the file system, analyze logs or mess with individual nodes.</p>
+<p>One way of doing integration or system testing at larger scale is by using <a class="reference external" href="https://github.com/riptano/cassandra-dtest">dtest</a>, which stands for “Cassandra Distributed Tests”. The idea is to automatically setup Cassandra clusters using various configurations and simulate certain use cases you want to test. This is done using Python scripts and <code class="docutils literal notranslate"><span class="pre">ccmlib</span></code> from the <a class="reference external" href="https://github.com/pcmanus/ccm">ccm</a> project. Dtests will setup clusters using this library just as you do running ad-hoc <code class="docutils literal notranslate"><span class="pre">ccm</span></code> commands on your local machine. Afterwards dtests will use the <a class="reference external" href="http://datastax.github.io/python-driver/installation.html">Python driver</a> to interact with the nodes, manipulate the file system, analyze logs or mess with individual nodes.</p>
 <p>Using dtests helps us to prevent regression bugs by continually executing tests on the <a class="reference external" href="http://cassci.datastax.com/">CI server</a> against new patches. For frequent contributors, this Jenkins is set up to build branches from their GitHub repositories. It is likely that your reviewer will use this Jenkins instance to run tests for your patch. Read more on the motivation behind the CI server <a class="reference external" href="http://www.datastax.com/dev/blog/cassandra-testing-improvements-for-developer-convenience-and-confidence">here</a>.</p>
-<p>The best way to learn how to write dtests is probably by reading the introduction &#8220;<a class="reference external" href="http://www.datastax.com/dev/blog/how-to-write-a-dtest">How to Write a Dtest</a>&#8221; and by looking at existing, recently updated tests in the project. New tests must follow certain <a class="reference external" href="https://github.com/riptano/cassandra-dtest/blob/master/CONTRIBUTING.md">style conventions</a> that are being checked before accepting contributions. In contrast to Cassandra, dtest issues and pull-requests are managed on github, therefor you should make sure to link any created dtests in your Cassandra ticket and also refer to the ticket number in your dtest PR.</p>
+<p>The best way to learn how to write dtests is probably by reading the introduction “<a class="reference external" href="http://www.datastax.com/dev/blog/how-to-write-a-dtest">How to Write a Dtest</a>” and by looking at existing, recently updated tests in the project. New tests must follow certain <a class="reference external" href="https://github.com/riptano/cassandra-dtest/blob/master/CONTRIBUTING.md">style conventions</a> that are being checked before accepting contributions. In contrast to Cassandra, dtest issues and pull-requests are managed on github, therefor you should make sure to link any created dtests in your Cassandra ticket and also refer to the ticket number in your dtest PR.</p>
 <p>Creating a good dtest can be tough, but it should not prevent you from submitting patches! Please ask in the corresponding JIRA ticket how to write a good dtest for the patch. In most cases a reviewer or committer will able to support you, and in some cases they may offer to write a dtest for you.</p>
 </div>
 <div class="section" id="performance-testing">
@@ -215,7 +215,7 @@
 </div>
 <div class="section" id="circleci">
 <h3>CircleCI<a class="headerlink" href="#circleci" title="Permalink to this headline">¶</a></h3>
-<p>Cassandra ships with a default <a class="reference external" href="https://circleci.com">CircleCI</a> configuration, to enable running tests on your branches, you need to go the CircleCI website, click &#8220;Login&#8221; and log in with your github account. Then you need to give CircleCI permission to watch your repositories. Once you have done that, you can optionally configure CircleCI to run tests in parallel - click &#8220;Projects&#8221;, then your github account and then click the settings for the project. If you leave the parallelism at 1 for Cassandra, only <code class="docutils literal"><span class="pre">ant</span> <span class="pre">eclipse-warnings</span></code> and <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test</span></code> will be run. If you up the parallelism to 4, it also runs <code class="docutils literal"><span class="pre">ant</span> <span class="pre">long-test</span></code>, <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test-compression</span></code> and <code class="docutils literal"><span class="pre">ant</span> <span class="pre">stress-test</span></code></p>
+<p>Cassandra ships with a default <a class="reference external" href="https://circleci.com">CircleCI</a> configuration, to enable running tests on your branches, you need to go the CircleCI website, click “Login” and log in with your github account. Then you need to give CircleCI permission to watch your repositories. Once you have done that, you can optionally configure CircleCI to run tests in parallel - click “Projects”, then your github account and then click the settings for the project. If you leave the parallelism at 1 for Cassandra, only <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">eclipse-warnings</span></code> and <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test</span></code> will be run. If you up the parallelism to 4, it also runs <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">long-test</span></code>, <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test-compression</span></code> and <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">stress-test</span></code></p>
 </div>
 </div>
 </div>
diff --git a/content/doc/3.11/faq/index.html b/content/doc/3.11/faq/index.html
index 68c405c..cc3a4cf 100644
--- a/content/doc/3.11/faq/index.html
+++ b/content/doc/3.11/faq/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Reporting Bugs and Contributing" href="../bugs.html"/> <link rel="prev" title="How-to Commit" href="../development/how_to_commit.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Reporting Bugs and Contributing" href="../bugs.html"/> <link rel="prev" title="How-to Commit" href="../development/how_to_commit.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -132,25 +132,25 @@
 <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 current"><a class="current reference internal" href="#">Frequently Asked Questions</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses">Why can&#8217;t I set <code class="docutils literal"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses">Why can’t I set <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-ports-does-cassandra-use">What ports does Cassandra use?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-happens-to-existing-data-in-my-cluster-when-i-add-new-nodes">What happens to existing data in my cluster when I add new nodes?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#i-delete-data-from-cassandra-but-disk-usage-stays-the-same-what-gives">I delete data from Cassandra, but disk usage stays the same. What gives?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring">Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#can-i-change-the-replication-factor-a-a-keyspace-on-a-live-cluster">Can I change the replication factor (a a keyspace) on a live cluster?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#can-i-store-large-blobs-in-cassandra">Can I Store (large) BLOBs in Cassandra?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives">Nodetool says &#8220;Connection refused to host: 127.0.1.1&#8221; for any remote host. What gives?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives">Nodetool says “Connection refused to host: 127.0.1.1” for any remote host. What gives?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#will-batching-my-operations-speed-up-my-bulk-load">Will batching my operations speed up my bulk load?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#on-rhel-nodes-are-unable-to-join-the-ring">On RHEL nodes are unable to join the ring</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#how-do-i-unsubscribe-from-the-email-list">How do I unsubscribe from the email list?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#why-does-top-report-that-cassandra-is-using-a-lot-more-memory-than-the-java-heap-max">Why does top report that Cassandra is using a lot more memory than the Java heap max?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-are-seeds">What are seeds?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#does-single-seed-mean-single-point-of-failure">Does single seed mean single point of failure?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-call-jmx-method-x-on-jconsole">Why can&#8217;t I call jmx method X on jconsole?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#why-do-i-see-messages-dropped-in-the-logs">Why do I see &#8221;... messages dropped ...&#8221; in the logs?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed">Cassandra dies with <code class="docutils literal"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code></a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-call-jmx-method-x-on-jconsole">Why can’t I call jmx method X on jconsole?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-do-i-see-messages-dropped-in-the-logs">Why do I see “… messages dropped …” in the logs?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed">Cassandra dies with <code class="docutils literal notranslate"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code></a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-happens-if-two-updates-are-made-with-the-same-timestamp">What happens if two updates are made with the same timestamp?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error">Why bootstrapping a new node fails with a &#8220;Stream failed&#8221; error?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error">Why bootstrapping a new node fails with a “Stream failed” error?</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../bugs.html">Reporting Bugs and Contributing</a></li>
@@ -170,32 +170,32 @@
   <div class="section" id="frequently-asked-questions">
 <h1>Frequently Asked Questions<a class="headerlink" href="#frequently-asked-questions" title="Permalink to this headline">¶</a></h1>
 <ul class="simple">
-<li><a class="reference internal" href="#why-cant-list-all"><span class="std std-ref">Why can&#8217;t I set listen_address to listen on 0.0.0.0 (all my addresses)?</span></a></li>
+<li><a class="reference internal" href="#why-cant-list-all"><span class="std std-ref">Why can’t I set listen_address to listen on 0.0.0.0 (all my addresses)?</span></a></li>
 <li><a class="reference internal" href="#what-ports"><span class="std std-ref">What ports does Cassandra use?</span></a></li>
 <li><a class="reference internal" href="#what-happens-on-joins"><span class="std std-ref">What happens to existing data in my cluster when I add new nodes?</span></a></li>
 <li><a class="reference internal" href="#asynch-deletes"><span class="std std-ref">I delete data from Cassandra, but disk usage stays the same. What gives?</span></a></li>
 <li><a class="reference internal" href="#one-entry-ring"><span class="std std-ref">Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?</span></a></li>
 <li><a class="reference internal" href="#can-large-blob"><span class="std std-ref">Can I Store (large) BLOBs in Cassandra?</span></a></li>
-<li><a class="reference internal" href="#nodetool-connection-refused"><span class="std std-ref">Nodetool says &#8220;Connection refused to host: 127.0.1.1&#8221; for any remote host. What gives?</span></a></li>
+<li><a class="reference internal" href="#nodetool-connection-refused"><span class="std std-ref">Nodetool says “Connection refused to host: 127.0.1.1” for any remote host. What gives?</span></a></li>
 <li><a class="reference internal" href="#to-batch-or-not-to-batch"><span class="std std-ref">Will batching my operations speed up my bulk load?</span></a></li>
 <li><a class="reference internal" href="#selinux"><span class="std std-ref">On RHEL nodes are unable to join the ring</span></a></li>
 <li><a class="reference internal" href="#how-to-unsubscribe"><span class="std std-ref">How do I unsubscribe from the email list?</span></a></li>
 <li><a class="reference internal" href="#cassandra-eats-all-my-memory"><span class="std std-ref">Why does top report that Cassandra is using a lot more memory than the Java heap max?</span></a></li>
 <li><a class="reference internal" href="#what-are-seeds"><span class="std std-ref">What are seeds?</span></a></li>
 <li><a class="reference internal" href="#are-seeds-spof"><span class="std std-ref">Does single seed mean single point of failure?</span></a></li>
-<li><a class="reference internal" href="#why-message-dropped"><span class="std std-ref">Why do I see &#8221;... messages dropped ...&#8221; in the logs?</span></a></li>
+<li><a class="reference internal" href="#why-message-dropped"><span class="std std-ref">Why do I see “… messages dropped …” in the logs?</span></a></li>
 <li><a class="reference internal" href="#oom-map-failed"><span class="std std-ref">Cassandra dies with java.lang.OutOfMemoryError: Map failed</span></a></li>
 <li><a class="reference internal" href="#what-on-same-timestamp-update"><span class="std std-ref">What happens if two updates are made with the same timestamp?</span></a></li>
-<li><a class="reference internal" href="#why-bootstrapping-stream-error"><span class="std std-ref">Why bootstrapping a new node fails with a &#8220;Stream failed&#8221; error?</span></a></li>
+<li><a class="reference internal" href="#why-bootstrapping-stream-error"><span class="std std-ref">Why bootstrapping a new node fails with a “Stream failed” error?</span></a></li>
 </ul>
 <div class="section" id="why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses">
-<span id="why-cant-list-all"></span><h2>Why can&#8217;t I set <code class="docutils literal"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?<a class="headerlink" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra is a gossip-based distributed system and <code class="docutils literal"><span class="pre">listen_address</span></code> is the address a node tells other nodes to reach
-it at. Telling other nodes &#8220;contact me on any of my addresses&#8221; is a bad idea; if different nodes in the cluster pick
+<span id="why-cant-list-all"></span><h2>Why can’t I set <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?<a class="headerlink" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses" title="Permalink to this headline">¶</a></h2>
+<p>Cassandra is a gossip-based distributed system and <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> is the address a node tells other nodes to reach
+it at. Telling other nodes “contact me on any of my addresses” is a bad idea; if different nodes in the cluster pick
 different addresses for you, Bad Things happen.</p>
-<p>If you don&#8217;t want to manually specify an IP to <code class="docutils literal"><span class="pre">listen_address</span></code> for each node in your cluster (understandable!), leave
-it blank and Cassandra will use <code class="docutils literal"><span class="pre">InetAddress.getLocalHost()</span></code> to pick an address. Then it&#8217;s up to you or your ops team
-to make things resolve correctly (<code class="docutils literal"><span class="pre">/etc/hosts/</span></code>, dns, etc).</p>
+<p>If you don’t want to manually specify an IP to <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> for each node in your cluster (understandable!), leave
+it blank and Cassandra will use <code class="docutils literal notranslate"><span class="pre">InetAddress.getLocalHost()</span></code> to pick an address. Then it’s up to you or your ops team
+to make things resolve correctly (<code class="docutils literal notranslate"><span class="pre">/etc/hosts/</span></code>, dns, etc).</p>
 <p>One exception to this process is JMX, which by default binds to 0.0.0.0 (Java bug 6425769).</p>
 <p>See <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-256">CASSANDRA-256</a> and <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-43">CASSANDRA-43</a> for more gory details.</p>
 </div>
@@ -203,7 +203,7 @@
 <span id="what-ports"></span><h2>What ports does Cassandra use?<a class="headerlink" href="#what-ports-does-cassandra-use" title="Permalink to this headline">¶</a></h2>
 <p>By default, Cassandra uses 7000 for cluster communication (7001 if SSL is enabled),  9042 for native protocol clients,
 and 7199 for JMX (and 9160 for the deprecated Thrift interface). The internode communication and native protocol ports
-are configurable in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>. The JMX port is configurable in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> (through JVM
+are configurable in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>. The JMX port is configurable in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> (through JVM
 options). All ports are TCP.</p>
 </div>
 <div class="section" id="what-happens-to-existing-data-in-my-cluster-when-i-add-new-nodes">
@@ -213,14 +213,14 @@
 </div>
 <div class="section" id="i-delete-data-from-cassandra-but-disk-usage-stays-the-same-what-gives">
 <span id="asynch-deletes"></span><h2>I delete data from Cassandra, but disk usage stays the same. What gives?<a class="headerlink" href="#i-delete-data-from-cassandra-but-disk-usage-stays-the-same-what-gives" title="Permalink to this headline">¶</a></h2>
-<p>Data you write to Cassandra gets persisted to SSTables. Since SSTables are immutable, the data can&#8217;t actually be removed
-when you perform a delete, instead, a marker (also called a &#8220;tombstone&#8221;) is written to indicate the value&#8217;s new status.
+<p>Data you write to Cassandra gets persisted to SSTables. Since SSTables are immutable, the data can’t actually be removed
+when you perform a delete, instead, a marker (also called a “tombstone”) is written to indicate the value’s new status.
 Never fear though, on the first compaction that occurs between the data and the tombstone, the data will be expunged
 completely and the corresponding disk space recovered. See <a class="reference internal" href="../operating/compaction.html#compaction"><span class="std std-ref">Compaction</span></a> for more detail.</p>
 </div>
 <div class="section" id="why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring">
 <span id="one-entry-ring"></span><h2>Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?<a class="headerlink" href="#why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring" title="Permalink to this headline">¶</a></h2>
-<p>This happens when you have the same token assigned to each node. Don&#8217;t do that.</p>
+<p>This happens when you have the same token assigned to each node. Don’t do that.</p>
 <p>Most often this bites people who deploy by installing Cassandra on a VM (especially when using the Debian package, which
 auto-starts Cassandra after installation, thus generating and saving a token), then cloning that VM to other nodes.</p>
 <p>The easiest fix is to wipe the data and commitlog directories, thus making sure that each node will generate a random
@@ -231,35 +231,35 @@
 <p>Yes, but it will require running repair (or cleanup) to change the replica count of existing data:</p>
 <ul class="simple">
 <li><a class="reference internal" href="../cql/ddl.html#alter-keyspace-statement"><span class="std std-ref">Alter</span></a> the replication factor for desired keyspace (using cqlsh for instance).</li>
-<li>If you&#8217;re reducing the replication factor, run <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the cluster to remove surplus replicated data.
+<li>If you’re reducing the replication factor, run <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the cluster to remove surplus replicated data.
 Cleanup runs on a per-node basis.</li>
-<li>If you&#8217;re increasing the replication factor, run <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">repair</span></code> to ensure data is replicated according to the new
+<li>If you’re increasing the replication factor, run <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">repair</span></code> to ensure data is replicated according to the new
 configuration. Repair runs on a per-replica set basis. This is an intensive process that may result in adverse cluster
-performance. It&#8217;s highly recommended to do rolling repairs, as an attempt to repair the entire cluster at once will
+performance. It’s highly recommended to do rolling repairs, as an attempt to repair the entire cluster at once will
 most likely swamp it.</li>
 </ul>
 </div>
 <div class="section" id="can-i-store-large-blobs-in-cassandra">
 <span id="can-large-blob"></span><h2>Can I Store (large) BLOBs in Cassandra?<a class="headerlink" href="#can-i-store-large-blobs-in-cassandra" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra isn&#8217;t optimized for large file or BLOB storage and a single <code class="docutils literal"><span class="pre">blob</span></code> value is always read and send to the
+<p>Cassandra isn’t optimized for large file or BLOB storage and a single <code class="docutils literal notranslate"><span class="pre">blob</span></code> value is always read and send to the
 client entirely. As such, storing small blobs (less than single digit MB) should not be a problem, but it is advised to
 manually split large blobs into smaller chunks.</p>
 <p>Please note in particular that by default, any value greater than 16MB will be rejected by Cassandra due the
-<code class="docutils literal"><span class="pre">max_mutation_size_in_kb</span></code> configuration of the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a> file (which default to half of
-<code class="docutils literal"><span class="pre">commitlog_segment_size_in_mb</span></code>, which itself default to 32MB).</p>
+<code class="docutils literal notranslate"><span class="pre">max_mutation_size_in_kb</span></code> configuration of the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a> file (which default to half of
+<code class="docutils literal notranslate"><span class="pre">commitlog_segment_size_in_mb</span></code>, which itself default to 32MB).</p>
 </div>
 <div class="section" id="nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives">
-<span id="nodetool-connection-refused"></span><h2>Nodetool says &#8220;Connection refused to host: 127.0.1.1&#8221; for any remote host. What gives?<a class="headerlink" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives" title="Permalink to this headline">¶</a></h2>
+<span id="nodetool-connection-refused"></span><h2>Nodetool says “Connection refused to host: 127.0.1.1” for any remote host. What gives?<a class="headerlink" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives" title="Permalink to this headline">¶</a></h2>
 <p>Nodetool relies on JMX, which in turn relies on RMI, which in turn sets up its own listeners and connectors as needed on
 each end of the exchange. Normally all of this happens behind the scenes transparently, but incorrect name resolution
 for either the host connecting, or the one being connected to, can result in crossed wires and confusing exceptions.</p>
-<p>If you are not using DNS, then make sure that your <code class="docutils literal"><span class="pre">/etc/hosts</span></code> files are accurate on both ends. If that fails, try
-setting the <code class="docutils literal"><span class="pre">-Djava.rmi.server.hostname=&lt;public</span> <span class="pre">name&gt;</span></code> JVM option near the bottom of <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> to an
+<p>If you are not using DNS, then make sure that your <code class="docutils literal notranslate"><span class="pre">/etc/hosts</span></code> files are accurate on both ends. If that fails, try
+setting the <code class="docutils literal notranslate"><span class="pre">-Djava.rmi.server.hostname=&lt;public</span> <span class="pre">name&gt;</span></code> JVM option near the bottom of <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> to an
 interface that you can reach from the remote machine.</p>
 </div>
 <div class="section" id="will-batching-my-operations-speed-up-my-bulk-load">
 <span id="to-batch-or-not-to-batch"></span><h2>Will batching my operations speed up my bulk load?<a class="headerlink" href="#will-batching-my-operations-speed-up-my-bulk-load" title="Permalink to this headline">¶</a></h2>
-<p>No. Using batches to load data will generally just add &#8220;spikes&#8221; of latency. Use asynchronous INSERTs instead, or use
+<p>No. Using batches to load data will generally just add “spikes” of latency. Use asynchronous INSERTs instead, or use
 true <a class="reference internal" href="../operating/bulk_loading.html#bulk-loading"><span class="std std-ref">Bulk Loading</span></a>.</p>
 <p>An exception is batching updates to a single partition, which can be a Good Thing (as long as the size of a single batch
 stay reasonable). But never ever blindly batch everything!</p>
@@ -270,22 +270,22 @@
 </div>
 <div class="section" id="how-do-i-unsubscribe-from-the-email-list">
 <span id="how-to-unsubscribe"></span><h2>How do I unsubscribe from the email list?<a class="headerlink" href="#how-do-i-unsubscribe-from-the-email-list" title="Permalink to this headline">¶</a></h2>
-<p>Send an email to <code class="docutils literal"><span class="pre">user-unsubscribe&#64;cassandra.apache.org</span></code>.</p>
+<p>Send an email to <code class="docutils literal notranslate"><span class="pre">user-unsubscribe&#64;cassandra.apache.org</span></code>.</p>
 </div>
 <div class="section" id="why-does-top-report-that-cassandra-is-using-a-lot-more-memory-than-the-java-heap-max">
 <span id="cassandra-eats-all-my-memory"></span><h2>Why does top report that Cassandra is using a lot more memory than the Java heap max?<a class="headerlink" href="#why-does-top-report-that-cassandra-is-using-a-lot-more-memory-than-the-java-heap-max" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra uses <a class="reference external" href="https://en.wikipedia.org/wiki/Memory-mapped_file">Memory Mapped Files</a> (mmap) internally. That is, we
-use the operating system&#8217;s virtual memory system to map a number of on-disk files into the Cassandra process&#8217; address
-space. This will &#8220;use&#8221; virtual memory; i.e. address space, and will be reported by tools like top accordingly, but on 64
+use the operating system’s virtual memory system to map a number of on-disk files into the Cassandra process’ address
+space. This will “use” virtual memory; i.e. address space, and will be reported by tools like top accordingly, but on 64
 bit systems virtual address space is effectively unlimited so you should not worry about that.</p>
-<p>What matters from the perspective of &#8220;memory use&#8221; in the sense as it is normally meant, is the amount of data allocated
-on brk() or mmap&#8217;d /dev/zero, which represent real memory used. The key issue is that for a mmap&#8217;d file, there is never
+<p>What matters from the perspective of “memory use” in the sense as it is normally meant, is the amount of data allocated
+on brk() or mmap’d /dev/zero, which represent real memory used. The key issue is that for a mmap’d file, there is never
 a need to retain the data resident in physical memory. Thus, whatever you do keep resident in physical memory is
 essentially just there as a cache, in the same way as normal I/O will cause the kernel page cache to retain data that
 you read/write.</p>
 <p>The difference between normal I/O and mmap() is that in the mmap() case the memory is actually mapped to the process,
 thus affecting the virtual size as reported by top. The main argument for using mmap() instead of standard I/O is the
-fact that reading entails just touching memory - in the case of the memory being resident, you just read it - you don&#8217;t
+fact that reading entails just touching memory - in the case of the memory being resident, you just read it - you don’t
 even take a page fault (so no overhead in entering the kernel and doing a semi-context switch). This is covered in more
 detail <a class="reference external" href="http://www.varnish-cache.org/trac/wiki/ArchitectNotes">here</a>.</p>
 </div>
@@ -297,7 +297,7 @@
 Gossip network. With seeds, each node can detect status changes of other nodes quickly.</p>
 <p>Seeds are also referred by new nodes on bootstrap to learn other nodes in ring. When you add a new node to ring, you
 need to specify at least one live seed to contact. Once a node join the ring, it learns about the other nodes, so it
-doesn&#8217;t need seed on subsequent boot.</p>
+doesn’t need seed on subsequent boot.</p>
 <p>You can make a seed a node at any time. There is nothing special about seed nodes. If you list the node in seed list it
 is a seed</p>
 <p>Seeds do not auto bootstrap (i.e. if a node has itself in its seed list it will not automatically transfer data to itself)
@@ -315,16 +315,16 @@
 recommended to configure multiple seeds in production system.</p>
 </div>
 <div class="section" id="why-can-t-i-call-jmx-method-x-on-jconsole">
-<span id="cant-call-jmx-method"></span><h2>Why can&#8217;t I call jmx method X on jconsole?<a class="headerlink" href="#why-can-t-i-call-jmx-method-x-on-jconsole" title="Permalink to this headline">¶</a></h2>
-<p>Some of JMX operations use array argument and as jconsole doesn&#8217;t support array argument, those operations can&#8217;t be
+<span id="cant-call-jmx-method"></span><h2>Why can’t I call jmx method X on jconsole?<a class="headerlink" href="#why-can-t-i-call-jmx-method-x-on-jconsole" title="Permalink to this headline">¶</a></h2>
+<p>Some of JMX operations use array argument and as jconsole doesn’t support array argument, those operations can’t be
 called with jconsole (the buttons are inactive for them). You need to write a JMX client to call such operations or need
 array-capable JMX monitoring tool.</p>
 </div>
 <div class="section" id="why-do-i-see-messages-dropped-in-the-logs">
-<span id="why-message-dropped"></span><h2>Why do I see &#8221;... messages dropped ...&#8221; in the logs?<a class="headerlink" href="#why-do-i-see-messages-dropped-in-the-logs" title="Permalink to this headline">¶</a></h2>
-<p>This is a symptom of load shedding &#8211; Cassandra defending itself against more requests than it can handle.</p>
+<span id="why-message-dropped"></span><h2>Why do I see “… messages dropped …” in the logs?<a class="headerlink" href="#why-do-i-see-messages-dropped-in-the-logs" title="Permalink to this headline">¶</a></h2>
+<p>This is a symptom of load shedding – Cassandra defending itself against more requests than it can handle.</p>
 <p>Internode messages which are received by a node, but do not get not to be processed within their proper timeout (see
-<code class="docutils literal"><span class="pre">read_request_timeout</span></code>, <code class="docutils literal"><span class="pre">write_request_timeout</span></code>, ... in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>), are dropped rather than
+<code class="docutils literal notranslate"><span class="pre">read_request_timeout</span></code>, <code class="docutils literal notranslate"><span class="pre">write_request_timeout</span></code>, … in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>), are dropped rather than
 processed (since the as the coordinator node will no longer be waiting for a response).</p>
 <p>For writes, this means that the mutation was not applied to all replicas it was sent to. The inconsistency will be
 repaired by read repair, hints or a manual repair. The write operation may also have timeouted as a result.</p>
@@ -333,10 +333,10 @@
 overloaded node or cluster.</p>
 </div>
 <div class="section" id="cassandra-dies-with-java-lang-outofmemoryerror-map-failed">
-<span id="oom-map-failed"></span><h2>Cassandra dies with <code class="docutils literal"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code><a class="headerlink" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed" title="Permalink to this headline">¶</a></h2>
-<p>If Cassandra is dying <strong>specifically</strong> with the &#8220;Map failed&#8221; message, it means the OS is denying java the ability to
-lock more memory. In linux, this typically means memlock is limited. Check <code class="docutils literal"><span class="pre">/proc/&lt;pid</span> <span class="pre">of</span> <span class="pre">cassandra&gt;/limits</span></code> to verify
-this and raise it (eg, via ulimit in bash). You may also need to increase <code class="docutils literal"><span class="pre">vm.max_map_count.</span></code> Note that the debian
+<span id="oom-map-failed"></span><h2>Cassandra dies with <code class="docutils literal notranslate"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code><a class="headerlink" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed" title="Permalink to this headline">¶</a></h2>
+<p>If Cassandra is dying <strong>specifically</strong> with the “Map failed” message, it means the OS is denying java the ability to
+lock more memory. In linux, this typically means memlock is limited. Check <code class="docutils literal notranslate"><span class="pre">/proc/&lt;pid</span> <span class="pre">of</span> <span class="pre">cassandra&gt;/limits</span></code> to verify
+this and raise it (eg, via ulimit in bash). You may also need to increase <code class="docutils literal notranslate"><span class="pre">vm.max_map_count.</span></code> Note that the debian
 package handles this for you automatically.</p>
 </div>
 <div class="section" id="what-happens-if-two-updates-are-made-with-the-same-timestamp">
@@ -348,7 +348,7 @@
 value is selected.</p>
 </div>
 <div class="section" id="why-bootstrapping-a-new-node-fails-with-a-stream-failed-error">
-<span id="why-bootstrapping-stream-error"></span><h2>Why bootstrapping a new node fails with a &#8220;Stream failed&#8221; error?<a class="headerlink" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error" title="Permalink to this headline">¶</a></h2>
+<span id="why-bootstrapping-stream-error"></span><h2>Why bootstrapping a new node fails with a “Stream failed” error?<a class="headerlink" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error" title="Permalink to this headline">¶</a></h2>
 <p>Two main possibilities:</p>
 <ol class="arabic simple">
 <li>the GC may be creating long pauses disrupting the streaming process</li>
@@ -356,11 +356,11 @@
 </ol>
 <p>In the first case, regular GC tuning advices apply. In the second case, you need to set TCP keepalive to a lower value
 (default is very high on Linux). Try to just run the following:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span>$ sudo /sbin/sysctl -w net.ipv4.tcp_keepalive_time=60 net.ipv4.tcp_keepalive_intvl=60 net.ipv4.tcp_keepalive_probes=5
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ sudo /sbin/sysctl -w net.ipv4.tcp_keepalive_time=60 net.ipv4.tcp_keepalive_intvl=60 net.ipv4.tcp_keepalive_probes=5
 </pre></div>
 </div>
-<p>To make those settings permanent, add them to your <code class="docutils literal"><span class="pre">/etc/sysctl.conf</span></code> file.</p>
-<p>Note: <a class="reference external" href="https://cloud.google.com/compute/">GCE</a>&#8216;s firewall will always interrupt TCP connections that are inactive for
+<p>To make those settings permanent, add them to your <code class="docutils literal notranslate"><span class="pre">/etc/sysctl.conf</span></code> file.</p>
+<p>Note: <a class="reference external" href="https://cloud.google.com/compute/">GCE</a>’s firewall will always interrupt TCP connections that are inactive for
 more than 10 min. Running the above command is highly recommended in that environment.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/genindex.html b/content/doc/3.11/genindex.html
index 963568c..10a40b5 100644
--- a/content/doc/3.11/genindex.html
+++ b/content/doc/3.11/genindex.html
@@ -9,7 +9,7 @@
 
 doc-title: "Index"
 doc-header-links: '
-  <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/>
+  <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/>
 '
 doc-search-path: "search.html"
 
diff --git a/content/doc/3.11/getting_started/configuring.html b/content/doc/3.11/getting_started/configuring.html
index 7a435ba..c9f008c 100644
--- a/content/doc/3.11/getting_started/configuring.html
+++ b/content/doc/3.11/getting_started/configuring.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Inserting and querying" href="querying.html"/> <link rel="prev" title="Installing Cassandra" href="installing.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Inserting and querying" href="querying.html"/> <link rel="prev" title="Installing Cassandra" href="installing.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -162,24 +162,24 @@
           
   <div class="section" id="configuring-cassandra">
 <h1>Configuring Cassandra<a class="headerlink" href="#configuring-cassandra" title="Permalink to this headline">¶</a></h1>
-<p>For running Cassandra on a single node, the steps above are enough, you don&#8217;t really need to change any configuration.
+<p>For running Cassandra on a single node, the steps above are enough, you don’t really need to change any configuration.
 However, when you deploy a cluster of nodes, or use clients that are not on the same host, then there are some
 parameters that must be changed.</p>
-<p>The Cassandra configuration files can be found in the <code class="docutils literal"><span class="pre">conf</span></code> directory of tarballs. For packages, the configuration
-files will be located in <code class="docutils literal"><span class="pre">/etc/cassandra</span></code>.</p>
+<p>The Cassandra configuration files can be found in the <code class="docutils literal notranslate"><span class="pre">conf</span></code> directory of tarballs. For packages, the configuration
+files will be located in <code class="docutils literal notranslate"><span class="pre">/etc/cassandra</span></code>.</p>
 <div class="section" id="main-runtime-properties">
 <h2>Main runtime properties<a class="headerlink" href="#main-runtime-properties" title="Permalink to this headline">¶</a></h2>
-<p>Most of configuration in Cassandra is done via yaml properties that can be set in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>. At a minimum you
+<p>Most of configuration in Cassandra is done via yaml properties that can be set in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>. At a minimum you
 should consider setting the following properties:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">cluster_name</span></code>: the name of your cluster.</li>
-<li><code class="docutils literal"><span class="pre">seeds</span></code>: a comma separated list of the IP addresses of your cluster seeds.</li>
-<li><code class="docutils literal"><span class="pre">storage_port</span></code>: you don&#8217;t necessarily need to change this but make sure that there are no firewalls blocking this
+<li><code class="docutils literal notranslate"><span class="pre">cluster_name</span></code>: the name of your cluster.</li>
+<li><code class="docutils literal notranslate"><span class="pre">seeds</span></code>: a comma separated list of the IP addresses of your cluster seeds.</li>
+<li><code class="docutils literal notranslate"><span class="pre">storage_port</span></code>: you don’t necessarily need to change this but make sure that there are no firewalls blocking this
 port.</li>
-<li><code class="docutils literal"><span class="pre">listen_address</span></code>: the IP address of your node, this is what allows other nodes to communicate with this node so it
-is important that you change it. Alternatively, you can set <code class="docutils literal"><span class="pre">listen_interface</span></code> to tell Cassandra which interface to
+<li><code class="docutils literal notranslate"><span class="pre">listen_address</span></code>: the IP address of your node, this is what allows other nodes to communicate with this node so it
+is important that you change it. Alternatively, you can set <code class="docutils literal notranslate"><span class="pre">listen_interface</span></code> to tell Cassandra which interface to
 use, and consecutively which address to use. Set only one, not both.</li>
-<li><code class="docutils literal"><span class="pre">native_transport_port</span></code>: as for storage_port, make sure this port is not blocked by firewalls as clients will
+<li><code class="docutils literal notranslate"><span class="pre">native_transport_port</span></code>: as for storage_port, make sure this port is not blocked by firewalls as clients will
 communicate with Cassandra on this port.</li>
 </ul>
 </div>
@@ -187,22 +187,22 @@
 <h2>Changing the location of directories<a class="headerlink" href="#changing-the-location-of-directories" title="Permalink to this headline">¶</a></h2>
 <p>The following yaml properties control the location of directories:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">data_file_directories</span></code>: one or more directories where data files are located.</li>
-<li><code class="docutils literal"><span class="pre">commitlog_directory</span></code>: the directory where commitlog files are located.</li>
-<li><code class="docutils literal"><span class="pre">saved_caches_directory</span></code>: the directory where saved caches are located.</li>
-<li><code class="docutils literal"><span class="pre">hints_directory</span></code>: the directory where hints are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code>: one or more directories where data files are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code>: the directory where commitlog files are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">saved_caches_directory</span></code>: the directory where saved caches are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">hints_directory</span></code>: the directory where hints are located.</li>
 </ul>
 <p>For performance reasons, if you have multiple disks, consider putting commitlog and data files on different disks.</p>
 </div>
 <div class="section" id="environment-variables">
 <h2>Environment variables<a class="headerlink" href="#environment-variables" title="Permalink to this headline">¶</a></h2>
-<p>JVM-level settings such as heap size can be set in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code>.  You can add any additional JVM command line
-argument to the <code class="docutils literal"><span class="pre">JVM_OPTS</span></code> environment variable; when Cassandra starts these arguments will be passed to the JVM.</p>
+<p>JVM-level settings such as heap size can be set in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code>.  You can add any additional JVM command line
+argument to the <code class="docutils literal notranslate"><span class="pre">JVM_OPTS</span></code> environment variable; when Cassandra starts these arguments will be passed to the JVM.</p>
 </div>
 <div class="section" id="logging">
 <h2>Logging<a class="headerlink" href="#logging" title="Permalink to this headline">¶</a></h2>
-<p>The logger in use is logback. You can change logging properties by editing <code class="docutils literal"><span class="pre">logback.xml</span></code>. By default it will log at
-INFO level into a file called <code class="docutils literal"><span class="pre">system.log</span></code> and at debug level into a file called <code class="docutils literal"><span class="pre">debug.log</span></code>. When running in the
+<p>The logger in use is logback. You can change logging properties by editing <code class="docutils literal notranslate"><span class="pre">logback.xml</span></code>. By default it will log at
+INFO level into a file called <code class="docutils literal notranslate"><span class="pre">system.log</span></code> and at debug level into a file called <code class="docutils literal notranslate"><span class="pre">debug.log</span></code>. When running in the
 foreground, it will also log at INFO level to the console.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/getting_started/drivers.html b/content/doc/3.11/getting_started/drivers.html
index 47bb456..519add9 100644
--- a/content/doc/3.11/getting_started/drivers.html
+++ b/content/doc/3.11/getting_started/drivers.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Architecture" href="../architecture/index.html"/> <link rel="prev" title="Inserting and querying" href="querying.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Architecture" href="../architecture/index.html"/> <link rel="prev" title="Inserting and querying" href="querying.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/getting_started/index.html b/content/doc/3.11/getting_started/index.html
index faec454..ba927fa 100644
--- a/content/doc/3.11/getting_started/index.html
+++ b/content/doc/3.11/getting_started/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Installing Cassandra" href="installing.html"/> <link rel="prev" title="Welcome to Apache Cassandra’s documentation!" href="../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Installing Cassandra" href="installing.html"/> <link rel="prev" title="Welcome to Apache Cassandra’s documentation!" href="../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/getting_started/installing.html b/content/doc/3.11/getting_started/installing.html
index 9708e93..e83d506 100644
--- a/content/doc/3.11/getting_started/installing.html
+++ b/content/doc/3.11/getting_started/installing.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="configuring.html"/> <link rel="prev" title="Getting Started" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="configuring.html"/> <link rel="prev" title="Getting Started" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -165,9 +165,9 @@
 <h2>Prerequisites<a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>The latest version of Java 8, either the <a class="reference external" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Oracle Java Standard Edition 8</a> or <a class="reference external" href="http://openjdk.java.net/">OpenJDK 8</a>. To
-verify that you have the correct version of java installed, type <code class="docutils literal"><span class="pre">java</span> <span class="pre">-version</span></code>.</li>
+verify that you have the correct version of java installed, type <code class="docutils literal notranslate"><span class="pre">java</span> <span class="pre">-version</span></code>.</li>
 <li>For using cqlsh, the latest version of <a class="reference external" href="https://www.python.org/downloads/">Python 2.7</a>. To verify that you have
-the correct version of Python installed, type <code class="docutils literal"><span class="pre">python</span> <span class="pre">--version</span></code>.</li>
+the correct version of Python installed, type <code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">--version</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="installation-from-binary-tarball-files">
@@ -176,71 +176,71 @@
 <li>Download the latest stable release from the <a class="reference external" href="http://cassandra.apache.org/download/">Apache Cassandra downloads website</a>.</li>
 <li>Untar the file somewhere, for example:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>tar -xvf apache-cassandra-3.6-bin.tar.gz cassandra
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tar -xvf apache-cassandra-3.6-bin.tar.gz cassandra
 </pre></div>
 </div>
-<p>The files will be extracted into <code class="docutils literal"><span class="pre">apache-cassandra-3.6</span></code>, you need to substitute 3.6 with the release number that you
+<p>The files will be extracted into <code class="docutils literal notranslate"><span class="pre">apache-cassandra-3.6</span></code>, you need to substitute 3.6 with the release number that you
 have downloaded.</p>
 <ul class="simple">
-<li>Optionally add <code class="docutils literal"><span class="pre">apache-cassandra-3.6\bin</span></code> to your path.</li>
-<li>Start Cassandra in the foreground by invoking <code class="docutils literal"><span class="pre">bin/cassandra</span> <span class="pre">-f</span></code> from the command line. Press &#8220;Control-C&#8221; to stop
-Cassandra. Start Cassandra in the background by invoking <code class="docutils literal"><span class="pre">bin/cassandra</span></code> from the command line. Invoke <code class="docutils literal"><span class="pre">kill</span> <span class="pre">pid</span></code>
-or <code class="docutils literal"><span class="pre">pkill</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code> to stop Cassandra, where pid is the Cassandra process id, which you can find for
-example by invoking <code class="docutils literal"><span class="pre">pgrep</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code>.</li>
-<li>Verify that Cassandra is running by invoking <code class="docutils literal"><span class="pre">bin/nodetool</span> <span class="pre">status</span></code> from the command line.</li>
-<li>Configuration files are located in the <code class="docutils literal"><span class="pre">conf</span></code> sub-directory.</li>
-<li>Since Cassandra 2.1, log and data directories are located in the <code class="docutils literal"><span class="pre">logs</span></code> and <code class="docutils literal"><span class="pre">data</span></code> sub-directories respectively.
-Older versions defaulted to <code class="docutils literal"><span class="pre">/var/log/cassandra</span></code> and <code class="docutils literal"><span class="pre">/var/lib/cassandra</span></code>. Due to this, it is necessary to either
-start Cassandra with root privileges or change <code class="docutils literal"><span class="pre">conf/cassandra.yaml</span></code> to use directories owned by the current user,
+<li>Optionally add <code class="docutils literal notranslate"><span class="pre">apache-cassandra-3.6\bin</span></code> to your path.</li>
+<li>Start Cassandra in the foreground by invoking <code class="docutils literal notranslate"><span class="pre">bin/cassandra</span> <span class="pre">-f</span></code> from the command line. Press “Control-C” to stop
+Cassandra. Start Cassandra in the background by invoking <code class="docutils literal notranslate"><span class="pre">bin/cassandra</span></code> from the command line. Invoke <code class="docutils literal notranslate"><span class="pre">kill</span> <span class="pre">pid</span></code>
+or <code class="docutils literal notranslate"><span class="pre">pkill</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code> to stop Cassandra, where pid is the Cassandra process id, which you can find for
+example by invoking <code class="docutils literal notranslate"><span class="pre">pgrep</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code>.</li>
+<li>Verify that Cassandra is running by invoking <code class="docutils literal notranslate"><span class="pre">bin/nodetool</span> <span class="pre">status</span></code> from the command line.</li>
+<li>Configuration files are located in the <code class="docutils literal notranslate"><span class="pre">conf</span></code> sub-directory.</li>
+<li>Since Cassandra 2.1, log and data directories are located in the <code class="docutils literal notranslate"><span class="pre">logs</span></code> and <code class="docutils literal notranslate"><span class="pre">data</span></code> sub-directories respectively.
+Older versions defaulted to <code class="docutils literal notranslate"><span class="pre">/var/log/cassandra</span></code> and <code class="docutils literal notranslate"><span class="pre">/var/lib/cassandra</span></code>. Due to this, it is necessary to either
+start Cassandra with root privileges or change <code class="docutils literal notranslate"><span class="pre">conf/cassandra.yaml</span></code> to use directories owned by the current user,
 as explained below in the section on changing the location of directories.</li>
 </ul>
 </div>
 <div class="section" id="installation-from-debian-packages">
 <h2>Installation from Debian packages<a class="headerlink" href="#installation-from-debian-packages" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Add the Apache repository of Cassandra to <code class="docutils literal"><span class="pre">/etc/apt/sources.list.d/cassandra.sources.list</span></code>, for example for version
+<li>Add the Apache repository of Cassandra to <code class="docutils literal notranslate"><span class="pre">/etc/apt/sources.list.d/cassandra.sources.list</span></code>, for example for version
 3.6:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>echo &quot;deb http://www.apache.org/dist/cassandra/debian 36x main&quot; | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>echo &quot;deb https://downloads.apache.org/cassandra/debian 36x main&quot; | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
 </pre></div>
 </div>
 <ul class="simple">
 <li>Add the Apache Cassandra repository keys:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>curl https://downloads.apache.org/cassandra/KEYS | sudo apt-key add -
 </pre></div>
 </div>
 <ul class="simple">
 <li>Update the repositories:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>sudo apt-get update
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-get update
 </pre></div>
 </div>
 <ul class="simple">
 <li>If you encounter this error:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>GPG error: http://www.apache.org 36x InRelease: The following signatures couldn&#39;t be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GPG error: http://www.apache.org 36x InRelease: The following signatures couldn&#39;t be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA
 </pre></div>
 </div>
 <p>Then add the public key A278B781FE4B2BDA as follows:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-key A278B781FE4B2BDA
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-key A278B781FE4B2BDA
 </pre></div>
 </div>
-<p>and repeat <code class="docutils literal"><span class="pre">sudo</span> <span class="pre">apt-get</span> <span class="pre">update</span></code>. The actual key may be different, you get it from the error message itself. For a
-full list of Apache contributors public keys, you can refer to <a class="reference external" href="https://www.apache.org/dist/cassandra/KEYS">this link</a>.</p>
+<p>and repeat <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">apt-get</span> <span class="pre">update</span></code>. The actual key may be different, you get it from the error message itself. For a
+full list of Apache contributors public keys, you can refer to <a class="reference external" href="https://downloads.apache.org/cassandra/KEYS">this link</a>.</p>
 <ul class="simple">
 <li>Install Cassandra:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>sudo apt-get install cassandra
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-get install cassandra
 </pre></div>
 </div>
 <ul class="simple">
-<li>You can start Cassandra with <code class="docutils literal"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">start</span></code> and stop it with <code class="docutils literal"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">stop</span></code>.
+<li>You can start Cassandra with <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">start</span></code> and stop it with <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">stop</span></code>.
 However, normally the service will start automatically. For this reason be sure to stop it if you need to make any
 configuration changes.</li>
-<li>Verify that Cassandra is running by invoking <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">status</span></code> from the command line.</li>
-<li>The default location of configuration files is <code class="docutils literal"><span class="pre">/etc/cassandra</span></code>.</li>
-<li>The default location of log and data directories is <code class="docutils literal"><span class="pre">/var/log/cassandra/</span></code> and <code class="docutils literal"><span class="pre">/var/lib/cassandra</span></code>.</li>
+<li>Verify that Cassandra is running by invoking <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">status</span></code> from the command line.</li>
+<li>The default location of configuration files is <code class="docutils literal notranslate"><span class="pre">/etc/cassandra</span></code>.</li>
+<li>The default location of log and data directories is <code class="docutils literal notranslate"><span class="pre">/var/log/cassandra/</span></code> and <code class="docutils literal notranslate"><span class="pre">/var/lib/cassandra</span></code>.</li>
 </ul>
 </div>
 </div>
diff --git a/content/doc/3.11/getting_started/querying.html b/content/doc/3.11/getting_started/querying.html
index ed775e7..317eb8d 100644
--- a/content/doc/3.11/getting_started/querying.html
+++ b/content/doc/3.11/getting_started/querying.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Client drivers" href="drivers.html"/> <link rel="prev" title="Configuring Cassandra" href="configuring.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Client drivers" href="drivers.html"/> <link rel="prev" title="Configuring Cassandra" href="configuring.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,7 +171,7 @@
 <p>cqlsh is a command line shell for interacting with Cassandra through CQL. It is shipped with every Cassandra package,
 and can be found in the bin/ directory alongside the cassandra executable. It connects to the single node specified on
 the command line. For example:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span>$ bin/cqlsh localhost
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ bin/cqlsh localhost
 Connected to Test Cluster at localhost:9042.
 [cqlsh 5.0.1 | Cassandra 3.8 | CQL spec 3.4.2 | Native protocol v4]
 Use HELP for help.
diff --git a/content/doc/3.11/index.html b/content/doc/3.11/index.html
index a9a26d6..f49c2d6 100644
--- a/content/doc/3.11/index.html
+++ b/content/doc/3.11/index.html
@@ -95,7 +95,7 @@
 
     <div class="content">
   <div class="container">
-    <h2>Apache Cassandra Documentation v3.11.3</h2>
+    <h2>Apache Cassandra Documentation v3.11.7</h2>
   
 <div id="wipwarning">This documentation is currently a work-in-progress and contains a number of TODO sections.
     <a href="bugs.html">Contributions</a> are welcome.</div>
diff --git a/content/doc/3.11/objects.inv b/content/doc/3.11/objects.inv
index 69eee5c..5d83d29 100644
--- a/content/doc/3.11/objects.inv
+++ b/content/doc/3.11/objects.inv
Binary files differ
diff --git a/content/doc/3.11/operating/backups.html b/content/doc/3.11/operating/backups.html
index 70f6689..fd6e751 100644
--- a/content/doc/3.11/operating/backups.html
+++ b/content/doc/3.11/operating/backups.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bulk Loading" href="bulk_loading.html"/> <link rel="prev" title="Change Data Capture" href="cdc.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bulk Loading" href="bulk_loading.html"/> <link rel="prev" title="Change Data Capture" href="cdc.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/operating/bloom_filters.html b/content/doc/3.11/operating/bloom_filters.html
index 07363a8..0038f48 100644
--- a/content/doc/3.11/operating/bloom_filters.html
+++ b/content/doc/3.11/operating/bloom_filters.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compression" href="compression.html"/> <link rel="prev" title="Compaction" href="compaction.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compression" href="compression.html"/> <link rel="prev" title="Compaction" href="compaction.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -175,36 +175,36 @@
 data definitely does not exist in the given file, or - The data probably exists in the given file.</p>
 <p>While bloom filters can not guarantee that the data exists in a given SSTable, bloom filters can be made more accurate
 by allowing them to consume more RAM. Operators have the opportunity to tune this behavior per table by adjusting the
-the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to a float between 0 and 1.</p>
-<p>The default value for <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> is 0.1 for tables using LeveledCompactionStrategy and 0.01 for all
+the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to a float between 0 and 1.</p>
+<p>The default value for <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> is 0.1 for tables using LeveledCompactionStrategy and 0.01 for all
 other cases.</p>
 <p>Bloom filters are stored in RAM, but are stored offheap, so operators should not consider bloom filters when selecting
-the maximum heap size.  As accuracy improves (as the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> gets closer to 0), memory usage
-increases non-linearly - the bloom filter for <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.01</span></code> will require about three times as much
-memory as the same table with <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.1</span></code>.</p>
-<p>Typical values for <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> are usually between 0.01 (1%) to 0.1 (10%) false-positive chance, where
+the maximum heap size.  As accuracy improves (as the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> gets closer to 0), memory usage
+increases non-linearly - the bloom filter for <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.01</span></code> will require about three times as much
+memory as the same table with <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.1</span></code>.</p>
+<p>Typical values for <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> are usually between 0.01 (1%) to 0.1 (10%) false-positive chance, where
 Cassandra may scan an SSTable for a row, only to find that it does not exist on the disk. The parameter should be tuned
 by use case:</p>
 <ul class="simple">
-<li>Users with more RAM and slower disks may benefit from setting the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to a numerically lower
+<li>Users with more RAM and slower disks may benefit from setting the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to a numerically lower
 number (such as 0.01) to avoid excess IO operations</li>
-<li>Users with less RAM, more dense nodes, or very fast disks may tolerate a higher <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> in order to
+<li>Users with less RAM, more dense nodes, or very fast disks may tolerate a higher <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> in order to
 save RAM at the expense of excess IO operations</li>
 <li>In workloads that rarely read, or that only perform reads by scanning the entire data set (such as analytics
-workloads), setting the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to a much higher number is acceptable.</li>
+workloads), setting the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to a much higher number is acceptable.</li>
 </ul>
 <div class="section" id="changing">
 <h2>Changing<a class="headerlink" href="#changing" title="Permalink to this headline">¶</a></h2>
-<p>The bloom filter false positive chance is visible in the <code class="docutils literal"><span class="pre">DESCRIBE</span> <span class="pre">TABLE</span></code> output as the field
-<code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code>. Operators can change the value with an <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH bloom_filter_fp_chance=0.01
+<p>The bloom filter false positive chance is visible in the <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span> <span class="pre">TABLE</span></code> output as the field
+<code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code>. Operators can change the value with an <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH bloom_filter_fp_chance=0.01
 </pre></div>
 </div>
 <p>Operators should be aware, however, that this change is not immediate: the bloom filter is calculated when the file is
-written, and persisted on disk as the Filter component of the SSTable. Upon issuing an <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement, new
-files on disk will be written with the new <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code>, but existing sstables will not be modified until
-they are compacted - if an operator needs a change to <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to take effect, they can trigger an
-SSTable rewrite using <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the sstables on
+written, and persisted on disk as the Filter component of the SSTable. Upon issuing an <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement, new
+files on disk will be written with the new <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code>, but existing sstables will not be modified until
+they are compacted - if an operator needs a change to <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to take effect, they can trigger an
+SSTable rewrite using <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the sstables on
 disk, regenerating the bloom filters in the progress.</p>
 </div>
 </div>
diff --git a/content/doc/3.11/operating/bulk_loading.html b/content/doc/3.11/operating/bulk_loading.html
index 014874d..6da4c38 100644
--- a/content/doc/3.11/operating/bulk_loading.html
+++ b/content/doc/3.11/operating/bulk_loading.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Monitoring" href="metrics.html"/> <link rel="prev" title="Backups" href="backups.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Monitoring" href="metrics.html"/> <link rel="prev" title="Backups" href="backups.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/operating/cdc.html b/content/doc/3.11/operating/cdc.html
index 900999a..1e13412 100644
--- a/content/doc/3.11/operating/cdc.html
+++ b/content/doc/3.11/operating/cdc.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Backups" href="backups.html"/> <link rel="prev" title="Compression" href="compression.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Backups" href="backups.html"/> <link rel="prev" title="Compression" href="compression.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -177,8 +177,8 @@
 <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>
 <p>Change data capture (CDC) provides a mechanism to flag specific tables for archival as well as rejecting writes to those
 tables once a configurable size-on-disk for the combined flushed and unflushed CDC-log is reached. An operator can
-enable CDC on a table by setting the table property <code class="docutils literal"><span class="pre">cdc=true</span></code> (either when <a class="reference internal" href="../cql/ddl.html#create-table-statement"><span class="std std-ref">creating the table</span></a> or <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">altering it</span></a>), after which any CommitLogSegments containing
-data for a CDC-enabled table are moved to the directory specified in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> on segment discard. A threshold
+enable CDC on a table by setting the table property <code class="docutils literal notranslate"><span class="pre">cdc=true</span></code> (either when <a class="reference internal" href="../cql/ddl.html#create-table-statement"><span class="std std-ref">creating the table</span></a> or <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">altering it</span></a>), after which any CommitLogSegments containing
+data for a CDC-enabled table are moved to the directory specified in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> on segment discard. A threshold
 of total disk space allowed is specified in the yaml at which time newly allocated CommitLogSegments will not allow CDC
 data until a consumer parses and removes data from the destination archival directory.</p>
 </div>
@@ -187,7 +187,7 @@
 <div class="section" id="enabling-or-disable-cdc-on-a-table">
 <h3>Enabling or disable CDC on a table<a class="headerlink" href="#enabling-or-disable-cdc-on-a-table" title="Permalink to this headline">¶</a></h3>
 <p>CDC is enable or disable through the <cite>cdc</cite> table property, for instance:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CREATE TABLE foo (a int, b text, PRIMARY KEY(a)) WITH cdc=true;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CREATE TABLE foo (a int, b text, PRIMARY KEY(a)) WITH cdc=true;
 
 ALTER TABLE foo WITH cdc=true;
 
@@ -199,15 +199,15 @@
 <h3>cassandra.yaml parameters<a class="headerlink" href="#cassandra-yaml-parameters" title="Permalink to this headline">¶</a></h3>
 <p>The following <cite>cassandra.yaml</cite> are available for CDC:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">cdc_enabled</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_enabled</span></code> (default: false)</dt>
 <dd>Enable or disable CDC operations node-wide.</dd>
-<dt><code class="docutils literal"><span class="pre">cdc_raw_directory</span></code> (default: <code class="docutils literal"><span class="pre">$CASSANDRA_HOME/data/cdc_raw</span></code>)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code> (default: <code class="docutils literal notranslate"><span class="pre">$CASSANDRA_HOME/data/cdc_raw</span></code>)</dt>
 <dd>Destination for CommitLogSegments to be moved after all corresponding memtables are flushed.</dd>
-<dt><code class="docutils literal"><span class="pre">cdc_free_space_in_mb</span></code>: (default: min of 4096 and 1/8th volume space)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_free_space_in_mb</span></code>: (default: min of 4096 and 1/8th volume space)</dt>
 <dd>Calculated as sum of all active CommitLogSegments that permit CDC + all flushed CDC segments in
-<code class="docutils literal"><span class="pre">cdc_raw_directory</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">cdc_free_space_check_interval_ms</span></code> (default: 250)</dt>
-<dd>When at capacity, we limit the frequency with which we re-calculate the space taken up by <code class="docutils literal"><span class="pre">cdc_raw_directory</span></code> to
+<code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_free_space_check_interval_ms</span></code> (default: 250)</dt>
+<dd>When at capacity, we limit the frequency with which we re-calculate the space taken up by <code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code> to
 prevent burning CPU cycles unnecessarily. Default is to check 4 times per second.</dd>
 </dl>
 </div>
@@ -223,7 +223,7 @@
 <h2>Warnings<a class="headerlink" href="#warnings" title="Permalink to this headline">¶</a></h2>
 <p><strong>Do not enable CDC without some kind of consumption process in-place.</strong></p>
 <p>The initial implementation of Change Data Capture does not include a parser (see <a class="reference internal" href="#reading-commitlogsegments"><span class="std std-ref">Reading CommitLogSegments</span></a> above)
-so, if CDC is enabled on a node and then on a table, the <code class="docutils literal"><span class="pre">cdc_free_space_in_mb</span></code> will fill up and then writes to
+so, if CDC is enabled on a node and then on a table, the <code class="docutils literal notranslate"><span class="pre">cdc_free_space_in_mb</span></code> will fill up and then writes to
 CDC-enabled tables will be rejected unless some consumption process is in place.</p>
 </div>
 <div class="section" id="further-reading">
diff --git a/content/doc/3.11/operating/compaction.html b/content/doc/3.11/operating/compaction.html
index 0d3413c..71733c3 100644
--- a/content/doc/3.11/operating/compaction.html
+++ b/content/doc/3.11/operating/compaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bloom Filters" href="bloom_filters.html"/> <link rel="prev" title="Hints" href="hints.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bloom Filters" href="bloom_filters.html"/> <link rel="prev" title="Hints" href="hints.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -209,7 +209,7 @@
 <dd>after repair the ranges that were actually repaired are split out of the sstables that existed when repair started.</dd>
 <dt>Sub range compaction</dt>
 <dd>It is possible to only compact a given sub range - this could be useful if you know a token that has been
-misbehaving - either gathering many updates or many deletes. (<code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">compact</span> <span class="pre">-st</span> <span class="pre">x</span> <span class="pre">-et</span> <span class="pre">y</span></code>) will pick
+misbehaving - either gathering many updates or many deletes. (<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">compact</span> <span class="pre">-st</span> <span class="pre">x</span> <span class="pre">-et</span> <span class="pre">y</span></code>) will pick
 all sstables containing the range between x and y and issue a compaction for those sstables. For STCS this will
 most likely include all sstables but with LCS it can issue the compaction for a subset of the sstables. With LCS
 the resulting sstable will end up in L0.</dd>
@@ -218,7 +218,7 @@
 <div class="section" id="when-is-a-minor-compaction-triggered">
 <h2>When is a minor compaction triggered?<a class="headerlink" href="#when-is-a-minor-compaction-triggered" title="Permalink to this headline">¶</a></h2>
 <p>#  When an sstable is added to the node through flushing/streaming etc.
-#  When autocompaction is enabled after being disabled (<code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">enableautocompaction</span></code>)
+#  When autocompaction is enabled after being disabled (<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">enableautocompaction</span></code>)
 #  When compaction adds new sstables.
 #  A check for new minor compactions every 5 minutes.</p>
 </div>
@@ -240,17 +240,17 @@
 <div class="section" id="deletes-without-tombstones">
 <h3>Deletes without tombstones<a class="headerlink" href="#deletes-without-tombstones" title="Permalink to this headline">¶</a></h3>
 <p>Imagine a three node cluster which has the value [A] replicated to every node.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A], [A], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
 </pre></div>
 </div>
 <p>If one of the nodes fails and and our delete operation only removes existing values we can end up with a cluster that
 looks like:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[], [], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[], [], [A]
 </pre></div>
 </div>
 <p>Then a repair operation would replace the value of [A] back onto the two
 nodes which are missing the value.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A], [A], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
 </pre></div>
 </div>
 <p>This would cause our data to be resurrected even though it had been
@@ -259,51 +259,51 @@
 <div class="section" id="deletes-with-tombstones">
 <h3>Deletes with Tombstones<a class="headerlink" href="#deletes-with-tombstones" title="Permalink to this headline">¶</a></h3>
 <p>Starting again with a three node cluster which has the value [A] replicated to every node.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A], [A], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
 </pre></div>
 </div>
 <p>If instead of removing data we add a tombstone record, our single node failure situation will look like this.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A]
 </pre></div>
 </div>
 <p>Now when we issue a repair the Tombstone will be copied to the replica, rather than the deleted data being
 resurrected.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A, Tombstone[A]]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A, Tombstone[A]]
 </pre></div>
 </div>
 <p>Our repair operation will correctly put the state of the system to what we expect with the record [A] marked as deleted
 on all nodes. This does mean we will end up accruing Tombstones which will permanently accumulate disk space. To avoid
-keeping tombstones forever we have a parameter known as <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> for every table in Cassandra.</p>
+keeping tombstones forever we have a parameter known as <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> for every table in Cassandra.</p>
 </div>
 <div class="section" id="the-gc-grace-seconds-parameter-and-tombstone-removal">
 <h3>The gc_grace_seconds parameter and Tombstone Removal<a class="headerlink" href="#the-gc-grace-seconds-parameter-and-tombstone-removal" title="Permalink to this headline">¶</a></h3>
-<p>The table level <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> parameter controls how long Cassandra will retain tombstones through compaction
+<p>The table level <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> parameter controls how long Cassandra will retain tombstones through compaction
 events before finally removing them. This duration should directly reflect the amount of time a user expects to allow
-before recovering a failed node. After <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> has expired the tombstone may be removed (meaning there will
+before recovering a failed node. After <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> has expired the tombstone may be removed (meaning there will
 no longer be any record that a certain piece of data was deleted), but as a tombstone can live in one sstable and the
 data it covers in another, a compaction must also include both sstable for a tombstone to be removed. More precisely, to
 be able to drop an actual tombstone the following needs to be true;</p>
 <ul class="simple">
-<li>The tombstone must be older than <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code></li>
+<li>The tombstone must be older than <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code></li>
 <li>If partition X contains the tombstone, the sstable containing the partition plus all sstables containing data older
-than the tombstone containing X must be included in the same compaction. We don&#8217;t need to care if the partition is in
+than the tombstone containing X must be included in the same compaction. We don’t need to care if the partition is in
 an sstable if we can guarantee that all data in that sstable is newer than the tombstone. If the tombstone is older
 than the data it cannot shadow that data.</li>
-<li>If the option <code class="docutils literal"><span class="pre">only_purge_repaired_tombstones</span></code> is enabled, tombstones are only removed if the data has also been
+<li>If the option <code class="docutils literal notranslate"><span class="pre">only_purge_repaired_tombstones</span></code> is enabled, tombstones are only removed if the data has also been
 repaired.</li>
 </ul>
-<p>If a node remains down or disconnected for longer than <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> it&#8217;s deleted data will be repaired back to
-the other nodes and re-appear in the cluster. This is basically the same as in the &#8220;Deletes without Tombstones&#8221; section.
-Note that tombstones will not be removed until a compaction event even if <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> has elapsed.</p>
-<p>The default value for <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> is 864000 which is equivalent to 10 days. This can be set when creating or
-altering a table using <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">gc_grace_seconds</span></code>.</p>
+<p>If a node remains down or disconnected for longer than <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> it’s deleted data will be repaired back to
+the other nodes and re-appear in the cluster. This is basically the same as in the “Deletes without Tombstones” section.
+Note that tombstones will not be removed until a compaction event even if <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> has elapsed.</p>
+<p>The default value for <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> is 864000 which is equivalent to 10 days. This can be set when creating or
+altering a table using <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">gc_grace_seconds</span></code>.</p>
 </div>
 </div>
 <div class="section" id="ttl">
 <h2>TTL<a class="headerlink" href="#ttl" title="Permalink to this headline">¶</a></h2>
 <p>Data in Cassandra can have an additional property called time to live - this is used to automatically drop data that has
 expired once the time is reached. Once the TTL has expired the data is converted to a tombstone which stays around for
-at least <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code>. Note that if you mix data with TTL and data without TTL (or just different length of the
+at least <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code>. Note that if you mix data with TTL and data without TTL (or just different length of the
 TTL) Cassandra will have a hard time dropping the tombstones created since the partition might span many sstables and
 not all are compacted at once.</p>
 </div>
@@ -312,9 +312,9 @@
 <p>If an sstable contains only tombstones and it is guaranteed that that sstable is not shadowing data in any other sstable
 compaction can drop that sstable. If you see sstables with only tombstones (note that TTL:ed data is considered
 tombstones once the time to live has expired) but it is not being dropped by compaction, it is likely that other
-sstables contain older data. There is a tool called <code class="docutils literal"><span class="pre">sstableexpiredblockers</span></code> that will list which sstables are
+sstables contain older data. There is a tool called <code class="docutils literal notranslate"><span class="pre">sstableexpiredblockers</span></code> that will list which sstables are
 droppable and which are blocking them from being dropped. This is especially useful for time series compaction with
-<code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> (and the deprecated <code class="docutils literal"><span class="pre">DateTieredCompactionStrategy</span></code>).</p>
+<code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> (and the deprecated <code class="docutils literal notranslate"><span class="pre">DateTieredCompactionStrategy</span></code>).</p>
 </div>
 <div class="section" id="repaired-unrepaired-data">
 <h2>Repaired/unrepaired data<a class="headerlink" href="#repaired-unrepaired-data" title="Permalink to this headline">¶</a></h2>
@@ -349,34 +349,34 @@
 sstables with very many tombstones and run single sstable compaction on that sstable in hope of being able to drop
 tombstones in that sstable. Before starting this it is also checked how likely it is that any tombstones will actually
 will be able to be dropped how much this sstable overlaps with other sstables. To avoid most of these checks the
-compaction option <code class="docutils literal"><span class="pre">unchecked_tombstone_compaction</span></code> can be enabled.</p>
+compaction option <code class="docutils literal notranslate"><span class="pre">unchecked_tombstone_compaction</span></code> can be enabled.</p>
 </div>
 <div class="section" id="common-options">
 <span id="compaction-options"></span><h2>Common options<a class="headerlink" href="#common-options" title="Permalink to this headline">¶</a></h2>
 <p>There is a number of common options for all the compaction strategies;</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">enabled</span></code> (default: true)</dt>
-<dd>Whether minor compactions should run. Note that you can have &#8216;enabled&#8217;: true as a compaction option and then do
-&#8216;nodetool enableautocompaction&#8217; to start running compactions.</dd>
-<dt><code class="docutils literal"><span class="pre">tombstone_threshold</span></code> (default: 0.2)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">enabled</span></code> (default: true)</dt>
+<dd>Whether minor compactions should run. Note that you can have ‘enabled’: true as a compaction option and then do
+‘nodetool enableautocompaction’ to start running compactions.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">tombstone_threshold</span></code> (default: 0.2)</dt>
 <dd>How much of the sstable should be tombstones for us to consider doing a single sstable compaction of that sstable.</dd>
-<dt><code class="docutils literal"><span class="pre">tombstone_compaction_interval</span></code> (default: 86400s (1 day))</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">tombstone_compaction_interval</span></code> (default: 86400s (1 day))</dt>
 <dd>Since it might not be possible to drop any tombstones when doing a single sstable compaction we need to make sure
 that one sstable is not constantly getting recompacted - this option states how often we should try for a given
 sstable.</dd>
-<dt><code class="docutils literal"><span class="pre">log_all</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">log_all</span></code> (default: false)</dt>
 <dd>New detailed compaction logging, see <a class="reference internal" href="#detailed-compaction-logging"><span class="std std-ref">below</span></a>.</dd>
-<dt><code class="docutils literal"><span class="pre">unchecked_tombstone_compaction</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">unchecked_tombstone_compaction</span></code> (default: false)</dt>
 <dd>The single sstable compaction has quite strict checks for whether it should be started, this option disables those
 checks and for some usecases this might be needed.  Note that this does not change anything for the actual
 compaction, tombstones are only dropped if it is safe to do so - it might just rewrite an sstable without being able
 to drop any tombstones.</dd>
-<dt><code class="docutils literal"><span class="pre">only_purge_repaired_tombstone</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">only_purge_repaired_tombstone</span></code> (default: false)</dt>
 <dd>Option to enable the extra safety of making sure that tombstones are only dropped if the data has been repaired.</dd>
-<dt><code class="docutils literal"><span class="pre">min_threshold</span></code> (default: 4)</dt>
-<dd>Lower limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">max_threshold</span></code> (default: 32)</dt>
-<dd>Upper limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">min_threshold</span></code> (default: 4)</dt>
+<dd>Lower limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">max_threshold</span></code> (default: 32)</dt>
+<dd>Upper limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
 </dl>
 <p>Further, see the section on each strategy for specific additional options.</p>
 </div>
@@ -384,18 +384,18 @@
 <h2>Compaction nodetool commands<a class="headerlink" href="#compaction-nodetool-commands" title="Permalink to this headline">¶</a></h2>
 <p>The <a class="reference internal" href="../tools/nodetool.html#nodetool"><span class="std std-ref">nodetool</span></a> utility provides a number of commands related to compaction:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">enableautocompaction</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">enableautocompaction</span></code></dt>
 <dd>Enable compaction.</dd>
-<dt><code class="docutils literal"><span class="pre">disableautocompaction</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">disableautocompaction</span></code></dt>
 <dd>Disable compaction.</dd>
-<dt><code class="docutils literal"><span class="pre">setcompactionthroughput</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">setcompactionthroughput</span></code></dt>
 <dd>How fast compaction should run at most - defaults to 16MB/s, but note that it is likely not possible to reach this
 throughput.</dd>
-<dt><code class="docutils literal"><span class="pre">compactionstats</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compactionstats</span></code></dt>
 <dd>Statistics about current and pending compactions.</dd>
-<dt><code class="docutils literal"><span class="pre">compactionhistory</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compactionhistory</span></code></dt>
 <dd>List details about the last compactions.</dd>
-<dt><code class="docutils literal"><span class="pre">setcompactionthreshold</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">setcompactionthreshold</span></code></dt>
 <dd>Set the min/max sstable count for when to trigger compaction, defaults to 4/32.</dd>
 </dl>
 </div>
@@ -403,13 +403,13 @@
 <h2>Switching the compaction strategy and options using JMX<a class="headerlink" href="#switching-the-compaction-strategy-and-options-using-jmx" title="Permalink to this headline">¶</a></h2>
 <p>It is possible to switch compaction strategies and its options on just a single node using JMX, this is a great way to
 experiment with settings without affecting the whole cluster. The mbean is:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>org.apache.cassandra.db:type=ColumnFamilies,keyspace=&lt;keyspace_name&gt;,columnfamily=&lt;table_name&gt;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>org.apache.cassandra.db:type=ColumnFamilies,keyspace=&lt;keyspace_name&gt;,columnfamily=&lt;table_name&gt;
 </pre></div>
 </div>
-<p>and the attribute to change is <code class="docutils literal"><span class="pre">CompactionParameters</span></code> or <code class="docutils literal"><span class="pre">CompactionParametersJson</span></code> if you use jconsole or jmc. The
+<p>and the attribute to change is <code class="docutils literal notranslate"><span class="pre">CompactionParameters</span></code> or <code class="docutils literal notranslate"><span class="pre">CompactionParametersJson</span></code> if you use jconsole or jmc. The
 syntax for the json version is the same as you would use in an <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">ALTER TABLE</span></a> statement -
 for example:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>{ &#39;class&#39;: &#39;LeveledCompactionStrategy&#39;, &#39;sstable_size_in_mb&#39;: 123, &#39;fanout_size&#39;: 10}
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{ &#39;class&#39;: &#39;LeveledCompactionStrategy&#39;, &#39;sstable_size_in_mb&#39;: 123, &#39;fanout_size&#39;: 10}
 </pre></div>
 </div>
 <p>The setting is kept until someone executes an <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">ALTER TABLE</span></a> that touches the compaction
@@ -417,34 +417,34 @@
 </div>
 <div class="section" id="more-detailed-compaction-logging">
 <span id="detailed-compaction-logging"></span><h2>More detailed compaction logging<a class="headerlink" href="#more-detailed-compaction-logging" title="Permalink to this headline">¶</a></h2>
-<p>Enable with the compaction option <code class="docutils literal"><span class="pre">log_all</span></code> and a more detailed compaction log file will be produced in your log
+<p>Enable with the compaction option <code class="docutils literal notranslate"><span class="pre">log_all</span></code> and a more detailed compaction log file will be produced in your log
 directory.</p>
 </div>
 <div class="section" id="size-tiered-compaction-strategy">
 <span id="stcs"></span><h2>Size Tiered Compaction Strategy<a class="headerlink" href="#size-tiered-compaction-strategy" title="Permalink to this headline">¶</a></h2>
-<p>The basic idea of <code class="docutils literal"><span class="pre">SizeTieredCompactionStrategy</span></code> (STCS) is to merge sstables of approximately the same size. All
+<p>The basic idea of <code class="docutils literal notranslate"><span class="pre">SizeTieredCompactionStrategy</span></code> (STCS) is to merge sstables of approximately the same size. All
 sstables are put in different buckets depending on their size. An sstable is added to the bucket if size of the sstable
-is within <code class="docutils literal"><span class="pre">bucket_low</span></code> and <code class="docutils literal"><span class="pre">bucket_high</span></code> of the current average size of the sstables already in the bucket. This
+is within <code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> and <code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> of the current average size of the sstables already in the bucket. This
 will create several buckets and the most interesting of those buckets will be compacted. The most interesting one is
-decided by figuring out which bucket&#8217;s sstables takes the most reads.</p>
+decided by figuring out which bucket’s sstables takes the most reads.</p>
 <div class="section" id="major-compaction">
 <h3>Major compaction<a class="headerlink" href="#major-compaction" title="Permalink to this headline">¶</a></h3>
 <p>When running a major compaction with STCS you will end up with two sstables per data directory (one for repaired data
 and one for unrepaired data). There is also an option (-s) to do a major compaction that splits the output into several
-sstables. The sizes of the sstables are approximately 50%, 25%, 12.5%... of the total size.</p>
+sstables. The sizes of the sstables are approximately 50%, 25%, 12.5%… of the total size.</p>
 </div>
 <div class="section" id="stcs-options">
 <span id="id2"></span><h3>STCS options<a class="headerlink" href="#stcs-options" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">min_sstable_size</span></code> (default: 50MB)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">min_sstable_size</span></code> (default: 50MB)</dt>
 <dd>Sstables smaller than this are put in the same bucket.</dd>
-<dt><code class="docutils literal"><span class="pre">bucket_low</span></code> (default: 0.5)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> (default: 0.5)</dt>
 <dd>How much smaller than the average size of a bucket a sstable should be before not being included in the bucket. That
-is, if <code class="docutils literal"><span class="pre">bucket_low</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span> <span class="pre">&lt;</span> <span class="pre">sstable_size</span></code> (and the <code class="docutils literal"><span class="pre">bucket_high</span></code> condition holds, see below), then
+is, if <code class="docutils literal notranslate"><span class="pre">bucket_low</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span> <span class="pre">&lt;</span> <span class="pre">sstable_size</span></code> (and the <code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> condition holds, see below), then
 the sstable is added to the bucket.</dd>
-<dt><code class="docutils literal"><span class="pre">bucket_high</span></code> (default: 1.5)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> (default: 1.5)</dt>
 <dd>How much bigger than the average size of a bucket a sstable should be before not being included in the bucket. That
-is, if <code class="docutils literal"><span class="pre">sstable_size</span> <span class="pre">&lt;</span> <span class="pre">bucket_high</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span></code> (and the <code class="docutils literal"><span class="pre">bucket_low</span></code> condition holds, see above), then
+is, if <code class="docutils literal notranslate"><span class="pre">sstable_size</span> <span class="pre">&lt;</span> <span class="pre">bucket_high</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span></code> (and the <code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> condition holds, see above), then
 the sstable is added to the bucket.</dd>
 </dl>
 </div>
@@ -456,7 +456,7 @@
 </div>
 <div class="section" id="leveled-compaction-strategy">
 <span id="lcs"></span><h2>Leveled Compaction Strategy<a class="headerlink" href="#leveled-compaction-strategy" title="Permalink to this headline">¶</a></h2>
-<p>The idea of <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code> (LCS) is that all sstables are put into different levels where we guarantee
+<p>The idea of <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code> (LCS) is that all sstables are put into different levels where we guarantee
 that no overlapping sstables are in the same level. By overlapping we mean that the first/last token of a single sstable
 are never overlapping with other sstables. This means that for a SELECT we will only have to look for the partition key
 in a single sstable per level. Each level is 10x the size of the previous one and each sstable is 160MB by default. L0
@@ -466,9 +466,9 @@
 we need to guarantee that we pick all overlapping sstables in L4 and make sure that no currently ongoing compactions
 will create overlap if we start that compaction. We can start many parallel compactions in a level if we guarantee that
 we wont create overlap. For L0 -&gt; L1 compactions we almost always need to include all L1 sstables since most L0 sstables
-cover the full range. We also can&#8217;t compact all L0 sstables with all L1 sstables in a single compaction since that can
+cover the full range. We also can’t compact all L0 sstables with all L1 sstables in a single compaction since that can
 use too much memory.</p>
-<p>When deciding which level to compact LCS checks the higher levels first (with LCS, a &#8220;higher&#8221; level is one with a higher
+<p>When deciding which level to compact LCS checks the higher levels first (with LCS, a “higher” level is one with a higher
 number, L0 being the lowest one) and if the level is behind a compaction will be started in that level.</p>
 <div class="section" id="id3">
 <h3>Major compaction<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
@@ -502,38 +502,38 @@
 <div class="section" id="lcs-options">
 <span id="id4"></span><h3>LCS options<a class="headerlink" href="#lcs-options" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">sstable_size_in_mb</span></code> (default: 160MB)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">sstable_size_in_mb</span></code> (default: 160MB)</dt>
 <dd>The target compressed (if using compression) sstable size - the sstables can end up being larger if there are very
 large partitions on the node.</dd>
-<dt><code class="docutils literal"><span class="pre">fanout_size</span></code> (default: 10)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">fanout_size</span></code> (default: 10)</dt>
 <dd>The target size of levels increases by this fanout_size multiplier. You can reduce the space amplification by tuning
 this option.</dd>
 </dl>
-<p>LCS also support the <code class="docutils literal"><span class="pre">cassandra.disable_stcs_in_l0</span></code> startup option (<code class="docutils literal"><span class="pre">-Dcassandra.disable_stcs_in_l0=true</span></code>) to avoid
+<p>LCS also support the <code class="docutils literal notranslate"><span class="pre">cassandra.disable_stcs_in_l0</span></code> startup option (<code class="docutils literal notranslate"><span class="pre">-Dcassandra.disable_stcs_in_l0=true</span></code>) to avoid
 doing STCS in L0.</p>
 </div>
 </div>
 <div class="section" id="time-window-compactionstrategy">
 <span id="twcs"></span><h2>Time Window CompactionStrategy<a class="headerlink" href="#time-window-compactionstrategy" title="Permalink to this headline">¶</a></h2>
-<p><code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> (TWCS) is designed specifically for workloads where it&#8217;s beneficial to have data on
+<p><code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> (TWCS) is designed specifically for workloads where it’s beneficial to have data on
 disk grouped by the timestamp of the data, a common goal when the workload is time-series in nature or when all data is
 written with a TTL. In an expiring/TTL workload, the contents of an entire SSTable likely expire at approximately the
 same time, allowing them to be dropped completely, and space reclaimed much more reliably than when using
-<code class="docutils literal"><span class="pre">SizeTieredCompactionStrategy</span></code> or <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code>. The basic concept is that
-<code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> will create 1 sstable per file for a given window, where a window is simply calculated
+<code class="docutils literal notranslate"><span class="pre">SizeTieredCompactionStrategy</span></code> or <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>. The basic concept is that
+<code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> will create 1 sstable per file for a given window, where a window is simply calculated
 as the combination of two primary options:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">compaction_window_unit</span></code> (default: DAYS)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> (default: DAYS)</dt>
 <dd>A Java TimeUnit (MINUTES, HOURS, or DAYS).</dd>
-<dt><code class="docutils literal"><span class="pre">compaction_window_size</span></code> (default: 1)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> (default: 1)</dt>
 <dd>The number of units that make up a window.</dd>
 </dl>
 <p>Taken together, the operator can specify windows of virtually any size, and <cite>TimeWindowCompactionStrategy</cite> will work to
 create a single sstable for writes within that window. For efficiency during writing, the newest window will be
 compacted using <cite>SizeTieredCompactionStrategy</cite>.</p>
-<p>Ideally, operators should select a <code class="docutils literal"><span class="pre">compaction_window_unit</span></code> and <code class="docutils literal"><span class="pre">compaction_window_size</span></code> pair that produces
+<p>Ideally, operators should select a <code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> and <code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> pair that produces
 approximately 20-30 windows - if writing with a 90 day TTL, for example, a 3 Day window would be a reasonable choice
-(<code class="docutils literal"><span class="pre">'compaction_window_unit':'DAYS','compaction_window_size':3</span></code>).</p>
+(<code class="docutils literal notranslate"><span class="pre">'compaction_window_unit':'DAYS','compaction_window_size':3</span></code>).</p>
 <div class="section" id="timewindowcompactionstrategy-operational-concerns">
 <h3>TimeWindowCompactionStrategy Operational Concerns<a class="headerlink" href="#timewindowcompactionstrategy-operational-concerns" title="Permalink to this headline">¶</a></h3>
 <p>The primary motivation for TWCS is to separate data on disk by timestamp and to allow fully expired SSTables to drop
@@ -542,20 +542,20 @@
 <ul class="simple">
 <li>If the user mixes old data and new data in the traditional write path, the data will be comingled in the memtables
 and flushed into the same SSTable, where it will remain comingled.</li>
-<li>If the user&#8217;s read requests for old data cause read repairs that pull old data into the current memtable, that data
+<li>If the user’s read requests for old data cause read repairs that pull old data into the current memtable, that data
 will be comingled and flushed into the same SSTable.</li>
 </ul>
 <p>While TWCS tries to minimize the impact of comingled data, users should attempt to avoid this behavior.  Specifically,
-users should avoid queries that explicitly set the timestamp via CQL <code class="docutils literal"><span class="pre">USING</span> <span class="pre">TIMESTAMP</span></code>. Additionally, users should run
+users should avoid queries that explicitly set the timestamp via CQL <code class="docutils literal notranslate"><span class="pre">USING</span> <span class="pre">TIMESTAMP</span></code>. Additionally, users should run
 frequent repairs (which streams data in such a way that it does not become comingled), and disable background read
-repair by setting the table&#8217;s <code class="docutils literal"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal"><span class="pre">dclocal_read_repair_chance</span></code> to 0.</p>
+repair by setting the table’s <code class="docutils literal notranslate"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal notranslate"><span class="pre">dclocal_read_repair_chance</span></code> to 0.</p>
 </div>
 <div class="section" id="changing-timewindowcompactionstrategy-options">
 <h3>Changing TimeWindowCompactionStrategy Options<a class="headerlink" href="#changing-timewindowcompactionstrategy-options" title="Permalink to this headline">¶</a></h3>
-<p>Operators wishing to enable <code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> on existing data should consider running a major compaction
+<p>Operators wishing to enable <code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> on existing data should consider running a major compaction
 first, placing all existing data into a single (old) window. Subsequent newer writes will then create typical SSTables
 as expected.</p>
-<p>Operators wishing to change <code class="docutils literal"><span class="pre">compaction_window_unit</span></code> or <code class="docutils literal"><span class="pre">compaction_window_size</span></code> can do so, but may trigger
+<p>Operators wishing to change <code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> or <code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> can do so, but may trigger
 additional compactions as adjacent windows are joined together. If the window size is decrease d (for example, from 24
 hours to 12 hours), then the existing SSTables will not be modified - TWCS can not split existing SSTables into multiple
 windows.</p>
diff --git a/content/doc/3.11/operating/compression.html b/content/doc/3.11/operating/compression.html
index 4dac181..ac0fda7 100644
--- a/content/doc/3.11/operating/compression.html
+++ b/content/doc/3.11/operating/compression.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Change Data Capture" href="cdc.html"/> <link rel="prev" title="Bloom Filters" href="bloom_filters.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Change Data Capture" href="cdc.html"/> <link rel="prev" title="Bloom Filters" href="bloom_filters.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -173,7 +173,7 @@
   <div class="section" id="compression">
 <h1>Compression<a class="headerlink" href="#compression" title="Permalink to this headline">¶</a></h1>
 <p>Cassandra offers operators the ability to configure compression on a per-table basis. Compression reduces the size of
-data on disk by compressing the SSTable in user-configurable compression <code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code>. Because Cassandra
+data on disk by compressing the SSTable in user-configurable compression <code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code>. Because Cassandra
 SSTables are immutable, the CPU cost of compressing is only necessary when the SSTable is written - subsequent updates
 to data will land in different SSTables, so Cassandra will not need to decompress, overwrite, and recompress data when
 UPDATE commands are issued. On reads, Cassandra will locate the relevant compressed chunks on disk, decompress the full
@@ -181,37 +181,37 @@
 on).</p>
 <div class="section" id="configuring-compression">
 <h2>Configuring Compression<a class="headerlink" href="#configuring-compression" title="Permalink to this headline">¶</a></h2>
-<p>Compression is configured on a per-table basis as an optional argument to <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> or <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>. By
+<p>Compression is configured on a per-table basis as an optional argument to <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> or <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>. By
 default, three options are relevant:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">class</span></code> specifies the compression class - Cassandra provides three classes (<code class="docutils literal"><span class="pre">LZ4Compressor</span></code>,
-<code class="docutils literal"><span class="pre">SnappyCompressor</span></code>, and <code class="docutils literal"><span class="pre">DeflateCompressor</span></code> ). The default is <code class="docutils literal"><span class="pre">LZ4Compressor</span></code>.</li>
-<li><code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code> specifies the number of kilobytes of data per compression chunk. The default is 64KB.</li>
-<li><code class="docutils literal"><span class="pre">crc_check_chance</span></code> determines how likely Cassandra is to verify the checksum on each compression chunk during
+<li><code class="docutils literal notranslate"><span class="pre">class</span></code> specifies the compression class - Cassandra provides three classes (<code class="docutils literal notranslate"><span class="pre">LZ4Compressor</span></code>,
+<code class="docutils literal notranslate"><span class="pre">SnappyCompressor</span></code>, and <code class="docutils literal notranslate"><span class="pre">DeflateCompressor</span></code> ). The default is <code class="docutils literal notranslate"><span class="pre">LZ4Compressor</span></code>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code> specifies the number of kilobytes of data per compression chunk. The default is 64KB.</li>
+<li><code class="docutils literal notranslate"><span class="pre">crc_check_chance</span></code> determines how likely Cassandra is to verify the checksum on each compression chunk during
 reads. The default is 1.0.</li>
 </ul>
 <p>Users can set compression using the following syntax:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CREATE TABLE keyspace.table (id int PRIMARY KEY) WITH compression = {&#39;class&#39;: &#39;LZ4Compressor&#39;};
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CREATE TABLE keyspace.table (id int PRIMARY KEY) WITH compression = {&#39;class&#39;: &#39;LZ4Compressor&#39;};
 </pre></div>
 </div>
 <p>Or</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;class&#39;: &#39;SnappyCompressor&#39;, &#39;chunk_length_in_kb&#39;: 128, &#39;crc_check_chance&#39;: 0.5};
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;class&#39;: &#39;SnappyCompressor&#39;, &#39;chunk_length_in_kb&#39;: 128, &#39;crc_check_chance&#39;: 0.5};
 </pre></div>
 </div>
-<p>Once enabled, compression can be disabled with <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> setting <code class="docutils literal"><span class="pre">enabled</span></code> to <code class="docutils literal"><span class="pre">false</span></code>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;enabled&#39;:&#39;false&#39;};
+<p>Once enabled, compression can be disabled with <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> setting <code class="docutils literal notranslate"><span class="pre">enabled</span></code> to <code class="docutils literal notranslate"><span class="pre">false</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;enabled&#39;:&#39;false&#39;};
 </pre></div>
 </div>
 <p>Operators should be aware, however, that changing compression is not immediate. The data is compressed when the SSTable
 is written, and as SSTables are immutable, the compression will not be modified until the table is compacted. Upon
-issuing a change to the compression options via <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>, the existing SSTables will not be modified until they
+issuing a change to the compression options via <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>, the existing SSTables will not be modified until they
 are compacted - if an operator needs compression changes to take effect immediately, the operator can trigger an SSTable
-rewrite using <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the SSTables on disk,
+rewrite using <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the SSTables on disk,
 re-compressing the data in the process.</p>
 </div>
 <div class="section" id="benefits-and-uses">
 <h2>Benefits and Uses<a class="headerlink" href="#benefits-and-uses" title="Permalink to this headline">¶</a></h2>
-<p>Compression&#8217;s primary benefit is that it reduces the amount of data written to disk. Not only does the reduced size save
+<p>Compression’s primary benefit is that it reduces the amount of data written to disk. Not only does the reduced size save
 in storage requirements, it often increases read and write throughput, as the CPU overhead of compressing data is faster
 than the time it would take to read or write the larger volume of uncompressed data from disk.</p>
 <p>Compression is most useful in tables comprised of many rows, where the rows are similar in nature. Tables containing
@@ -221,18 +221,18 @@
 <h2>Operational Impact<a class="headerlink" href="#operational-impact" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Compression metadata is stored off-heap and scales with data on disk.  This often requires 1-3GB of off-heap RAM per
-terabyte of data on disk, though the exact usage varies with <code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code> and compression ratios.</li>
+terabyte of data on disk, though the exact usage varies with <code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code> and compression ratios.</li>
 <li>Streaming operations involve compressing and decompressing data on compressed tables - in some code paths (such as
 non-vnode bootstrap), the CPU overhead of compression can be a limiting factor.</li>
 <li>The compression path checksums data to ensure correctness - while the traditional Cassandra read path does not have a
-way to ensure correctness of data on disk, compressed tables allow the user to set <code class="docutils literal"><span class="pre">crc_check_chance</span></code> (a float from
+way to ensure correctness of data on disk, compressed tables allow the user to set <code class="docutils literal notranslate"><span class="pre">crc_check_chance</span></code> (a float from
 0.0 to 1.0) to allow Cassandra to probabilistically validate chunks on read to verify bits on disk are not corrupt.</li>
 </ul>
 </div>
 <div class="section" id="advanced-use">
 <h2>Advanced Use<a class="headerlink" href="#advanced-use" title="Permalink to this headline">¶</a></h2>
 <p>Advanced users can provide their own compression class by implementing the interface at
-<code class="docutils literal"><span class="pre">org.apache.cassandra.io.compress.ICompressor</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.io.compress.ICompressor</span></code>.</p>
 </div>
 </div>
 
diff --git a/content/doc/3.11/operating/hardware.html b/content/doc/3.11/operating/hardware.html
index 0f130c9..7975604 100644
--- a/content/doc/3.11/operating/hardware.html
+++ b/content/doc/3.11/operating/hardware.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Cassandra Tools" href="../tools/index.html"/> <link rel="prev" title="Security" href="security.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Cassandra Tools" href="../tools/index.html"/> <link rel="prev" title="Security" href="security.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -185,9 +185,9 @@
 </div>
 <div class="section" id="memory">
 <h2>Memory<a class="headerlink" href="#memory" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra runs within a Java VM, which will pre-allocate a fixed size heap (java&#8217;s Xmx system parameter). In addition to
+<p>Cassandra runs within a Java VM, which will pre-allocate a fixed size heap (java’s Xmx system parameter). In addition to
 the heap, Cassandra will use significant amounts of RAM offheap for compression metadata, bloom filters, row, key, and
-counter caches, and an in process page cache. Finally, Cassandra will take advantage of the operating system&#8217;s page
+counter caches, and an in process page cache. Finally, Cassandra will take advantage of the operating system’s page
 cache, storing recently accessed portions files in RAM for rapid re-use.</p>
 <p>For optimal performance, operators should benchmark and tune their clusters based on their individual workload. However,
 basic guidelines suggest:</p>
@@ -208,17 +208,17 @@
 satisfy client look-ups. SSTables are also periodically merged and rewritten in a process called compaction.  The data
 held in the commitlog directory is data that has not been permanently saved to the SSTable data directories - it will be
 periodically purged once it is flushed to the SSTable data files.</p>
-<p>Cassandra performs very well on both spinning hard drives and solid state disks. In both cases, Cassandra&#8217;s sorted
+<p>Cassandra performs very well on both spinning hard drives and solid state disks. In both cases, Cassandra’s sorted
 immutable SSTables allow for linear reads, few seeks, and few overwrites, maximizing throughput for HDDs and lifespan of
-SSDs by avoiding write amplification. However, when using spinning disks, it&#8217;s important that the commitlog
-(<code class="docutils literal"><span class="pre">commitlog_directory</span></code>) be on one physical disk (not simply a partition, but a physical disk), and the data files
-(<code class="docutils literal"><span class="pre">data_file_directories</span></code>) be set to a separate physical disk. By separating the commitlog from the data directory,
+SSDs by avoiding write amplification. However, when using spinning disks, it’s important that the commitlog
+(<code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code>) be on one physical disk (not simply a partition, but a physical disk), and the data files
+(<code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code>) be set to a separate physical disk. By separating the commitlog from the data directory,
 writes can benefit from sequential appends to the commitlog without having to seek around the platter as reads request
 data from various SSTables on disk.</p>
 <p>In most cases, Cassandra is designed to provide redundancy via multiple independent, inexpensive servers. For this
 reason, using NFS or a SAN for data directories is an antipattern and should typically be avoided.  Similarly, servers
 with multiple disks are often better served by using RAID0 or JBOD than RAID1 or RAID5 - replication provided by
-Cassandra obsoletes the need for replication at the disk layer, so it&#8217;s typically recommended that operators take
+Cassandra obsoletes the need for replication at the disk layer, so it’s typically recommended that operators take
 advantage of the additional throughput of RAID0 rather than protecting against failures with RAID1 or RAID5.</p>
 </div>
 <div class="section" id="common-cloud-choices">
diff --git a/content/doc/3.11/operating/hints.html b/content/doc/3.11/operating/hints.html
index 7c8d282..991245a 100644
--- a/content/doc/3.11/operating/hints.html
+++ b/content/doc/3.11/operating/hints.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compaction" href="compaction.html"/> <link rel="prev" title="Read repair" href="read_repair.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compaction" href="compaction.html"/> <link rel="prev" title="Read repair" href="read_repair.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/operating/index.html b/content/doc/3.11/operating/index.html
index 43760e6..e16b5cd 100644
--- a/content/doc/3.11/operating/index.html
+++ b/content/doc/3.11/operating/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Snitch" href="snitch.html"/> <link rel="prev" title="Cassandra Configuration File" href="../configuration/cassandra_config_file.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Snitch" href="snitch.html"/> <link rel="prev" title="Cassandra Configuration File" href="../configuration/cassandra_config_file.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/operating/metrics.html b/content/doc/3.11/operating/metrics.html
index 19b445d..1fec73d 100644
--- a/content/doc/3.11/operating/metrics.html
+++ b/content/doc/3.11/operating/metrics.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Bulk Loading" href="bulk_loading.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Bulk Loading" href="bulk_loading.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -189,28 +189,28 @@
 <h1>Monitoring<a class="headerlink" href="#monitoring" title="Permalink to this headline">¶</a></h1>
 <p>Metrics in Cassandra are managed using the <a class="reference external" href="http://metrics.dropwizard.io">Dropwizard Metrics</a> library. These metrics
 can be queried via JMX or pushed to external monitoring systems using a number of <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/getting-started/#other-reporting">built in</a> and <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/manual/third-party/">third party</a> reporter plugins.</p>
-<p>Metrics are collected for a single node. It&#8217;s up to the operator to use an external monitoring system to aggregate them.</p>
+<p>Metrics are collected for a single node. It’s up to the operator to use an external monitoring system to aggregate them.</p>
 <div class="section" id="metric-types">
 <h2>Metric Types<a class="headerlink" href="#metric-types" title="Permalink to this headline">¶</a></h2>
 <p>All metrics reported by cassandra fit into one of the following types.</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">Gauge</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Gauge</span></code></dt>
 <dd>An instantaneous measurement of a value.</dd>
-<dt><code class="docutils literal"><span class="pre">Counter</span></code></dt>
-<dd>A gauge for an <code class="docutils literal"><span class="pre">AtomicLong</span></code> instance. Typically this is consumed by monitoring the change since the last call to
+<dt><code class="docutils literal notranslate"><span class="pre">Counter</span></code></dt>
+<dd>A gauge for an <code class="docutils literal notranslate"><span class="pre">AtomicLong</span></code> instance. Typically this is consumed by monitoring the change since the last call to
 see if there is a large increase compared to the norm.</dd>
-<dt><code class="docutils literal"><span class="pre">Histogram</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Histogram</span></code></dt>
 <dd><p class="first">Measures the statistical distribution of values in a stream of data.</p>
 <p class="last">In addition to minimum, maximum, mean, etc., it also measures median, 75th, 90th, 95th, 98th, 99th, and 99.9th
 percentiles.</p>
 </dd>
-<dt><code class="docutils literal"><span class="pre">Timer</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Timer</span></code></dt>
 <dd>Measures both the rate that a particular piece of code is called and the histogram of its duration.</dd>
-<dt><code class="docutils literal"><span class="pre">Latency</span></code></dt>
-<dd>Special type that tracks latency (in microseconds) with a <code class="docutils literal"><span class="pre">Timer</span></code> plus a <code class="docutils literal"><span class="pre">Counter</span></code> that tracks the total latency
+<dt><code class="docutils literal notranslate"><span class="pre">Latency</span></code></dt>
+<dd>Special type that tracks latency (in microseconds) with a <code class="docutils literal notranslate"><span class="pre">Timer</span></code> plus a <code class="docutils literal notranslate"><span class="pre">Counter</span></code> that tracks the total latency
 accrued since starting. The former is useful if you track the change in total latency since the last check. Each
-metric name of this type will have &#8216;Latency&#8217; and &#8216;TotalLatency&#8217; appended to it.</dd>
-<dt><code class="docutils literal"><span class="pre">Meter</span></code></dt>
+metric name of this type will have ‘Latency’ and ‘TotalLatency’ appended to it.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">Meter</span></code></dt>
 <dd>A meter metric which measures mean throughput and one-, five-, and fifteen-minute exponentially-weighted moving
 average throughputs.</dd>
 </dl>
@@ -218,17 +218,17 @@
 <div class="section" id="table-metrics">
 <h2>Table Metrics<a class="headerlink" href="#table-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Each table in Cassandra has metrics responsible for tracking its state and performance.</p>
-<p>The metric names are all appended with the specific <code class="docutils literal"><span class="pre">Keyspace</span></code> and <code class="docutils literal"><span class="pre">Table</span></code> name.</p>
+<p>The metric names are all appended with the specific <code class="docutils literal notranslate"><span class="pre">Keyspace</span></code> and <code class="docutils literal notranslate"><span class="pre">Table</span></code> name.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Table.&lt;MetricName&gt;.&lt;Keyspace&gt;.&lt;Table&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Table.&lt;MetricName&gt;.&lt;Keyspace&gt;.&lt;Table&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Table</span> <span class="pre">keyspace=&lt;Keyspace&gt;</span> <span class="pre">scope=&lt;Table&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Table</span> <span class="pre">keyspace=&lt;Keyspace&gt;</span> <span class="pre">scope=&lt;Table&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">There is a special table called &#8216;<code class="docutils literal"><span class="pre">all</span></code>&#8216; without a keyspace. This represents the aggregation of metrics across
+<p class="last">There is a special table called ‘<code class="docutils literal notranslate"><span class="pre">all</span></code>’ without a keyspace. This represents the aggregation of metrics across
 <strong>all</strong> tables and keyspaces on the node.</p>
 </div>
 <table border="1" class="docutils">
@@ -342,7 +342,7 @@
 </tr>
 <tr class="row-even"><td>TotalDiskSpaceUsed</td>
 <td>Counter</td>
-<td>Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC&#8217;d.</td>
+<td>Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC’d.</td>
 </tr>
 <tr class="row-odd"><td>MinPartitionSize</td>
 <td>Gauge&lt;Long&gt;</td>
@@ -358,11 +358,11 @@
 </tr>
 <tr class="row-even"><td>BloomFilterFalsePositives</td>
 <td>Gauge&lt;Long&gt;</td>
-<td>Number of false positives on table&#8217;s bloom filter.</td>
+<td>Number of false positives on table’s bloom filter.</td>
 </tr>
 <tr class="row-odd"><td>BloomFilterFalseRatio</td>
 <td>Gauge&lt;Double&gt;</td>
-<td>False positive ratio of table&#8217;s bloom filter.</td>
+<td>False positive ratio of table’s bloom filter.</td>
 </tr>
 <tr class="row-even"><td>BloomFilterDiskSpaceUsed</td>
 <td>Gauge&lt;Long&gt;</td>
@@ -454,28 +454,28 @@
 <div class="section" id="keyspace-metrics">
 <h2>Keyspace Metrics<a class="headerlink" href="#keyspace-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Each keyspace in Cassandra has metrics responsible for tracking its state and performance.</p>
-<p>These metrics are the same as the <code class="docutils literal"><span class="pre">Table</span> <span class="pre">Metrics</span></code> above, only they are aggregated at the Keyspace level.</p>
+<p>These metrics are the same as the <code class="docutils literal notranslate"><span class="pre">Table</span> <span class="pre">Metrics</span></code> above, only they are aggregated at the Keyspace level.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.keyspace.&lt;MetricName&gt;.&lt;Keyspace&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.keyspace.&lt;MetricName&gt;.&lt;Keyspace&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Keyspace</span> <span class="pre">scope=&lt;Keyspace&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Keyspace</span> <span class="pre">scope=&lt;Keyspace&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 </div>
 <div class="section" id="threadpool-metrics">
 <h2>ThreadPool Metrics<a class="headerlink" href="#threadpool-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra splits work of a particular type into its own thread pool.  This provides back-pressure and asynchrony for
-requests on a node.  It&#8217;s important to monitor the state of these thread pools since they can tell you how saturated a
+requests on a node.  It’s important to monitor the state of these thread pools since they can tell you how saturated a
 node is.</p>
-<p>The metric names are all appended with the specific <code class="docutils literal"><span class="pre">ThreadPool</span></code> name.  The thread pools are also categorized under a
+<p>The metric names are all appended with the specific <code class="docutils literal notranslate"><span class="pre">ThreadPool</span></code> name.  The thread pools are also categorized under a
 specific type.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.ThreadPools.&lt;MetricName&gt;.&lt;Path&gt;.&lt;ThreadPoolName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.ThreadPools.&lt;MetricName&gt;.&lt;Path&gt;.&lt;ThreadPoolName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=ThreadPools</span> <span class="pre">scope=&lt;ThreadPoolName&gt;</span> <span class="pre">type=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=ThreadPools</span> <span class="pre">scope=&lt;ThreadPoolName&gt;</span> <span class="pre">type=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -628,13 +628,13 @@
 <div class="section" id="client-request-metrics">
 <h2>Client Request Metrics<a class="headerlink" href="#client-request-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Client requests have their own set of metrics that encapsulate the work happening at coordinator level.</p>
-<p>Different types of client requests are broken down by <code class="docutils literal"><span class="pre">RequestType</span></code>.</p>
+<p>Different types of client requests are broken down by <code class="docutils literal notranslate"><span class="pre">RequestType</span></code>.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.ClientRequest.&lt;MetricName&gt;.&lt;RequestType&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.ClientRequest.&lt;MetricName&gt;.&lt;RequestType&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=ClientRequest</span> <span class="pre">scope=&lt;RequestType&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=ClientRequest</span> <span class="pre">scope=&lt;RequestType&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table class="docutils field-list" frame="void" rules="none">
 <col class="field-name" />
@@ -905,13 +905,13 @@
 </div>
 <div class="section" id="cache-metrics">
 <h2>Cache Metrics<a class="headerlink" href="#cache-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra caches have metrics to track the effectivness of the caches. Though the <code class="docutils literal"><span class="pre">Table</span> <span class="pre">Metrics</span></code> might be more useful.</p>
+<p>Cassandra caches have metrics to track the effectivness of the caches. Though the <code class="docutils literal notranslate"><span class="pre">Table</span> <span class="pre">Metrics</span></code> might be more useful.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Cache.&lt;MetricName&gt;.&lt;CacheName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Cache.&lt;MetricName&gt;.&lt;CacheName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Cache</span> <span class="pre">scope=&lt;CacheName&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Cache</span> <span class="pre">scope=&lt;CacheName&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1009,9 +1009,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.CQL.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.CQL.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=CQL</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=CQL</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1052,13 +1052,13 @@
 <div class="section" id="droppedmessage-metrics">
 <h2>DroppedMessage Metrics<a class="headerlink" href="#droppedmessage-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Metrics specific to tracking dropped messages for different types of requests.
-Dropped writes are stored and retried by <code class="docutils literal"><span class="pre">Hinted</span> <span class="pre">Handoff</span></code></p>
+Dropped writes are stored and retried by <code class="docutils literal notranslate"><span class="pre">Hinted</span> <span class="pre">Handoff</span></code></p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.DroppedMessages.&lt;MetricName&gt;.&lt;Type&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.DroppedMessages.&lt;MetricName&gt;.&lt;Type&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=DroppedMetrics</span> <span class="pre">scope=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=DroppedMetrics</span> <span class="pre">scope=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1137,14 +1137,14 @@
 </div>
 <div class="section" id="streaming-metrics">
 <h2>Streaming Metrics<a class="headerlink" href="#streaming-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics reported during <code class="docutils literal"><span class="pre">Streaming</span></code> operations, such as repair, bootstrap, rebuild.</p>
+<p>Metrics reported during <code class="docutils literal notranslate"><span class="pre">Streaming</span></code> operations, such as repair, bootstrap, rebuild.</p>
 <p>These metrics are specific to a peer endpoint, with the source node being the node you are pulling the metrics from.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Streaming.&lt;MetricName&gt;.&lt;PeerIP&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Streaming.&lt;MetricName&gt;.&lt;PeerIP&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Streaming</span> <span class="pre">scope=&lt;PeerIP&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Streaming</span> <span class="pre">scope=&lt;PeerIP&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1172,13 +1172,13 @@
 </div>
 <div class="section" id="compaction-metrics">
 <h2>Compaction Metrics<a class="headerlink" href="#compaction-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics specific to <code class="docutils literal"><span class="pre">Compaction</span></code> work.</p>
+<p>Metrics specific to <code class="docutils literal notranslate"><span class="pre">Compaction</span></code> work.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Compaction.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Compaction.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Compaction</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Compaction</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1211,20 +1211,20 @@
 </tr>
 <tr class="row-even"><td>PendingTasksByTableName</td>
 <td>Gauge&lt;Map&lt;String, Map&lt;String, Integer&gt;&gt;&gt;</td>
-<td>Estimated number of compactions remaining to perform, grouped by keyspace and then table name. This info is also kept in <code class="docutils literal"><span class="pre">Table</span> <span class="pre">Metrics</span></code>.</td>
+<td>Estimated number of compactions remaining to perform, grouped by keyspace and then table name. This info is also kept in <code class="docutils literal notranslate"><span class="pre">Table</span> <span class="pre">Metrics</span></code>.</td>
 </tr>
 </tbody>
 </table>
 </div>
 <div class="section" id="commitlog-metrics">
 <h2>CommitLog Metrics<a class="headerlink" href="#commitlog-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics specific to the <code class="docutils literal"><span class="pre">CommitLog</span></code></p>
+<p>Metrics specific to the <code class="docutils literal notranslate"><span class="pre">CommitLog</span></code></p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.CommitLog.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.CommitLog.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=CommitLog</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=CommitLog</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1245,7 +1245,7 @@
 </tr>
 <tr class="row-odd"><td>PendingTasks</td>
 <td>Gauge&lt;Long&gt;</td>
-<td>Number of commit log messages written but yet to be fsync&#8217;d.</td>
+<td>Number of commit log messages written but yet to be fsync’d.</td>
 </tr>
 <tr class="row-even"><td>TotalCommitLogSize</td>
 <td>Gauge&lt;Long&gt;</td>
@@ -1268,9 +1268,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Storage.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Storage.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Storage</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Storage</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1306,14 +1306,14 @@
 </div>
 <div class="section" id="hintedhandoff-metrics">
 <h2>HintedHandoff Metrics<a class="headerlink" href="#hintedhandoff-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics specific to Hinted Handoff.  There are also some metrics related to hints tracked in <code class="docutils literal"><span class="pre">Storage</span> <span class="pre">Metrics</span></code></p>
+<p>Metrics specific to Hinted Handoff.  There are also some metrics related to hints tracked in <code class="docutils literal notranslate"><span class="pre">Storage</span> <span class="pre">Metrics</span></code></p>
 <p>These metrics include the peer endpoint <strong>in the metric name</strong></p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.HintedHandOffManager.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.HintedHandOffManager.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=HintedHandOffManager</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=HintedHandOffManager</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1345,9 +1345,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Index.&lt;MetricName&gt;.RowIndexEntry</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Index.&lt;MetricName&gt;.RowIndexEntry</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Index</span> <span class="pre">scope=RowIndexEntry</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Index</span> <span class="pre">scope=RowIndexEntry</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1384,9 +1384,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.BufferPool.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.BufferPool.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=BufferPool</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=BufferPool</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1418,9 +1418,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Client.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Client.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Client</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Client</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1453,9 +1453,9 @@
 <h3>BufferPool<a class="headerlink" href="#bufferpool" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.buffers.&lt;direct|mapped&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.buffers.&lt;direct|mapped&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.nio:type=BufferPool</span> <span class="pre">name=&lt;direct|mapped&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.nio:type=BufferPool</span> <span class="pre">name=&lt;direct|mapped&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1489,9 +1489,9 @@
 <h3>FileDescriptorRatio<a class="headerlink" href="#filedescriptorratio" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.fd.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.fd.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=OperatingSystem</span> <span class="pre">name=&lt;OpenFileDescriptorCount|MaxFileDescriptorCount&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=OperatingSystem</span> <span class="pre">name=&lt;OpenFileDescriptorCount|MaxFileDescriptorCount&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1517,9 +1517,9 @@
 <h3>GarbageCollector<a class="headerlink" href="#garbagecollector" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.gc.&lt;gc_type&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.gc.&lt;gc_type&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=GarbageCollector</span> <span class="pre">name=&lt;gc_type&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=GarbageCollector</span> <span class="pre">name=&lt;gc_type&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1549,9 +1549,9 @@
 <h3>Memory<a class="headerlink" href="#memory" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.memory.&lt;heap/non-heap/total&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.memory.&lt;heap/non-heap/total&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=Memory</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=Memory</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1587,9 +1587,9 @@
 <h3>MemoryPool<a class="headerlink" href="#memorypool" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.memory.pools.&lt;memory_pool&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.memory.pools.&lt;memory_pool&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=MemoryPool</span> <span class="pre">name=&lt;memory_pool&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=MemoryPool</span> <span class="pre">name=&lt;memory_pool&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1625,14 +1625,14 @@
 <div class="section" id="jmx">
 <h2>JMX<a class="headerlink" href="#jmx" title="Permalink to this headline">¶</a></h2>
 <p>Any JMX based client can access metrics from cassandra.</p>
-<p>If you wish to access JMX metrics over http it&#8217;s possible to download <a class="reference external" href="http://mx4j.sourceforge.net/">Mx4jTool</a> and
-place <code class="docutils literal"><span class="pre">mx4j-tools.jar</span></code> into the classpath.  On startup you will see in the log:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>HttpAdaptor version 3.0.2 started on port 8081
+<p>If you wish to access JMX metrics over http it’s possible to download <a class="reference external" href="http://mx4j.sourceforge.net/">Mx4jTool</a> and
+place <code class="docutils literal notranslate"><span class="pre">mx4j-tools.jar</span></code> into the classpath.  On startup you will see in the log:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>HttpAdaptor version 3.0.2 started on port 8081
 </pre></div>
 </div>
 <p>To choose a different port (8081 is the default) or a different listen address (0.0.0.0 is not the default) edit
-<code class="docutils literal"><span class="pre">conf/cassandra-env.sh</span></code> and uncomment:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#MX4J_ADDRESS=&quot;-Dmx4jaddress=0.0.0.0&quot;
+<code class="docutils literal notranslate"><span class="pre">conf/cassandra-env.sh</span></code> and uncomment:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#MX4J_ADDRESS=&quot;-Dmx4jaddress=0.0.0.0&quot;
 
 #MX4J_PORT=&quot;-Dmx4jport=8081&quot;
 </pre></div>
@@ -1643,10 +1643,10 @@
 <p>As mentioned at the top of this section on monitoring the Cassandra metrics can be exported to a number of monitoring
 system a number of <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/getting-started/#other-reporting">built in</a> and <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/manual/third-party/">third party</a> reporter plugins.</p>
 <p>The configuration of these plugins is managed by the <a class="reference external" href="https://github.com/addthis/metrics-reporter-config">metrics reporter config project</a>. There is a sample configuration file located at
-<code class="docutils literal"><span class="pre">conf/metrics-reporter-config-sample.yaml</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">conf/metrics-reporter-config-sample.yaml</span></code>.</p>
 <p>Once configured, you simply start cassandra with the flag
-<code class="docutils literal"><span class="pre">-Dcassandra.metricsReporterConfigFile=metrics-reporter-config.yaml</span></code>. The specified .yaml file plus any 3rd party
-reporter jars must all be in Cassandra&#8217;s classpath.</p>
+<code class="docutils literal notranslate"><span class="pre">-Dcassandra.metricsReporterConfigFile=metrics-reporter-config.yaml</span></code>. The specified .yaml file plus any 3rd party
+reporter jars must all be in Cassandra’s classpath.</p>
 </div>
 </div>
 
diff --git a/content/doc/3.11/operating/read_repair.html b/content/doc/3.11/operating/read_repair.html
index b849636..e0aab0a 100644
--- a/content/doc/3.11/operating/read_repair.html
+++ b/content/doc/3.11/operating/read_repair.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hints" href="hints.html"/> <link rel="prev" title="Repair" href="repair.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hints" href="hints.html"/> <link rel="prev" title="Repair" href="repair.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/operating/repair.html b/content/doc/3.11/operating/repair.html
index cd8d559..19f7e36 100644
--- a/content/doc/3.11/operating/repair.html
+++ b/content/doc/3.11/operating/repair.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Read repair" href="read_repair.html"/> <link rel="prev" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Read repair" href="read_repair.html"/> <link rel="prev" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/operating/security.html b/content/doc/3.11/operating/security.html
index 9a2fbca..5f412f0 100644
--- a/content/doc/3.11/operating/security.html
+++ b/content/doc/3.11/operating/security.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hardware Choices" href="hardware.html"/> <link rel="prev" title="Monitoring" href="metrics.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hardware Choices" href="hardware.html"/> <link rel="prev" title="Monitoring" href="metrics.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -186,7 +186,7 @@
 cluster. Enabling encryption ensures that data in flight is not compromised and is transferred securely. The options for
 client-to-node and node-to-node encryption are managed separately and may be configured independently.</p>
 <p>In both cases, the JVM defaults for supported protocols and cipher suites are used when encryption is enabled. These can
-be overidden using the settings in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>, but this is not recommended unless there are policies in place
+be overidden using the settings in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>, but this is not recommended unless there are policies in place
 which dictate certain settings or a need to disable vulnerable ciphers or protocols in cases where the JVM cannot be
 updated.</p>
 <p>FIPS compliant settings can be configured at the JVM level and should not involve changing encryption settings in
@@ -196,41 +196,41 @@
 <a class="reference external" href="http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore">java documentation on creating keystores</a></p>
 <div class="section" id="inter-node-encryption">
 <h3>Inter-node Encryption<a class="headerlink" href="#inter-node-encryption" title="Permalink to this headline">¶</a></h3>
-<p>The settings for managing inter-node encryption are found in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal"><span class="pre">server_encryption_options</span></code>
-section. To enable inter-node encryption, change the <code class="docutils literal"><span class="pre">internode_encryption</span></code> setting from its default value of <code class="docutils literal"><span class="pre">none</span></code>
-to one value from: <code class="docutils literal"><span class="pre">rack</span></code>, <code class="docutils literal"><span class="pre">dc</span></code> or <code class="docutils literal"><span class="pre">all</span></code>.</p>
+<p>The settings for managing inter-node encryption are found in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal notranslate"><span class="pre">server_encryption_options</span></code>
+section. To enable inter-node encryption, change the <code class="docutils literal notranslate"><span class="pre">internode_encryption</span></code> setting from its default value of <code class="docutils literal notranslate"><span class="pre">none</span></code>
+to one value from: <code class="docutils literal notranslate"><span class="pre">rack</span></code>, <code class="docutils literal notranslate"><span class="pre">dc</span></code> or <code class="docutils literal notranslate"><span class="pre">all</span></code>.</p>
 </div>
 <div class="section" id="client-to-node-encryption">
 <h3>Client to Node Encryption<a class="headerlink" href="#client-to-node-encryption" title="Permalink to this headline">¶</a></h3>
-<p>The settings for managing client to node encryption are found in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal"><span class="pre">client_encryption_options</span></code>
-section. There are two primary toggles here for enabling encryption, <code class="docutils literal"><span class="pre">enabled</span></code> and <code class="docutils literal"><span class="pre">optional</span></code>.</p>
+<p>The settings for managing client to node encryption are found in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal notranslate"><span class="pre">client_encryption_options</span></code>
+section. There are two primary toggles here for enabling encryption, <code class="docutils literal notranslate"><span class="pre">enabled</span></code> and <code class="docutils literal notranslate"><span class="pre">optional</span></code>.</p>
 <ul class="simple">
-<li>If neither is set to <code class="docutils literal"><span class="pre">true</span></code>, client connections are entirely unencrypted.</li>
-<li>If <code class="docutils literal"><span class="pre">enabled</span></code> is set to <code class="docutils literal"><span class="pre">true</span></code> and <code class="docutils literal"><span class="pre">optional</span></code> is set to <code class="docutils literal"><span class="pre">false</span></code>, all client connections must be secured.</li>
-<li>If both options are set to <code class="docutils literal"><span class="pre">true</span></code>, both encrypted and unencrypted connections are supported using the same port.
+<li>If neither is set to <code class="docutils literal notranslate"><span class="pre">true</span></code>, client connections are entirely unencrypted.</li>
+<li>If <code class="docutils literal notranslate"><span class="pre">enabled</span></code> is set to <code class="docutils literal notranslate"><span class="pre">true</span></code> and <code class="docutils literal notranslate"><span class="pre">optional</span></code> is set to <code class="docutils literal notranslate"><span class="pre">false</span></code>, all client connections must be secured.</li>
+<li>If both options are set to <code class="docutils literal notranslate"><span class="pre">true</span></code>, both encrypted and unencrypted connections are supported using the same port.
 Client connections using encryption with this configuration will be automatically detected and handled by the server.</li>
 </ul>
-<p>As an alternative to the <code class="docutils literal"><span class="pre">optional</span></code> setting, separate ports can also be configured for secure and unsecure connections
-where operational requirements demand it. To do so, set <code class="docutils literal"><span class="pre">optional</span></code> to false and use the <code class="docutils literal"><span class="pre">native_transport_port_ssl</span></code>
-setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to specify the port to be used for secure client communication.</p>
+<p>As an alternative to the <code class="docutils literal notranslate"><span class="pre">optional</span></code> setting, separate ports can also be configured for secure and unsecure connections
+where operational requirements demand it. To do so, set <code class="docutils literal notranslate"><span class="pre">optional</span></code> to false and use the <code class="docutils literal notranslate"><span class="pre">native_transport_port_ssl</span></code>
+setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to specify the port to be used for secure client communication.</p>
 </div>
 </div>
 <div class="section" id="roles">
 <span id="operation-roles"></span><h2>Roles<a class="headerlink" href="#roles" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra uses database roles, which may represent either a single user or a group of users, in both authentication and
 permissions management. Role management is an extension point in Cassandra and may be configured using the
-<code class="docutils literal"><span class="pre">role_manager</span></code> setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>. The default setting uses <code class="docutils literal"><span class="pre">CassandraRoleManager</span></code>, an implementation
-which stores role information in the tables of the <code class="docutils literal"><span class="pre">system_auth</span></code> keyspace.</p>
+<code class="docutils literal notranslate"><span class="pre">role_manager</span></code> setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>. The default setting uses <code class="docutils literal notranslate"><span class="pre">CassandraRoleManager</span></code>, an implementation
+which stores role information in the tables of the <code class="docutils literal notranslate"><span class="pre">system_auth</span></code> keyspace.</p>
 <p>See also the <a class="reference internal" href="../cql/security.html#cql-roles"><span class="std std-ref">CQL documentation on roles</span></a>.</p>
 </div>
 <div class="section" id="authentication">
 <h2>Authentication<a class="headerlink" href="#authentication" title="Permalink to this headline">¶</a></h2>
-<p>Authentication is pluggable in Cassandra and is configured using the <code class="docutils literal"><span class="pre">authenticator</span></code> setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>.
+<p>Authentication is pluggable in Cassandra and is configured using the <code class="docutils literal notranslate"><span class="pre">authenticator</span></code> setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>.
 Cassandra ships with two options included in the default distribution.</p>
-<p>By default, Cassandra is configured with <code class="docutils literal"><span class="pre">AllowAllAuthenticator</span></code> which performs no authentication checks and therefore
+<p>By default, Cassandra is configured with <code class="docutils literal notranslate"><span class="pre">AllowAllAuthenticator</span></code> which performs no authentication checks and therefore
 requires no credentials. It is used to disable authentication completely. Note that authentication is a necessary
-condition of Cassandra&#8217;s permissions subsystem, so if authentication is disabled, effectively so are permissions.</p>
-<p>The default distribution also includes <code class="docutils literal"><span class="pre">PasswordAuthenticator</span></code>, which stores encrypted credentials in a system table.
+condition of Cassandra’s permissions subsystem, so if authentication is disabled, effectively so are permissions.</p>
+<p>The default distribution also includes <code class="docutils literal notranslate"><span class="pre">PasswordAuthenticator</span></code>, which stores encrypted credentials in a system table.
 This can be used to enable simple username/password authentication.</p>
 <div class="section" id="enabling-password-authentication">
 <span id="password-authentication"></span><h3>Enabling Password Authentication<a class="headerlink" href="#enabling-password-authentication" title="Permalink to this headline">¶</a></h3>
@@ -244,42 +244,42 @@
 to this node during the setup process, so you may want to remove it from client config, block it at the network level
 or possibly add a new temporary node to the cluster for this purpose. On that node, perform the following steps:</p>
 <ol class="arabic simple">
-<li>Open a <code class="docutils literal"><span class="pre">cqlsh</span></code> session and change the replication factor of the <code class="docutils literal"><span class="pre">system_auth</span></code> keyspace. By default, this keyspace
-uses <code class="docutils literal"><span class="pre">SimpleReplicationStrategy</span></code> and a <code class="docutils literal"><span class="pre">replication_factor</span></code> of 1. It is recommended to change this for any
+<li>Open a <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code> session and change the replication factor of the <code class="docutils literal notranslate"><span class="pre">system_auth</span></code> keyspace. By default, this keyspace
+uses <code class="docutils literal notranslate"><span class="pre">SimpleReplicationStrategy</span></code> and a <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> of 1. It is recommended to change this for any
 non-trivial deployment to ensure that should nodes become unavailable, login is still possible. Best practice is to
 configure a replication factor of 3 to 5 per-DC.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER KEYSPACE system_auth WITH replication = {&#39;class&#39;: &#39;NetworkTopologyStrategy&#39;, &#39;DC1&#39;: 3, &#39;DC2&#39;: 3};
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER KEYSPACE system_auth WITH replication = {&#39;class&#39;: &#39;NetworkTopologyStrategy&#39;, &#39;DC1&#39;: 3, &#39;DC2&#39;: 3};
 </pre></div>
 </div>
 <ol class="arabic simple" start="2">
-<li>Edit <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal"><span class="pre">authenticator</span></code> option like so:</li>
+<li>Edit <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal notranslate"><span class="pre">authenticator</span></code> option like so:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>authenticator: PasswordAuthenticator
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>authenticator: PasswordAuthenticator
 </pre></div>
 </div>
 <ol class="arabic simple" start="3">
 <li>Restart the node.</li>
-<li>Open a new <code class="docutils literal"><span class="pre">cqlsh</span></code> session using the credentials of the default superuser:</li>
+<li>Open a new <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code> session using the credentials of the default superuser:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh -u cassandra -p cassandra
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh -u cassandra -p cassandra
 </pre></div>
 </div>
 <ol class="arabic simple" start="5">
-<li>During login, the credentials for the default superuser are read with a consistency level of <code class="docutils literal"><span class="pre">QUORUM</span></code>, whereas
-those for all other users (including superusers) are read at <code class="docutils literal"><span class="pre">LOCAL_ONE</span></code>. In the interests of performance and
+<li>During login, the credentials for the default superuser are read with a consistency level of <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code>, whereas
+those for all other users (including superusers) are read at <code class="docutils literal notranslate"><span class="pre">LOCAL_ONE</span></code>. In the interests of performance and
 availability, as well as security, operators should create another superuser and disable the default one. This step
 is optional, but highly recommended. While logged in as the default superuser, create another superuser role which
 can be used to bootstrap further configuration.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span># create a new superuser
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span># create a new superuser
 CREATE ROLE dba WITH SUPERUSER = true AND LOGIN = true AND PASSWORD = &#39;super&#39;;
 </pre></div>
 </div>
 <ol class="arabic simple" start="6">
 <li>Start a new cqlsh session, this time logging in as the new_superuser and disable the default superuser.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER ROLE cassandra WITH SUPERUSER = false AND LOGIN = false;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER ROLE cassandra WITH SUPERUSER = false AND LOGIN = false;
 </pre></div>
 </div>
 <ol class="arabic simple" start="7">
@@ -289,18 +289,18 @@
 <p>At the end of these steps, the one node is configured to use password authentication. To roll that out across the
 cluster, repeat steps 2 and 3 on each node in the cluster. Once all nodes have been restarted, authentication will be
 fully enabled throughout the cluster.</p>
-<p>Note that using <code class="docutils literal"><span class="pre">PasswordAuthenticator</span></code> also requires the use of <a class="reference internal" href="#operation-roles"><span class="std std-ref">CassandraRoleManager</span></a>.</p>
+<p>Note that using <code class="docutils literal notranslate"><span class="pre">PasswordAuthenticator</span></code> also requires the use of <a class="reference internal" href="#operation-roles"><span class="std std-ref">CassandraRoleManager</span></a>.</p>
 <p>See also: <a class="reference internal" href="../cql/security.html#setting-credentials-for-internal-authentication"><span class="std std-ref">Setting credentials for internal authentication</span></a>, <a class="reference internal" href="../cql/security.html#create-role-statement"><span class="std std-ref">CREATE ROLE</span></a>,
 <a class="reference internal" href="../cql/security.html#alter-role-statement"><span class="std std-ref">ALTER ROLE</span></a>, <a class="reference internal" href="../cql/ddl.html#alter-keyspace-statement"><span class="std std-ref">ALTER KEYSPACE</span></a> and <a class="reference internal" href="../cql/security.html#grant-permission-statement"><span class="std std-ref">GRANT PERMISSION</span></a>,</p>
 </div>
 </div>
 <div class="section" id="authorization">
 <h2>Authorization<a class="headerlink" href="#authorization" title="Permalink to this headline">¶</a></h2>
-<p>Authorization is pluggable in Cassandra and is configured using the <code class="docutils literal"><span class="pre">authorizer</span></code> setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>.
+<p>Authorization is pluggable in Cassandra and is configured using the <code class="docutils literal notranslate"><span class="pre">authorizer</span></code> setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>.
 Cassandra ships with two options included in the default distribution.</p>
-<p>By default, Cassandra is configured with <code class="docutils literal"><span class="pre">AllowAllAuthorizer</span></code> which performs no checking and so effectively grants all
-permissions to all roles. This must be used if <code class="docutils literal"><span class="pre">AllowAllAuthenticator</span></code> is the configured authenticator.</p>
-<p>The default distribution also includes <code class="docutils literal"><span class="pre">CassandraAuthorizer</span></code>, which does implement full permissions management
+<p>By default, Cassandra is configured with <code class="docutils literal notranslate"><span class="pre">AllowAllAuthorizer</span></code> which performs no checking and so effectively grants all
+permissions to all roles. This must be used if <code class="docutils literal notranslate"><span class="pre">AllowAllAuthenticator</span></code> is the configured authenticator.</p>
+<p>The default distribution also includes <code class="docutils literal notranslate"><span class="pre">CassandraAuthorizer</span></code>, which does implement full permissions management
 functionality and stores its data in Cassandra system tables.</p>
 <div class="section" id="enabling-internal-authorization">
 <h3>Enabling Internal Authorization<a class="headerlink" href="#enabling-internal-authorization" title="Permalink to this headline">¶</a></h3>
@@ -311,16 +311,16 @@
 <p>The following assumes that authentication has already been enabled via the process outlined in
 <a class="reference internal" href="#password-authentication"><span class="std std-ref">Enabling Password Authentication</span></a>. Perform these steps to enable internal authorization across the cluster:</p>
 <ol class="arabic simple">
-<li>On the selected node, edit <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal"><span class="pre">authorizer</span></code> option like so:</li>
+<li>On the selected node, edit <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal notranslate"><span class="pre">authorizer</span></code> option like so:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>authorizer: CassandraAuthorizer
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>authorizer: CassandraAuthorizer
 </pre></div>
 </div>
 <ol class="arabic simple" start="2">
 <li>Restart the node.</li>
-<li>Open a new <code class="docutils literal"><span class="pre">cqlsh</span></code> session using the credentials of a role with superuser credentials:</li>
+<li>Open a new <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code> session using the credentials of a role with superuser credentials:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh -u dba -p super
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh -u dba -p super
 </pre></div>
 </div>
 <ol class="arabic simple" start="4">
@@ -328,7 +328,7 @@
 statements. On the other nodes, until configuration is updated and the node restarted, this will have no effect so
 disruption to clients is avoided.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>GRANT SELECT ON ks.t1 TO db_user;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GRANT SELECT ON ks.t1 TO db_user;
 </pre></div>
 </div>
 <ol class="arabic simple" start="5">
@@ -341,11 +341,11 @@
 <div class="section" id="caching">
 <h2>Caching<a class="headerlink" href="#caching" title="Permalink to this headline">¶</a></h2>
 <p>Enabling authentication and authorization places additional load on the cluster by frequently reading from the
-<code class="docutils literal"><span class="pre">system_auth</span></code> tables. Furthermore, these reads are in the critical paths of many client operations, and so has the
+<code class="docutils literal notranslate"><span class="pre">system_auth</span></code> tables. Furthermore, these reads are in the critical paths of many client operations, and so has the
 potential to severely impact quality of service. To mitigate this, auth data such as credentials, permissions and role
-details are cached for a configurable period. The caching can be configured (and even disabled) from <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>
+details are cached for a configurable period. The caching can be configured (and even disabled) from <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>
 or using a JMX client. The JMX interface also supports invalidation of the various caches, but any changes made via JMX
-are not persistent and will be re-read from <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> when the node is restarted.</p>
+are not persistent and will be re-read from <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> when the node is restarted.</p>
 <p>Each cache has 3 options which can be set:</p>
 <dl class="docutils">
 <dt>Validity Period</dt>
@@ -357,22 +357,22 @@
 <dt>Max Entries</dt>
 <dd>Controls the upper bound on cache size.</dd>
 </dl>
-<p>The naming for these options in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> follows the convention:</p>
+<p>The naming for these options in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> follows the convention:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">&lt;type&gt;_validity_in_ms</span></code></li>
-<li><code class="docutils literal"><span class="pre">&lt;type&gt;_update_interval_in_ms</span></code></li>
-<li><code class="docutils literal"><span class="pre">&lt;type&gt;_cache_max_entries</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">&lt;type&gt;_validity_in_ms</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">&lt;type&gt;_update_interval_in_ms</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">&lt;type&gt;_cache_max_entries</span></code></li>
 </ul>
-<p>Where <code class="docutils literal"><span class="pre">&lt;type&gt;</span></code> is one of <code class="docutils literal"><span class="pre">credentials</span></code>, <code class="docutils literal"><span class="pre">permissions</span></code>, or <code class="docutils literal"><span class="pre">roles</span></code>.</p>
-<p>As mentioned, these are also exposed via JMX in the mbeans under the <code class="docutils literal"><span class="pre">org.apache.cassandra.auth</span></code> domain.</p>
+<p>Where <code class="docutils literal notranslate"><span class="pre">&lt;type&gt;</span></code> is one of <code class="docutils literal notranslate"><span class="pre">credentials</span></code>, <code class="docutils literal notranslate"><span class="pre">permissions</span></code>, or <code class="docutils literal notranslate"><span class="pre">roles</span></code>.</p>
+<p>As mentioned, these are also exposed via JMX in the mbeans under the <code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.auth</span></code> domain.</p>
 </div>
 <div class="section" id="jmx-access">
 <h2>JMX access<a class="headerlink" href="#jmx-access" title="Permalink to this headline">¶</a></h2>
 <p>Access control for JMX clients is configured separately to that for CQL. For both authentication and authorization, two
 providers are available; the first based on standard JMX security and the second which integrates more closely with
-Cassandra&#8217;s own auth subsystem.</p>
+Cassandra’s own auth subsystem.</p>
 <p>The default settings for Cassandra make JMX accessible only from localhost. To enable remote JMX connections, edit
-<code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal"><span class="pre">cassandra-env.ps1</span></code> on Windows) to change the <code class="docutils literal"><span class="pre">LOCAL_JMX</span></code> setting to <code class="docutils literal"><span class="pre">yes</span></code>. Under the
+<code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal notranslate"><span class="pre">cassandra-env.ps1</span></code> on Windows) to change the <code class="docutils literal notranslate"><span class="pre">LOCAL_JMX</span></code> setting to <code class="docutils literal notranslate"><span class="pre">yes</span></code>. Under the
 standard configuration, when remote JMX connections are enabled, <a class="reference internal" href="#standard-jmx-auth"><span class="std std-ref">standard JMX authentication</span></a>
 is also switched on.</p>
 <p>Note that by default, local-only connections are not subject to authentication, but this can be enabled.</p>
@@ -382,27 +382,27 @@
 <div class="section" id="standard-jmx-auth">
 <span id="id1"></span><h3>Standard JMX Auth<a class="headerlink" href="#standard-jmx-auth" title="Permalink to this headline">¶</a></h3>
 <p>Users permitted to connect to the JMX server are specified in a simple text file. The location of this file is set in
-<code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> by the line:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
+<code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> by the line:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
 </pre></div>
 </div>
 <p>Edit the password file to add username/password pairs:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>jmx_user jmx_password
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>jmx_user jmx_password
 </pre></div>
 </div>
 <p>Secure the credentials file so that only the user running the Cassandra process can read it :</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>$ chown cassandra:cassandra /etc/cassandra/jmxremote.password
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ chown cassandra:cassandra /etc/cassandra/jmxremote.password
 $ chmod 400 /etc/cassandra/jmxremote.password
 </pre></div>
 </div>
 <p>Optionally, enable access control to limit the scope of what defined users can do via JMX. Note that this is a fairly
 blunt instrument in this context as most operational tools in Cassandra require full read/write access. To configure a
-simple access file, uncomment this line in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
+simple access file, uncomment this line in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
 </pre></div>
 </div>
 <p>Then edit the access file to grant your JMX user readwrite permission:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>jmx_user readwrite
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>jmx_user readwrite
 </pre></div>
 </div>
 <p>Cassandra must be restarted to pick up the new settings.</p>
@@ -410,36 +410,36 @@
 </div>
 <div class="section" id="cassandra-integrated-auth">
 <h3>Cassandra Integrated Auth<a class="headerlink" href="#cassandra-integrated-auth" title="Permalink to this headline">¶</a></h3>
-<p>An alternative to the out-of-the-box JMX auth is to useeCassandra&#8217;s own authentication and/or authorization providers
+<p>An alternative to the out-of-the-box JMX auth is to useeCassandra’s own authentication and/or authorization providers
 for JMX clients. This is potentially more flexible and secure but it come with one major caveat. Namely that it is not
 available until <cite>after</cite> a node has joined the ring, because the auth subsystem is not fully configured until that point
 However, it is often critical for monitoring purposes to have JMX access particularly during bootstrap. So it is
 recommended, where possible, to use local only JMX auth during bootstrap and then, if remote connectivity is required,
 to switch to integrated auth once the node has joined the ring and initial setup is complete.</p>
 <p>With this option, the same database roles used for CQL authentication can be used to control access to JMX, so updates
-can be managed centrally using just <code class="docutils literal"><span class="pre">cqlsh</span></code>. Furthermore, fine grained control over exactly which operations are
+can be managed centrally using just <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code>. Furthermore, fine grained control over exactly which operations are
 permitted on particular MBeans can be acheived via <a class="reference internal" href="../cql/security.html#grant-permission-statement"><span class="std std-ref">GRANT PERMISSION</span></a>.</p>
-<p>To enable integrated authentication, edit <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> to uncomment these lines:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.remote.login.config=CassandraLogin&quot;
+<p>To enable integrated authentication, edit <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> to uncomment these lines:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.remote.login.config=CassandraLogin&quot;
 #JVM_OPTS=&quot;$JVM_OPTS -Djava.security.auth.login.config=$CASSANDRA_HOME/conf/cassandra-jaas.config&quot;
 </pre></div>
 </div>
 <p>And disable the JMX standard auth by commenting this line:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
 </pre></div>
 </div>
 <p>To enable integrated authorization, uncomment this line:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.authorizer=org.apache.cassandra.auth.jmx.AuthorizationProxy&quot;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.authorizer=org.apache.cassandra.auth.jmx.AuthorizationProxy&quot;
 </pre></div>
 </div>
 <p>Check standard access control is off by ensuring this line is commented out:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
 </pre></div>
 </div>
 <p>With integrated authentication and authorization enabled, operators can define specific roles and grant them access to
 the particular JMX resources that they need. For example, a role with the necessary permissions to use tools such as
 jconsole or jmc in read-only mode would be defined as:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CREATE ROLE jmx WITH LOGIN = false;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CREATE ROLE jmx WITH LOGIN = false;
 GRANT SELECT ON ALL MBEANS TO jmx;
 GRANT DESCRIBE ON ALL MBEANS TO jmx;
 GRANT EXECUTE ON MBEAN &#39;java.lang:type=Threading&#39; TO jmx;
@@ -451,12 +451,12 @@
 </pre></div>
 </div>
 <p>Fine grained access control to individual MBeans is also supported:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>GRANT EXECUTE ON MBEAN &#39;org.apache.cassandra.db:type=Tables,keyspace=test_keyspace,table=t1&#39; TO ks_user;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GRANT EXECUTE ON MBEAN &#39;org.apache.cassandra.db:type=Tables,keyspace=test_keyspace,table=t1&#39; TO ks_user;
 GRANT EXECUTE ON MBEAN &#39;org.apache.cassandra.db:type=Tables,keyspace=test_keyspace,table=*&#39; TO ks_owner;
 </pre></div>
 </div>
-<p>This permits the <code class="docutils literal"><span class="pre">ks_user</span></code> role to invoke methods on the MBean representing a single table in <code class="docutils literal"><span class="pre">test_keyspace</span></code>, while
-granting the same permission for all table level MBeans in that keyspace to the <code class="docutils literal"><span class="pre">ks_owner</span></code> role.</p>
+<p>This permits the <code class="docutils literal notranslate"><span class="pre">ks_user</span></code> role to invoke methods on the MBean representing a single table in <code class="docutils literal notranslate"><span class="pre">test_keyspace</span></code>, while
+granting the same permission for all table level MBeans in that keyspace to the <code class="docutils literal notranslate"><span class="pre">ks_owner</span></code> role.</p>
 <p>Adding/removing roles and granting/revoking of permissions is handled dynamically once the initial setup is complete, so
 no further restarts are required if permissions are altered.</p>
 <p>See also: <a class="reference internal" href="../cql/security.html#cql-permissions"><span class="std std-ref">Permissions</span></a>.</p>
@@ -464,29 +464,29 @@
 <div class="section" id="jmx-with-ssl">
 <span id="id2"></span><h3>JMX With SSL<a class="headerlink" href="#jmx-with-ssl" title="Permalink to this headline">¶</a></h3>
 <p>JMX SSL configuration is controlled by a number of system properties, some of which are optional. To turn on SSL, edit
-the relevant lines in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal"><span class="pre">cassandra-env.ps1</span></code> on Windows) to uncomment and set the values of these
+the relevant lines in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal notranslate"><span class="pre">cassandra-env.ps1</span></code> on Windows) to uncomment and set the values of these
 properties as required:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl</span></code></dt>
 <dd>set to true to enable SSL</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl.need.client.auth</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl.need.client.auth</span></code></dt>
 <dd>set to true to enable validation of client certificates</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.registry.ssl</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.registry.ssl</span></code></dt>
 <dd>enables SSL sockets for the RMI registry from which clients obtain the JMX connector stub</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl.enabled.protocols</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl.enabled.protocols</span></code></dt>
 <dd>by default, the protocols supported by the JVM will be used, override with a comma-separated list. Note that this is
 not usually necessary and using the defaults is the preferred option.</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl.enabled.cipher.suites</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl.enabled.cipher.suites</span></code></dt>
 <dd>by default, the cipher suites supported by the JVM will be used, override with a comma-separated list. Note that
 this is not usually necessary and using the defaults is the preferred option.</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.keyStore</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.keyStore</span></code></dt>
 <dd>set the path on the local filesystem of the keystore containing server private keys and public certificates</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.keyStorePassword</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.keyStorePassword</span></code></dt>
 <dd>set the password of the keystore file</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.trustStore</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.trustStore</span></code></dt>
 <dd>if validation of client certificates is required, use this property to specify the path of the truststore containing
 the public certificates of trusted clients</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.trustStorePassword</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.trustStorePassword</span></code></dt>
 <dd>set the password of the truststore file</dd>
 </dl>
 <p>See also: <a class="reference external" href="http://docs.oracle.com/javase/7/docs/technotes/guides/management/agent.html#gdemv">Oracle Java7 Docs</a>,
diff --git a/content/doc/3.11/operating/snitch.html b/content/doc/3.11/operating/snitch.html
index 0fa3bf4..2e438a4 100644
--- a/content/doc/3.11/operating/snitch.html
+++ b/content/doc/3.11/operating/snitch.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> <link rel="prev" title="Operating Cassandra" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> <link rel="prev" title="Operating Cassandra" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -174,20 +174,20 @@
 <ul class="simple">
 <li>it teaches Cassandra enough about your network topology to route requests efficiently.</li>
 <li>it allows Cassandra to spread replicas around your cluster to avoid correlated failures. It does this by grouping
-machines into &#8220;datacenters&#8221; and &#8220;racks.&#8221;  Cassandra will do its best not to have more than one replica on the same
-&#8220;rack&#8221; (which may not actually be a physical location).</li>
+machines into “datacenters” and “racks.”  Cassandra will do its best not to have more than one replica on the same
+“rack” (which may not actually be a physical location).</li>
 </ul>
 <div class="section" id="dynamic-snitching">
 <h2>Dynamic snitching<a class="headerlink" href="#dynamic-snitching" title="Permalink to this headline">¶</a></h2>
 <p>The dynamic snitch monitor read latencies to avoid reading from hosts that have slowed down. The dynamic snitch is
-configured with the following properties on <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>:</p>
+configured with the following properties on <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">dynamic_snitch</span></code>: whether the dynamic snitch should be enabled or disabled.</li>
-<li><code class="docutils literal"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code>: controls how often to perform the more expensive part of host score
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch</span></code>: whether the dynamic snitch should be enabled or disabled.</li>
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code>: controls how often to perform the more expensive part of host score
 calculation.</li>
-<li><code class="docutils literal"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code>: if set greater than zero and read_repair_chance is &lt; 1.0, this will allow
-&#8216;pinning&#8217; of replicas to hosts in order to increase cache capacity.</li>
-<li><code class="docutils literal"><span class="pre">dynamic_snitch_badness_threshold:</span></code>: The badness threshold will control how much worse the pinned host has to be
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code>: if set greater than zero and read_repair_chance is &lt; 1.0, this will allow
+‘pinning’ of replicas to hosts in order to increase cache capacity.</li>
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_badness_threshold:</span></code>: The badness threshold will control how much worse the pinned host has to be
 before the dynamic snitch will prefer other replicas over it.  This is expressed as a double which represents a
 percentage.  Thus, a value of 0.2 means Cassandra would continue to prefer the static snitch values until the pinned
 host was 20% worse than the fastest.</li>
@@ -195,31 +195,31 @@
 </div>
 <div class="section" id="snitch-classes">
 <h2>Snitch classes<a class="headerlink" href="#snitch-classes" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">endpoint_snitch</span></code> parameter in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> should be set to the class the class that implements
-<code class="docutils literal"><span class="pre">IEndPointSnitch</span></code> which will be wrapped by the dynamic snitch and decide if two endpoints are in the same data center
+<p>The <code class="docutils literal notranslate"><span class="pre">endpoint_snitch</span></code> parameter in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> should be set to the class the class that implements
+<code class="docutils literal notranslate"><span class="pre">IEndPointSnitch</span></code> which will be wrapped by the dynamic snitch and decide if two endpoints are in the same data center
 or on the same rack. Out of the box, Cassandra provides the snitch implementations:</p>
 <dl class="docutils">
 <dt>GossipingPropertyFileSnitch</dt>
 <dd>This should be your go-to snitch for production use. The rack and datacenter for the local node are defined in
-cassandra-rackdc.properties and propagated to other nodes via gossip. If <code class="docutils literal"><span class="pre">cassandra-topology.properties</span></code> exists,
+cassandra-rackdc.properties and propagated to other nodes via gossip. If <code class="docutils literal notranslate"><span class="pre">cassandra-topology.properties</span></code> exists,
 it is used as a fallback, allowing migration from the PropertyFileSnitch.</dd>
 <dt>SimpleSnitch</dt>
 <dd>Treats Strategy order as proximity. This can improve cache locality when disabling read repair. Only appropriate for
 single-datacenter deployments.</dd>
 <dt>PropertyFileSnitch</dt>
 <dd>Proximity is determined by rack and data center, which are explicitly configured in
-<code class="docutils literal"><span class="pre">cassandra-topology.properties</span></code>.</dd>
+<code class="docutils literal notranslate"><span class="pre">cassandra-topology.properties</span></code>.</dd>
 <dt>Ec2Snitch</dt>
 <dd>Appropriate for EC2 deployments in a single Region. Loads Region and Availability Zone information from the EC2 API.
 The Region is treated as the datacenter, and the Availability Zone as the rack. Only private IPs are used, so this
 will not work across multiple regions.</dd>
 <dt>Ec2MultiRegionSnitch</dt>
 <dd>Uses public IPs as broadcast_address to allow cross-region connectivity (thus, you should set seed addresses to the
-public IP as well). You will need to open the <code class="docutils literal"><span class="pre">storage_port</span></code> or <code class="docutils literal"><span class="pre">ssl_storage_port</span></code> on the public IP firewall
+public IP as well). You will need to open the <code class="docutils literal notranslate"><span class="pre">storage_port</span></code> or <code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code> on the public IP firewall
 (For intra-Region traffic, Cassandra will switch to the private IP after establishing a connection).</dd>
 <dt>RackInferringSnitch</dt>
 <dd>Proximity is determined by rack and data center, which are assumed to correspond to the 3rd and 2nd octet of each
-node&#8217;s IP address, respectively.  Unless this happens to match your deployment conventions, this is best used as an
+node’s IP address, respectively.  Unless this happens to match your deployment conventions, this is best used as an
 example of writing a custom Snitch class and is provided in that spirit.</dd>
 </dl>
 </div>
diff --git a/content/doc/3.11/operating/topo_changes.html b/content/doc/3.11/operating/topo_changes.html
index 8e4470e..8df2a4b 100644
--- a/content/doc/3.11/operating/topo_changes.html
+++ b/content/doc/3.11/operating/topo_changes.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Repair" href="repair.html"/> <link rel="prev" title="Snitch" href="snitch.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Repair" href="repair.html"/> <link rel="prev" title="Snitch" href="snitch.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -176,22 +176,22 @@
 <span id="topology-changes"></span><h1>Adding, replacing, moving and removing nodes<a class="headerlink" href="#adding-replacing-moving-and-removing-nodes" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="bootstrap">
 <h2>Bootstrap<a class="headerlink" href="#bootstrap" title="Permalink to this headline">¶</a></h2>
-<p>Adding new nodes is called &#8220;bootstrapping&#8221;. The <code class="docutils literal"><span class="pre">num_tokens</span></code> parameter will define the amount of virtual nodes
+<p>Adding new nodes is called “bootstrapping”. The <code class="docutils literal notranslate"><span class="pre">num_tokens</span></code> parameter will define the amount of virtual nodes
 (tokens) the joining node will be assigned during bootstrap. The tokens define the sections of the ring (token ranges)
 the node will become responsible for.</p>
 <div class="section" id="token-allocation">
 <h3>Token allocation<a class="headerlink" href="#token-allocation" title="Permalink to this headline">¶</a></h3>
-<p>With the default token allocation algorithm the new node will pick <code class="docutils literal"><span class="pre">num_tokens</span></code> random tokens to become responsible
+<p>With the default token allocation algorithm the new node will pick <code class="docutils literal notranslate"><span class="pre">num_tokens</span></code> random tokens to become responsible
 for. Since tokens are distributed randomly, load distribution improves with a higher amount of virtual nodes, but it
 also increases token management overhead. The default of 256 virtual nodes should provide a reasonable load balance with
 acceptable overhead.</p>
 <p>On 3.0+ a new token allocation algorithm was introduced to allocate tokens based on the load of existing virtual nodes
 for a given keyspace, and thus yield an improved load distribution with a lower number of tokens. To use this approach,
-the new node must be started with the JVM option <code class="docutils literal"><span class="pre">-Dcassandra.allocate_tokens_for_keyspace=&lt;keyspace&gt;</span></code>, where
-<code class="docutils literal"><span class="pre">&lt;keyspace&gt;</span></code> is the keyspace from which the algorithm can find the load information to optimize token assignment for.</p>
+the new node must be started with the JVM option <code class="docutils literal notranslate"><span class="pre">-Dcassandra.allocate_tokens_for_keyspace=&lt;keyspace&gt;</span></code>, where
+<code class="docutils literal notranslate"><span class="pre">&lt;keyspace&gt;</span></code> is the keyspace from which the algorithm can find the load information to optimize token assignment for.</p>
 <div class="section" id="manual-token-assignment">
 <h4>Manual token assignment<a class="headerlink" href="#manual-token-assignment" title="Permalink to this headline">¶</a></h4>
-<p>You may specify a comma-separated list of tokens manually with the <code class="docutils literal"><span class="pre">initial_token</span></code> <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> parameter, and
+<p>You may specify a comma-separated list of tokens manually with the <code class="docutils literal notranslate"><span class="pre">initial_token</span></code> <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> parameter, and
 if that is specified Cassandra will skip the token allocation process. This may be useful when doing token assignment
 with an external tool or when restoring a node with its previous tokens.</p>
 </div>
@@ -202,26 +202,26 @@
 responsible for to stream data from. By default it will stream from the primary replica of each token range in order to
 guarantee data in the new node will be consistent with the current state.</p>
 <p>In the case of any unavailable replica, the consistent bootstrap process will fail. To override this behavior and
-potentially miss data from an unavailable replica, set the JVM flag <code class="docutils literal"><span class="pre">-Dcassandra.consistent.rangemovement=false</span></code>.</p>
+potentially miss data from an unavailable replica, set the JVM flag <code class="docutils literal notranslate"><span class="pre">-Dcassandra.consistent.rangemovement=false</span></code>.</p>
 </div>
 <div class="section" id="resuming-failed-hanged-bootstrap">
 <h3>Resuming failed/hanged bootstrap<a class="headerlink" href="#resuming-failed-hanged-bootstrap" title="Permalink to this headline">¶</a></h3>
-<p>On 2.2+, if the bootstrap process fails, it&#8217;s possible to resume bootstrap from the previous saved state by calling
-<code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">bootstrap</span> <span class="pre">resume</span></code>. If for some reason the bootstrap hangs or stalls, it may also be resumed by simply
+<p>On 2.2+, if the bootstrap process fails, it’s possible to resume bootstrap from the previous saved state by calling
+<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">bootstrap</span> <span class="pre">resume</span></code>. If for some reason the bootstrap hangs or stalls, it may also be resumed by simply
 restarting the node. In order to cleanup bootstrap state and start fresh, you may set the JVM startup flag
-<code class="docutils literal"><span class="pre">-Dcassandra.reset_bootstrap_progress=true</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">-Dcassandra.reset_bootstrap_progress=true</span></code>.</p>
 <p>On lower versions, when the bootstrap proces fails it is recommended to wipe the node (remove all the data), and restart
 the bootstrap process again.</p>
 </div>
 <div class="section" id="manual-bootstrapping">
 <h3>Manual bootstrapping<a class="headerlink" href="#manual-bootstrapping" title="Permalink to this headline">¶</a></h3>
-<p>It&#8217;s possible to skip the bootstrapping process entirely and join the ring straight away by setting the hidden parameter
-<code class="docutils literal"><span class="pre">auto_bootstrap:</span> <span class="pre">false</span></code>. This may be useful when restoring a node from a backup or creating a new data-center.</p>
+<p>It’s possible to skip the bootstrapping process entirely and join the ring straight away by setting the hidden parameter
+<code class="docutils literal notranslate"><span class="pre">auto_bootstrap:</span> <span class="pre">false</span></code>. This may be useful when restoring a node from a backup or creating a new data-center.</p>
 </div>
 </div>
 <div class="section" id="removing-nodes">
 <h2>Removing nodes<a class="headerlink" href="#removing-nodes" title="Permalink to this headline">¶</a></h2>
-<p>You can take a node out of the cluster with <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">decommission</span></code> to a live node, or <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">removenode</span></code> (to any
+<p>You can take a node out of the cluster with <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">decommission</span></code> to a live node, or <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">removenode</span></code> (to any
 other machine) to remove a dead one. This will assign the ranges the old node was responsible for to other nodes, and
 replicate the appropriate data there. If decommission is used, the data will stream from the decommissioned node. If
 removenode is used, the data will stream from the remaining replicas.</p>
@@ -230,34 +230,34 @@
 </div>
 <div class="section" id="moving-nodes">
 <h2>Moving nodes<a class="headerlink" href="#moving-nodes" title="Permalink to this headline">¶</a></h2>
-<p>When <code class="docutils literal"><span class="pre">num_tokens:</span> <span class="pre">1</span></code> it&#8217;s possible to move the node position in the ring with <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">move</span></code>. Moving is both a
-convenience over and more efficient than decommission + bootstrap. After moving a node, <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> should be
+<p>When <code class="docutils literal notranslate"><span class="pre">num_tokens:</span> <span class="pre">1</span></code> it’s possible to move the node position in the ring with <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">move</span></code>. Moving is both a
+convenience over and more efficient than decommission + bootstrap. After moving a node, <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> should be
 run to remove any unnecessary data.</p>
 </div>
 <div class="section" id="replacing-a-dead-node">
 <h2>Replacing a dead node<a class="headerlink" href="#replacing-a-dead-node" title="Permalink to this headline">¶</a></h2>
 <p>In order to replace a dead node, start cassandra with the JVM startup flag
-<code class="docutils literal"><span class="pre">-Dcassandra.replace_address_first_boot=&lt;dead_node_ip&gt;</span></code>. Once this property is enabled the node starts in a hibernate
+<code class="docutils literal notranslate"><span class="pre">-Dcassandra.replace_address_first_boot=&lt;dead_node_ip&gt;</span></code>. Once this property is enabled the node starts in a hibernate
 state, during which all the other nodes will see this node to be down.</p>
 <p>The replacing node will now start to bootstrap the data from the rest of the nodes in the cluster. The main difference
 between normal bootstrapping of a new node is that this new node will not accept any writes during this phase.</p>
-<p>Once the bootstrapping is complete the node will be marked &#8220;UP&#8221;, we rely on the hinted handoff&#8217;s for making this node
-consistent (since we don&#8217;t accept writes since the start of the bootstrap).</p>
+<p>Once the bootstrapping is complete the node will be marked “UP”, we rely on the hinted handoff’s for making this node
+consistent (since we don’t accept writes since the start of the bootstrap).</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">If the replacement process takes longer than <code class="docutils literal"><span class="pre">max_hint_window_in_ms</span></code> you <strong>MUST</strong> run repair to make the
+<p class="last">If the replacement process takes longer than <code class="docutils literal notranslate"><span class="pre">max_hint_window_in_ms</span></code> you <strong>MUST</strong> run repair to make the
 replaced node consistent again, since it missed ongoing writes during bootstrapping.</p>
 </div>
 </div>
 <div class="section" id="monitoring-progress">
 <h2>Monitoring progress<a class="headerlink" href="#monitoring-progress" title="Permalink to this headline">¶</a></h2>
-<p>Bootstrap, replace, move and remove progress can be monitored using <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">netstats</span></code> which will show the progress
+<p>Bootstrap, replace, move and remove progress can be monitored using <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">netstats</span></code> which will show the progress
 of the streaming operations.</p>
 </div>
 <div class="section" id="cleanup-data-after-range-movements">
 <h2>Cleanup data after range movements<a class="headerlink" href="#cleanup-data-after-range-movements" title="Permalink to this headline">¶</a></h2>
-<p>As a safety measure, Cassandra does not automatically remove data from nodes that &#8220;lose&#8221; part of their token range due
-to a range movement operation (bootstrap, move, replace). Run <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the nodes that lost ranges to the
+<p>As a safety measure, Cassandra does not automatically remove data from nodes that “lose” part of their token range due
+to a range movement operation (bootstrap, move, replace). Run <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the nodes that lost ranges to the
 joining node when you are satisfied the new node is up and working. If you do not do this the old data will still be
 counted against the load on that node.</p>
 </div>
diff --git a/content/doc/3.11/search.html b/content/doc/3.11/search.html
index 62208fe..f3fda94 100644
--- a/content/doc/3.11/search.html
+++ b/content/doc/3.11/search.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/searchindex.js b/content/doc/3.11/searchindex.js
index 05a7b40..9e174ae 100644
--- a/content/doc/3.11/searchindex.js
+++ b/content/doc/3.11/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["architecture/dynamo","architecture/guarantees","architecture/index","architecture/overview","architecture/storage_engine","bugs","configuration/cassandra_config_file","configuration/index","contactus","cql/appendices","cql/changes","cql/ddl","cql/definitions","cql/dml","cql/functions","cql/index","cql/indexes","cql/json","cql/mvs","cql/security","cql/triggers","cql/types","data_modeling/index","development/code_style","development/how_to_commit","development/how_to_review","development/ide","development/index","development/patches","development/testing","faq/index","getting_started/configuring","getting_started/drivers","getting_started/index","getting_started/installing","getting_started/querying","index","operating/backups","operating/bloom_filters","operating/bulk_loading","operating/cdc","operating/compaction","operating/compression","operating/hardware","operating/hints","operating/index","operating/metrics","operating/read_repair","operating/repair","operating/security","operating/snitch","operating/topo_changes","tools/cqlsh","tools/index","tools/nodetool","tools/nodetool/assassinate","tools/nodetool/bootstrap","tools/nodetool/cleanup","tools/nodetool/clearsnapshot","tools/nodetool/clientstats","tools/nodetool/compact","tools/nodetool/compactionhistory","tools/nodetool/compactionstats","tools/nodetool/decommission","tools/nodetool/describecluster","tools/nodetool/describering","tools/nodetool/disableauditlog","tools/nodetool/disableautocompaction","tools/nodetool/disablebackup","tools/nodetool/disablebinary","tools/nodetool/disablefullquerylog","tools/nodetool/disablegossip","tools/nodetool/disablehandoff","tools/nodetool/disablehintsfordc","tools/nodetool/disableoldprotocolversions","tools/nodetool/drain","tools/nodetool/enableauditlog","tools/nodetool/enableautocompaction","tools/nodetool/enablebackup","tools/nodetool/enablebinary","tools/nodetool/enablefullquerylog","tools/nodetool/enablegossip","tools/nodetool/enablehandoff","tools/nodetool/enablehintsfordc","tools/nodetool/enableoldprotocolversions","tools/nodetool/failuredetector","tools/nodetool/flush","tools/nodetool/garbagecollect","tools/nodetool/gcstats","tools/nodetool/getbatchlogreplaythrottle","tools/nodetool/getcompactionthreshold","tools/nodetool/getcompactionthroughput","tools/nodetool/getconcurrentcompactors","tools/nodetool/getconcurrentviewbuilders","tools/nodetool/getendpoints","tools/nodetool/getinterdcstreamthroughput","tools/nodetool/getlogginglevels","tools/nodetool/getmaxhintwindow","tools/nodetool/getreplicas","tools/nodetool/getseeds","tools/nodetool/getsstables","tools/nodetool/getstreamthroughput","tools/nodetool/gettimeout","tools/nodetool/gettraceprobability","tools/nodetool/gossipinfo","tools/nodetool/handoffwindow","tools/nodetool/help","tools/nodetool/import","tools/nodetool/info","tools/nodetool/invalidatecountercache","tools/nodetool/invalidatekeycache","tools/nodetool/invalidaterowcache","tools/nodetool/join","tools/nodetool/listsnapshots","tools/nodetool/move","tools/nodetool/netstats","tools/nodetool/nodetool","tools/nodetool/pausehandoff","tools/nodetool/profileload","tools/nodetool/proxyhistograms","tools/nodetool/rangekeysample","tools/nodetool/rebuild","tools/nodetool/rebuild_index","tools/nodetool/refresh","tools/nodetool/refreshsizeestimates","tools/nodetool/reloadlocalschema","tools/nodetool/reloadseeds","tools/nodetool/reloadssl","tools/nodetool/reloadtriggers","tools/nodetool/relocatesstables","tools/nodetool/removenode","tools/nodetool/repair","tools/nodetool/repair_admin","tools/nodetool/replaybatchlog","tools/nodetool/resetfullquerylog","tools/nodetool/resetlocalschema","tools/nodetool/resumehandoff","tools/nodetool/ring","tools/nodetool/scrub","tools/nodetool/setbatchlogreplaythrottle","tools/nodetool/setcachecapacity","tools/nodetool/setcachekeystosave","tools/nodetool/setcompactionthreshold","tools/nodetool/setcompactionthroughput","tools/nodetool/setconcurrentcompactors","tools/nodetool/setconcurrentviewbuilders","tools/nodetool/sethintedhandoffthrottlekb","tools/nodetool/setinterdcstreamthroughput","tools/nodetool/setlogginglevel","tools/nodetool/setmaxhintwindow","tools/nodetool/setstreamthroughput","tools/nodetool/settimeout","tools/nodetool/settraceprobability","tools/nodetool/snapshot","tools/nodetool/status","tools/nodetool/statusautocompaction","tools/nodetool/statusbackup","tools/nodetool/statusbinary","tools/nodetool/statusgossip","tools/nodetool/statushandoff","tools/nodetool/stop","tools/nodetool/stopdaemon","tools/nodetool/tablehistograms","tools/nodetool/tablestats","tools/nodetool/toppartitions","tools/nodetool/tpstats","tools/nodetool/truncatehints","tools/nodetool/upgradesstables","tools/nodetool/verify","tools/nodetool/version","tools/nodetool/viewbuildstatus","troubleshooting/index"],envversion:51,filenames:["architecture/dynamo.rst","architecture/guarantees.rst","architecture/index.rst","architecture/overview.rst","architecture/storage_engine.rst","bugs.rst","configuration/cassandra_config_file.rst","configuration/index.rst","contactus.rst","cql/appendices.rst","cql/changes.rst","cql/ddl.rst","cql/definitions.rst","cql/dml.rst","cql/functions.rst","cql/index.rst","cql/indexes.rst","cql/json.rst","cql/mvs.rst","cql/security.rst","cql/triggers.rst","cql/types.rst","data_modeling/index.rst","development/code_style.rst","development/how_to_commit.rst","development/how_to_review.rst","development/ide.rst","development/index.rst","development/patches.rst","development/testing.rst","faq/index.rst","getting_started/configuring.rst","getting_started/drivers.rst","getting_started/index.rst","getting_started/installing.rst","getting_started/querying.rst","index.rst","operating/backups.rst","operating/bloom_filters.rst","operating/bulk_loading.rst","operating/cdc.rst","operating/compaction.rst","operating/compression.rst","operating/hardware.rst","operating/hints.rst","operating/index.rst","operating/metrics.rst","operating/read_repair.rst","operating/repair.rst","operating/security.rst","operating/snitch.rst","operating/topo_changes.rst","tools/cqlsh.rst","tools/index.rst","tools/nodetool.rst","tools/nodetool/assassinate.rst","tools/nodetool/bootstrap.rst","tools/nodetool/cleanup.rst","tools/nodetool/clearsnapshot.rst","tools/nodetool/clientstats.rst","tools/nodetool/compact.rst","tools/nodetool/compactionhistory.rst","tools/nodetool/compactionstats.rst","tools/nodetool/decommission.rst","tools/nodetool/describecluster.rst","tools/nodetool/describering.rst","tools/nodetool/disableauditlog.rst","tools/nodetool/disableautocompaction.rst","tools/nodetool/disablebackup.rst","tools/nodetool/disablebinary.rst","tools/nodetool/disablefullquerylog.rst","tools/nodetool/disablegossip.rst","tools/nodetool/disablehandoff.rst","tools/nodetool/disablehintsfordc.rst","tools/nodetool/disableoldprotocolversions.rst","tools/nodetool/drain.rst","tools/nodetool/enableauditlog.rst","tools/nodetool/enableautocompaction.rst","tools/nodetool/enablebackup.rst","tools/nodetool/enablebinary.rst","tools/nodetool/enablefullquerylog.rst","tools/nodetool/enablegossip.rst","tools/nodetool/enablehandoff.rst","tools/nodetool/enablehintsfordc.rst","tools/nodetool/enableoldprotocolversions.rst","tools/nodetool/failuredetector.rst","tools/nodetool/flush.rst","tools/nodetool/garbagecollect.rst","tools/nodetool/gcstats.rst","tools/nodetool/getbatchlogreplaythrottle.rst","tools/nodetool/getcompactionthreshold.rst","tools/nodetool/getcompactionthroughput.rst","tools/nodetool/getconcurrentcompactors.rst","tools/nodetool/getconcurrentviewbuilders.rst","tools/nodetool/getendpoints.rst","tools/nodetool/getinterdcstreamthroughput.rst","tools/nodetool/getlogginglevels.rst","tools/nodetool/getmaxhintwindow.rst","tools/nodetool/getreplicas.rst","tools/nodetool/getseeds.rst","tools/nodetool/getsstables.rst","tools/nodetool/getstreamthroughput.rst","tools/nodetool/gettimeout.rst","tools/nodetool/gettraceprobability.rst","tools/nodetool/gossipinfo.rst","tools/nodetool/handoffwindow.rst","tools/nodetool/help.rst","tools/nodetool/import.rst","tools/nodetool/info.rst","tools/nodetool/invalidatecountercache.rst","tools/nodetool/invalidatekeycache.rst","tools/nodetool/invalidaterowcache.rst","tools/nodetool/join.rst","tools/nodetool/listsnapshots.rst","tools/nodetool/move.rst","tools/nodetool/netstats.rst","tools/nodetool/nodetool.rst","tools/nodetool/pausehandoff.rst","tools/nodetool/profileload.rst","tools/nodetool/proxyhistograms.rst","tools/nodetool/rangekeysample.rst","tools/nodetool/rebuild.rst","tools/nodetool/rebuild_index.rst","tools/nodetool/refresh.rst","tools/nodetool/refreshsizeestimates.rst","tools/nodetool/reloadlocalschema.rst","tools/nodetool/reloadseeds.rst","tools/nodetool/reloadssl.rst","tools/nodetool/reloadtriggers.rst","tools/nodetool/relocatesstables.rst","tools/nodetool/removenode.rst","tools/nodetool/repair.rst","tools/nodetool/repair_admin.rst","tools/nodetool/replaybatchlog.rst","tools/nodetool/resetfullquerylog.rst","tools/nodetool/resetlocalschema.rst","tools/nodetool/resumehandoff.rst","tools/nodetool/ring.rst","tools/nodetool/scrub.rst","tools/nodetool/setbatchlogreplaythrottle.rst","tools/nodetool/setcachecapacity.rst","tools/nodetool/setcachekeystosave.rst","tools/nodetool/setcompactionthreshold.rst","tools/nodetool/setcompactionthroughput.rst","tools/nodetool/setconcurrentcompactors.rst","tools/nodetool/setconcurrentviewbuilders.rst","tools/nodetool/sethintedhandoffthrottlekb.rst","tools/nodetool/setinterdcstreamthroughput.rst","tools/nodetool/setlogginglevel.rst","tools/nodetool/setmaxhintwindow.rst","tools/nodetool/setstreamthroughput.rst","tools/nodetool/settimeout.rst","tools/nodetool/settraceprobability.rst","tools/nodetool/snapshot.rst","tools/nodetool/status.rst","tools/nodetool/statusautocompaction.rst","tools/nodetool/statusbackup.rst","tools/nodetool/statusbinary.rst","tools/nodetool/statusgossip.rst","tools/nodetool/statushandoff.rst","tools/nodetool/stop.rst","tools/nodetool/stopdaemon.rst","tools/nodetool/tablehistograms.rst","tools/nodetool/tablestats.rst","tools/nodetool/toppartitions.rst","tools/nodetool/tpstats.rst","tools/nodetool/truncatehints.rst","tools/nodetool/upgradesstables.rst","tools/nodetool/verify.rst","tools/nodetool/version.rst","tools/nodetool/viewbuildstatus.rst","troubleshooting/index.rst"],objects:{},objnames:{},objtypes:{},terms:{"00t89":21,"03t04":21,"0x0000000000000003":14,"0x00000004":13,"100mb":6,"10mb":6,"10s":52,"10x":[6,41],"11e6":52,"128th":4,"12gb":43,"12h30m":21,"15m":46,"160mb":41,"16mb":[30,41],"180kb":6,"19t03":138,"1mo":21,"1st":21,"24h":21,"250m":6,"256mb":6,"256th":6,"29d":21,"2e10":10,"2gb":43,"2nd":[6,11,50],"2xlarg":43,"300s":6,"327e":52,"32gb":43,"32mb":[6,30],"36x":34,"3ff3e5109f22":13,"3gb":42,"3rd":[6,46,50],"40f3":13,"4ae3":13,"4kb":11,"4xlarg":43,"50kb":6,"50mb":[6,41],"512mb":6,"5573e5b09f14":13,"5kb":6,"5mb":41,"64k":6,"64kb":42,"6ms":6,"6tb":43,"7374e9b5ab08c1f1e612bf72293ea14c959b0c3c":24,"75th":46,"86400s":41,"89h4m48":21,"8gb":43,"8th":[6,40],"90th":46,"95ac6470":52,"95th":46,"98th":46,"99th":46,"9th":46,"\u00eatre":9,"abstract":[23,25],"boolean":[9,12,14,17,19,21,52],"break":[28,41],"byte":[6,9,13,21,46,62,80,115,163],"case":[6,10,11,12,13,14,16,17,18,21,24,25,28,29,30,38,43,49,51,52],"catch":23,"class":[6,11,14,21,23,26,29,41,42,45,49,116,128,148],"default":[4,6,10,11,13,14,17,19,21,26,29,30,31,34,38,40,41,42,46,49,51,52,57,76,80,87,115,116,118,121,131,132,138,152,153,164],"enum":9,"export":[26,46,52],"final":[14,19,23,26,41,43,49,132],"float":[9,10,11,12,14,17,21,38,42],"function":[6,9,10,11,12,15,16,18,19,21,25,32,36,49,50,52],"import":[11,14,21,26,27,29,31,41,43,46,52,116],"int":[9,10,11,13,14,17,18,19,21,29,40,42],"long":[6,13,21,24,25,30,41,46],"new":[0,4,6,10,11,14,16,17,18,19,20,21,23,25,26,28,29,33,36,38,41,43,49,51,107,114,116],"null":[9,10,12,13,14,17,18,21,23,52],"public":[6,14,23,29,30,34,49,50],"return":[6,9,11,13,14,16,17,18,19,21,25,131],"short":[6,21],"static":[6,9,10,18,50],"super":49,"switch":[6,10,19,26,30,45,46,49,50],"throw":[6,14,23,29],"true":[6,11,12,17,19,21,26,30,40,41,49,51,52,113,116],"try":[6,11,23,26,28,30,41,54,131],"var":[6,23,34],"void":29,"while":[6,10,11,12,13,21,24,28,38,41,42,43,49,52],AES:6,AND:[9,11,13,14,18,19,49,52],AWS:43,Added:10,Adding:[6,11,19,21,30,36,45,49],And:[11,14,19,49],Are:25,Ave:21,BUT:23,But:[13,15,19,21,23,28,30,52],CAS:6,CFs:[131,138],CLS:52,DCs:6,DNS:30,Doing:10,EBS:43,For:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,20,21,28,29,30,31,34,35,41,43,49,50,52],GCs:6,Has:[6,25],IDE:[27,36],IDEs:[26,27],IDs:[116,154],INTO:[6,9,11,13,14,17,21],IPs:[6,50,137,154],Ids:160,JKS:6,KBs:6,LCS:11,NFS:43,NOT:[6,9,10,11,13,14,16,18,19,20,21],Not:[13,19,28,41,42],ONE:[0,6,46,52],One:[6,29,30,41],PFS:6,Pis:43,Such:21,THE:6,TLS:[6,45],That:[11,12,18,21,28,30,41,52],The:[0,4,6,8,9,10,12,14,16,18,19,20,21,23,24,26,28,29,30,31,34,35,36,38,40,42,43,46,49,50,51,52,57,60,65,67,73,77,83,86,87,90,94,98,100,102,107,114,116,118,122,123,129,131,138,141,142,148,153,154,155,162,164,167,168,170],Their:21,Then:[13,29,30,34,41,49],There:[0,6,10,11,12,13,14,21,26,28,29,30,41,46,49],These:[4,6,11,14,26,46,49,52],USE:[9,14,15],USING:[9,13,16,20,21,41],Use:[11,13,19,30,35,45,52,55,60,116,121,131,160,167],Used:46,Uses:[6,17,45,50],Using:[11,13,29,30,49],WILL:6,WITH:[9,11,12,16,18,19,38,40,41,42,49,52],Will:[6,36,80,116,148],With:[6,13,17,30,41,51,56],Yes:30,_cache_max_entri:49,_if_:6,_must_:6,_trace:46,_udt:14,_update_interval_in_m:49,_use:14,_validity_in_m:49,a278b781fe4b2bda:34,abil:[14,30,42],abilityid:16,abl:[6,14,21,26,29,30,41],about:[4,6,19,26,28,29,30,38,41,50,52,59,116,137],abov:[6,8,11,12,13,14,21,26,28,30,31,40,41,46],absenc:12,abstracttyp:21,accept:[0,6,10,11,12,13,17,28,29,38,51,75,116],access:[6,10,21,26,28,43,45,46],accompani:6,accord:[6,30],accordingli:[6,14,30],account:[6,21,29],accru:[41,46],accumul:[6,41,46],accur:[6,30,38,137],accuraci:[38,118,164],acheiv:49,achiev:[41,46],achil:32,ack:6,acoount:46,acquir:[19,46],across:[6,11,19,28,46,49,50,116,120],action:[6,13],activ:[4,6,28,40,46,52,116,118,164],activetask:46,actual:[4,6,13,20,23,25,30,34,41,50,131],acycl:19,add:[0,6,9,10,11,21,24,25,28,31,34,36,41,49],addamsfamili:11,added:[0,6,10,11,14,25,41],adding:[6,13,14,25,43,52],addit:[0,6,9,11,13,19,21,26,28,31,41,43,46,49,52],addition:[11,13,41],address:[6,8,17,21,26,28,31,36,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],adher:10,adjac:41,adjust:[6,38],adv:34,advanc:[6,45,49],advantag:43,advers:30,advic:[28,30],advis:[6,12,21,30],af08:13,afd:21,affect:[6,25,28,30,41,138],afford:6,after:[5,6,10,11,12,13,14,16,17,18,26,28,30,40,41,43,45,46,49,50,52],afterward:[26,29],afunct:14,again:[6,28,41,51,52],against:[6,11,14,28,29,30,43,51,52,131],agent:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],agentlib:26,aggreg:[6,9,10,13,15,18,19,46,52],aid:12,aim:6,akeyspac:14,algorithm:[6,11,51],alia:[10,13,32],alias:[6,10,18],alic:19,align:23,aliv:6,all:[0,6,9,11,12,13,14,17,18,21,23,24,25,26,28,29,36,38,40,41,46,49,51,52,57,58,59,75,87,107,108,113,116,118,120,129,132,138,152,153,155,164,166,167,168],allmemtableslivedatas:46,allmemtablesoffheaps:46,allmemtablesonheaps:46,alloc:[6,30,40,43,46],allocate_tokens_for_keyspac:51,allow:[0,4,6,9,10,11,12,14,16,17,18,21,31,38,40,41,42,43,50],allowallauthent:[6,49],allowallauthor:[6,49],allowallinternodeauthent:6,almost:[6,14,21,41],alon:[6,23],along:[6,13,113,116],alongsid:[35,52],alphabet:23,alphanumer:[11,19],alreadi:[6,11,14,16,18,21,28,41,49,167],also:[0,4,6,10,11,12,13,14,17,18,19,21,26,28,29,30,31,41,43,46,49,51,52,87,168],alter:[9,10,15,17,30,38,40,41,42,49],alter_keyspace_stat:12,alter_role_stat:12,alter_table_instruct:11,alter_table_stat:12,alter_type_modif:21,alter_type_stat:[12,21],alter_user_stat:12,altern:[6,10,11,12,13,17,21,26,28,31,43,49],although:[6,28],alwai:[0,6,9,10,11,13,14,18,21,23,28,29,30,41,43],amend:24,amongst:11,amount:[6,11,13,21,26,28,29,30,41,42,43,46,51,52,131],amplif:[41,43],anaggreg:14,analogu:13,analyt:38,analyz:29,ani:[0,6,10,11,12,13,14,17,18,19,20,21,24,25,26,28,29,31,34,36,40,41,43,46,49,51,52,55,107,116,121,138,152],annot:23,anonym:[12,21],anoth:[6,11,14,19,21,29,41,49,52],anotherarg:14,ant:[26,28,29],anti:[6,21],anticip:11,anticompact:41,antientropystag:46,antipattern:43,anymor:[24,41],anyon:23,anyth:41,anywai:6,anywher:13,apach:[2,5,6,7,14,20,23,24,25,26,28,29,30,33,34,41,42,46,49,53],api:[6,8,11,15,17,35,50],appear:[12,14,41,52],append:[21,24,43,46,52],appendic:[15,36],appendix:[12,15],appl:21,appli:[6,9,10,11,12,13,19,21,24,28,29,30,46,52],applic:[6,11,19,23,25,26,49],appreci:28,approach:[4,41,51],appropri:[6,11,19,21,25,28,49,50,51],approxim:[41,46],apt:34,arbitrari:[11,12,21],architectur:[30,36],archiv:[6,40,80],archive_command:80,archive_retri:80,aren:13,arg:[14,116],argnam:14,argnum:14,argument:[6,11,13,14,16,17,30,31,42,52,55,56,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],arguments_declar:14,arguments_signatur:14,around:[6,19,41,43,50],arrai:[6,30],arriv:[6,28,30],artifact:26,artifici:11,asap:10,asc:[9,11,13],ascend:[11,13],ascii:[9,14,17,21],asf:26,ask:[5,28,29,36,49],aspect:11,assassin:116,assertionerror:23,assertrow:29,assign:[6,13,30],associ:[6,11],assum:[6,11,14,26,49,50],assumpt:49,astyanax:32,async:[6,49],asynchron:[6,16,30,43],asynchroni:46,atabl:14,atom:[11,13,20,24],atomiclong:46,attach:28,attemp:46,attempt:[0,6,11,16,18,19,21,30,41,46,49,52,132],attent:[23,28],attribut:41,audit:[66,76,116],auditlog:76,auth:6,authent:[10,45,52],authenticatedus:6,author:[9,19,21,45],authorizationproxi:49,auto:[6,30,155],auto_bootstrap:51,autocompact:[41,67,77,116,155],autogener:54,autom:[8,23],automat:[6,13,14,16,26,29,30,34,41,49,51],avail:[0,6,8,11,14,19,26,28,29,34,40,49,50,52,57,87,129,138,148,167],availabil:6,averag:[6,14,41,46],average_live_cells_per_slice_last_five_minut:163,average_s:11,average_tombstones_per_slice_last_five_minut:163,averagefin:14,averagest:14,avg_bucket_s:41,avoid:[6,11,12,23,25,28,38,41,43,49,50,52,168],awai:[26,51,52],awar:[0,11,28,38,42,137],azur:43,b124:13,b70de1d0:13,back:[6,41,46,51],backend:6,background:[30,34,41,49],backlog:6,backpressur:6,backpressurestrategi:6,backup:[6,36,41,45,51,52,68,78,116,156],backward:[6,10,11,15,19,21],bad:[6,14,30,50],balanc:51,banana:21,band:21,bar:[12,23],bardet:21,bare:6,base:[0,4,6,10,11,13,14,18,19,21,24,28,29,30,41,43,46,49,51],bash:30,basi:[6,30,42],basic:[11,41,43],batch:[6,9,15,29,36,52],batch_remov:46,batch_stat:12,batch_stor:46,batchlog:[13,46,89,116,133,139],be34:13,beatl:21,beca:52,becaus:[6,13,14,34,41,42,49],becom:[4,6,11,14,19,28,41,46,49,51],been:[0,4,6,10,13,14,15,19,21,25,28,41,43,49,138],befor:[0,6,10,11,13,14,16,20,21,26,27,29,32,41,49,50,52,80,153],begin:[9,12,13,29,49,52],beginn:28,begintoken:52,behavior:[0,6,10,14,17,21,23,25,38,41,51,132],behind:[6,23,29,30,41],being:[6,11,13,17,21,25,29,30,38,41,46,51],belong:[11,13,14,46,57,116],below:[6,11,12,13,17,19,21,28,34,41,52,63],benchmark:43,benefici:41,benefit:[6,38,41,43,45],besid:6,best:[6,29,41,49,50],best_effort:6,better:[6,23,28,41,43],between:[0,6,9,10,13,15,28,30,38,41,46,49,51,131,152],beyond:[6,52,168],big:[41,60],bigger:[11,41],biggest:14,bigint:[9,14,17,21],bigintasblob:14,bin:[26,34,35,52],binari:[14,33,69,79,116,157],binauditlogg:76,bind:[6,10,12,14,30],bind_mark:[12,13,18,21],biolog:11,birth:13,birth_year:13,bit:[6,14,17,21,28,30,42,43],bite:30,bitrot:11,bitstr:9,black:6,blank:[6,23,30],bleed:26,blindli:30,blob:[9,10,12,17,21,36,42],blobasbigint:14,blobastyp:14,block:[4,6,11,24,31,41,43,46,49,80],blockedonalloc:6,blog:[6,11,13],blog_til:13,blog_titl:13,bloom:[4,11,36,43,45,46],bloom_filter_false_posit:163,bloom_filter_false_ratio:163,bloom_filter_fp_ch:[11,38],bloom_filter_off_heap_memory_us:163,bloom_filter_space_us:163,bloomfilterdiskspaceus:46,bloomfilterfalseposit:46,bloomfilterfalseratio:46,bloomfilteroffheapmemoryus:46,blunt:49,bnf:12,bob:[13,19],bodi:[11,12],boilerpl:27,boolstyl:52,boost:6,boot:30,bootstrap:[0,6,36,42,45,46,49,116,121,148],born:13,both:[0,6,11,13,14,18,21,24,25,28,30,31,38,41,42,43,46,49,51,52],bottleneck:6,bottom:30,bound:[6,11,12,21,43,49],box:[6,49,50],brace:23,bracket:12,braket:12,branch:[24,25,26,29],branchnam:28,breakpoint:26,breed:29,bring:6,brk:30,broadcast:6,broadcast_address:50,broken:[41,46],browser:52,bucket:41,bucket_high:41,bucket_low:41,buffer:[4,6,46],bufferpool:45,bug:[10,24,29,30,36],build:[8,27,29,36,46,116,170],builder:[93,116,145],built:[26,46],bulk:[36,45],bump:10,bunch:23,burn:40,button:30,bytebuff:14,byteorderedpartition:[6,14],bytescompact:46,bytesflush:46,bytestyp:9,c73de1d3:13,cach:[6,30,31,43,45,50,107,109,110,111,116,140,141],cachecleanupexecutor:46,cachenam:46,calcul:[6,38,40,41,46,50],call:[9,11,12,13,14,19,23,31,36,41,43,46,51,116,148],callback:46,caller:23,can:[0,4,5,6,8,9,10,11,12,13,14,16,17,18,19,20,21,23,24,25,26,28,29,31,34,35,36,38,40,41,42,43,46,49,50,51,52,55,57,58,60,65,67,73,77,80,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],cancel:[10,132],candid:41,cannot:[6,9,11,13,14,17,18,19,21,41,49,55,116],cap:[12,91,95,101,116,143,147,150],capabl:[6,30,52],capac:[6,40,46,50,116,118,140,164],captur:[6,36,45],care:[6,41,131],carlo:19,carri:[23,131],cascommit:46,cascontent:[102,151],casprepar:46,caspropos:46,casread:46,cassablanca:21,cassafort:32,cassandra:[0,2,4,5,8,10,11,13,14,19,20,21,23,24,28,32,33,35,38,41,42,43,46,50,51,52,76,80,116,127,131,134,138,161,169],cassandra_hom:[6,40,49],cassandraauthor:[6,49],cassandradaemon:[26,34],cassandralogin:49,cassandrarolemanag:[6,49],casser:32,cassi:32,cast:[10,13,18],caswrit:46,cat:21,categor:46,categori:[11,12,13,14,76],caught:[25,46],caus:[6,18,30,41,49],caution:6,caveat:49,cbc:6,ccm:[25,29],ccmlib:29,cdc:[6,11],cdc_enabl:40,cdc_free_space_check_interval_m:40,cdc_free_space_in_mb:40,cdc_raw:[6,40],cdc_raw_directori:40,cdccompactor:6,cell:[6,21,46,87,168],center:[6,11,21,30,50,51,73,83,116,131],central:[26,49,52],centric:19,certain:[6,9,11,19,29,41,49],certainli:14,certif:[49,116,127],cfname:[100,118,164],cfs:23,chain:19,chanc:38,chang:[6,11,12,15,19,21,24,26,27,33,34,36,42,45,46,49,148],channel:[5,8,28],charact:[11,12,13,17,19,21,23,52],chat:8,cheap:6,check:[0,6,11,13,23,25,26,28,29,30,38,40,41,46,49,107,116,131,168],checklist:[27,28,36],checkout:[26,28],checksum:[11,42,116,168],cherri:24,chess:13,child:52,chmod:49,choic:[6,11,36,41,45],choos:[0,6,11,27,32,43,46],chosen:[0,6,11,14],chown:49,christoph:21,chrome:52,chunk:[4,6,30,42,52],chunk_length_in_kb:[11,42],chunk_length_kb:6,chunk_lenth_in_kb:11,chunkcach:46,chunksiz:52,churn:6,cipher:[6,49],cipher_suit:6,circular:19,citi:21,clash:12,class_nam:6,classpath:[6,14,21,46],claus:[10,11,14,16,17,18,19,23],clean:[6,23,46,57,116,134],cleanli:28,cleanup:[30,41,45,46,87,116,160],clear:[25,28,59,107],clearsnapshot:116,click:[13,26,28,29],client:[0,6,8,10,11,13,17,19,21,25,30,31,33,36,43,45,52,59,116],client_encryption_opt:49,clientrequest:46,clientstat:116,clock:6,clockr:6,clojur:33,clone:[26,30,52],close:[6,15,49],closer:38,cloud:45,cluster:[0,4,6,9,10,13,14,20,21,25,29,31,35,36,41,43,46,49,50,51,52,64,85,89,104,116,139,154],cluster_nam:[31,35],clustering_column:11,clustering_ord:11,cmsparallelremarken:26,coalesc:6,coalescingstrategi:6,code:[6,10,12,14,20,24,25,26,27,29,36,42,46],codestyl:23,col:14,cold:6,collat:6,collect:[6,10,11,12,13,14,15,17,43,45,46,87],collection_liter:12,collection_typ:21,color:[21,52],column1:9,column:[6,9,10,12,13,14,15,16,17,18,21,42,46,52,100,118,138,153,164],column_definit:11,column_nam:[11,13,16],columnfamili:[6,9,23,41],colupdatetimedeltahistogram:46,com:[6,11,14,23,24,49],combin:[4,6,10,40,41],come:[6,9,49],comingl:41,comma:[6,11,12,13,31,49,51,52,76,118,121,164],command:[0,6,24,29,30,31,34,35,42,45,53,55,56,57,58,60,65,67,73,77,80,83,86,87,90,94,98,100,102,106,107,114,116,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],comment:[6,11,15,18,23,25,49],commit:[6,8,11,27,28,36,46],commitlog:[2,6,30,31,43,45],commitlog_archiv:6,commitlog_directori:[31,43],commitlog_segment_size_in_mb:30,commitlogread:40,commitlogreadhandl:40,commitlogreplay:40,commitlogseg:[6,45,46],committ:[24,28,29],common:[0,14,15,23,25,28,45,52],common_nam:11,commonli:116,commun:[6,8,25,26,28,30,31,35,49],commut:30,compact:[4,6,15,30,36,38,42,43,45,57,61,62,87,90,91,116,129,138,142,143,148,155,160,167],compacted_partition_maximum_byt:163,compacted_partition_mean_byt:163,compacted_partition_minimum_byt:163,compaction_:160,compaction_window_s:41,compaction_window_unit:41,compactionbyteswritten:46,compactionexecutor:46,compactionhistori:[41,116],compactionid:160,compactionparamet:41,compactionparametersjson:41,compactionstat:[41,116],compactionstrategi:45,compactor:[92,116,144],compar:[6,28,41,46],compat:[6,9,10,11,13,15,19,25,28],compatilibi:21,compet:6,compil:[23,26,52],complain:26,complet:[6,13,14,28,30,41,46,49,51,52,116,130,132],completedtask:46,complex:[6,9,14,21,28],complexarg:14,compliant:[6,14,49],complic:28,compon:[4,11,25,38,46,49,116,148],compos:[11,13,21],composit:11,compound:17,comprehens:25,compress:[4,6,29,36,41,43,45,46],compression_metadata_off_heap_memory_us:163,compressioninfo:4,compressionmetadataoffheapmemoryus:46,compressionratio:46,compressor:[6,11],compris:[4,11,42],compromis:49,comput:[6,14],concaten:14,concept:[15,19,41],concern:[13,14],concret:[12,21],concurr:[6,43,92,93,116,131,144,145],concurrentmarksweep:43,condens:13,condit:[6,10,12,13,19,21,23,24,41,46,49,52],conditionnotmet:46,conf:[6,30,31,34,46,49,52],config:[46,49,52],configur:[0,4,11,21,26,29,30,33,34,36,45,46,49,50,52,63,80,116,134,148],confirm:[6,8,25,26],conflict:[13,21,24],conform:[18,25],confus:[10,12,30],conjunct:52,connect:[6,11,19,21,26,35,36,46,49,50,52,59,63,115,116],connectednativecli:46,connectedthriftcli:46,connector:[30,32,49],consecut:31,consequ:[11,13,21,43],conserv:6,consid:[0,6,13,21,28,31,38,41,43],consider:[13,21],consist:[2,11,12,13,14,25,49,51],consol:[26,31,52],constant:[10,11,15,17,21],constantli:[6,41],construct:12,constructor:[6,23],consum:[29,38,40,46],consumpt:40,contact:[6,11,30,36],contain:[0,6,8,9,10,11,12,13,15,16,18,19,21,26,28,40,41,42,49,52,153],contend:[6,46],content:[4,6,11,12,13,36,41,52,80],contentionhistogram:46,context:[6,9,19,21,28,30,49],contigu:13,continu:[0,6,23,26,29,41,49,50],contrarili:12,contrast:[29,49],contribut:[24,27,29,36],contributor:[24,28,29,34],control:[0,6,10,11,13,15,25,31,34,41,49,50,52],conveni:[9,12,14,17,29,51],convent:[6,11,14,15,24,27,28,29,49,50],convers:10,convert:[10,13,14,41],coordin:[0,6,11,13,14,21,30,46,132],coordinatorreadlat:46,coordinatorscanlat:46,cop:23,copi:[0,30,41],core:[6,14,43],correct:[10,25,34,41,42,116,129],correctli:[6,11,30,41,49],correl:[6,10,50],correspond:[6,9,11,13,14,18,21,28,29,30,40,50],corrupt:[6,11,41,42,43,138,168],cost:[6,13,21,42],could:[6,12,21,25,28,41,52],couldn:34,count:[6,9,13,21,30,41,46,51],counter:[6,9,14,43,46,109,116,138,140,141],counter_mut:46,countercach:46,countermutationstag:46,counterwrit:[102,151],countri:[13,21],country_cod:21,coupl:[0,6],cours:[6,13],cover:[25,28,29,30,33,41,46],cpu:[6,11,40,42,45],cqerl:32,cql3:[11,14,25,29,52],cql:[6,10,11,12,13,14,16,17,19,21,29,32,35,36,41,45,49,53,148],cql_type:[11,12,13,14,19,21],cqlc:32,cqldefinit:14,cqlsh:[30,33,34,36,49,53],cqltester:[25,29],crash:43,crc32:4,crc:4,crc_check_chanc:[11,42],creat:[6,9,10,12,13,15,17,26,27,29,30,40,41,42,49,51,52,60],create_aggregate_stat:12,create_function_stat:12,create_index_stat:12,create_keyspace_stat:12,create_materialized_view_stat:12,create_role_stat:12,create_table_stat:12,create_trigger_stat:12,create_type_stat:[12,21],create_user_stat:12,createkeystor:6,createt:29,creation:[6,10,11,13,14,18,21],creator:19,credenti:[6,49],critic:[25,28,49],cross:[6,30,50],crossnodedroppedlat:46,cryptographi:6,csv:52,cuddli:21,curl:[24,34],current:[6,9,11,13,14,19,21,26,28,34,41,46,51,52,82,99,103,105,107,116,130,159,167],currentlyblockedtask:46,custom:[6,9,10,11,14,15,16,19,28,50,52],custom_option1:19,custom_option2:19,custom_typ:[14,21],cute:21,cvh:25,cycl:[6,40,80],daemon:[26,116,161],dai:[17,21,41],daili:80,danger:6,dash:12,data:[0,4,6,10,12,14,15,16,18,25,31,34,36,38,42,43,45,46,49,50,52,55,60,73,80,83,87,107,116,121,131,153,168],data_file_directori:[31,43],data_read:19,data_writ:19,databas:[12,13,15,20,41,43,49],datacent:[0,6,50,73,83,95,116,131,147],datacenter1:6,dataset:6,datastax:[6,11,14,32],datatyp:14,date:[9,10,14,15,17,138],dateof:[10,14],datestamp:17,datetieredcompactionstrategi:[11,41],daylight:21,db_user:49,dba:49,dc1:[6,11,49],dc2:[6,11,49],dcassandra:[41,46,49,51],dclocal_read_repair_ch:[0,11,41],dcom:49,dcpar:131,ddl:[11,52],ddl_statement:12,dead:[6,45,55,116],dead_node_ip:51,deb:34,debian:[30,33],debug:[31,52],decid:[9,41,50],decim:[9,14,17,21,52],decimalsep:52,declar:[11,12,14,21],decod:[17,21],decommiss:[6,51,116],decompress:42,decreas:[6,41],decrement:[13,21],decrypt:6,dedic:6,deem:6,deeper:28,default_time_to_l:[10,11,13],default_weight:6,defend:30,defin:[0,6,9,10,11,12,13,15,16,17,18,19,20,26,41,46,49,50,51,52,60,116],definit:[9,13,14,15,18,21,36,38],deflat:6,deflatecompressor:[11,42],degrad:6,delet:[6,9,10,11,12,15,17,19,21,28,36,52,80,87,116,166],delete_stat:[12,13],delimit:6,deliv:[0,6],deliveri:[6,116,117,136,146],delta:46,demand:49,deni:30,denorm:21,denot:12,dens:38,depend:[4,6,11,12,13,14,21,25,26,28,29,41],deploi:[30,31],deploy:[6,49,50],deprec:[6,10,11,14,15,30,41],desc:[9,11,13,52],descend:[11,13],describ:[2,6,7,9,10,11,12,13,14,15,17,19,21,25,26,28,38,49,53,116],describeclust:116,descript:[6,10,11,14,21,46,52],descriptor:46,design:[14,40,41,43],desir:[16,21,30],destin:[40,52],detail:[5,6,10,11,12,13,14,21,30,45,49,52],detect:[2,6,11,24,30,49],detector:[85,116],determin:[0,6,13,19,38,42,50,131],determinist:30,dev:[6,8,11,30],develop:[5,8,26,28,29,36,43],dfb660d92ad8:52,dfp:168,dht:6,dictat:[6,49],did:[25,46],die:6,dies:36,diff:[15,23],differ:[0,6,11,12,13,14,15,19,21,24,26,28,29,30,31,34,41,42,43,46,51],difficult:[6,29],difficulti:21,digest:4,digit:[17,21,30],diminish:21,direct:[6,11,17,19,28,46],directli:[13,18,19,26,41],director:13,directori:[6,20,26,29,30,33,34,35,40,43,45,52,107,116,134],dirti:6,disabl:[6,11,14,41,42,49,50,52,66,67,68,69,70,71,72,73,74,83,116,139,141,143,147,150,151,152],disable_stcs_in_l0:41,disableauditlog:116,disableautocompact:[41,116],disablebackup:116,disablebinari:116,disablefullquerylog:116,disablegossip:116,disablehandoff:116,disablehintsfordc:116,disableoldprotocolvers:116,disablesnapshot:138,disallow:6,disambigu:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],discard:[6,40],disconnect:41,discourag:[11,21,28],discov:30,discuss:[8,21,28],disk:[4,6,11,31,36,38,40,41,42,45,46,80,113,116,129,168],displai:[11,52,56,62,106,108,115,116,163],disrupt:[30,49],dist:34,distinct:[0,9,10,13],distinguish:[9,14],distribut:[6,29,30,41,46,49,51],divid:12,djava:[26,30,49],dml:20,dml_statement:12,dmx4jaddress:46,dmx4jport:46,dns:30,dobar:23,doc:[6,25,40,49],document:[5,12,14,15,17,25,28,35,49,52],doe:[6,11,13,14,16,17,18,19,21,24,25,28,36,38,40,41,42,49,50,51],doesn:[6,14,21,23,29,30],dofoo:23,doing:[6,13,29,30,41,51],dollar:[10,12],domain:[49,137,154],don:[5,13,23,24,25,26,28,30,31,41,51,107,131],done:[6,11,13,21,28,29,31,35,41],doubl:[6,9,10,11,12,14,17,21,26,46,50],down:[6,19,41,46,50,51,71,116,131],download:[6,26,34,46],downward:19,drain:116,drive:[6,41,43],driver:[6,12,14,29,33,36,52],drop:[6,10,15,36,41,46,80],drop_aggregate_stat:12,drop_function_stat:12,drop_index_stat:12,drop_keyspace_stat:12,drop_materialized_view_stat:12,drop_role_stat:12,drop_table_stat:12,drop_trigger_stat:12,drop_type_stat:[12,21],drop_user_stat:12,droppabl:[6,41],dropped_mut:163,droppedmessag:45,droppedmetr:46,droppedmut:46,dropwizard:46,dt_socket:26,dtest:[25,27],due:[11,13,21,30,34,46,51],dump:52,duplic:25,durable_writ:11,durat:[6,10,15,19,41,46,118,164],dure:[6,11,14,20,28,29,30,41,42,46,49,51,52,138],dying:30,dynam:[6,45,49],dynamic_snitch:50,dynamic_snitch_badness_threshold:50,dynamic_snitch_reset_interval_in_m:50,dynamic_snitch_update_interval_in_m:50,dynamo:[2,36],each:[0,4,6,10,11,12,13,14,17,18,19,21,24,28,35,36,41,42,43,46,49,50,51,52,116,141,155,168],each_quorum:0,earli:[6,12,28],earlier:15,easi:[9,28],easier:[0,28],easiest:30,ec2:[6,43,50],ec2multiregionsnitch:[6,50],ec2snitch:[6,50],ecc:43,echo:34,eclips:[23,27,29],ecosystem:25,edg:[25,26],edit:[26,31,34,46,49],effect:[6,11,21,28,30,38,42,49,71,116],effectiv:46,effici:[6,11,41,50,51],effort:6,either:[6,8,12,13,14,16,21,23,24,26,28,30,34,35,40,41,46,49,166],elaps:[41,46],element:[21,52],elig:6,els:[11,13,23,28],email:[8,16,21,36],embed:29,emploi:38,empti:[6,9,10,11,12,52],emptytyp:9,enabl:[6,11,14,17,19,29,30,41,42,50,51,52,76,77,78,80,83,84,116,152],enable_user_defined_funct:14,enableauditlog:116,enableautocompact:[41,116],enablebackup:116,enablebinari:116,enablefullquerylog:116,enablegossip:116,enablehandoff:116,enablehintsfordc:116,enableoldprotocolvers:116,encapsul:[23,46],enclos:[9,10,12,14,19],enclosur:12,encod:[15,21,25,52],encount:[5,13,34,46],encourag:[6,11],encrypt:[6,45],encryption_opt:6,end:[21,28,30,41,49,52,60,94,116,131],end_token:[60,131],end_token_1:121,end_token_2:121,end_token_n:121,endpoint:[46,50,55,94,116,131,166],endpoint_snitch:50,endtoken:52,enforc:[17,49],engin:[2,11,28,36,46],enhanc:43,enough:[0,6,21,30,31,41,50,52],enqueu:6,ensur:[11,13,18,20,30,42,49],entail:30,enter:[30,52],entir:[0,4,6,14,21,30,38,41,49,51,52],entri:[4,6,9,13,16,28,36,46,49,52],entropi:6,entry_titl:13,enumer:19,env:[30,31,46,49],environ:[0,5,6,26,30,33,43],ephemer:43,epoch:21,equal:[0,6,10,11,13,21,23,41],equival:[10,11,12,13,14,19,24,41],eras:11,erlang:33,erlcass:32,err:52,errfil:52,error:[6,11,12,14,16,18,19,21,23,25,26,34,36,52,132],escap:[12,17],especi:[28,30,41,52],essenti:[0,6,14,30,52],establish:[6,19,50],estim:46,estimatedcolumncounthistogram:46,estimatedpartitioncount:46,estimatedpartitionsizehistogram:46,etc:[6,18,21,23,25,30,31,34,41,46,49],eth0:6,eth1:6,ev1:21,even:[0,6,10,12,13,14,17,21,28,36,41,49,52,63,138,167],evenli:6,event:[13,21,41,52,131],event_typ:13,eventu:[4,13],ever:[23,29,30,43],everi:[4,6,11,13,14,18,19,20,21,35,38,41,43,52],everyth:[12,23,26,30],evict:46,evil:[6,14],exact:[11,12,14,42],exactli:[11,14,18,49],exampl:[0,6,11,13,14,17,19,21,29,34,35,41,49,50,52],exaust:6,excalibur:11,exce:[4,6,17,23],exceed:[6,43],excel:11,excelsior:11,except:[0,13,14,17,25,27,28,29,30,46],excess:38,exchang:[6,30],exclud:[46,76,99,116],excluded_categori:76,excluded_keyspac:76,excluded_us:76,exclus:[21,29],execut:[6,9,11,12,13,14,19,26,29,35,41,46,49,52],exhaust:6,exhibit:13,exist:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,29,36,38,41,42,50,51],expect:[6,10,12,21,23,25,28,41,49],expens:[6,38,50],experi:[6,41],experienc:6,experiment:[6,131],expir:[6,10,11,13,21,45,49,138],expiri:41,explain:[23,25,28,34],explicit:10,explicitli:[6,10,13,17,21,23,41,50],explor:26,expon:10,exponenti:46,expos:[6,9,49],express:[0,6,10,12,50],expung:30,extend:[21,28,29,107,168],extens:[6,11,49],extern:[46,51],extra:[0,6,11,41],extract:[23,34],extrem:[6,13],fact:[21,29,30],factor:[0,6,11,36,42,49],fail:[6,13,14,21,36,41,52,116,132],failur:[2,6,28,36,41,43,46,50,85,116,168],failuredetector:116,fairli:[6,40,49],fake:14,fall:6,fallback:[6,50],fals:[6,11,12,17,19,21,38,40,41,42,46,49,51,52,138],famili:[6,43,100,118,153,164],fanout_s:41,fast:[6,38,41],faster:[6,28,42,43,116,141],fastest:[6,24,50],fatal:6,fault:30,fav:[16,21],fax:21,fct:14,fct_using_udt:14,fear:30,feasibl:21,featur:[25,26,28,49],fed:6,feedback:28,feel:24,fetch:[6,11,52],few:[41,43],fewer:[6,28],fffffffff:[17,21],field:[10,13,14,17,21,23,38],field_definit:21,field_nam:13,fifteen:46,fifteenminutecachehitr:46,figur:41,file:[4,7,11,26,27,28,29,30,31,33,36,38,41,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],filenam:[11,52,100,116],filesystem:49,fill:[40,41],fillion:13,filter:[4,9,11,18,36,43,45,46,131],finalfunc:[9,14],find:[6,26,29,34,38,41,51,94,98],fine:[6,28,49],finer:6,finish:[26,28,116,133],fip:[6,49],fire:20,firefox:52,firewal:[6,30,31,50],first:[5,6,11,13,14,21,28,30,33,41,43,49,52,131,138],firstnam:13,fit:[6,41,46],five:46,fiveminutecachehitr:46,fix:[6,10,12,24,30,41,43],flag:[6,13,24,25,28,40,46,51],flexibl:49,flight:[6,49],flip:11,floor:6,flow:[6,19,25],fluent:32,flush:[4,6,40,41,43,46,75,116,153],fname:14,focu:28,folder:[26,160],follow:[0,5,6,8,9,10,11,12,13,14,17,18,19,21,23,24,25,26,28,29,30,31,34,36,40,41,42,46,49,50,52,57,60,67,77,86,87,122,131,138,151,155,167,168],font:12,foo:[11,12,40],footprint:[116,118],forc:[4,6,11,13,52,60,63,116,130,131,132],forcefulli:[55,116],foreground:[31,34],forev:41,forget:5,fork:28,form:[6,10,11,12,14,19,62,115,163],formal:12,format:[6,10,17,21,24,25,27,28,46,52,61,80,100,121,163,165],former:[6,46],forward:[6,11],found:[5,12,14,15,28,29,31,35,49,52,160,168],four:13,fqcn:29,fraction:6,frame:6,framework:[25,29],franc:[13,21],free:[6,11,21,24,26,46],freed:4,freenod:8,frequenc:[6,40],frequent:[6,29,36,41,49],fresh:51,friendli:[6,21,29],from:[0,4,6,9,11,12,13,14,15,17,18,19,21,24,27,28,29,33,35,36,38,40,41,42,43,46,49,50,51,54,55,57,58,60,65,67,73,76,77,83,86,87,90,94,98,100,102,106,107,114,116,118,121,122,123,125,126,129,130,131,132,134,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],fromjson:15,froom:21,frozen:[9,10,11,13,14,21],fruit:[21,28],fsync:[6,46],full:[6,9,11,13,16,19,28,34,35,41,42,49,52,70,80,116,122,131,134],full_nam:163,fulli:[6,11,12,14,45,49],function_cal:12,function_nam:[13,14,19],fundament:17,further:[5,6,11,18,21,41,45,49],furthermor:[10,13,49],futur:[6,9,10,11,21,28,82,116,159],g1gc:43,game:[14,21],garbag:[11,43,45,46,87],garbagecollect:116,gather:41,gaug:46,gaurante:0,gc_grace_second:11,gc_type:46,gce:[30,43],gcg:6,gcstat:116,gener:[0,2,4,6,8,11,12,13,14,17,21,25,26,27,28,30,43,49,52,102,138,151],genuin:23,get:[6,8,24,26,28,30,34,36,38,41,92,93,96,99,116],getbatchlogreplaythrottl:116,getcompactionthreshold:116,getcompactionthroughput:116,getconcurrentcompactor:116,getconcurrentviewbuild:116,getendpoint:116,getint:14,getinterdcstreamthroughput:116,getlocalhost:[6,30],getlogginglevel:116,getlong:14,getmaxhintwindow:116,getpartition:23,getreplica:116,getse:116,getsstabl:116,getstr:14,getstreamthroughput:116,gettempsstablepath:23,getter:[19,23],gettimeout:116,gettraceprob:116,gib:[62,115,163],gist:23,git:[5,24,26,28],github:[23,24,28,29],give:[18,19,21,28,29,36,52],given:[0,6,11,12,13,14,16,21,28,38,41,49,51,52,58,60,65,67,77,90,98,102,116,122,142,148,152,155,162],global:[6,52,116,140],gmt:21,goal:[6,41],gocassa:32,gocql:32,going:[6,28,41],gone:6,good:[6,23,28,29,30,52],googl:[23,52],gori:30,gossip:[2,6,30,46,50,71,81,104,116,158],gossipinfo:116,gossipingpropertyfilesnitch:[6,50],gossipstag:46,got:6,gp2:43,gpg:34,grace:45,grai:21,grain:49,grammar:[11,12],grant:[6,9,49],grant_permission_stat:12,grant_role_stat:12,granular:[6,87],graph:19,gravesit:11,great:[28,41],greater:[0,6,21,30,50,144,145],greatli:6,green:21,group:[6,10,11,19,41,46,49,50],group_by_claus:13,grow:21,guarante:[0,2,11,13,14,21,28,36,38,41,51,52],guid:[6,26],guidelin:[10,25,43],had:[9,10,41],half:[6,24,30],hand:[6,13,43],handl:[6,14,25,27,28,30,40,43,46,49,80],handoff:[6,46,51,72,105,116,146],handoffwindow:116,hang:28,happen:[6,13,23,24,28,36,41,46,50],happi:28,happili:43,hard:[6,14,41,43],harder:6,hardwar:[6,36,45],has:[0,4,6,10,11,12,13,14,18,19,21,23,28,30,41,43,46,49,50,52],hash:[4,6,41],hashcod:23,haskel:33,hasn:80,have:[0,5,6,9,10,11,12,13,14,15,18,19,21,23,24,25,26,28,29,30,31,34,38,41,42,43,46,49,50,80,138],haven:28,hayt:32,hdd:[6,43],head:28,header:[26,52],headroom:6,heap:[4,6,26,31,36,38,42,43,46],heap_buff:6,heavi:6,heavili:43,held:[6,43,116,120],help:[5,6,10,28,29,35,54,56,116],helper:29,henc:[5,6,11,21],here:[6,24,29,30,32,41,46,49],hex:[12,17,100],hexadecim:[10,12,100],hibern:51,hidden:51,hide:[23,25],hierarch:19,hierarchi:19,high:[0,6,30,41,43],higher:[0,19,28,38,41,46,51,118,164],highest:41,highli:[28,30,43,49],hint:[0,6,11,12,30,31,36,45,46,51,72,73,82,83,97,105,116,117,136,146,149,159,166],hintedhandoff:[6,45],hintedhandoffmanag:46,hints_creat:46,hints_directori:31,hints_not_stor:46,hintsdispatch:46,histogram:[41,46,116,119,162],histor:28,histori:[23,59,61,116],hit:[6,41,46],hitrat:46,hoc:29,hold:[0,6,10,13,19,30,41,52],home:[21,52],hope:41,hopefulli:28,host:[6,31,36,46,50,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],hostnam:[6,30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],hot:[6,46],hotspot:11,hotspotdiagnost:49,hottest:6,hour:[6,21,28,41],hourli:80,how:[0,5,6,7,8,11,12,21,25,26,27,28,29,33,35,36,41,42,46,50,52,80],howev:[6,9,10,11,12,13,15,17,18,21,28,29,30,31,34,38,42,43,49,52],hsha:6,html:6,http:[6,23,24,26,34,46],httpadaptor:46,hub:30,human:[11,62,115,163],hypothet:24,iauthent:6,iauthor:6,icompressor:42,idea:[6,14,27,28,29,30,41,52],ideal:[6,29,41,49],idempot:[13,21],idemptot:21,ident:0,identifi:[6,9,10,11,13,14,15,16,19,20,21],idiomat:8,idl:6,ieee:[17,21],iendpointsnitch:[6,50],ignor:[0,6,10,14,21,23,52,163],iinternodeauthent:6,illeg:14,illustr:19,imag:21,imagin:41,immedi:[6,11,21,28,38,42,57,116],immut:[4,30,42,43],impact:[6,11,25,41,45,49],implement:[6,10,13,14,18,19,23,29,30,40,42,49,50],implementor:6,impli:[11,12,21],implic:[0,49],implicitli:14,import_:52,imposs:41,improv:[0,6,11,21,28,29,38,41,43,50,51,52],inact:30,includ:[4,6,10,11,12,13,18,19,21,23,28,40,41,43,46,49,52,76,132,167],included_categori:76,included_keyspac:76,included_us:76,inclus:28,incom:6,incomingbyt:46,incompat:[6,10],incomplet:25,inconsist:[0,30],incorrect:30,increas:[6,11,30,38,41,42,43,46,50,51,131],increment:[6,10,13,21,28,41,68,78,116,132,138,156],incur:[13,21,46],indent:23,independ:[11,41,43,49],index:[4,6,9,10,11,12,13,15,21,36,41,45,52,116,122],index_build:160,index_identifi:16,index_nam:16,index_summary_off_heap_memory_us:163,indexclass:16,indexedentrys:46,indexinfocount:46,indexinfoget:46,indexnam:122,indexsummaryoffheapmemoryus:46,indic:[5,6,12,13,23,28,30,131],indirectli:13,individu:[6,10,14,21,28,29,43,49],induc:13,inequ:[10,13],inet:[9,11,14,17,21],inetaddress:[6,30],inexpens:43,infin:[9,10,12],influenc:11,info:[6,31,46,65,116],inform:[4,6,12,13,21,35,49,50,51,52,56,59,85,104,106,107,108,115,116,137,154],ingest:6,ingestr:52,inher:[11,21],inherit:19,init:46,initcond:[9,14],initi:[6,14,23,25,40,46,49,52,116,148],initial_token:51,input:[9,10,14,17,21,25,52],inputd:21,inreleas:34,insensit:[11,12],insert:[6,9,10,11,12,14,15,16,19,21,30,33,36,43,52],insert_stat:[12,13],insid:[6,11,12,13,21,23,52],inspect:[6,26,52],instabl:6,instal:[6,20,30,33,36,52],instanc:[6,10,11,12,13,14,16,18,19,20,21,26,29,30,40,41,43,46],instantan:46,instanti:10,instantli:6,instead:[10,11,13,18,21,23,30,41,137,154],instruct:[6,8,11,24,26,36],instrument:49,intasblob:13,integ:[0,10,11,12,13,17,21,46],integr:[27,29,36],intellij:[23,27],intend:[25,49],intens:[6,29,30],intent:25,inter:[6,95,116,147],interact:[29,35,52],interest:[0,41,49],interfac:[6,10,14,23,30,31,42,49],intern:[6,9,11,13,18,21,25,30,43,46],internaldroppedlat:46,internalresponsestag:46,internet:6,internod:[6,30],internode_encrypt:[6,49],internodeconnect:[102,151],internodeus:[102,151],interpret:[10,21,52],interrupt:30,interv:[6,9,46],intra:[6,46,50],intrins:21,introduc:[6,10,17,28,51],introduct:[10,19,29],intvalu:14,invalid:[6,13,19,25,49,107,109,110,111,116],invalidatecountercach:116,invalidatekeycach:116,invalidaterowcach:116,invertedindex:20,investig:6,invoc:14,invok:[24,34,49,168],involv:[6,13,41,42,49],ioerror:23,ip1:6,ip2:6,ip3:6,ip_address:55,ipv4:[6,17,21,30],ipv6:[6,17,21],irc:[5,28,36],irolemanag:6,irrevers:[11,21],isn:[0,18,23,28,30],iso:21,isol:[6,11,13],issu:[0,19,24,28,29,30,38,41,42,131],item:[12,21,25,26],iter:[0,6],its:[4,6,11,12,13,14,21,26,30,41,46,49,50,51],itself:[6,11,16,30,34],iv_length:6,jaa:49,jacki:24,jamm:26,januari:21,jar:[14,23,26,46],java7:49,java:[6,14,20,21,23,26,28,33,34,36,40,41,43,46,49],javaag:26,javadoc:[23,25],javas:6,javascript:[6,14],javax:49,jbod:43,jce8:6,jce:6,jcek:6,jconsol:[36,41,49],jdk:6,jdwp:26,jenkin:[26,29],jetbrain:26,jira:[5,25,28,29,40],jkskeyprovid:6,jmc:[41,49],jmx:[6,19,36,45,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],jmx_password:49,jmx_user:49,jmxremot:49,job:[28,57,87,129,131,138,167],job_thread:131,john:[13,21],join:[6,8,13,36,41,49,51,116],joss:13,jpg:21,jsmith:21,json:[9,10,13,15,36,41,42,61,163,165],json_claus:13,jsr:[6,14],jsse:6,jsserefguid:6,judgement:23,junit:[23,26,29],jurisdict:6,just:[6,14,19,26,28,29,30,41,49],jvm:[6,20,26,30,31,45,49,51],jvm_extra_opt:26,jvm_opt:[31,49],jvmstabilityinspector:25,keep:[6,8,11,23,28,30,41,46,107],keepal:[6,30],kei:[4,6,9,10,13,14,17,21,29,30,34,40,41,42,43,46,49,57,94,98,100,110,116,120,140,141,163],kept:[6,41,46],kernel:[6,30],key_alia:6,key_password:6,key_provid:6,keycach:46,keycachehitr:46,keyserv:34,keyspac:[0,6,9,10,12,14,15,16,19,21,36,38,41,42,45,49,51,52,57,58,60,65,67,76,77,86,87,90,94,98,100,107,116,118,120,121,122,123,129,131,137,138,142,153,154,155,162,163,164,167,168,170],keyspace1:[6,19],keyspace2:6,keyspace_nam:[11,14,19,21,41],keystor:[6,49],keystore_password:6,keystorepassword:49,keyword:[10,11,13,14,15,16,17,21],kib:[62,115,163],kick:[116,133],kill:[6,34],kilobyt:42,kind:[11,12,21,28,40,41],kitten:21,know:[6,13,21,23,41],known:[19,21,32,35,38,41],ks_owner:49,ks_user:49,ktlist:153,kundera:32,label:[21,28],lag:46,land:42,landlin:21,lang:[36,46,49],languag:[6,9,10,12,14,20,21,32,35,36,52],larg:[6,11,13,14,21,29,36,41,43,46,52],larger:[6,29,30,41,42,43],largest:[6,46],last:[6,12,13,14,15,28,41,46,55,116],lastli:[13,21],lastnam:13,latenc:[0,6,30,46,50],later:[0,11,21,23,28,30],latest:[0,28,34,41,52,168],latter:12,layer:43,layout:11,lazi:11,lazili:11,lead:[6,10,21,41],learn:[6,29,30,52],least:[0,6,11,12,13,18,30,41,43],leav:[6,12,13,23,29,30,52],left:[6,17,41],legaci:[6,19],legal:10,length:[4,6,10,17,21,25,41],less:[6,21,28,30,38,43],let:[6,41],letter:17,level:[6,10,11,13,19,23,25,31,43,45,46,49,52,96,107,116,148],leveledcompactionstrategi:[11,38,41],lexic:30,lib:[6,20,25,26,34],libqtcassandra:32,librari:[8,25,29,32,46,52],licenc:25,licens:[25,26,28],life:28,lifespan:43,like:[0,6,12,13,14,17,21,23,24,25,28,29,30,36,41,42,43,49],likewis:19,limit:[6,9,10,11,18,19,21,30,40,41,42,49],line:[12,23,28,29,31,34,35,49,53,55,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],linear:43,linearli:38,link:[6,8,11,12,28,29,34],linux:[6,30],list:[4,5,6,9,10,11,12,13,14,17,26,28,29,31,34,35,36,41,49,51,52,55,57,58,59,60,65,67,73,76,77,83,86,87,90,94,98,99,100,102,106,107,113,114,116,118,121,122,123,126,129,130,131,132,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],list_liter:[13,21],list_permissions_stat:12,list_roles_stat:12,list_users_stat:12,listarg:14,listen:[6,36,46],listen_address:[31,35,36],listen_interfac:31,listsnapshot:116,liter:[10,12,14,17,52],littl:23,live:[13,36,41,46,51],livediskspaceus:46,livescannedhistogram:46,livesstablecount:46,load:[0,6,11,20,21,36,45,46,49,50,51,108,116,123,131,154],local:[0,6,11,26,28,29,35,43,46,49,50,52,116,125,131,135,166],local_jmx:49,local_on:[0,49,52],local_quorum:[0,52],local_read_count:163,local_read_latency_m:163,local_seri:52,local_write_latency_m:163,localhost:[6,35,49],locat:[6,33,34,42,46,49,50,52,160],lock:[6,30,46],log:[6,11,13,25,29,33,34,36,40,45,46,49,66,70,76,80,96,116,131,134,148,160],log_al:41,logback:31,logger:[23,31,76],logic:[6,20],login:[6,9,19,29,49],lol:21,longer:[6,9,10,30,41,51,57,116],look:[6,12,24,28,29,41,43],lookup:46,loop:23,lose:[6,41,51],loss:[6,21],lost:[41,51],lot:[6,35,36],low:[6,28,116,118],lower:[0,6,11,12,13,19,30,38,41,46,51],lowercas:12,lowest:[28,41],lz4:6,lz4compressor:[6,11,42],macaddr:9,machin:[6,11,29,30,46,49,50,51],made:[6,21,36,38,43,49],magnet:6,magnitud:13,mai:[0,4,6,9,10,11,13,14,16,17,19,21,25,26,28,29,30,34,38,41,49,50,51,52,138],mail:[5,28,36],main:[0,14,18,26,30,33,34,49,51,52],main_actor:13,mainli:[6,11],maintain:[6,28],mainten:46,major:[0,10,28,49,60,116],make:[0,6,8,9,20,21,23,26,28,29,30,31,34,41,49,51,52],man:6,manag:[6,19,26,29,46,49,51,56,116],mandatori:[11,14],mani:[0,6,11,23,25,28,41,42,43,46,49,52,57,60,67,77,80,86,87,131,138,155,167,168],manipul:[12,15,29,36],manual:[6,24,30],map:[6,9,10,11,13,14,17,19,36,46],map_liter:[11,16,19,21],mar:21,mark:[6,19,41,51,71,116],marker:[6,11,12,25,30],match:[6,12,13,14,17,19,46,50],materi:[6,10,11,12,15,36,46,52,116,170],materialized_view_stat:12,matter:[11,30],max:[6,36,41,46,49,52,80,90,97,116,131,142,149],max_hint_window_in_m:51,max_log_s:80,max_map_count:30,max_mutation_size_in_kb:[6,30],max_queue_weight:80,max_thread:6,max_threshold:41,maxattempt:52,maxbatchs:52,maxfiledescriptorcount:46,maxhintwindow:149,maxim:43,maximum:[4,6,14,38,46,52,80,138],maximum_live_cells_per_slice_last_five_minut:163,maximum_tombstones_per_slice_last_five_minut:163,maxinserterror:52,maxoutputs:52,maxparseerror:52,maxpartitions:46,maxpools:46,maxrequest:52,maxrow:52,maxthreshold:142,maxtimeuuid:10,mayb:13,mbean:[6,19,41,46,49],mbeanserv:19,mbp:6,mct:6,mean:[6,9,11,12,13,14,17,18,21,36,41,46,50,52,131],meaning:13,meanpartitions:46,meant:[21,30,46],measur:[6,25,29,46,51,52],mechan:40,median:46,meet:[6,25],megabyt:6,member:23,membership:6,memlock:30,memori:[4,6,11,36,38,41,45],memory_pool:46,memtabl:[2,6,38,40,41,42,43,46,153],memtable_allocation_typ:4,memtable_cell_count:163,memtable_cleanup_threshold:4,memtable_data_s:163,memtable_off_heap_memory_us:163,memtable_switch_count:163,memtablecolumnscount:46,memtableflushwrit:46,memtablelivedatas:46,memtableoffheaps:46,memtableonheaps:46,memtablepool:6,memtablepostflush:46,memtablereclaimmemori:46,memtableswitchcount:46,mention:[6,21,28,46,49],menu:26,mere:23,merg:[24,28,38,42,43,45],mergetool:24,merkl:46,mess:[28,29],messag:[6,21,25,28,34,36,46],met:13,meta:[13,46],metadata:[4,19,42,43,46],metal:6,meter:46,method:[10,13,14,19,23,25,26,29,36,49],metric:[6,45],metricnam:46,metricsreporterconfigfil:46,mib:[62,115,163],microsecond:[6,11,13,21,46],midnight:21,might:[6,13,41,46,55,57,58,60,65,67,73,77,80,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],migrat:[6,46,50],migrationstag:46,millisecond:[6,10,21,46,118,138,164],min:[6,30,40,41,46,52,90,116,142],min_sstable_s:41,min_threshold:41,minbatchs:52,mind:6,minim:[6,41,43],minimum:[6,11,14,31,46],minor:[10,12,45],minpartitions:46,minthreshold:142,mintimeuuid:10,minut:[6,21,41,46,80],misbehav:41,misc:[102,151],miscelen:46,miscellan:6,miscstag:46,miss:[11,41,46,51],misslat:46,mistaken:[55,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],mitig:[6,49],mix:[6,41],mmap:30,mnt:16,mock:29,mode:[6,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],model:[11,15,19,28,36,49],moder:43,modern:43,modif:[13,19],modifi:[6,9,10,11,14,19,21,28,38,41,42],modification_stat:13,modul:52,modular:25,moment:[6,28],monitor:[30,36,45,49,50,56,116],monkeyspeci:[11,18],monkeyspecies_by_popul:18,month:21,more:[0,4,6,10,11,12,13,21,23,28,29,31,35,36,38,43,45,46,49,50,51,60,86,87,116,118,131,138,164,168],moreov:13,most:[6,11,12,13,21,26,28,29,30,31,41,42,43,49,52,59,116,164],mostli:[6,11,21],motiv:[29,41],mount:6,move:[6,28,30,36,40,45,46,116],movement:45,movi:[13,21],movingaverag:6,mtime:11,much:[0,5,6,11,38,41,50],multi:[0,6,12,25],multilin:27,multipl:[4,6,10,11,12,13,14,21,23,25,26,28,30,31,41,43,50,121],multipli:41,murmur3partit:4,murmur3partition:[6,14,52],must:[0,6,10,11,13,14,17,18,19,23,28,29,30,31,41,46,49,51,52,153],mutant:16,mutat:[0,6,13,30,40,46,168],mutationstag:46,mv1:18,mx4j:46,mx4j_address:46,mx4j_port:46,mx4jtool:46,mxbean:19,myaggreg:14,mycolumn:17,mydir:52,myevent:13,myfunct:14,myid:12,mykei:17,mykeyspac:14,mytabl:[11,14,17,20],mytrigg:20,nairo:21,name:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,28,29,30,31,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],names_valu:13,nan:[9,10,12],nanosecond:21,nathan:13,nativ:[6,10,12,15,17,25,30,35,46,52,69,79,116,122,157],native_transport_min_thread:6,native_transport_port:31,native_transport_port_ssl:49,native_typ:21,natur:[11,21,23,41,42],nearli:26,neccessari:6,necessari:[6,11,14,19,28,34,42,49],necessarili:[6,12,31],need:[0,6,10,11,12,13,19,21,23,25,26,28,29,30,31,34,35,38,41,42,43,49,50,52,94,98],neg:6,neglig:13,neighbour:41,neither:[18,21,49],neon:26,nerdmovi:[13,16],nest:[12,13,23],net:[6,26,30,33,34,49],netstat:[51,116],network:[6,13,30,43,49,50,115,116,119],networktopologystrategi:[11,49],never:[6,10,11,12,13,14,21,23,30,41],nevertheless:13,new_rol:19,new_superus:49,newargtuplevalu:14,newargudtvalu:14,newer:[41,43,52,87],newest:[11,41],newli:[11,21,28,40,116,123],newreturntuplevalu:14,newreturnudtvalu:14,newtuplevalu:14,newudtvalu:14,next:[6,30,35,41,52],ngem3b:13,ngem3c:13,nifti:24,nio:[6,14,46],no_pubkei:34,node:[0,4,6,11,13,14,20,21,25,29,31,32,35,36,38,40,41,43,45,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],nodej:33,nodetool:[34,36,38,42,45,49,51,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],nologin:9,non:[6,9,10,11,12,13,14,19,21,30,38,42,46,49,52],none:[6,11,13,21,49],nonsens:19,nor:[11,18,21],norecurs:[9,19],norm:46,normal:[14,17,26,30,34,46,51,52],noschedul:6,nosuperus:[9,19],notabl:[14,17],notat:[10,12,13,52],note:[0,5,6,10,11,12,13,14,15,17,19,21,24,28,30,41,49],noth:[6,11,14,24,29,30],notic:6,notif:8,notion:[11,12],now:[10,23,26,41,51],ntp:6,nullval:52,num_cor:52,num_token:51,number:[0,6,10,11,12,13,14,17,18,21,26,28,29,30,34,38,41,42,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],number_of_cor:6,number_of_dr:6,number_of_partitions_estim:163,numer:[15,38],numprocess:52,object:[6,11,12,25],objectnam:19,observ:23,obsolet:[6,43,46],obtain:[12,49],obviou:[14,24],obvious:11,occup:13,occupi:[6,46],occur:[10,12,13,20,21,30,41,43,46],occurr:21,octet:[6,50],odd:28,off:[4,6,30,42,46,49,52,116,133],off_heap_memory_used_tot:163,offer:[15,29,42],offheap:[38,43],offheap_buff:6,offheap_object:6,offici:[36,52],offset:[4,46],often:[6,11,12,23,28,29,30,41,42,43,49,50,52,80],ohc:6,ohcprovid:6,okai:23,old:[4,6,41,51,74,84,116],older:[6,14,26,34,41,43,52],oldest:[6,11],omit:[6,10,11,13,17,21,148],onc:[4,6,11,12,14,21,24,26,28,29,30,40,41,42,43,46,49,51,52],one:[0,4,6,9,10,11,12,13,14,17,18,19,21,23,26,28,29,31,36,38,41,43,46,49,50,51,52,57,60,67,77,86,87,102,116,131,138,151,153,155,167,168],oneminutecachehitr:46,ones:[6,11,12,13,14,18,19,46],ongo:[41,51],onli:[0,6,9,11,12,13,14,17,18,19,21,23,28,29,31,36,38,41,42,43,46,49,50,52,131,153,163],onlin:52,only_purge_repaired_tombston:41,onto:[4,41],open:[5,6,26,49,50],openfiledescriptorcount:46,openjdk:34,oper:[0,6,10,11,13,16,18,19,21,23,36,38,40,43,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],operatingsystem:46,opertaion:6,opportun:38,ops:30,opt:14,optim:[6,11,12,13,30,41,43,51],optimis:131,option1_valu:19,option:[4,6,9,10,12,13,14,16,19,21,26,29,30,34,42,43,45,49,51,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],oracl:[6,34,49],order:[0,4,6,9,10,14,18,21,23,28,30,38,40,41,50,51,52],ordering_claus:13,orderpreservingpartition:6,org:[6,14,20,23,26,29,30,34,41,42,46,49],organ:[4,26,32],origin:[9,24,28,138],orign:13,other:[0,4,6,10,12,13,14,18,19,21,24,26,28,31,36,38,41,43,46,49,50,51,116,121,132],other_rol:19,otherwis:[0,9,12,13,16,21],our:[5,6,8,24,26,28,41],ourselv:24,out:[6,12,23,26,28,41,46,49,50,51,131],outbound:6,outboundtcpconnect:6,outgo:6,outgoingbyt:46,outlin:49,outofmemoryerror:36,output:[14,19,25,26,38,41,52,60,61,163,165],outsid:[11,20,21],over:[0,6,11,21,30,41,46,49,50,51],overal:14,overflow:[17,138],overhead:[6,30,42,46,51],overidden:49,overlap:[0,41],overload:[6,14,30],overrid:[6,23,49,51,138],overridden:[6,11],overview:[2,36,45],overwhelm:6,overwrit:[42,43],overwritten:[46,87],own:[0,6,11,12,14,21,28,30,34,41,42,46,49,94,100,107,116,168],owner:21,ownership:[41,137],p0000:21,pacif:21,packag:[26,30,31,33,35,52],packet:6,page:[6,21,26,28,29,30,43,46],paged_slic:46,pages:52,pagetimeout:52,pai:23,pair:[6,11,19,21,41,49],parallel:[29,41,131],paramet:[6,14,23,25,26,31,38,43,50,51,116,148],paranoid:6,parenthesi:[11,52],parnew:43,pars:[6,12,40,52],parser:[9,10,40],part:[0,5,6,11,13,14,18,21,25,26,28,29,30,50,51,52],parti:[25,46],partial:4,particip:[0,20],particular:[11,12,13,14,17,19,21,30,43,46,49],particularli:[12,21,49],partit:[4,6,10,13,14,30,38,41,43,46,87,94,98,116,138,164],partition:[4,10,13,14,52,64,116,131],partition_kei:[11,13],partli:13,pass:[25,28,31,52],password:[6,9,13,19,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],password_a:19,password_b:19,passwordauthent:[6,49],passwordfilepath:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],past:46,patch:[10,13,23,24,25,27,29,36],path:[5,6,16,25,34,38,41,42,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],patter:19,pattern:[6,19,21],paus:[6,30,116,117],pausehandoff:116,paxo:[13,46,52],peer:[6,46],peerip:46,penalti:[6,13],pend:[41,46,116,130],pending_flush:163,pendingcompact:46,pendingflush:46,pendingrangecalcul:46,pendingtask:46,pendingtasksbytablenam:46,pennsylvania:21,peopl:[28,30],per:[0,4,6,10,11,13,23,24,28,30,38,40,41,42,46,49,52,116,139,146],percent:46,percent_repair:163,percentag:[6,46,50],percentil:46,percentrepair:46,perdiskmemtableflushwriter_0:46,perfect:14,perform:[6,11,13,19,21,24,25,27,30,31,38,41,43,46,49,50,52,131],period:[6,43,46,49,116,118],perman:[11,30,41,43],permiss:[6,9,12,29,49],permit:[6,19,40,49],persist:[4,30,38,43,49],perspect:30,pet:21,pgrep:34,phantom:32,phase:[51,52],phi:6,phone:[13,21],php:33,physic:[0,6,11,30,43,50],pick:[24,28,30,41,49,51,121],pid:[30,34],piec:[12,41,46],pile:6,pin:[6,50],ping:28,pkcs5pad:6,pkill:34,place:[5,6,16,20,23,24,28,40,41,46,49,52,116,123],placehold:[14,52],plai:[14,21],plain:4,plan:[11,24,28],platform:19,platter:[6,43],player:[14,21],playorm:32,pleas:[5,6,11,13,14,15,21,23,26,29,30],plu:[14,41,46],plug:6,pluggabl:[19,49],plugin:46,poe:21,point:[6,10,17,21,23,26,36,49,52,94,116],pointer:14,polici:[6,28,49,168],pool:[6,34,46,116,165],popul:[11,18],popular:[26,43],port:[6,26,31,36,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],portion:[43,52],posit:[4,6,10,11,21,38,46,51],possbili:6,possess:19,possibl:[6,10,11,13,14,17,19,21,25,28,29,30,38,41,43,46,49,51],post:[13,116,141],post_at:13,posted_at:13,posted_bi:11,posted_month:11,posted_tim:11,potenti:[0,6,9,11,12,14,25,41,43,49,51,138],power:6,pr3z1den7:21,practic:[11,12,13,49],pre:[6,17,21,43,49],preced:30,precis:[10,17,21,41],precondit:46,predefin:11,predict:13,prefer:[0,6,11,12,21,23,28,49,50],preferipv4stack:26,prefix:[11,12,21],prepar:[6,14,15,46],preparedstatementscount:46,preparedstatementsevict:46,preparedstatementsexecut:46,preparedstatementsratio:46,prepend:21,prerequisit:33,present:[12,13,18,46],preserv:[6,17,19],press:34,pressur:[6,46],pretti:52,prevent:[6,29,40],preview:131,previou:[6,10,11,21,41,51],previous:6,previsouli:[83,116],primari:[9,10,13,14,21,29,40,41,42,49,51],primarili:[6,11],primary_kei:[11,18],print:[52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],prior:[6,13,19,21],prioriti:28,privat:[6,23,49,50],privileg:[19,34,49],probabilist:[38,42],probabl:[6,11,29,38,41,103,116,152],problem:[5,6,14,24,25,30,49],problemat:21,proc:[6,30],proce:[25,42,51],procedur:[13,49],process:[0,6,14,24,25,26,28,29,30,34,40,42,43,46,49,51,52,56,116,117,136],prod_clust:52,produc:[13,14,41,80],product:[6,28,30,43,50],profil:[13,116,118],profileload:116,program:[14,29],progress:[23,24,28,38,45,116,170],project:[23,29,46],promin:11,prompt:52,propag:[6,11,14,23,25,50],proper:[11,21,30,49],properli:[6,25],properti:[6,11,19,33,40,41,49,50,51],propertyfilesnitch:[6,50],proport:[6,13],proportion:[6,89,116,139],propos:[6,46],protect:[6,43],protocol:[6,25,30,35,46,49,52,59,69,74,79,84,116,157],provid:[0,5,6,11,12,13,14,15,17,21,26,28,35,40,41,42,43,46,49,50,51,53,115,116,126,130],proxim:[6,50],proxyhistogram:116,prv:131,ps1:49,ps22dhd:13,pt89h8m53:21,pull:[29,41,46,131],purg:43,purpos:[11,12,13,21,43,49],push:[24,28,46],put:[15,28,31,41,51,107,131],pwf:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],python:[14,28,29,33,34,52],quak:[14,21],qualifi:[6,11,14,28],qualiti:49,quantiti:21,queri:[6,10,11,12,13,14,16,18,19,33,36,41,46,52,70,80,116,134],question:[8,19,36],queu:[6,46],queue:[6,46,80],quick:[107,168],quickli:[30,41],quill:32,quintana:21,quit:[41,52],quorum:[0,49,52],quot:[9,10,11,12,14,17,19,52],quotat:19,quoted_identifi:12,quoted_nam:11,race:[21,24],rack1:6,rack:[0,6,49,50],rackdc:[6,50],rackinferringsnitch:[6,50],raid0:43,raid1:43,raid5:43,rain:12,rais:[12,30],raison:9,ram:[38,42,43],random:[11,14,30,51],randomli:[0,6,51],randompartition:[6,13,14],rang:[2,6,10,11,13,21,25,41,45,46,52,60,65,102,116,121,131,151],range_slic:46,rangekeysampl:116,rangelat:46,rangemov:51,rangeslic:46,rapid:43,rare:[10,38],raspberri:43,rate:[6,11,46,49,52],ratebasedbackpressur:6,ratefil:52,rather:[13,30,41,43],ratio:[6,42,43,46],raw:[6,14],reach:[6,28,30,40,41],read:[0,6,11,13,21,23,25,29,30,33,36,38,41,42,43,45,46,49,50,52,102,151,163,168],read_lat:163,read_repair:46,read_repair_ch:[0,6,11,41,50],read_request_timeout:30,readabl:[11,62,115,163],readi:[28,49],readlat:46,readrepair:46,readrepairstag:46,readstag:46,readwrit:49,real:[8,11,23,30],realiz:41,realli:[6,29,31],reason:[0,6,13,14,15,30,31,34,41,43,49,51],rebuild:[38,41,42,46,116,122,138],rebuild_index:116,receiv:[6,14,28,30,41,43],recent:[6,28,29,43,59],reclaim:41,recogn:[13,26,28],recommend:[6,11,21,30,43,49,51],recompact:41,recompress:42,reconnect:49,record:[11,13,21,28,41],recov:[6,30,41],recoveri:6,recreat:52,recurs:80,recv:34,recycl:[6,46],redistribut:6,redo:28,reduc:[6,30,41,42,63,89,116,131,139],reduct:6,redund:[0,23,25,28,43],reenabl:[79,81,82,116],refactor:40,refer:[6,11,12,13,14,15,21,23,29,30,34,35,52],referenc:6,reflect:41,refresh:[6,49,52,116,124],refreshsizeestim:116,refus:36,regard:[11,13],regardless:[0,6,19,28],regener:38,regexp:12,region:[6,50],regist:21,registri:49,regress:[25,29],regular:[9,12,26,29,30,46,52],regularstatementsexecut:46,reinsert:138,reject:[6,13,30,40,49],rel:[6,21,52],relat:[8,10,12,13,26,28,41,46],releas:[6,10,34,52],relev:[13,19,21,28,42,49],reli:[6,14,21,30,51],reliabl:41,reload:[6,116,125,126,127,128],reloadlocalschema:116,reloadse:116,reloadssl:116,reloadtrigg:116,reloc:[116,129],relocatesst:116,remain:[6,13,14,21,24,41,46,51,163],remaind:[17,42],remedi:41,remot:[0,24,26,36,41,49,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],remov:[4,6,10,11,12,13,14,15,17,21,25,30,36,40,45,49,55,58,87,116,130],removenod:[51,55,116],renam:[9,21],reorder:6,repair:[0,4,6,11,30,36,42,45,46,50,51,107,116,132,148,168],repair_admin:116,repeat:[12,34,42,49],replac:[6,9,14,19,21,25,30,36,41,45,80],replace_address_first_boot:51,replai:[0,21,43,46,89,116,133,139],replaybatchlog:116,replic:[2,6,11,36,41,43,49,51,55,116],replica:[0,6,11,13,30,41,46,50,51,63,98,116],replication_factor:[0,11,49],repo:[24,26],report:[28,36,45],report_writ:19,reportfrequ:52,repositori:[5,8,26,28,29,34],repres:[6,10,17,19,21,30,41,46,49,50,52],represent:[10,17],request:[0,6,13,19,20,29,30,38,41,43,45,49,50,52,116,152,167],request_respons:46,requestresponsestag:46,requestschedul:6,requesttyp:46,requir:[0,6,11,13,14,19,23,24,25,26,28,30,38,42,43,49],require_client_auth:6,require_endpoint_verif:6,resampl:6,reserv:[6,10,12,15],reset:[6,13,116,135,148],reset_bootstrap_progress:51,resetfullquerylog:116,resetlocalschema:116,resid:[6,13,30,46],resolut:[6,13,30],resolv:[24,30,137,154],resort:[55,116],resourc:[19,49],resp:14,respect:[6,10,14,34,50,80],respond:[0,6,12],respons:[0,6,19,30,46,51],ressourc:21,rest:[6,11,12,21,25,51],restart:[30,41,49,51,116,123,141],restor:[41,51,52],restrict:[10,11,13,18,19],result:[0,6,8,10,11,12,14,17,19,21,28,30,41,46,52],resum:[56,116,136],resumehandoff:116,resurrect:41,resync:[116,135],retain:[30,41],rethrow:23,retri:[0,6,21,46,80],retriev:[11,13,19],reus:25,revers:13,review:[11,23,27,28,29,36],revok:[9,49],revoke_permission_stat:12,revoke_role_stat:12,rewrit:[38,41,42,116,138,167],rewritten:[43,138],rfc:[14,21],rhel:36,rich:21,rider:21,riderresult:21,right:[6,26,30,52],ring:[2,6,36,49,51,52,112,114,116,148],risk:11,rmem_max:6,rmi:[30,49],robin:6,rogu:14,role:[6,9,10,12,15,45],role_a:19,role_admin:19,role_b:19,role_c:19,role_manag:49,role_nam:19,role_opt:19,role_or_permission_stat:12,role_permiss:6,roll:[30,49,80],roll_cycl:80,romain:21,root:[6,24,28,34],rotat:6,roughli:6,round:[6,13,41,46],roundrobin:6,roundrobinschedul:6,rout:[6,50],row:[0,4,6,10,11,13,14,15,17,18,29,35,38,42,43,46,52,87,107,111,116,138,140,141],rowcach:46,rowcachehit:46,rowcachehitoutofrang:46,rowcachemiss:46,rowindexentri:46,rows_per_partit:11,rpc:[6,46],rpc_min:6,rpc_timeout_in_m:[102,151],rsc:168,rubi:[14,33],rule:[6,12,14,28,30],run:[5,6,12,21,24,26,28,30,31,34,41,43,46,49,51,107,131],runtim:[6,33,96,116],runtimeexcept:23,rust:33,safe:[6,14,21,41,49],safeguard:43,safeti:[41,51],sai:36,said:[11,28,30,116,167],same:[0,5,6,11,12,13,14,15,17,18,19,21,24,26,28,31,36,38,41,46,49,50,131],sampl:[4,6,12,14,46,52,80,116,118,120,164],sampler:[46,118,164],san:43,sandbox:[6,14],satisfi:[0,23,43,46,51],satur:[6,46],save:[6,13,21,30,31,38,42,43,51,116,141],saved_cach:6,saved_caches_directori:31,sbin:30,scala:[14,33],scalar:15,scale:[6,29,42],scan:[6,13,38,46],scenario:24,scene:30,schedul:6,schema:[0,9,11,14,17,46,52,64,116,125,135],schema_own:19,scope:[19,46,49],score:[6,14,21,50],script:[6,14,26,29,80],scrub:[38,41,42,46,116,160],search:28,second:[6,11,12,13,21,30,40,43,49,52,116,139,146],secondari:[10,12,13,15,36,41,46,116,122],secondary_index_stat:12,secondaryindexmanag:46,section:[2,5,7,10,11,12,13,15,19,21,30,33,34,35,41,46,49,51,53],secur:[6,14,15,36,45],see:[0,4,6,10,11,12,13,14,17,19,21,26,28,35,36,40,41,46,49,51,52,87,116,131],seed:[6,31,36,50,99,116,126],seedprovid:6,seek:[6,43,46],seen:[6,11],segment:[4,6,40,46,52,80],select:[6,9,10,11,12,14,15,19,26,29,30,35,38,41,49,52,121],select_claus:13,select_stat:[12,18],self:25,selinux:30,semant:[10,13,14],semi:30,send:[6,8,30],sens:[6,10,13,15,30],sensic:14,sensit:[11,12,14,17],sensor:21,sent:[0,6,21,30,46],separ:[4,6,11,13,23,28,31,41,43,49,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],seq:[6,131],sequenc:12,sequenti:[6,43,131],seren:13,seri:[11,41,52],serial:6,serializingcacheprovid:6,serv:[13,43,49],server:[6,12,13,21,26,29,30,43,46,49],server_encryption_opt:49,servic:[6,26,34,49,51],session:[6,19,49,116,132],set:[0,6,9,10,11,12,13,14,17,18,25,27,28,29,31,36,38,40,41,42,43,46,49,50,51,52,57,76,87,116,129,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,167],set_liter:21,setbatchlogreplaythrottl:116,setcachecapac:116,setcachekeystosav:116,setcompactionthreshold:[41,116],setcompactionthroughput:[41,116],setconcurrentcompactor:116,setconcurrentviewbuild:116,sethintedhandoffthrottlekb:116,setint:14,setinterdcstreamthroughput:116,setlogginglevel:116,setlong:14,setmaxhintwindow:116,setstr:14,setstreamthroughput:116,setter:[19,23],settimeout:116,settraceprob:116,setup:[28,29,49],sever:[4,13,19,41,49],sfunc:[9,14],sha:24,shadow:41,share:[11,13,26],sharedpool:52,sharp:32,shed:30,shell:[35,36,53],shift:21,ship:[29,35,49,52],shortcut:18,shorter:49,shorthand:52,should:[0,5,6,10,11,12,13,14,17,19,21,25,26,28,29,30,31,32,33,35,38,41,42,43,46,49,50,51,52,121,131,151],shouldn:11,show:[19,36,51,65,85,104,116,120,130,137,154,155,163,170],shown:[12,52,163],shrink:6,shut:6,shutdown:[6,43],side:[11,13,17,21,49],sign:[13,21,30],signal:[116,127],signatur:[34,40],signific:[6,26,28,29,43],significantli:6,silent:14,similar:[6,13,14,42,43],similarli:[0,10,17,23,43,116,121],simpl:[6,11,26,29,49],simple_classnam:29,simple_select:13,simplequerytest:29,simplereplicationstrategi:49,simpleseedprovid:6,simplesnitch:[6,50],simplestrategi:11,simpli:[0,6,11,13,14,17,21,26,29,41,43,46,51,168],simul:29,simultan:[6,43,52,57,87,129,138,167],sinc:[6,11,13,14,21,26,30,34,41,46,51],singl:[0,6,10,11,12,13,14,17,18,19,21,23,28,31,35,36,45,46,49,50,52,60],singleton:25,situat:[6,29,41],size:[4,6,11,21,23,30,31,38,40,42,43,45,46,49,52,80,113,116],size_estim:[116,124],sizetieredcompactionstrategi:[11,41],skip:[6,13,46,51,52,138,153],skipcol:52,skiprow:52,sks:34,sla:25,slash:12,slf4j:23,slightli:6,slow:[6,50],slower:[6,11,38],slowest:6,slowli:[6,21],small:[6,11,13,21,30,41,43],smaller:[6,30,41,43,52],smallest:[0,11,14,46],smallint:[9,10,14,17,21],smith:21,smoother:10,smoothli:6,snappi:6,snappycompressor:[11,42],snapshot:[6,26,46,58,113,116,138],snapshot_nam:58,snapshotnam:[58,116],snitch:[6,36,45,64,116],socket:[6,49,151],sole:11,solid:[6,43],some:[0,6,9,11,12,13,14,21,26,28,29,30,31,40,41,42,46,49,51,52],some_funct:14,some_nam:12,someaggreg:14,somearg:14,somefunct:14,someon:[24,41],sometim:[6,12,13],someudt:14,somewher:34,soon:49,sooner:6,sort:[4,11,13,21,41,43,163],sort_kei:163,sourc:[5,6,8,14,27,34,46,121],source_elaps:52,space:[6,23,30,40,41,43,46],space_used_by_snapshots_tot:163,space_used_l:163,space_used_tot:163,span:[6,13,41],sparingli:13,spark:32,spec:[25,35,46,52],speci:[11,18],special:[12,13,29,30,41,46],specif:[6,9,11,12,13,19,21,26,28,30,32,40,41,46,49,52,116,121,131],specifc:46,specifi:[0,6,10,11,12,13,14,16,18,19,21,26,30,35,40,41,42,46,49,51,52,58,60,100,116,121,131,137,149,151,153,160,163,166],specific_dc:131,specific_host:131,specific_keyspac:121,specific_sourc:121,specific_token:121,specul:[0,46],speculativeretri:46,speed:[6,36],spent:46,spike:30,spin:[6,43],spindl:6,spirit:[6,50],split:[23,30,41,46,52,60],spread:[6,50],sql:[13,15],squar:12,squash:28,src:121,ssd:[6,16,43],ssl:[6,30,45,52,116,127],ssl_storage_port:50,sss:17,sstabl:[2,6,11,30,38,42,43,45,57,60,87,100,107,116,123,129,138,167,168],sstable_compression_ratio:163,sstable_count:163,sstable_s:41,sstable_size_in_mb:41,sstableexpiredblock:41,sstablesperreadhistogram:46,sstablewrit:23,stabil:28,stabl:[34,52],stack:6,stage:28,stai:[36,41],stale:49,stall:[6,51],stand:[6,29],standalon:29,standard:[6,21,30,34,46],start:[0,6,9,13,27,30,31,34,36,41,43,46,49,51,60,131,160],start_token:[60,131],start_token_1:121,start_token_2:121,start_token_n:121,starter:28,startup:[6,20,26,30,41,46,51],starvat:6,state:[6,14,38,41,43,46,51,116,154],statement:[6,9,10,11,13,14,15,16,17,19,20,21,25,27,28,38,41,46,49,52],static0:11,static1:11,statist:[4,41,46,52,62,88,116,119,162,163,165],statu:[19,25,28,30,34,52,116,130,155,156,157,158,159,168],statusautocompact:116,statusbackup:116,statusbinari:116,statusgossip:116,statushandoff:116,stc:11,stdin:52,stdout:52,step:[6,26,31,49],still:[0,6,10,13,14,17,21,23,49,51,52],stop:[6,34,52,75,116,134,161],stop_commit:6,stop_paranoid:6,stopdaemon:116,storag:[2,11,15,16,28,30,36,42,43,45],storage_port:[31,50],storageservic:[6,23],store:[0,4,6,10,11,12,13,21,36,38,41,42,43,46,49,52,72,80,82,116,159],store_typ:6,straight:51,straightforward:40,strategi:[0,6,11,45,50],stream:[4,6,36,41,42,45,56,95,101,116,121,131,147,148,150,151],street:21,strength:6,strict:[10,41],strictli:[8,11,14],string:[6,10,11,12,13,14,16,17,19,20,21,46,52,100],strong:0,strongli:[6,11,12,49],structur:[4,6,9,19,25,38,46],stub:49,style:[6,25,26,27,28,29,36],stype:[9,14],sub:[11,13,21,34,41],subclass:6,subdirectori:[6,20],subject:[6,14,49],submiss:[6,28],submit:[28,29,36,60],subscrib:8,subscript:8,subsequ:[6,13,30,41,42],subset:[19,41,52],substitut:34,subsystem:49,subvert:41,succed:46,succesfulli:46,success:[0,52],sudden:6,sudo:[30,34],suffici:[6,43],suggest:[12,28,43],suit:[6,28,29,49],suitabl:[13,14,25,28],sum:40,summari:[4,6,46],sun:[23,49],sunx509:6,supercolumn:9,supersed:[10,138],superus:[9,19,49],suppli:[13,24],support:[0,6,9,10,11,12,13,14,15,16,18,19,21,28,29,30,32,36,41,49,52,138,160],suppos:13,sure:[6,8,23,26,28,29,30,31,34,41],surplu:30,surpris:0,surprisingli:6,surround:[17,52],suscept:14,suspect:[5,28],suspend:26,swamp:30,swap:6,symmetri:17,symptom:30,sync:[6,30,46,131],synchron:6,synonym:19,synopsi:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],syntact:[11,19],syntax:[10,12,13,14,19,21,41,42],sys:6,sysctl:30,sysintern:6,system:[6,11,14,19,29,30,31,35,41,43,46,49,52,91,92,93,95,101,107,116,123,124,125,143,144,145,147,150],system_auth:[6,49],system_trac:131,tab:23,tabl:[0,4,6,9,10,12,13,14,15,16,17,18,19,20,21,29,38,41,42,45,49,52,57,60,67,75,77,86,87,90,94,98,107,116,122,123,125,129,131,138,142,153,155,160,162,163,167,168],table1:19,table_nam:[11,13,16,19,20,41,163],table_opt:[11,18],tablehistogram:116,tablestat:116,tag:[21,25,28,153],take:[6,10,11,13,14,21,25,26,28,30,38,41,42,43,51,116,153],taken:[6,40,41,46],tar:34,tarbal:[31,33,52],target:[11,19,26,29,41],task:[6,26,28,46,52],tcp:[6,30],tcp_keepalive_intvl:30,tcp_keepalive_prob:30,tcp_keepalive_tim:30,tcp_nodelai:6,tcp_wmem:6,teach:[6,50],team:30,technetwork:6,technic:[11,15],technot:6,tee:34,tell:[6,13,25,30,31,46],temporari:49,temporarili:6,tenanc:6,tend:[6,30,43],tendenc:6,terabyt:42,term:[6,13,14,15,18,21],termin:[12,52],ternari:23,test:[6,8,23,25,27,28,35,36,43,52],test_keyspac:49,testabl:[25,28],testbatchandlist:29,testmethod1:29,testmethod2:29,testsom:29,teststaticcompactt:29,text:[4,9,11,12,13,14,17,21,40,42,49],than:[0,6,11,12,13,14,15,18,21,23,28,36,41,42,43,49,50,51,132,144,145],thei:[6,9,10,11,12,13,14,15,18,19,21,23,25,28,29,36,38,41,42,43,46,49],them:[6,10,11,13,14,21,23,28,29,30,35,38,41,46,49,116,167],themselv:[13,19],theoret:11,therefor:[28,29,49],thi:[0,2,4,5,6,7,10,11,12,13,14,15,17,18,19,21,23,24,25,26,28,29,30,31,33,34,36,38,40,41,42,43,46,49,50,51,52,53,54,55,57,58,60,63,65,67,73,77,83,86,87,89,90,94,98,100,102,106,107,114,116,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],thing:[6,21,24,28,30,33,41],think:6,third:[21,25,46],thobb:52,those:[11,12,13,14,16,17,18,19,21,28,30,40,41,49,52,167],though:[6,10,12,21,36,41,42,46],thousand:52,thousandssep:52,thread:[6,43,46,49,57,87,116,129,131,138,146,165,167],threadpool:45,threadpoolnam:46,threadprioritypolici:26,three:[0,6,38,41,42,49,52],threshold:[4,40,43,50,90,116,142,148],thrift:[6,9,11,15,30,46],throttl:[6,89,116,139,143,146,147,150],throttle_limit:6,through:[0,5,9,10,11,12,13,26,28,30,35,40,41,52],throughout:49,throughput:[0,6,41,42,43,46,91,95,101,116,143,147,150],throwabl:[25,29],thrown:21,thu:[6,10,11,12,13,18,21,30,46,50,51,116,167],thumb:[6,28],thusli:21,tib:[62,115,163],ticket:[5,24,25,28,29,40],tie:30,tier:45,ties:13,tighter:6,tightli:6,tild:52,time:[0,6,8,9,10,11,12,13,15,16,17,18,23,25,26,28,29,30,38,40,42,45,46,49,52,116,118],timehorizon:6,timelin:11,timeout:[6,21,30,46,52,102,116,151],timeout_in_m:151,timeout_typ:[102,151],timer:[6,46],timestamp:[4,9,10,11,13,14,15,17,36,41,52,138],timeunit:41,timeuuid:[9,10,11,17,21],timewindowcompactionstrategi:11,timezon:[17,52],tini:[6,41],tinyint:[9,10,14,17,21],tjake:23,tls_dhe_rsa_with_aes_128_cbc_sha:6,tls_dhe_rsa_with_aes_256_cbc_sha:6,tls_ecdhe_rsa_with_aes_128_cbc_sha:6,tls_ecdhe_rsa_with_aes_256_cbc_sha:6,tls_rsa_with_aes_128_cbc_sha:6,tls_rsa_with_aes_256_cbc_sha:6,toc:4,todai:12,todat:14,todo:[25,29],togeth:[6,11,13,14,41],toggl:49,tojson:15,token:[2,4,6,9,10,12,13,30,41,46,52,60,65,107,108,114,116,121,131,137,168],toler:38,tom:13,tombston:[4,6,11,17,30,45,46,87,138],tombstone_compaction_interv:41,tombstone_threshold:41,tombstonescannedhistogram:46,ton:29,too:[6,11,12,14,21,25,41],tool:[6,12,28,30,36,41,46,49,51],top:[13,21,28,36,46,118,163,164],topcount:[118,164],topic:52,topolog:[6,50,137],toppartit:116,total:[6,13,40,41,46],totalblockedtask:46,totalcommitlogs:46,totalcompactionscomplet:46,totaldiskspaceus:46,totalhint:46,totalhintsinprogress:46,totallat:46,totimestamp:14,touch:[8,30,41],tough:29,tounixtimestamp:14,tour:21,toward:11,tpstat:116,trace:[6,46,103,116,131,152],track:[6,41,46],tracker:28,tradeoff:[0,6],tradit:[41,42],traffic:[6,50],trail:23,transact:[13,20,46,160],transfer:[6,30,49],transform:13,transit:[10,19],translat:6,transpar:[6,30],transport:[6,26,46,69,79,116,157],treat:[0,6,10,30,50],tree:[26,46],tri:41,trigger:[4,6,9,12,15,36,38,42,45,57,116,128],trigger_nam:20,trigger_stat:12,trip:[6,13],trivial:49,troubleshoot:[25,36],truesnapshotss:46,truli:9,truncat:[6,9,10,15,19,102,116,151,166],truncate_stat:12,truncatehint:116,trunk:[24,25,26,28],trust:49,trustor:6,truststor:[6,49],truststore_password:6,truststorepassword:49,tserverfactori:6,ttl:[4,6,9,10,11,14,17,21,45,138],tty:52,tunabl:2,tune:[30,38,41,43],tupl:[6,9,10,12,13,14,15,17],tuple_liter:[12,13],tuple_typ:21,tuplevalu:[10,14],turn:[0,6,28,30,49],twc:[11,41],twice:[6,21],two:[0,6,11,12,13,14,17,26,36,38,41,43,49,50,52],txt:[4,14,24,25,28],type:[0,6,10,11,12,13,14,15,19,25,34,36,43,45,49,52,102,116,151,160],type_hint:12,typeasblob:14,typecodec:14,typic:[0,6,13,30,38,41,43,46,49,52],ubuntu:26,udf:[6,14],udf_stat:12,udfcontext:[10,14],udt:[14,17],udt_liter:12,udt_nam:21,udt_stat:12,udtarg:14,udtnam:14,udtvalu:[10,14],ulimit:30,unabl:[6,25,36],unaffect:21,unavail:[6,11,46,49,51],unblock:46,unbound:21,unchecked_tombstone_compact:41,uncom:[6,46,49],uncommon:28,uncompress:[6,42,46],undelet:41,under:[6,21,23,29,46,49],underli:[6,18,41,49],understand:[6,28,30],unencrypt:[6,49],unexpectedli:21,unfinishedcommit:46,unflush:[40,153],unfortun:29,uniqu:[11,14,21],unit:[21,25,27,41,116,140],unixtimestampof:[10,14],unless:[6,11,13,16,18,19,21,23,40,49,50],unlik:[6,10,13,21],unlimit:[6,30,52],unlog:9,unnecessari:[25,51],unnecessarili:40,unpredict:13,unprepar:46,unquot:12,unquoted_identifi:12,unquoted_nam:11,unrel:28,unreleas:28,unrepair:45,unsecur:49,unset:[6,10,13,17],unsign:21,unspecifi:6,unsubscrib:[8,36],untar:34,until:[0,6,21,38,40,41,42,49,50],unus:6,unusu:25,updat:[6,9,10,11,12,14,15,17,18,19,21,25,28,29,34,36,41,42,46,49,52],update_paramet:13,update_stat:[12,13],upgrad:[6,41,116,167],upgradesst:[38,41,42,116],upload:28,upon:[6,21,38,42],upper:[12,17,41,49],ups:43,upstream:28,uptim:[108,116],url:24,usag:[4,6,11,21,36,38,40,42,46,52],use:[6,9,10,11,12,13,14,16,17,18,19,21,23,25,26,28,29,31,34,35,36,38,40,41,43,46,49,50,51,52,57,87,99,116,118,129,138,164,167],use_stat:12,usecas:41,useconcmarksweepgc:26,usecondcardmark:26,used:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,21,25,26,28,29,30,41,43,46,49,50,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,94,98,100,102,106,107,114,116,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],useecassandra:49,useful:[0,6,11,14,28,41,42,46,51,52,55,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],useparnewgc:26,user1:13,user2:13,user3:13,user4:13,user:[5,6,8,9,10,11,12,13,15,16,17,18,25,28,30,34,38,41,42,43,49,52,60,76,116],user_count:13,user_defined_typ:21,user_funct:19,user_nam:13,user_occup:13,user_opt:19,useract:13,userid:[11,13,14],userindex:16,usernam:[6,13,14,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],uses:[0,4,6,11,12,13,14,16,19,20,29,30,49],usethreadprior:26,using:[4,6,10,11,12,13,14,18,19,21,26,28,29,33,34,35,36,38,42,43,45,46,49,51,52,60,121,138,153],usr:52,usual:[6,13,21,24,29,38,49,131],utc:[17,52],utd:11,utf8:[21,52],utf8typ:9,utf:52,util:[14,25,41,52],uuid:[9,10,11,12,17,21],val0:11,val1:11,val:14,valid:[6,10,11,12,13,14,17,21,30,41,42,46,49,52,131,138,160],validationexecutor:46,valu:[6,9,10,11,12,13,14,16,17,21,25,26,30,38,41,46,49,50,52,76,103,107,116,139,143,144,145,146,147,149,150,151,152],value1:13,value2:13,value_in_kb_per_sec:[139,146],value_in_m:149,value_in_mb:[143,147,150],valueof:14,varchar:[9,11,14,17,21],vari:[6,42],variabl:[6,10,12,17,21,26,33],variant:12,varieti:40,varint:[9,11,14,17,21],variou:[26,29,43,49],veri:[6,11,13,28,29,30,38,41,42,43],verifi:[28,30,32,34,42,107,116,160],version:[5,6,9,11,14,15,21,26,28,32,34,41,46,51,59,64,74,84,116,167,168],vertic:52,via:[6,8,10,19,25,30,31,41,42,43,46,49,50],view:[6,10,11,12,15,19,36,46,52,93,116,145,170],view_nam:18,viewbuildstatu:116,viewlockacquiretim:46,viewmutationstag:46,viewpendingmut:46,viewreadtim:46,viewreplicasattempt:46,viewreplicassuccess:46,viewwrit:46,viewwritelat:46,virtual:[0,6,30,41,46,51],visibl:[11,19,23,38],vnode:[6,42],volum:[6,40,42],vulner:[6,49],wai:[4,6,12,15,17,18,21,24,26,29,30,41,42,131],wait:[0,6,11,28,30,46,116,133],waitingoncommit:46,waitingonfreememtablespac:46,waitingonsegmentalloc:46,want:[6,11,13,26,28,29,30,49,51],warmup:[116,141],warn:[6,11,23,29,45,131],washington:21,wasn:10,wast:6,watch:29,weaker:0,websit:[29,34],week:21,weight:[6,46,80],welcom:8,well:[6,11,13,14,17,21,25,26,40,42,43,49,50,116,134],went:46,were:[6,9,10,19,25,26,41,46],what:[11,13,21,27,29,31,36,41,43,49,52],whatev:[10,13,30],whedon:13,when:[4,6,9,10,11,12,13,14,15,16,17,19,21,23,25,28,29,31,36,38,40,42,43,45,46,49,50,51,52,55,57,58,60,63,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],where:[0,4,6,9,10,11,12,14,16,17,18,19,21,25,29,31,34,38,41,42,49,51,52,80,131],where_claus:13,wherea:[21,49],whether:[0,6,9,11,13,26,41,50,52,80],which:[0,4,5,6,10,11,12,13,14,15,16,18,19,20,21,28,29,30,31,34,35,38,40,41,42,43,46,49,50,51,60,94,98,107,121,131],whichev:[0,6],whitelist:49,whitespac:27,who:[19,28,30],whole:[6,11,13,14,21,41],whose:[11,21,160],why:[25,28,36],wide:[4,40],width:12,wiki:[6,26],wildcard:[13,19],window:[0,6,45,46,49,97,105,116,149],winner:30,wip:[26,28],wipe:[30,51],wire:30,wise:11,wish:[6,41,46],within:[0,4,6,11,12,13,16,28,30,41,43,46,49],withing:6,without:[6,11,12,13,14,19,21,24,26,28,29,30,40,43,46,49,52,55,107,116,123],wmem_max:6,won:[6,13,24],wont:41,word:[10,11,12,18,19,21,30],work:[6,10,11,14,15,17,23,24,26,27,29,30,41,43,46,49,50,51,52],worker:52,workload:[6,25,38,41,43],workspac:26,worktre:26,worri:[28,30],wors:[6,50],worst:[6,28],worthwhil:6,would:[6,12,13,14,17,19,26,28,29,36,41,42,43,49,50],wrap:50,write:[0,4,6,10,11,13,21,23,25,29,30,40,41,42,43,46,49,50,51,52,75,102,116,151,163],write_lat:163,write_request_timeout:30,writelat:46,writer:[6,23],writetim:[9,14],writetimeoutexcept:6,written:[4,6,20,30,38,41,42,46],wrong:6,wrte:46,www:[6,11,34],xlarg:43,xml:31,xmn220m:26,xms1024m:26,xmx1024m:26,xmx:43,xss256k:26,xvf:34,yaml:[6,14,31,34,46,49,50,51,61,76,80,116,134,163,165],year:[13,21],yes:[9,11,49],yet:[11,46],yield:[13,51],you:[5,6,8,10,11,12,13,14,16,17,18,20,21,23,24,26,27,29,30,31,32,33,34,35,36,41,46,49,50,51,52,55,116,153],younger:14,your:[0,5,6,8,10,11,12,23,26,28,29,30,31,34,36,41,43,49,50,52],yourself:[24,29],yyyi:[17,21],z_0:[11,16,18],zero:[6,10,30,46,50],zip:21,zipcod:21,zone:[6,21,50],zzzzz:28},titles:["Dynamo","Guarantees","Architecture","Overview","Storage Engine","Reporting Bugs and Contributing","Cassandra Configuration File","Configuring Cassandra","Contact us","Appendices","Changes","Data Definition","Definitions","Data Manipulation","Functions","The Cassandra Query Language (CQL)","Secondary Indexes","JSON Support","Materialized Views","Security","Triggers","Data Types","Data Modeling","Code Style","How-to Commit","Review Checklist","Building and IDE Integration","Cassandra Development","Contributing Code Changes","Testing","Frequently Asked Questions","Configuring Cassandra","Client drivers","Getting Started","Installing Cassandra","Inserting and querying","Welcome to Apache Cassandra&#8217;s documentation!","Backups","Bloom Filters","Bulk Loading","Change Data Capture","Compaction","Compression","Hardware Choices","Hints","Operating Cassandra","Monitoring","Read repair","Repair","Security","Snitch","Adding, replacing, moving and removing nodes","cqlsh: the CQL shell","Cassandra Tools","Nodetool","assassinate","bootstrap","cleanup","clearsnapshot","clientstats","compact","compactionhistory","compactionstats","decommission","describecluster","describering","disableauditlog","disableautocompaction","disablebackup","disablebinary","disablefullquerylog","disablegossip","disablehandoff","disablehintsfordc","disableoldprotocolversions","drain","enableauditlog","enableautocompaction","enablebackup","enablebinary","enablefullquerylog","enablegossip","enablehandoff","enablehintsfordc","enableoldprotocolversions","failuredetector","flush","garbagecollect","gcstats","getbatchlogreplaythrottle","getcompactionthreshold","getcompactionthroughput","getconcurrentcompactors","getconcurrentviewbuilders","getendpoints","getinterdcstreamthroughput","getlogginglevels","getmaxhintwindow","getreplicas","getseeds","getsstables","getstreamthroughput","gettimeout","gettraceprobability","gossipinfo","handoffwindow","help","import","info","invalidatecountercache","invalidatekeycache","invalidaterowcache","join","listsnapshots","move","netstats","Nodetool","pausehandoff","profileload","proxyhistograms","rangekeysample","rebuild","rebuild_index","refresh","refreshsizeestimates","reloadlocalschema","reloadseeds","reloadssl","reloadtriggers","relocatesstables","removenode","repair","repair_admin","replaybatchlog","resetfullquerylog","resetlocalschema","resumehandoff","ring","scrub","setbatchlogreplaythrottle","setcachecapacity","setcachekeystosave","setcompactionthreshold","setcompactionthroughput","setconcurrentcompactors","setconcurrentviewbuilders","sethintedhandoffthrottlekb","setinterdcstreamthroughput","setlogginglevel","setmaxhintwindow","setstreamthroughput","settimeout","settraceprobability","snapshot","status","statusautocompaction","statusbackup","statusbinary","statusgossip","statushandoff","stop","stopdaemon","tablehistograms","tablestats","toppartitions","tpstats","truncatehints","upgradesstables","verify","version","viewbuildstatus","Troubleshooting"],titleterms:{"class":50,"function":[13,14,17],"import":[23,107],"long":29,"new":30,"static":11,"switch":41,Adding:51,IDE:26,IDEs:23,LCS:41,TLS:49,The:[11,13,15,17,41],USE:11,Use:42,Uses:42,Using:26,Will:30,With:49,access:49,add:30,address:30,advanc:42,after:51,aggreg:14,alias:13,all:[19,30],alloc:51,allocate_tokens_for_keyspac:6,allow:13,alter:[11,18,19,21],ani:30,apach:36,appendic:9,appendix:9,architectur:2,ask:30,assassin:55,assign:51,auth:49,authent:[6,19,49],author:[6,49],auto_snapshot:6,automat:19,avg:14,back_pressure_en:6,back_pressure_strategi:6,backup:37,batch:[13,30],batch_size_fail_threshold_in_kb:6,batch_size_warn_threshold_in_kb:6,batchlog_replay_throttle_in_kb:6,befor:28,benefit:42,binari:34,blob:[14,30],bloom:38,boilerpl:23,bootstrap:[30,41,51,56],branch:28,broadcast_address:6,broadcast_rpc_address:6,buffer_pool_use_heap_if_exhaust:6,bufferpool:46,bug:[5,28],build:26,bulk:[30,39],cach:[11,46,49],call:30,can:30,captur:[40,52],cas_contention_timeout_in_m:6,cassandra:[6,7,15,17,26,27,29,30,31,34,36,40,45,49,53],cast:14,cdc:40,cdc_enabl:6,cdc_free_space_check_interval_m:6,cdc_raw_directori:6,cdc_total_space_in_mb:6,chang:[10,28,30,31,38,40,41],characterist:21,checklist:25,choic:43,choos:28,circleci:29,claus:13,cleanup:[51,57],clear:52,clearsnapshot:58,client:[32,35,46,49],client_encryption_opt:6,clientstat:59,clojur:32,cloud:43,cluster:[11,30],cluster_nam:6,code:[23,28],collect:[21,41],column:11,column_index_cache_size_in_kb:6,column_index_size_in_kb:6,command:[26,41,52],comment:12,commit:24,commit_failure_polici:6,commitlog:[4,46],commitlog_compress:6,commitlog_directori:6,commitlog_segment_size_in_mb:6,commitlog_sync:6,commitlog_sync_batch_window_in_m:6,commitlog_sync_period_in_m:6,commitlog_total_space_in_mb:6,commitlogseg:40,common:[11,41,43],compact:[9,11,41,46,60],compaction_large_partition_warning_threshold_mb:6,compaction_throughput_mb_per_sec:6,compactionhistori:61,compactionstat:62,compactionstrategi:41,compat:52,compress:[11,42],concern:41,concurrent_compactor:6,concurrent_counter_writ:6,concurrent_materialized_view_writ:6,concurrent_read:6,concurrent_writ:6,condition:19,configur:[6,7,31,40,42],connect:30,consider:11,consist:[0,52],constant:12,contact:8,contribut:[5,28],control:19,convent:[12,23],convers:14,copi:52,count:14,counter:[13,21],counter_cache_keys_to_sav:6,counter_cache_save_period:6,counter_cache_size_in_mb:6,counter_write_request_timeout_in_m:6,cpu:43,cql:[9,15,46,52],cqlsh:[35,52],cqlshrc:52,creat:[11,14,16,18,19,20,21,28],credenti:19,credentials_update_interval_in_m:6,credentials_validity_in_m:6,cross_node_timeout:6,cstar_perf:29,custom:21,cython:52,data:[11,13,17,19,21,22,30,40,41,51],data_file_directori:6,databas:19,date:21,dead:51,debian:34,debug:26,decommiss:63,defin:[14,21],definit:[11,12],defragment:41,delet:[13,30,41],depend:52,describ:[52,65],describeclust:64,detail:41,detect:0,develop:27,dies:30,directori:[31,41],disabl:40,disableauditlog:66,disableautocompact:67,disablebackup:68,disablebinari:69,disablefullquerylog:70,disablegossip:71,disablehandoff:72,disablehintsfordc:73,disableoldprotocolvers:74,disk:[30,43],disk_failure_polici:6,disk_optimization_strategi:6,document:36,doe:30,drain:75,driver:[32,35],drop:[9,11,14,16,18,19,20,21,30],droppedmessag:46,dtest:29,durat:21,dynam:50,dynamic_snitch_badness_threshold:6,dynamic_snitch_reset_interval_in_m:6,dynamic_snitch_update_interval_in_m:6,dynamo:0,each:30,eclips:26,email:30,enabl:[40,49],enable_materialized_view:6,enable_scripted_user_defined_funct:6,enable_user_defined_funct:6,enableauditlog:76,enableautocompact:77,enablebackup:78,enablebinari:79,enablefullquerylog:80,enablegossip:81,enablehandoff:82,enablehintsfordc:83,enableoldprotocolvers:84,encod:17,encrypt:49,endpoint_snitch:6,engin:4,entri:30,environ:31,erlang:32,error:30,even:30,except:23,exist:30,exit:52,expand:52,expir:41,factor:30,fail:[30,51],failur:[0,30],failuredetector:85,file:[6,23,34],file_cache_size_in_mb:6,filedescriptorratio:46,filter:[13,38],fix:28,flush:86,format:23,frequent:30,from:[26,30,34,52],fromjson:17,fulli:41,further:40,garbag:41,garbagecollect:87,garbagecollector:46,gc_grace_second:41,gc_log_threshold_in_m:6,gc_warn_threshold_in_m:6,gcstat:88,gener:23,get:33,getbatchlogreplaythrottl:89,getcompactionthreshold:90,getcompactionthroughput:91,getconcurrentcompactor:92,getconcurrentviewbuild:93,getendpoint:94,getinterdcstreamthroughput:95,getlogginglevel:96,getmaxhintwindow:97,getreplica:98,getse:99,getsstabl:100,getstreamthroughput:101,gettimeout:102,gettraceprob:103,give:30,gossip:0,gossipinfo:104,grace:41,grant:19,group:13,guarante:1,handl:23,handoffwindow:105,hang:51,happen:30,hardwar:43,haskel:32,heap:30,help:[52,106],hint:44,hinted_handoff_disabled_datacent:6,hinted_handoff_en:6,hinted_handoff_throttle_in_kb:6,hintedhandoff:46,hints_compress:6,hints_directori:6,hints_flush_period_in_m:6,host:[30,52],how:[24,30],idea:26,identifi:12,impact:42,incremental_backup:6,index:[16,46],index_summary_capacity_in_mb:6,index_summary_resize_interval_in_minut:6,info:108,initial_token:6,insert:[13,17,35],instal:34,integr:[26,49],intellij:26,inter:49,inter_dc_stream_throughput_outbound_megabits_per_sec:6,inter_dc_tcp_nodelai:6,intern:[19,49],internode_authent:6,internode_compress:6,internode_recv_buff_size_in_byt:6,internode_send_buff_size_in_byt:6,invalidatecountercach:109,invalidatekeycach:110,invalidaterowcach:111,irc:8,java:[30,32],jconsol:30,jmx:[30,41,46,49],join:[30,112],json:17,jvm:46,kei:[11,16,18],key_cache_keys_to_sav:6,key_cache_save_period:6,key_cache_size_in_mb:6,keyspac:[11,30,46],keyword:[9,12],lang:30,languag:15,larg:30,level:[0,41],limit:13,line:[26,52],list:[8,19,21,30],listen:30,listen_address:[6,30],listen_interfac:6,listen_interface_prefer_ipv6:6,listen_on_broadcast_address:6,listsnapshot:113,liter:21,live:30,load:[30,39],locat:31,log:[30,31,41],login:52,lot:30,made:30,mail:8,main:31,major:41,manipul:13,manual:51,map:[16,21,30],materi:18,max:[14,30],max_hint_window_in_m:6,max_hints_delivery_thread:6,max_hints_file_size_in_mb:6,max_value_size_in_mb:6,maxtimeuuid:14,mean:30,memori:[30,43,46],memorypool:46,memtabl:4,memtable_allocation_typ:6,memtable_cleanup_threshold:6,memtable_flush_writ:6,memtable_heap_space_in_mb:6,memtable_offheap_space_in_mb:6,merg:41,messag:30,method:30,metric:46,min:14,minor:41,mintimeuuid:14,model:22,monitor:[46,51],more:[30,41],move:[51,114],movement:51,multilin:23,nativ:[14,21],native_transport_max_concurrent_connect:6,native_transport_max_concurrent_connections_per_ip:6,native_transport_max_frame_size_in_mb:6,native_transport_max_thread:6,native_transport_port:6,native_transport_port_ssl:6,net:32,netstat:115,networktopologystrategi:0,newer:26,node:[30,49,51],nodej:32,nodetool:[30,41,54,116],noteworthi:21,now:14,num_token:6,one:30,onli:30,oper:[30,41,42,45],option:[11,18,41,52],order:[11,13],otc_backlog_expiration_interval_m:6,otc_coalescing_enough_coalesced_messag:6,otc_coalescing_strategi:6,otc_coalescing_window_u:6,other:[11,30],outofmemoryerror:30,overview:[3,40],packag:34,page:52,paramet:[13,40,41],partit:11,partition:6,password:49,patch:28,pausehandoff:117,perform:29,permiss:19,permissions_update_interval_in_m:6,permissions_validity_in_m:6,phi_convict_threshold:6,php:32,pick:0,point:30,port:30,prepar:12,prepared_statements_cache_size_mb:6,prerequisit:34,primari:[11,18],profileload:118,progress:51,project:26,properti:31,proxyhistogram:119,python:32,pytz:52,queri:[15,35],question:30,rang:[0,51],range_request_timeout_in_m:6,rangekeysampl:120,read:[40,47],read_request_timeout_in_m:6,rebuild:121,rebuild_index:122,refresh:123,refreshsizeestim:124,refus:30,releas:28,reloadlocalschema:125,reloadse:126,reloadssl:127,reloadtrigg:128,relocatesst:129,remot:30,remov:[41,51],removenod:130,repair:[41,47,48,131],repair_admin:132,replac:51,replaybatchlog:133,replic:[0,30],report:[5,30,46],request:46,request_schedul:6,request_scheduler_id:6,request_scheduler_opt:6,request_timeout_in_m:6,reserv:9,resetfullquerylog:134,resetlocalschema:135,result:13,resum:51,resumehandoff:136,revers:11,review:25,revok:19,rhel:30,right:28,ring:[0,30,137],role:[19,49],role_manag:6,roles_update_interval_in_m:6,roles_validity_in_m:6,row_cache_class_nam:6,row_cache_keys_to_sav:6,row_cache_save_period:6,row_cache_size_in_mb:6,rpc_address:6,rpc_interfac:6,rpc_interface_prefer_ipv6:6,rpc_keepal:6,rpc_max_thread:6,rpc_min_thread:6,rpc_port:6,rpc_recv_buff_size_in_byt:6,rpc_send_buff_size_in_byt:6,rpc_server_typ:6,rubi:32,run:29,runtim:31,rust:32,safeti:6,sai:30,same:30,saved_caches_directori:6,scala:32,scalar:14,scrub:138,secondari:16,secur:[19,49],see:30,seed:30,seed_provid:6,select:[13,17,18],selector:13,serial:52,server_encryption_opt:6,session:52,set:[19,21,26,30],setbatchlogreplaythrottl:139,setcachecapac:140,setcachekeystosav:141,setcompactionthreshold:142,setcompactionthroughput:143,setconcurrentcompactor:144,setconcurrentviewbuild:145,sethintedhandoffthrottlekb:146,setinterdcstreamthroughput:147,setlogginglevel:148,setmaxhintwindow:149,setstreamthroughput:150,settimeout:151,settraceprob:152,setup:26,share:52,shell:52,show:[30,52],signatur:14,simplestrategi:0,singl:[30,41],size:41,slow_query_log_timeout_in_m:6,snapshot:153,snapshot_before_compact:6,snitch:50,sourc:[26,52],special:52,speed:30,ssl:49,ssl_storage_port:6,sstabl:[4,41,46],sstable_preemptive_open_interval_in_mb:6,stai:30,standard:49,start:[26,28,33],start_native_transport:6,start_rpc:6,starv:41,statement:[12,18,23],statu:154,statusautocompact:155,statusbackup:156,statusbinari:157,statusgossip:158,statushandoff:159,stc:41,stop:160,stopdaemon:161,storag:[4,9,46],storage_port:6,store:30,strategi:41,stream:[30,46,51],stream_throughput_outbound_megabits_per_sec:6,streaming_keep_alive_period_in_sec:6,stress:29,style:23,sum:14,support:17,tabl:[11,40,46],tablehistogram:162,tablestat:163,tarbal:34,term:12,test:[26,29],than:30,thei:30,though:30,threadpool:46,threshold:6,thrift_framed_transport_size_in_mb:6,thrift_prepared_statements_cache_size_mb:6,tick:28,tier:41,time:[14,21,41],timestamp:[21,30],timeuuid:14,timewindowcompactionstrategi:41,tock:28,todo:[0,1,3,4,11,22,37,39,44,47,48,54],tojson:17,token:[0,14,51],tombston:41,tombstone_failure_threshold:6,tombstone_warn_threshold:6,tool:[29,53],top:30,toppartit:164,tpstat:165,trace:52,tracetype_query_ttl:6,tracetype_repair_ttl:6,transparent_data_encryption_opt:6,trickle_fsync:6,trickle_fsync_interval_in_kb:6,trigger:[20,41],troubleshoot:171,truncat:11,truncate_request_timeout_in_m:6,truncatehint:166,ttl:[13,41],tunabl:0,tupl:21,two:30,type:[9,17,21,41,46],udt:21,unabl:30,unit:[26,29],unlog:13,unlogged_batch_across_partitions_warn_threshold:6,unrepair:41,unsubscrib:30,updat:[13,30],upgradesst:167,usag:[30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],use:30,user:[14,19,21],using:[30,41],uuid:14,variabl:31,verifi:168,version:[10,52,169],view:18,viewbuildstatu:170,warn:40,welcom:36,what:[28,30],when:[30,41],where:13,whitespac:23,why:[30,41],window:41,windows_timer_interv:6,without:41,work:[21,28],write_request_timeout_in_m:6,writetim:13,yaml:40,you:28}})
\ No newline at end of file
+Search.setIndex({docnames:["architecture/dynamo","architecture/guarantees","architecture/index","architecture/overview","architecture/storage_engine","bugs","configuration/cassandra_config_file","configuration/index","contactus","cql/appendices","cql/changes","cql/ddl","cql/definitions","cql/dml","cql/functions","cql/index","cql/indexes","cql/json","cql/mvs","cql/security","cql/triggers","cql/types","data_modeling/index","development/code_style","development/how_to_commit","development/how_to_review","development/ide","development/index","development/patches","development/testing","faq/index","getting_started/configuring","getting_started/drivers","getting_started/index","getting_started/installing","getting_started/querying","index","operating/backups","operating/bloom_filters","operating/bulk_loading","operating/cdc","operating/compaction","operating/compression","operating/hardware","operating/hints","operating/index","operating/metrics","operating/read_repair","operating/repair","operating/security","operating/snitch","operating/topo_changes","tools/cqlsh","tools/index","tools/nodetool","tools/nodetool/assassinate","tools/nodetool/bootstrap","tools/nodetool/cleanup","tools/nodetool/clearsnapshot","tools/nodetool/clientstats","tools/nodetool/compact","tools/nodetool/compactionhistory","tools/nodetool/compactionstats","tools/nodetool/decommission","tools/nodetool/describecluster","tools/nodetool/describering","tools/nodetool/disableauditlog","tools/nodetool/disableautocompaction","tools/nodetool/disablebackup","tools/nodetool/disablebinary","tools/nodetool/disablefullquerylog","tools/nodetool/disablegossip","tools/nodetool/disablehandoff","tools/nodetool/disablehintsfordc","tools/nodetool/disableoldprotocolversions","tools/nodetool/drain","tools/nodetool/enableauditlog","tools/nodetool/enableautocompaction","tools/nodetool/enablebackup","tools/nodetool/enablebinary","tools/nodetool/enablefullquerylog","tools/nodetool/enablegossip","tools/nodetool/enablehandoff","tools/nodetool/enablehintsfordc","tools/nodetool/enableoldprotocolversions","tools/nodetool/failuredetector","tools/nodetool/flush","tools/nodetool/garbagecollect","tools/nodetool/gcstats","tools/nodetool/getbatchlogreplaythrottle","tools/nodetool/getcompactionthreshold","tools/nodetool/getcompactionthroughput","tools/nodetool/getconcurrency","tools/nodetool/getconcurrentcompactors","tools/nodetool/getconcurrentviewbuilders","tools/nodetool/getendpoints","tools/nodetool/getinterdcstreamthroughput","tools/nodetool/getlogginglevels","tools/nodetool/getmaxhintwindow","tools/nodetool/getreplicas","tools/nodetool/getseeds","tools/nodetool/getsstables","tools/nodetool/getstreamthroughput","tools/nodetool/gettimeout","tools/nodetool/gettraceprobability","tools/nodetool/gossipinfo","tools/nodetool/handoffwindow","tools/nodetool/help","tools/nodetool/import","tools/nodetool/info","tools/nodetool/invalidatecountercache","tools/nodetool/invalidatekeycache","tools/nodetool/invalidaterowcache","tools/nodetool/join","tools/nodetool/listsnapshots","tools/nodetool/move","tools/nodetool/netstats","tools/nodetool/nodetool","tools/nodetool/pausehandoff","tools/nodetool/profileload","tools/nodetool/proxyhistograms","tools/nodetool/rangekeysample","tools/nodetool/rebuild","tools/nodetool/rebuild_index","tools/nodetool/refresh","tools/nodetool/refreshsizeestimates","tools/nodetool/reloadlocalschema","tools/nodetool/reloadseeds","tools/nodetool/reloadssl","tools/nodetool/reloadtriggers","tools/nodetool/relocatesstables","tools/nodetool/removenode","tools/nodetool/repair","tools/nodetool/repair_admin","tools/nodetool/replaybatchlog","tools/nodetool/resetfullquerylog","tools/nodetool/resetlocalschema","tools/nodetool/resumehandoff","tools/nodetool/ring","tools/nodetool/scrub","tools/nodetool/setbatchlogreplaythrottle","tools/nodetool/setcachecapacity","tools/nodetool/setcachekeystosave","tools/nodetool/setcompactionthreshold","tools/nodetool/setcompactionthroughput","tools/nodetool/setconcurrency","tools/nodetool/setconcurrentcompactors","tools/nodetool/setconcurrentviewbuilders","tools/nodetool/sethintedhandoffthrottlekb","tools/nodetool/setinterdcstreamthroughput","tools/nodetool/setlogginglevel","tools/nodetool/setmaxhintwindow","tools/nodetool/setstreamthroughput","tools/nodetool/settimeout","tools/nodetool/settraceprobability","tools/nodetool/sjk","tools/nodetool/snapshot","tools/nodetool/status","tools/nodetool/statusautocompaction","tools/nodetool/statusbackup","tools/nodetool/statusbinary","tools/nodetool/statusgossip","tools/nodetool/statushandoff","tools/nodetool/stop","tools/nodetool/stopdaemon","tools/nodetool/tablehistograms","tools/nodetool/tablestats","tools/nodetool/toppartitions","tools/nodetool/tpstats","tools/nodetool/truncatehints","tools/nodetool/upgradesstables","tools/nodetool/verify","tools/nodetool/version","tools/nodetool/viewbuildstatus","troubleshooting/index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,"sphinx.ext.todo":1,sphinx:54},filenames:["architecture/dynamo.rst","architecture/guarantees.rst","architecture/index.rst","architecture/overview.rst","architecture/storage_engine.rst","bugs.rst","configuration/cassandra_config_file.rst","configuration/index.rst","contactus.rst","cql/appendices.rst","cql/changes.rst","cql/ddl.rst","cql/definitions.rst","cql/dml.rst","cql/functions.rst","cql/index.rst","cql/indexes.rst","cql/json.rst","cql/mvs.rst","cql/security.rst","cql/triggers.rst","cql/types.rst","data_modeling/index.rst","development/code_style.rst","development/how_to_commit.rst","development/how_to_review.rst","development/ide.rst","development/index.rst","development/patches.rst","development/testing.rst","faq/index.rst","getting_started/configuring.rst","getting_started/drivers.rst","getting_started/index.rst","getting_started/installing.rst","getting_started/querying.rst","index.rst","operating/backups.rst","operating/bloom_filters.rst","operating/bulk_loading.rst","operating/cdc.rst","operating/compaction.rst","operating/compression.rst","operating/hardware.rst","operating/hints.rst","operating/index.rst","operating/metrics.rst","operating/read_repair.rst","operating/repair.rst","operating/security.rst","operating/snitch.rst","operating/topo_changes.rst","tools/cqlsh.rst","tools/index.rst","tools/nodetool.rst","tools/nodetool/assassinate.rst","tools/nodetool/bootstrap.rst","tools/nodetool/cleanup.rst","tools/nodetool/clearsnapshot.rst","tools/nodetool/clientstats.rst","tools/nodetool/compact.rst","tools/nodetool/compactionhistory.rst","tools/nodetool/compactionstats.rst","tools/nodetool/decommission.rst","tools/nodetool/describecluster.rst","tools/nodetool/describering.rst","tools/nodetool/disableauditlog.rst","tools/nodetool/disableautocompaction.rst","tools/nodetool/disablebackup.rst","tools/nodetool/disablebinary.rst","tools/nodetool/disablefullquerylog.rst","tools/nodetool/disablegossip.rst","tools/nodetool/disablehandoff.rst","tools/nodetool/disablehintsfordc.rst","tools/nodetool/disableoldprotocolversions.rst","tools/nodetool/drain.rst","tools/nodetool/enableauditlog.rst","tools/nodetool/enableautocompaction.rst","tools/nodetool/enablebackup.rst","tools/nodetool/enablebinary.rst","tools/nodetool/enablefullquerylog.rst","tools/nodetool/enablegossip.rst","tools/nodetool/enablehandoff.rst","tools/nodetool/enablehintsfordc.rst","tools/nodetool/enableoldprotocolversions.rst","tools/nodetool/failuredetector.rst","tools/nodetool/flush.rst","tools/nodetool/garbagecollect.rst","tools/nodetool/gcstats.rst","tools/nodetool/getbatchlogreplaythrottle.rst","tools/nodetool/getcompactionthreshold.rst","tools/nodetool/getcompactionthroughput.rst","tools/nodetool/getconcurrency.rst","tools/nodetool/getconcurrentcompactors.rst","tools/nodetool/getconcurrentviewbuilders.rst","tools/nodetool/getendpoints.rst","tools/nodetool/getinterdcstreamthroughput.rst","tools/nodetool/getlogginglevels.rst","tools/nodetool/getmaxhintwindow.rst","tools/nodetool/getreplicas.rst","tools/nodetool/getseeds.rst","tools/nodetool/getsstables.rst","tools/nodetool/getstreamthroughput.rst","tools/nodetool/gettimeout.rst","tools/nodetool/gettraceprobability.rst","tools/nodetool/gossipinfo.rst","tools/nodetool/handoffwindow.rst","tools/nodetool/help.rst","tools/nodetool/import.rst","tools/nodetool/info.rst","tools/nodetool/invalidatecountercache.rst","tools/nodetool/invalidatekeycache.rst","tools/nodetool/invalidaterowcache.rst","tools/nodetool/join.rst","tools/nodetool/listsnapshots.rst","tools/nodetool/move.rst","tools/nodetool/netstats.rst","tools/nodetool/nodetool.rst","tools/nodetool/pausehandoff.rst","tools/nodetool/profileload.rst","tools/nodetool/proxyhistograms.rst","tools/nodetool/rangekeysample.rst","tools/nodetool/rebuild.rst","tools/nodetool/rebuild_index.rst","tools/nodetool/refresh.rst","tools/nodetool/refreshsizeestimates.rst","tools/nodetool/reloadlocalschema.rst","tools/nodetool/reloadseeds.rst","tools/nodetool/reloadssl.rst","tools/nodetool/reloadtriggers.rst","tools/nodetool/relocatesstables.rst","tools/nodetool/removenode.rst","tools/nodetool/repair.rst","tools/nodetool/repair_admin.rst","tools/nodetool/replaybatchlog.rst","tools/nodetool/resetfullquerylog.rst","tools/nodetool/resetlocalschema.rst","tools/nodetool/resumehandoff.rst","tools/nodetool/ring.rst","tools/nodetool/scrub.rst","tools/nodetool/setbatchlogreplaythrottle.rst","tools/nodetool/setcachecapacity.rst","tools/nodetool/setcachekeystosave.rst","tools/nodetool/setcompactionthreshold.rst","tools/nodetool/setcompactionthroughput.rst","tools/nodetool/setconcurrency.rst","tools/nodetool/setconcurrentcompactors.rst","tools/nodetool/setconcurrentviewbuilders.rst","tools/nodetool/sethintedhandoffthrottlekb.rst","tools/nodetool/setinterdcstreamthroughput.rst","tools/nodetool/setlogginglevel.rst","tools/nodetool/setmaxhintwindow.rst","tools/nodetool/setstreamthroughput.rst","tools/nodetool/settimeout.rst","tools/nodetool/settraceprobability.rst","tools/nodetool/sjk.rst","tools/nodetool/snapshot.rst","tools/nodetool/status.rst","tools/nodetool/statusautocompaction.rst","tools/nodetool/statusbackup.rst","tools/nodetool/statusbinary.rst","tools/nodetool/statusgossip.rst","tools/nodetool/statushandoff.rst","tools/nodetool/stop.rst","tools/nodetool/stopdaemon.rst","tools/nodetool/tablehistograms.rst","tools/nodetool/tablestats.rst","tools/nodetool/toppartitions.rst","tools/nodetool/tpstats.rst","tools/nodetool/truncatehints.rst","tools/nodetool/upgradesstables.rst","tools/nodetool/verify.rst","tools/nodetool/version.rst","tools/nodetool/viewbuildstatus.rst","troubleshooting/index.rst"],objects:{},objnames:{},objtypes:{},terms:{"00t89":21,"03t04":21,"0x0000000000000003":14,"0x00000004":13,"100mb":6,"10mb":6,"10s":52,"10x":[6,41],"11e6":52,"128th":4,"12gb":43,"12h30m":21,"15m":46,"160mb":41,"16mb":[30,41],"180kb":6,"19t03":139,"1mo":21,"1st":21,"24h":21,"250m":6,"256mb":6,"256th":6,"29d":21,"2e10":10,"2gb":43,"2nd":[6,11,50],"2xlarg":43,"300s":6,"327e":52,"32gb":43,"32mb":[6,30],"36x":34,"3ff3e5109f22":13,"3gb":42,"3rd":[6,46,50],"40f3":13,"4ae3":13,"4kb":11,"4xlarg":43,"50kb":6,"50mb":[6,41],"512mb":6,"5573e5b09f14":13,"5kb":6,"5mb":41,"64k":6,"64kb":42,"6ms":6,"6tb":43,"7374e9b5ab08c1f1e612bf72293ea14c959b0c3c":24,"75th":46,"86400s":41,"89h4m48":21,"8gb":43,"8th":[6,40],"90th":46,"95ac6470":52,"95th":46,"98th":46,"99th":46,"9th":46,"\u00eatre":9,"abstract":[23,25],"boolean":[9,12,14,17,19,21,52],"break":[28,41],"byte":[6,9,13,21,46,62,80,116,166],"case":[6,10,11,12,13,14,16,17,18,21,24,25,28,29,30,38,43,49,51,52],"catch":23,"class":[6,11,14,21,23,26,29,41,42,45,49,117,129,150],"default":[4,6,10,11,13,14,17,19,21,26,29,30,31,34,38,40,41,42,46,49,51,52,57,76,80,87,116,117,119,122,132,133,139,154,156,167],"enum":9,"export":[26,46,52],"final":[14,19,23,26,41,43,49,133],"float":[9,10,11,12,14,17,21,38,42],"function":[6,9,10,11,12,15,16,18,19,21,25,32,36,49,50,52],"import":[11,14,21,26,27,29,31,41,43,46,52,117],"int":[9,10,11,13,14,17,18,19,21,29,40,42],"long":[6,13,21,24,25,30,41,46],"new":[0,4,6,10,11,14,16,17,18,19,20,21,23,25,26,28,29,33,36,38,41,43,49,51,108,115,117],"null":[9,10,12,13,14,17,18,21,23,52],"public":[6,14,23,29,30,34,49,50],"return":[6,9,11,13,14,16,17,18,19,21,25,132],"short":[6,21],"static":[6,9,10,18,50],"super":49,"switch":[6,10,19,26,30,45,46,49,50],"throw":[6,14,23,29],"true":[6,11,12,17,19,21,26,30,40,41,49,51,52,114,117],"try":[6,11,23,26,28,30,41,54,132],"var":[6,23,34],"void":29,"while":[6,10,11,12,13,21,24,28,38,41,42,43,49,52],AES:6,AND:[9,11,13,14,18,19,49,52],AWS:43,Added:10,Adding:[6,11,19,21,30,36,45,49],And:[11,14,19,49],Are:25,Ave:21,BUT:23,But:[13,15,19,21,23,28,30,52],CAS:6,CFs:[132,139],CLS:52,DCs:6,DNS:30,Doing:10,EBS:43,For:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,20,21,28,29,30,31,34,35,41,43,49,50,52],GCs:6,Has:[6,25],IDE:[27,36],IDEs:[26,27],IDs:[117,157],INTO:[6,9,11,13,14,17,21],IPs:[6,50,138,157],Ids:163,JKS:6,KBs:6,LCS:11,NFS:43,NOT:[6,9,10,11,13,14,16,18,19,20,21],Not:[13,19,28,41,42],ONE:[0,6,46,52],One:[6,29,30,41],PFS:6,Pis:43,Such:21,THE:6,TLS:[6,45],That:[11,12,18,21,28,30,41,52],The:[0,4,6,8,9,10,12,14,16,18,19,20,21,23,24,26,28,29,30,31,34,35,36,38,40,42,43,46,49,50,51,52,57,60,65,67,73,77,83,86,87,90,95,99,101,103,108,115,117,119,123,124,130,132,139,142,143,150,156,157,158,165,167,170,171,173],Their:21,Then:[13,29,30,34,41,49],There:[0,6,10,11,12,13,14,21,26,28,29,30,41,46,49],These:[4,6,11,14,26,46,49,52],USE:[9,14,15],USING:[9,13,16,20,21,41],Use:[11,13,19,30,35,45,52,55,60,117,122,132,163,170],Used:46,Uses:[6,17,45,50],Using:[11,13,29,30,49],WILL:6,WITH:[9,11,12,16,18,19,38,40,41,42,49,52],Will:[6,36,80,117,150],With:[6,13,17,30,41,51,56],Yes:30,_cache_max_entri:49,_if_:6,_must_:6,_trace:46,_udt:14,_update_interval_in_m:49,_use:14,_validity_in_m:49,a278b781fe4b2bda:34,abil:[14,30,42],abilityid:16,abl:[6,14,21,26,29,30,41],about:[4,6,19,26,28,29,30,38,41,50,52,59,117,138],abov:[6,8,11,12,13,14,21,26,28,30,31,40,41,46],absenc:12,abstracttyp:21,accept:[0,6,10,11,12,13,17,28,29,38,51,75,117],access:[6,10,21,26,28,43,45,46],accompani:6,accord:[6,30],accordingli:[6,14,30],account:[6,21,29],accru:[41,46],accumul:[6,41,46],accur:[6,30,38,138],accuraci:[38,119,167],acheiv:49,achiev:[41,46],achil:32,ack:6,acoount:46,acquir:[19,46],across:[6,11,19,28,46,49,50,117,121],action:[6,13],activ:[4,6,28,40,46,52,117,119,167],activetask:46,actual:[4,6,13,20,23,25,30,34,41,50,132],acycl:19,add:[0,6,9,10,11,21,24,25,28,31,34,36,41,49],addamsfamili:11,added:[0,6,10,11,14,25,41],adding:[6,13,14,25,43,52],addit:[0,6,9,11,13,19,21,26,28,31,41,43,46,49,52],addition:[11,13,41],address:[6,8,17,21,26,28,31,36,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],adher:10,adjac:41,adjust:[6,38],adv:34,advanc:[6,45,49],advantag:43,advers:30,advic:[28,30],advis:[6,12,21,30],af08:13,afd:21,affect:[6,25,28,30,41,139],afford:6,after:[5,6,10,11,12,13,14,16,17,18,26,28,30,40,41,43,45,46,49,50,52],afterward:[26,29],afunct:14,again:[6,28,41,51,52],against:[6,11,14,28,29,30,43,51,52,132],agent:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],agentlib:26,aggreg:[6,9,10,13,15,18,19,46,52],aid:12,aim:6,akeyspac:14,algorithm:[6,11,51],alia:[10,13,32],alias:[6,10,18],alic:19,align:23,aliv:6,all:[0,6,9,11,12,13,14,17,18,21,23,24,25,26,28,29,36,38,40,41,46,49,51,52,57,58,59,75,87,92,108,109,114,117,119,121,130,133,139,154,156,158,167,169,170,171],allmemtableslivedatas:46,allmemtablesoffheaps:46,allmemtablesonheaps:46,alloc:[6,30,40,43,46],allocate_tokens_for_keyspac:51,allow:[0,4,6,9,10,11,12,14,16,17,18,21,31,38,40,41,42,43,50],allowallauthent:[6,49],allowallauthor:[6,49],allowallinternodeauthent:6,almost:[6,14,21,41],alon:[6,23],along:[6,13,114,117],alongsid:[35,52],alphabet:23,alphanumer:[11,19],alreadi:[6,11,14,16,18,21,28,41,49,170],also:[0,4,6,10,11,12,13,14,17,18,19,21,26,28,29,30,31,41,43,46,49,51,52,87,171],alter:[9,10,15,17,30,38,40,41,42,49],alter_keyspace_stat:12,alter_role_stat:12,alter_table_instruct:11,alter_table_stat:12,alter_type_modif:21,alter_type_stat:[12,21],alter_user_stat:12,altern:[6,10,11,12,13,17,21,26,28,31,43,49],although:[6,28],alwai:[0,6,9,10,11,13,14,18,21,23,28,29,30,41,43],amend:24,amongst:11,amount:[6,11,13,21,26,28,29,30,41,42,43,46,51,52,132],amplif:[41,43],anaggreg:14,analogu:13,analyt:38,analyz:29,ani:[0,6,10,11,12,13,14,17,18,19,20,21,24,25,26,28,29,31,34,36,40,41,43,46,49,51,52,55,108,114,117,122,139,154],annot:23,anonym:[12,21],anoth:[6,11,14,19,21,29,41,49,52],anotherarg:14,ant:[26,28,29],anti:[6,21],anticip:11,anticompact:[41,163],antientropystag:46,antipattern:43,anymor:[24,41],anyon:23,anyth:41,anywai:6,anywher:13,apach:[2,5,6,7,14,20,23,24,25,26,28,29,30,33,34,41,42,46,49,53],api:[6,8,11,15,17,35,50],appear:[12,14,41,52],append:[21,24,43,46,52],appendic:[15,36],appendix:[12,15],appl:21,appli:[6,9,10,11,12,13,19,21,24,28,29,30,46,52],applic:[6,11,19,23,25,26,49],appreci:28,approach:[4,41,51],appropri:[6,11,19,21,25,28,49,50,51],approxim:[41,46],apt:34,arbitrari:[11,12,21],architectur:[30,36],archiv:[6,40,80],archive_command:80,archive_retri:80,aren:13,arg:[14,117,155],argnam:14,argnum:14,argument:[6,11,13,14,16,17,30,31,42,52,55,56,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],arguments_declar:14,arguments_signatur:14,around:[6,19,41,43,50],arrai:[6,30],arriv:[6,28,30],artifact:26,artifici:11,asap:10,asc:[9,11,13],ascend:[11,13],ascii:[9,14,17,21],asf:26,ask:[5,28,29,36,49],aspect:11,assassin:117,assertionerror:23,assertrow:29,assign:[6,13,30],associ:[6,11],assum:[6,11,14,26,49,50],assumpt:49,astyanax:32,async:[6,49],asynchron:[6,16,30,43],asynchroni:46,atabl:14,atom:[11,13,20,24],atomiclong:46,attach:28,attemp:46,attempt:[0,6,11,16,18,19,21,30,41,46,49,52,133],attent:[23,28],attribut:41,audit:[66,76,117],auditlog:76,auth:6,authent:[10,45,52],authenticatedus:6,author:[9,19,21,45],authorizationproxi:49,auto:[6,30,158],auto_bootstrap:51,autocompact:[41,67,77,117,158],autogener:54,autom:[8,23],automat:[6,13,14,16,26,29,30,34,41,49,51],avail:[0,6,8,11,14,19,26,28,29,34,40,49,50,52,57,87,130,139,150,170],availabil:6,averag:[6,14,41,46],average_live_cells_per_slice_last_five_minut:166,average_s:11,average_tombstones_per_slice_last_five_minut:166,averagefin:14,averagest:14,avg_bucket_s:41,avoid:[6,11,12,23,25,28,38,41,43,49,50,52,171],awai:[26,51,52],awar:[0,11,28,38,42,138],azur:43,b124:13,b70de1d0:13,back:[6,41,46,51,114,117],backend:6,background:[30,34,41,49],backlog:6,backpressur:6,backpressurestrategi:6,backup:[6,36,41,45,51,52,68,78,117,159],backward:[6,10,11,15,19,21],bad:[6,14,30,50],balanc:51,banana:21,band:21,bar:[12,23],bardet:21,bare:6,base:[0,4,6,10,11,13,14,18,19,21,24,28,29,30,41,43,46,49,51],bash:30,basi:[6,30,42],basic:[11,41,43],batch:[6,9,15,29,36,52],batch_remov:46,batch_stat:12,batch_stor:46,batchlog:[13,46,89,117,134,140],be34:13,beatl:21,beca:52,becaus:[6,13,14,34,41,42,49],becom:[4,6,11,14,19,28,41,46,49,51],been:[0,4,6,10,13,14,15,19,21,25,28,41,43,49,139],befor:[0,6,10,11,13,14,16,20,21,26,27,29,32,41,49,50,52,80,156],begin:[9,12,13,29,49,52],beginn:28,begintoken:52,behavior:[0,6,10,14,17,21,23,25,38,41,51,133],behind:[6,23,29,30,41],being:[6,11,13,17,21,25,29,30,38,41,46,51],belong:[11,13,14,46,57,117],below:[6,11,12,13,17,19,21,28,34,41,52,63],benchmark:43,benefici:41,benefit:[6,38,41,43,45],besid:6,best:[6,29,41,49,50],best_effort:6,better:[6,23,28,41,43],between:[0,6,9,10,13,15,28,30,38,41,46,49,51,132,154],beyond:[6,52,171],big:[41,60],bigger:[11,41],biggest:14,bigint:[9,14,17,21],bigintasblob:14,bin:[26,34,35,52],binari:[14,33,69,79,117,160],binauditlogg:76,bind:[6,10,12,14,30],bind_mark:[12,13,18,21],biolog:11,birth:13,birth_year:13,bit:[6,14,17,21,28,30,42,43],bite:30,bitrot:11,bitstr:9,black:6,blank:[6,23,30],bleed:26,blindli:30,blob:[9,10,12,17,21,36,42],blobasbigint:14,blobastyp:14,block:[4,6,11,24,31,41,43,46,49,80],blockedonalloc:6,blog:[6,11,13],blog_til:13,blog_titl:13,bloom:[4,11,36,43,45,46],bloom_filter_false_posit:166,bloom_filter_false_ratio:166,bloom_filter_fp_ch:[11,38],bloom_filter_off_heap_memory_us:166,bloom_filter_space_us:166,bloomfilterdiskspaceus:46,bloomfilterfalseposit:46,bloomfilterfalseratio:46,bloomfilteroffheapmemoryus:46,blunt:49,bnf:12,bob:[13,19],bodi:[11,12],boilerpl:27,boolstyl:52,boost:6,boot:30,bootstrap:[0,6,36,42,45,46,49,117,122,150],born:13,both:[0,6,11,13,14,18,21,24,25,28,30,31,38,41,42,43,46,49,51,52],bottleneck:6,bottom:30,bound:[6,11,12,21,43,49],box:[6,49,50],brace:23,bracket:12,braket:12,branch:[24,25,26,29],branchnam:28,breakpoint:26,breed:29,bring:6,brk:30,broadcast:6,broadcast_address:50,broken:[41,46],brows:6,browser:52,bucket:41,bucket_high:41,bucket_low:41,buffer:[4,6,46],bufferpool:45,bug:[10,24,29,30,36],build:[8,27,29,36,46,117,173],builder:[94,117,147],built:[26,46],bulk:[36,45],bump:10,bunch:23,burn:40,button:30,bytebuff:14,byteorderedpartition:[6,14],bytescompact:46,bytesflush:46,bytestyp:9,c73de1d3:13,cach:[6,30,31,43,45,50,108,110,111,112,117,141,142],cachecleanupexecutor:46,cachenam:46,calcul:[6,38,40,41,46,50],call:[9,11,12,13,14,19,23,31,36,41,43,46,51,117,150],callback:46,caller:23,can:[0,4,5,6,8,9,10,11,12,13,14,16,17,18,19,20,21,23,24,25,26,28,29,31,34,35,36,38,40,41,42,43,46,49,50,51,52,55,57,58,60,65,67,73,77,80,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],cancel:[10,133],candid:41,cannot:[6,9,11,13,14,17,18,19,21,41,49,55,117],cap:[12,91,96,102,117,144,149,152],capabl:[6,30,52],capac:[6,40,46,50,117,119,141,167],captur:[6,36,45],care:[6,41,132],carlo:19,carri:[23,132],cascommit:46,cascontent:[103,153],casprepar:46,caspropos:46,casread:46,cassablanca:21,cassafort:32,cassandra:[0,2,4,5,8,10,11,13,14,19,20,21,23,24,28,32,33,35,38,41,42,43,46,50,51,52,76,80,117,128,132,135,139,164,172],cassandra_hom:[6,40,49],cassandraauthor:[6,49],cassandradaemon:[26,34],cassandralogin:49,cassandrarolemanag:[6,49],casser:32,cassi:32,cast:[10,13,18],caswrit:46,cat:21,categor:46,categori:[11,12,13,14,76],caught:[25,46],caus:[6,18,30,41,49],caution:6,caveat:49,cbc:6,ccm:[25,29],ccmlib:29,cdc:[6,11],cdc_enabl:40,cdc_free_space_check_interval_m:40,cdc_free_space_in_mb:40,cdc_raw:[6,40],cdc_raw_directori:40,cdccompactor:6,cell:[6,21,46,87,171],center:[6,11,21,30,50,51,73,83,117,132],central:[26,49,52],centric:19,certain:[6,9,11,19,29,41,49],certainli:14,certif:[49,117,128],cfname:[101,119,167],cfs:23,chain:19,chanc:38,chang:[6,11,12,15,19,21,24,26,27,33,34,36,42,45,46,49,150],channel:[5,8,28],charact:[11,12,13,17,19,21,23,52],chat:8,cheap:6,check:[0,6,11,13,23,25,26,28,29,30,38,40,41,46,49,108,117,132,171],checklist:[27,28,36],checkout:[26,28],checksum:[11,42,117,171],cherri:24,chess:13,child:52,chmod:49,choic:[6,11,36,41,45],choos:[0,6,11,27,32,43,46],chosen:[0,6,11,14],chown:49,christoph:21,chrome:52,chunk:[4,6,30,42,52],chunk_length_in_kb:[11,42],chunk_length_kb:6,chunk_lenth_in_kb:11,chunkcach:46,chunksiz:52,churn:6,cipher:[6,49],cipher_suit:6,circular:19,citi:21,clash:12,class_nam:6,classpath:[6,14,21,46],claus:[10,11,14,16,17,18,19,23],clean:[6,23,46,57,117,135],cleanli:28,cleanup:[30,41,45,46,87,117,163],clear:[25,28,59,108],clearsnapshot:117,click:[13,26,28,29],client:[0,6,8,10,11,13,17,19,21,25,30,31,33,36,43,45,52,59,117],client_encryption_opt:49,clientrequest:46,clientstat:117,clock:6,clockr:6,clojur:33,clone:[26,30,52],close:[6,15,49],closer:38,cloud:45,cluster:[0,4,6,9,10,13,14,20,21,25,29,31,35,36,41,43,46,49,50,51,52,64,85,89,105,117,140,157],cluster_nam:[31,35],clustering_column:11,clustering_ord:11,cmsparallelremarken:26,coalesc:6,coalescingstrategi:6,code:[6,10,12,14,20,24,25,26,27,29,36,42,46],codestyl:23,col:14,cold:6,collat:6,collect:[6,10,11,12,13,14,15,17,43,45,46,87],collection_liter:12,collection_typ:21,color:[21,52],column1:9,column:[6,9,10,12,13,14,15,16,17,18,21,42,46,52,101,119,139,156,167],column_definit:11,column_nam:[11,13,16],columnfamili:[6,9,23,41],colupdatetimedeltahistogram:46,com:[6,11,14,23,24,49],combin:[4,6,10,40,41],come:[6,9,49],comingl:41,comma:[6,11,12,13,31,49,51,52,76,119,122,167],command:[0,6,24,29,30,31,34,35,42,45,53,55,56,57,58,60,65,67,73,77,80,83,86,87,90,92,95,99,101,103,107,108,115,117,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],comment:[6,11,15,18,23,25,49],commit:[6,8,11,27,28,36,46],commitlog:[2,6,30,31,43,45],commitlog_archiv:6,commitlog_directori:[31,43],commitlog_segment_size_in_mb:30,commitlogread:40,commitlogreadhandl:40,commitlogreplay:40,commitlogseg:[6,45,46],committ:[24,28,29],common:[0,14,15,23,25,28,45,52],common_nam:11,commonli:117,commun:[6,8,25,26,28,30,31,35,49],commut:30,compact:[4,6,15,30,36,38,42,43,45,57,61,62,87,90,91,117,130,139,143,144,150,158,163,170],compacted_partition_maximum_byt:166,compacted_partition_mean_byt:166,compacted_partition_minimum_byt:166,compaction_:163,compaction_window_s:41,compaction_window_unit:41,compactionbyteswritten:46,compactionexecutor:46,compactionhistori:[41,117],compactionid:163,compactionparamet:41,compactionparametersjson:41,compactionstat:[41,117],compactionstrategi:45,compactor:[93,117,146],compar:[6,28,41,46],compat:[6,9,10,11,13,15,19,25,28],compatilibi:21,compet:6,compil:[23,26,52],complain:26,complet:[6,13,14,28,30,41,46,49,51,52,117,131,133],completedtask:46,complex:[6,9,14,21,28],complexarg:14,compliant:[6,14,49],complic:28,compon:[4,11,25,38,46,49,117,150],compos:[11,13,21],composit:11,compound:17,comprehens:25,compress:[4,6,29,36,41,43,45,46],compression_metadata_off_heap_memory_us:166,compressioninfo:4,compressionmetadataoffheapmemoryus:46,compressionratio:46,compressor:[6,11],compris:[4,11,42],compromis:49,comput:[6,14],concaten:14,concept:[15,19,41],concern:[13,14],concret:[12,21],concurr:[6,43,92,93,94,117,132,145,146,147],concurrentmarksweep:43,condens:13,condit:[6,10,12,13,19,21,23,24,41,46,49,52],conditionnotmet:46,conf:[6,30,31,34,46,49,52],config:[46,49,52],configur:[0,4,11,21,26,29,30,33,34,36,45,46,49,50,52,63,80,117,135,150],confirm:[6,8,25,26],conflict:[13,21,24],conform:[18,25],confus:[10,12,30],conjunct:52,connect:[6,11,19,21,26,35,36,46,49,50,52,59,63,116,117],connectednativecli:46,connectedthriftcli:46,connector:[30,32,49],consecut:31,consequ:[11,13,21,43],conserv:6,consid:[0,6,13,21,28,31,38,41,43],consider:[13,21],consist:[2,11,12,13,14,25,49,51],consol:[26,31,52],constant:[10,11,15,17,21],constantli:[6,41],construct:12,constructor:[6,23],consum:[6,29,38,40,46],consumpt:40,contact:[6,11,30,36],contain:[0,6,8,9,10,11,12,13,15,16,18,19,21,26,28,40,41,42,49,52,156],contend:[6,46],content:[4,6,11,12,13,36,41,52,80],contentionhistogram:46,context:[6,9,19,21,28,30,49],contigu:13,continu:[0,6,23,26,29,41,49,50],contrarili:12,contrast:[29,49],contribut:[24,27,29,36],contributor:[24,28,29,34],control:[0,6,10,11,13,15,25,31,34,41,49,50,52],conveni:[9,12,14,17,29,51],convent:[6,11,14,15,24,27,28,29,49,50],convers:10,convert:[10,13,14,41],coordin:[0,6,11,13,14,21,30,46,133],coordinatorreadlat:46,coordinatorscanlat:46,cop:23,copi:[0,30,41],core:[6,14,43,145],correct:[10,25,34,41,42,117,130],correctli:[6,11,30,41,49],correl:[6,10,50],correspond:[6,9,11,13,14,18,21,28,29,30,40,50],corrupt:[6,11,41,42,43,139,171],cost:[6,13,21,42],could:[6,12,21,25,28,41,52],couldn:34,count:[6,9,13,21,30,41,46,51],counter:[6,9,14,43,46,110,117,139,141,142],counter_mut:46,countercach:46,countermutationstag:46,counterwrit:[103,153],countri:[13,21],country_cod:21,coupl:[0,6],cours:[6,13],cover:[25,28,29,30,33,41,46],cpu:[6,11,40,42,45],cqerl:32,cql3:[11,14,25,29,52],cql:[6,10,11,12,13,14,16,17,19,21,29,32,35,36,41,45,49,53,150],cql_type:[11,12,13,14,19,21],cqlc:32,cqldefinit:14,cqlsh:[30,33,34,36,49,53],cqltester:[25,29],crash:43,crc32:4,crc:4,crc_check_chanc:[11,42],creat:[6,9,10,12,13,15,17,26,27,29,30,40,41,42,49,51,52,60],create_aggregate_stat:12,create_function_stat:12,create_index_stat:12,create_keyspace_stat:12,create_materialized_view_stat:12,create_role_stat:12,create_table_stat:12,create_trigger_stat:12,create_type_stat:[12,21],create_user_stat:12,createkeystor:6,createt:29,creation:[6,10,11,13,14,18,21],creator:19,credenti:[6,49],critic:[25,28,49],cross:[6,30,50],crossnodedroppedlat:46,cryptographi:6,csv:52,cuddli:21,curl:[24,34],current:[6,9,11,13,14,19,21,26,28,34,41,46,51,52,82,100,104,106,108,117,131,162,170],currentlyblockedtask:46,custom:[6,9,10,11,14,15,16,19,28,50,52],custom_option1:19,custom_option2:19,custom_typ:[14,21],cute:21,cvh:25,cycl:[6,40,80],daemon:[26,117,164],dai:[17,21,41],daili:80,danger:6,dash:12,data:[0,4,6,10,12,14,15,16,18,25,31,34,36,38,42,43,45,46,49,50,52,55,60,73,80,83,87,108,117,122,132,156,171],data_file_directori:[31,43],data_read:19,data_writ:19,databas:[12,13,15,20,41,43,49],datacent:[0,6,50,73,83,96,117,132,149],datacenter1:6,dataset:6,datastax:[6,11,14,32],datatyp:14,date:[9,10,14,15,17,139],dateof:[10,14],datestamp:17,datetieredcompactionstrategi:[11,41],daylight:21,db_user:49,dba:49,dc1:[6,11,49],dc2:[6,11,49],dcassandra:[41,46,49,51],dclocal_read_repair_ch:[0,11,41],dcom:49,dcpar:132,ddl:[11,52],ddl_statement:12,dead:[6,45,55,117],dead_node_ip:51,deb:34,debian:[30,33],debug:[31,52],decid:[9,41,50],decim:[9,14,17,21,52],decimalsep:52,declar:[11,12,14,21],decod:[17,21],decommiss:[6,51,117],decompress:42,decreas:[6,41],decrement:[13,21],decrypt:6,dedic:6,dedupl:[114,117],deem:6,deeper:28,default_time_to_l:[10,11,13],default_weight:6,defend:30,defin:[0,6,9,10,11,12,13,15,16,17,18,19,20,26,41,46,49,50,51,52,60,117],definit:[9,13,14,15,18,21,36,38],deflat:6,deflatecompressor:[11,42],degrad:6,delet:[6,9,10,11,12,15,17,19,21,28,36,52,80,87,117,169],delete_stat:[12,13],delimit:6,deliv:[0,6],deliveri:[6,117,118,137,148],delta:46,demand:49,deni:30,denorm:21,denot:12,dens:38,depend:[4,6,11,12,13,14,21,25,26,28,29,41],deploi:[30,31],deploy:[6,49,50],deprec:[6,10,11,14,15,30,41],depth:6,desc:[9,11,13,52],descend:[11,13],describ:[2,6,7,9,10,11,12,13,14,15,17,19,21,25,26,28,38,49,53,117],describeclust:117,descript:[6,10,11,14,21,46,52],descriptor:46,design:[14,40,41,43],desir:[16,21,30],destin:[40,52],detail:[5,6,10,11,12,13,14,21,30,45,49,52],detect:[2,6,11,24,30,49],detector:[85,117],determin:[0,6,13,19,38,42,50,132],determinist:30,dev:[6,8,11,30],develop:[5,8,26,28,29,36,43],dfb660d92ad8:52,dfp:171,dht:6,dictat:[6,49],did:[25,46],die:6,dies:36,diff:[15,23],differ:[0,6,11,12,13,14,15,19,21,24,26,28,29,30,31,34,41,42,43,46,51],difficult:[6,29],difficulti:21,digest:4,digit:[17,21,30],diminish:21,direct:[6,11,17,19,28,46],directli:[13,18,19,26,41],director:13,directori:[6,20,26,29,30,33,34,35,40,43,45,52,108,117,135],dirti:6,disabl:[6,11,14,41,42,49,50,52,66,67,68,69,70,71,72,73,74,83,117,140,142,144,149,152,153,154],disable_stcs_in_l0:41,disableauditlog:117,disableautocompact:[41,117],disablebackup:117,disablebinari:117,disablefullquerylog:117,disablegossip:117,disablehandoff:117,disablehintsfordc:117,disableoldprotocolvers:117,disablesnapshot:139,disallow:6,disambigu:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],discard:[6,40],disconnect:41,discourag:[11,21,28],discov:30,discuss:[8,21,28],disk:[4,6,11,31,36,38,40,41,42,45,46,80,114,117,130,171],displai:[11,52,56,62,92,107,109,116,117,166],disrupt:[30,49],distinct:[0,9,10,13],distinguish:[9,14],distribut:[6,29,30,41,46,49,51],divid:12,djava:[26,30,49],dml:20,dml_statement:12,dmx4jaddress:46,dmx4jport:46,dns:30,dobar:23,doc:[6,25,40,49],document:[5,12,14,15,17,25,28,35,49,52],doe:[6,11,13,14,16,17,18,19,21,24,25,28,36,38,40,41,42,49,50,51,114,117],doesn:[6,14,21,23,29,30],dofoo:23,doing:[6,13,29,30,41,51],dollar:[10,12],domain:[49,138,157],don:[5,13,23,24,25,26,28,30,31,41,51,108,132],done:[6,11,13,21,28,29,31,35,41],doubl:[6,9,10,11,12,14,17,21,26,46,50],down:[6,19,41,46,50,51,71,117,132],download:[6,26,34,46],downward:19,drain:117,drive:[6,41,43],driver:[6,12,14,29,33,36,52],drop:[6,10,15,36,41,46,80],drop_aggregate_stat:12,drop_function_stat:12,drop_index_stat:12,drop_keyspace_stat:12,drop_materialized_view_stat:12,drop_role_stat:12,drop_table_stat:12,drop_trigger_stat:12,drop_type_stat:[12,21],drop_user_stat:12,droppabl:[6,41],dropped_mut:166,droppedmessag:45,droppedmetr:46,droppedmut:46,dropwizard:46,dt_socket:26,dtest:[25,27],due:[11,13,21,30,34,46,51],dump:52,duplic:25,durable_writ:11,durat:[6,10,15,19,41,46,119,167],dure:[6,11,14,20,28,29,30,41,42,46,49,51,52,139],dying:30,dynam:[6,45,49],dynamic_snitch:50,dynamic_snitch_badness_threshold:50,dynamic_snitch_reset_interval_in_m:50,dynamic_snitch_update_interval_in_m:50,dynamo:[2,36],each:[0,4,6,10,11,12,13,14,17,18,19,21,24,28,35,36,41,42,43,46,49,50,51,52,117,142,158,171],each_quorum:0,earli:[6,12,28],earlier:15,easi:[9,28],easier:[0,28],easiest:30,ec2:[6,43,50],ec2multiregionsnitch:[6,50],ec2snitch:[6,50],ecc:43,echo:34,eclips:[23,27,29],ecosystem:25,edg:[25,26],edit:[26,31,34,46,49],effect:[6,11,21,28,30,38,42,49,71,117],effectiv:46,effici:[6,11,41,50,51],effort:6,either:[6,8,12,13,14,16,21,23,24,26,28,30,34,35,40,41,46,49,169],elaps:[41,46],element:[21,52],elig:6,els:[11,13,23,28],email:[8,16,21,36],embed:29,emploi:38,empti:[6,9,10,11,12,52],emptytyp:9,enabl:[6,11,14,17,19,29,30,41,42,50,51,52,76,77,78,80,83,84,117,154],enable_user_defined_funct:14,enableauditlog:117,enableautocompact:[41,117],enablebackup:117,enablebinari:117,enablefullquerylog:117,enablegossip:117,enablehandoff:117,enablehintsfordc:117,enableoldprotocolvers:117,encapsul:[23,46],enclos:[9,10,12,14,19],enclosur:12,encod:[15,21,25,52],encount:[5,13,34,46],encourag:[6,11],encrypt:[6,45],encryption_opt:6,end:[21,28,30,41,49,52,60,95,117,132],end_token:[60,132],end_token_1:122,end_token_2:122,end_token_n:122,endpoint:[46,50,55,95,117,132,169],endpoint_snitch:50,endtoken:52,enforc:[17,49],engin:[2,11,28,36,46],enhanc:43,enough:[0,6,21,30,31,41,50,52],enqueu:6,ensur:[11,13,18,20,30,42,49],entail:30,enter:[30,52],entir:[0,4,6,14,21,30,38,41,49,51,52],entri:[4,6,9,13,16,28,36,46,49,52],entropi:6,entry_titl:13,enumer:19,env:[30,31,46,49],environ:[0,5,6,26,30,33,43],ephemer:43,epoch:21,equal:[0,6,10,11,13,21,23,41],equival:[10,11,12,13,14,19,24,41],eras:11,erlang:33,erlcass:32,err:52,errfil:52,error:[6,11,12,14,16,18,19,21,23,25,26,34,36,52,133],escap:[12,17],especi:[28,30,41,52],essenti:[0,6,14,30,52],establish:[6,19,50],estim:46,estimatedcolumncounthistogram:46,estimatedpartitioncount:46,estimatedpartitionsizehistogram:46,etc:[6,18,21,23,25,30,31,34,41,46,49],eth0:6,eth1:6,ev1:21,even:[0,6,10,12,13,14,17,21,28,36,41,49,52,63,139,170],evenli:6,event:[13,21,41,52,132],event_typ:13,eventu:[4,13],ever:[23,29,30,43],everi:[4,6,11,13,14,18,19,20,21,35,38,41,43,52],everyth:[12,23,26,30],evict:46,evil:[6,14],exact:[11,12,14,42],exactli:[11,14,18,49],exampl:[0,6,11,13,14,17,19,21,29,34,35,41,49,50,52],exaust:6,excalibur:11,exce:[4,6,17,23],exceed:[6,43],excel:11,excelsior:11,except:[0,13,14,17,25,27,28,29,30,46],excess:38,exchang:[6,30],exclud:[46,76,100,117],excluded_categori:76,excluded_keyspac:76,excluded_us:76,exclus:[21,29,132],execut:[6,9,11,12,13,14,19,26,29,35,41,46,49,52],exhaust:6,exhibit:13,exist:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,29,36,38,41,42,50,51],expect:[6,10,12,21,23,25,28,41,49],expens:[6,38,50],experi:[6,41],experienc:6,experiment:132,expir:[6,10,11,13,21,45,49,139],expiri:41,explain:[23,25,28,34],explicit:10,explicitli:[6,10,13,17,21,23,41,50],explor:26,expon:10,exponenti:46,expos:[6,9,49],express:[0,6,10,12,50],expung:30,extend:[21,28,29,108,171],extens:[6,11,49],extern:[46,51],extra:[0,6,11,41],extract:[23,34],extrem:[6,13],fact:[21,29,30],factor:[0,6,11,36,42,49],fail:[6,13,14,21,36,41,52,117,133],failur:[2,6,28,36,41,43,46,50,85,117,171],failuredetector:117,fairli:[6,40,49],fake:14,fall:6,fallback:[6,50],fals:[6,11,12,17,19,21,38,40,41,42,46,49,51,52,139],famili:[6,43,101,119,156,167],fanout_s:41,fast:[6,38,41],faster:[6,28,42,43,117,142],fastest:[6,24,50],fatal:6,fault:30,fav:[16,21],fax:21,fct:14,fct_using_udt:14,fear:30,feasibl:21,featur:[25,26,28,49],fed:6,feedback:28,feel:24,fetch:[6,11,52],few:[41,43],fewer:[6,28],fffffffff:[17,21],field:[10,13,14,17,21,23,38],field_definit:21,field_nam:13,fifteen:46,fifteenminutecachehitr:46,figur:41,file:[4,7,11,26,27,28,29,30,31,33,36,38,41,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],filenam:[11,52,101,117],filesystem:49,fill:[40,41],fillion:13,filter:[4,9,11,18,36,43,45,46,132],finalfunc:[9,14],find:[6,26,29,34,38,41,51,95,99],fine:[6,28,49],finer:6,finish:[26,28,117,134],fip:[6,49],fire:20,firefox:52,firewal:[6,30,31,50],first:[5,6,11,13,14,21,28,30,33,41,43,49,52,132,139],firstnam:13,fit:[6,41,46],five:46,fiveminutecachehitr:46,fix:[6,10,12,24,30,41,43],flag:[6,13,24,25,28,40,46,51],flexibl:49,flight:[6,49],flip:11,floor:6,flow:[6,19,25],fluent:32,flush:[4,6,40,41,43,46,75,117,156],fname:14,focu:28,folder:[26,163],follow:[0,5,6,8,9,10,11,12,13,14,17,18,19,21,23,24,25,26,28,29,30,31,34,36,40,41,42,46,49,50,52,57,60,67,77,86,87,123,132,139,153,158,170,171],font:12,foo:[11,12,40],footprint:[117,119],forc:[4,6,11,13,52,60,63,117,131,132,133],forcefulli:[55,117],foreground:[31,34],forev:41,forget:5,fork:28,form:[6,10,11,12,14,19,62,116,166],formal:12,format:[6,10,17,21,24,25,27,28,46,52,61,80,101,122,166,168],former:[6,46],forward:[6,11],found:[5,12,14,15,28,29,31,35,49,52,163,171],four:13,fqcn:29,fraction:6,frame:6,framework:[25,29],franc:[13,21],free:[6,11,21,24,26,46],freed:4,freenod:8,frequenc:[6,40],frequent:[6,29,36,41,49],fresh:51,friendli:[6,21,29],from:[0,4,6,9,11,12,13,14,15,17,18,19,21,24,27,28,29,33,35,36,38,40,41,42,43,46,49,50,51,54,55,57,58,60,65,67,73,76,77,83,86,87,90,92,95,99,101,103,107,108,115,117,119,122,123,124,126,127,130,131,132,133,135,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],fromjson:15,froom:21,frozen:[9,10,11,13,14,21],fruit:[21,28],fsync:[6,46],full:[6,9,11,13,16,19,28,34,35,41,42,49,52,70,80,117,123,132,135],full_nam:166,fulli:[6,11,12,14,45,49],function_cal:12,function_nam:[13,14,19],fundament:17,further:[5,6,11,18,21,41,45,49],furthermor:[10,13,49],futur:[6,9,10,11,21,28,82,117,162],g1gc:43,game:[14,21],garbag:[11,43,45,46,87],garbage_collect:163,garbagecollect:117,gather:41,gaug:46,gaurante:0,gc_grace_second:11,gc_type:46,gce:[30,43],gcg:6,gcstat:117,gener:[0,2,4,6,8,11,12,13,14,17,21,25,26,27,28,30,43,49,52,103,139,153],genuin:23,get:[6,8,24,26,28,30,34,36,38,41,92,93,94,97,100,117],getbatchlogreplaythrottl:117,getcompactionthreshold:117,getcompactionthroughput:117,getconcurr:117,getconcurrentcompactor:117,getconcurrentviewbuild:117,getendpoint:117,getint:14,getinterdcstreamthroughput:117,getlocalhost:[6,30],getlogginglevel:117,getlong:14,getmaxhintwindow:117,getpartition:23,getreplica:117,getse:117,getsstabl:117,getstr:14,getstreamthroughput:117,gettempsstablepath:23,getter:[19,23],gettimeout:117,gettraceprob:117,gib:[62,116,166],gist:23,git:[5,24,26,28],github:[23,24,28,29],give:[18,19,21,28,29,36,52],given:[0,6,11,12,13,14,16,21,28,38,41,49,51,52,58,60,65,67,77,90,99,103,117,123,143,150,154,158,165],global:[6,52,117,141],gmt:21,goal:[6,41],gocassa:32,gocql:32,going:[6,28,41],gone:6,good:[6,23,28,29,30,52],googl:[23,52],gori:30,gossip:[2,6,30,46,50,71,81,105,117,161],gossipinfo:117,gossipingpropertyfilesnitch:[6,50],gossipstag:46,got:6,gp2:43,gpg:34,grace:45,grai:21,grain:49,grammar:[11,12],grant:[6,9,49],grant_permission_stat:12,grant_role_stat:12,granular:[6,87],graph:19,gravesit:11,great:[28,41],greater:[0,6,21,30,50,146,147],greatli:6,green:21,group:[6,10,11,19,41,46,49,50],group_by_claus:13,grow:21,guarante:[0,2,11,13,14,21,28,36,38,41,51,52],guid:[6,26],guidelin:[10,25,43],had:[9,10,41],half:[6,24,30],hand:[6,13,43],handl:[6,14,25,27,28,30,40,43,46,49,80],handoff:[6,46,51,72,106,117,148],handoffwindow:117,hang:28,happen:[6,13,23,24,28,36,41,46,50],happi:28,happili:43,hard:[6,14,41,43],harder:6,hardwar:[6,36,45],has:[0,4,6,10,11,12,13,14,18,19,21,23,28,30,41,43,46,49,50,52],hash:[4,6,41],hashcod:23,haskel:33,hasn:80,have:[0,5,6,9,10,11,12,13,14,15,18,19,21,23,24,25,26,28,29,30,31,34,38,41,42,43,46,49,50,80,139],haven:28,hayt:32,hdd:[6,43],head:28,header:[26,52],headroom:6,heap:[4,6,26,31,36,38,42,43,46],heap_buff:6,heavi:6,heavili:43,held:[6,43,117,121],help:[5,6,10,28,29,35,54,56,117,155],helper:29,henc:[5,6,11,21],here:[6,24,29,30,32,41,46,49],hex:[12,17,101],hexadecim:[10,12,101],hibern:51,hidden:51,hide:[23,25],hierarch:19,hierarchi:19,high:[0,6,30,41,43],higher:[0,19,28,38,41,46,51,119,167],highest:41,highli:[28,30,43,49],hint:[0,6,11,12,30,31,36,45,46,51,72,73,82,83,98,106,117,118,137,148,151,162,169],hintedhandoff:[6,45],hintedhandoffmanag:46,hints_creat:46,hints_directori:31,hints_not_stor:46,hintsdispatch:46,histogram:[41,46,117,120,165],histor:28,histori:[23,59,61,117],hit:[6,41,46],hitrat:46,hoc:29,hold:[0,6,10,13,19,30,41,52],home:[21,52],hope:41,hopefulli:28,host:[6,31,36,46,50,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],hostnam:[6,30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],hot:[6,46],hotspot:11,hotspotdiagnost:49,hottest:6,hour:[6,21,28,41],hourli:80,how:[0,5,6,7,8,11,12,21,25,26,27,28,29,33,35,36,41,42,46,50,52,80],howev:[6,9,10,11,12,13,15,17,18,21,28,29,30,31,34,38,42,43,49,52],hsha:6,html:6,http:[6,23,24,26,34,46],httpadaptor:46,hub:30,human:[11,62,116,166],hypothet:24,iauthent:6,iauthor:6,icompressor:42,idea:[6,14,27,28,29,30,41,52],ideal:[6,29,41,49],idempot:[13,21],idemptot:21,ident:0,identifi:[6,9,10,11,13,14,15,16,19,20,21],idiomat:8,idl:6,ieee:[17,21],iendpointsnitch:[6,50],ignor:[0,6,10,14,21,23,52,166],iinternodeauthent:6,illeg:14,illustr:19,imag:21,imagin:41,immedi:[6,11,21,28,38,42,57,117],immut:[4,30,42,43],impact:[6,11,25,41,45,49],implement:[6,10,13,14,18,19,23,29,30,40,42,49,50],implementor:6,impli:[11,12,21],implic:[0,49],implicitli:14,import_:52,imposs:41,improv:[0,6,11,21,28,29,38,41,43,50,51,52],inact:30,includ:[4,6,10,11,12,13,18,19,21,23,28,40,41,43,46,49,52,76,133,170],included_categori:76,included_keyspac:76,included_us:76,inclus:[28,132],incom:6,incomingbyt:46,incompat:[6,10],incomplet:25,inconsist:[0,30],incorrect:30,increas:[6,11,30,38,41,42,43,46,50,51,132],increment:[6,10,13,21,28,41,68,78,117,133,139,159],incur:[13,21,46],indent:23,independ:[11,41,43,49],index:[4,6,9,10,11,12,13,15,21,36,41,45,52,117,123],index_build:163,index_identifi:16,index_nam:16,index_summari:163,index_summary_off_heap_memory_us:166,indexclass:16,indexedentrys:46,indexinfocount:46,indexinfoget:46,indexnam:123,indexsummaryoffheapmemoryus:46,indic:[5,6,12,13,23,28,30,132],indirectli:13,individu:[6,10,14,21,28,29,43,49],induc:13,inequ:[10,13],inet:[9,11,14,17,21],inetaddress:[6,30],inexpens:43,infin:[9,10,12],influenc:11,info:[6,31,46,65,117],inform:[4,6,12,13,21,35,49,50,51,52,56,59,85,105,107,108,109,116,117,138,155,157],ingest:6,ingestr:52,inher:[11,21],inherit:19,init:46,initcond:[9,14],initi:[6,14,23,25,40,46,49,52,117,150],initial_token:51,input:[9,10,14,17,21,25,52],inputd:21,inreleas:34,insensit:[11,12],insert:[6,9,10,11,12,14,15,16,19,21,30,33,36,43,52],insert_stat:[12,13],insid:[6,11,12,13,21,23,52],inspect:[6,26,52],instabl:6,instal:[6,20,30,33,36,52],instanc:[6,10,11,12,13,14,16,18,19,20,21,26,29,30,40,41,43,46],instantan:46,instanti:10,instantli:6,instead:[10,11,13,18,21,23,30,41,138,157],instruct:[6,8,11,24,26,36],instrument:49,intasblob:13,integ:[0,10,11,12,13,17,21,46],integr:[27,29,36],intellij:[23,27],intend:[25,49],intens:[6,29,30],intent:25,inter:[6,96,117,149],interact:[29,35,52],interest:[0,41,49],interfac:[6,10,14,23,30,31,42,49],intern:[6,9,11,13,18,21,25,30,43,46],internaldroppedlat:46,internalresponsestag:46,internet:6,internod:[6,30],internode_encrypt:[6,49],internodeconnect:[103,153],internodeus:[103,153],interpret:[10,21,52],interrupt:30,interv:[6,9,46],intra:[6,46,50],intrins:21,introduc:[6,10,17,28,51],introduct:[10,19,29],intvalu:14,invalid:[6,13,19,25,49,108,110,111,112,117],invalidatecountercach:117,invalidatekeycach:117,invalidaterowcach:117,invertedindex:20,investig:6,invoc:14,invok:[24,34,49,171],involv:[6,13,41,42,49],ioerror:23,ip1:6,ip2:6,ip3:6,ip_address:55,ipv4:[6,17,21,30],ipv6:[6,17,21],irc:[5,28,36],irolemanag:6,irrevers:[11,21],isn:[0,18,23,28,30],iso:21,isol:[6,11,13],issu:[0,6,19,24,28,29,30,38,41,42,132],item:[12,21,25,26],iter:[0,6],its:[4,6,11,12,13,14,21,26,30,41,46,49,50,51],itself:[6,11,16,30,34],iv_length:6,jaa:49,jacki:24,jamm:26,januari:21,jar:[14,23,26,46],java7:49,java:[6,14,20,21,23,26,28,33,34,36,40,41,43,46,49,117,155],javaag:26,javadoc:[23,25],javas:6,javascript:[6,14],javax:49,jbod:43,jce8:6,jce:6,jcek:6,jconsol:[36,41,49],jdk:6,jdwp:26,jenkin:[26,29],jetbrain:26,jira:[5,6,25,28,29,40],jkskeyprovid:6,jmc:[41,49],jmx:[6,19,36,45,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],jmx_password:49,jmx_user:49,jmxremot:49,job:[28,57,87,130,132,139,170],job_thread:132,john:[13,21],join:[6,8,13,36,41,49,51,117],joss:13,jpg:21,jsmith:21,json:[9,10,13,15,36,41,42,61,166,168],json_claus:13,jsr:[6,14],jsse:6,jsserefguid:6,judgement:23,junit:[23,26,29],jurisdict:6,just:[6,14,19,26,28,29,30,41,49],jvm:[6,20,26,30,31,45,49,51],jvm_extra_opt:26,jvm_opt:[31,49],jvmstabilityinspector:25,keep:[6,8,11,23,28,30,41,46,108],keepal:[6,30],kei:[4,6,9,10,13,14,17,21,29,30,34,40,41,42,43,46,49,57,95,99,101,111,117,121,141,142,166],kept:[6,41,46],kernel:[6,30],key_alia:6,key_password:6,key_provid:6,keycach:46,keycachehitr:46,keyserv:34,keyspac:[0,6,9,10,12,14,15,16,19,21,36,38,41,42,45,49,51,52,57,58,60,65,67,76,77,86,87,90,95,99,101,108,117,119,121,122,123,124,130,132,138,139,143,156,157,158,165,166,167,170,171,173],keyspace1:[6,19],keyspace2:6,keyspace_nam:[11,14,19,21,41],keystor:[6,49],keystore_password:6,keystorepassword:49,keyword:[10,11,13,14,15,16,17,21],kib:[62,116,166],kick:[117,134],kill:[6,34],kilobyt:42,kind:[11,12,21,28,40,41],kitten:21,knife:[117,155],know:[6,13,21,23,41],known:[19,21,32,35,38,41],ks_owner:49,ks_user:49,ktlist:156,kundera:32,label:[21,28],lag:46,land:42,landlin:21,lang:[36,46,49],languag:[6,9,10,12,14,20,21,32,35,36,52],larg:[6,11,13,14,21,29,36,41,43,46,52],larger:[6,29,30,41,42,43],largest:[6,46],last:[6,12,13,14,15,28,41,46,55,117],lastli:[13,21],lastnam:13,latenc:[0,6,30,46,50],later:[0,11,21,23,28,30],latest:[0,28,34,41,52,171],latter:12,layer:43,layout:11,lazi:11,lazili:11,lead:[6,10,21,41],learn:[6,29,30,52],least:[0,6,11,12,13,18,30,41,43],leav:[6,12,13,23,29,30,52],left:[6,17,41],legaci:[6,19],legal:10,length:[4,6,10,17,21,25,41],less:[6,21,28,30,38,43],let:[6,41],letter:17,level:[6,10,11,13,19,23,25,31,43,45,46,49,52,97,108,117,150],leveledcompactionstrategi:[11,38,41],lexic:30,lib:[6,20,25,26,34],libqtcassandra:32,librari:[8,25,29,32,46,52],licenc:25,licens:[25,26,28],life:28,lifespan:43,like:[0,6,12,13,14,17,21,23,24,25,28,29,30,36,41,42,43,49],likewis:19,limit:[6,9,10,11,18,19,21,30,40,41,42,49],line:[12,23,28,29,31,34,35,49,53,55,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],linear:43,linearli:38,link:[6,8,11,12,28,29,34],linux:[6,30],list:[4,5,6,9,10,11,12,13,14,17,26,28,29,31,34,35,36,41,49,51,52,55,57,58,59,60,65,67,73,76,77,83,86,87,90,92,95,99,100,101,103,107,108,114,115,117,119,122,123,124,127,130,131,132,133,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],list_liter:[13,21],list_permissions_stat:12,list_roles_stat:12,list_users_stat:12,listarg:14,listen:[6,36,46],listen_address:[31,35,36],listen_interfac:31,listsnapshot:117,liter:[10,12,14,17,52],littl:23,live:[13,36,41,46,51],livediskspaceus:46,livescannedhistogram:46,livesstablecount:46,load:[0,6,11,20,21,36,45,46,49,50,51,109,117,124,132,157],local:[0,6,11,26,28,29,35,43,46,49,50,52,117,126,132,136,169],local_jmx:49,local_on:[0,49,52],local_quorum:[0,52],local_read_count:166,local_read_latency_m:166,local_seri:52,local_write_latency_m:166,localhost:[6,35,49],locat:[6,33,34,42,46,49,50,52,163],lock:[6,30,46],log:[6,11,13,25,29,33,34,36,40,45,46,49,66,70,76,80,97,117,132,135,150,163],log_al:41,logback:31,logger:[23,31,76],logic:[6,20],login:[6,9,19,29,49],lol:21,longer:[6,9,10,30,41,51,57,117],look:[6,12,24,28,29,41,43],lookup:46,loop:23,lose:[6,41,51],loss:[6,21],lost:[41,51],lot:[6,35,36],low:[6,28,117,119],lower:[0,6,11,12,13,19,30,38,41,46,51],lowercas:12,lowest:[28,41],lz4:6,lz4compressor:[6,11,42],macaddr:9,machin:[6,11,29,30,46,49,50,51],made:[6,21,36,38,43,49],magnet:6,magnitud:13,mai:[0,4,6,9,10,11,13,14,16,17,19,21,25,26,28,29,30,34,38,41,49,50,51,52,139],mail:[5,28,36],main:[0,14,18,26,30,33,34,49,51,52],main_actor:13,mainli:[6,11],maintain:[6,28],mainten:46,major:[0,10,28,49,60,117],make:[0,6,8,9,20,21,23,26,28,29,30,31,34,41,49,51,52,114,117],man:6,manag:[6,19,26,29,46,49,51,56,117],mandatori:[11,14],mani:[0,6,11,23,25,28,41,42,43,46,49,52,57,60,67,77,80,86,87,132,139,158,170,171],manipul:[12,15,29,36],manual:[6,24,30],map:[6,9,10,11,13,14,17,19,36,46],map_liter:[11,16,19,21],mar:21,mark:[6,19,41,51,71,117],marker:[6,11,12,25,30],match:[6,12,13,14,17,19,46,50],materi:[6,10,11,12,15,36,46,52,117,173],materialized_view_stat:12,matter:[11,30],max:[6,36,41,46,49,52,80,90,98,117,132,143,151],max_hint_window_in_m:51,max_log_s:80,max_map_count:30,max_mutation_size_in_kb:[6,30],max_queue_weight:80,max_thread:6,max_threshold:41,maxattempt:52,maxbatchs:52,maxfiledescriptorcount:46,maxhintwindow:151,maxim:43,maximum:[4,6,14,38,46,52,80,92,117,139,145],maximum_live_cells_per_slice_last_five_minut:166,maximum_tombstones_per_slice_last_five_minut:166,maxinserterror:52,maxoutputs:52,maxparseerror:52,maxpartitions:46,maxpools:46,maxrequest:52,maxrow:52,maxthreshold:143,maxtimeuuid:10,mayb:13,mbean:[6,19,41,46,49],mbeanserv:19,mbp:6,mct:6,mean:[6,9,11,12,13,14,17,18,21,36,41,46,50,52,132],meaning:13,meanpartitions:46,meant:[21,30,46],measur:[6,25,29,46,51,52],mechan:40,median:46,meet:[6,25],megabyt:6,member:23,membership:6,memlock:30,memori:[4,6,11,36,38,41,45],memory_pool:46,memtabl:[2,6,38,40,41,42,43,46,156],memtable_allocation_typ:4,memtable_cell_count:166,memtable_cleanup_threshold:4,memtable_data_s:166,memtable_off_heap_memory_us:166,memtable_switch_count:166,memtablecolumnscount:46,memtableflushwrit:46,memtablelivedatas:46,memtableoffheaps:46,memtableonheaps:46,memtablepool:6,memtablepostflush:46,memtablereclaimmemori:46,memtableswitchcount:46,mention:[6,21,28,46,49],menu:26,mere:23,merg:[24,28,38,42,43,45],mergetool:24,merkl:[6,46],mess:[28,29],messag:[6,21,25,28,34,36,46],met:13,meta:[13,46],metadata:[4,19,42,43,46],metal:6,meter:46,method:[10,13,14,19,23,25,26,29,36,49],metric:[6,45],metricnam:46,metricsreporterconfigfil:46,mib:[6,62,116,166],microsecond:[6,11,13,21,46],midnight:21,might:[6,13,41,46,55,57,58,60,65,67,73,77,80,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],migrat:[6,46,50],migrationstag:46,millisecond:[6,10,21,46,119,139,167],min:[6,30,40,41,46,52,90,117,143],min_sstable_s:41,min_threshold:41,minbatchs:52,mind:6,minim:[6,41,43],minimum:[6,11,14,31,46],minor:[10,12,45],minpartitions:46,minthreshold:143,mintimeuuid:10,minut:[6,21,41,46,80],misbehav:41,misc:[103,153],miscelen:46,miscellan:6,miscstag:46,miss:[11,41,46,51],misslat:46,mistaken:[55,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],mitig:[6,49],mix:[6,41],mmap:30,mnt:16,mock:29,mode:[6,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],model:[11,15,19,28,36,49],moder:43,modern:43,modif:[13,19],modifi:[6,9,10,11,14,19,21,28,38,41,42],modification_stat:13,modul:52,modular:25,moment:[6,28],monitor:[30,36,45,49,50,56,117],monkeyspeci:[11,18],monkeyspecies_by_popul:18,month:21,more:[0,4,6,10,11,12,13,21,23,28,29,31,35,36,38,43,45,46,49,50,51,60,86,87,117,119,132,139,155,167,171],moreov:13,most:[6,11,12,13,21,26,28,29,30,31,41,42,43,49,52,59,117,167],mostli:[6,11,21],motiv:[29,41],mount:6,move:[6,28,30,36,40,45,46,117],movement:45,movi:[13,21],movingaverag:6,mtime:11,much:[0,5,6,11,38,41,50],multi:[0,6,12,25],multilin:27,multipl:[4,6,10,11,12,13,14,21,23,25,26,28,30,31,41,43,50,122],multipli:41,murmur3partit:4,murmur3partition:[6,14,52],must:[0,6,10,11,13,14,17,18,19,23,28,29,30,31,41,46,49,51,52,156],mutant:16,mutat:[0,6,13,30,40,46,171],mutationstag:46,mv1:18,mx4j:46,mx4j_address:46,mx4j_port:46,mx4jtool:46,mxbean:19,myaggreg:14,mycolumn:17,mydir:52,myevent:13,myfunct:14,myid:12,mykei:17,mykeyspac:14,mytabl:[11,14,17,20],mytrigg:20,nairo:21,name:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,28,29,30,31,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],names_valu:13,nan:[9,10,12],nanosecond:21,nathan:13,nativ:[6,10,12,15,17,25,30,35,46,52,69,79,117,123,160],native_transport_min_thread:6,native_transport_port:31,native_transport_port_ssl:49,native_typ:21,natur:[11,21,23,41,42],nearli:26,neccessari:6,necessari:[6,11,14,19,28,34,42,49],necessarili:[6,12,31],need:[0,6,10,11,12,13,19,21,23,25,26,28,29,30,31,34,35,38,41,42,43,49,50,52,95,99],neg:6,neglig:13,neighbour:41,neither:[18,21,49],neon:26,nerdmovi:[13,16],nest:[12,13,23],net:[6,26,30,33,34,49],netstat:[51,117],network:[6,13,30,43,49,50,116,117,120],networktopologystrategi:[11,49],never:[6,10,11,12,13,14,21,23,30,41],nevertheless:13,new_rol:19,new_superus:49,newargtuplevalu:14,newargudtvalu:14,newer:[41,43,52,87],newest:[11,41],newli:[11,21,28,40,117,124],newreturntuplevalu:14,newreturnudtvalu:14,newtuplevalu:14,newudtvalu:14,next:[6,30,35,41,52],ngem3b:13,ngem3c:13,nifti:24,nio:[6,14,46],no_pubkei:34,node:[0,4,6,11,13,14,20,21,25,29,31,32,35,36,38,40,41,43,45,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],nodej:33,nodetool:[34,36,38,42,45,49,51,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],nologin:9,non:[6,9,10,11,12,13,14,19,21,30,38,42,46,49,52],none:[6,11,13,21,49],nonsens:19,nor:[11,18,21],norecurs:[9,19],norm:46,normal:[14,17,26,30,34,46,51,52],noschedul:6,nosuperus:[9,19],notabl:[14,17],notat:[10,12,13,52],note:[0,5,6,10,11,12,13,14,15,17,19,21,24,28,30,41,49],noth:[6,11,14,24,29,30],notic:6,notif:8,notion:[11,12],now:[10,23,26,41,51],ntp:6,nullval:52,num_cor:52,num_token:51,number:[0,6,10,11,12,13,14,17,18,21,26,28,29,30,34,38,41,42,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],number_of_cor:6,number_of_dr:6,number_of_partitions_estim:166,numer:[15,38],numprocess:52,object:[6,11,12,25],objectnam:19,observ:23,obsolet:[6,43,46],obtain:[12,49],obviou:[14,24],obvious:11,occup:13,occupi:[6,46],occur:[10,12,13,20,21,30,41,43,46],occurr:21,octet:[6,50],odd:28,off:[4,6,30,42,46,49,52,117,134],off_heap_memory_used_tot:166,offer:[15,29,42],offheap:[38,43],offheap_buff:6,offheap_object:6,offici:[36,52],offset:[4,46],often:[6,11,12,23,28,29,30,41,42,43,49,50,52,80],ohc:6,ohcprovid:6,okai:23,old:[4,6,41,51,74,84,117],older:[6,14,26,34,41,43,52],oldest:[6,11],omit:[6,10,11,13,17,21,150],onc:[4,6,11,12,14,21,24,26,28,29,30,40,41,42,43,46,49,51,52],one:[0,4,6,9,10,11,12,13,14,17,18,19,21,23,26,28,29,31,36,38,41,43,46,49,50,51,52,57,60,67,77,86,87,103,117,132,139,153,156,158,170,171],oneminutecachehitr:46,ones:[6,11,12,13,14,18,19,46],ongo:[41,51],onli:[0,6,9,11,12,13,14,17,18,19,21,23,28,29,31,36,38,41,42,43,46,49,50,52,132,156,166],onlin:52,only_purge_repaired_tombston:41,onto:[4,41],open:[5,6,26,49,50],openfiledescriptorcount:46,openjdk:34,oper:[0,6,10,11,13,16,18,19,21,23,36,38,40,43,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],operatingsystem:46,opertaion:6,opportun:38,ops:30,opt:14,optim:[6,11,12,13,30,41,43,51],optimis:132,option1_valu:19,option:[4,6,9,10,12,13,14,16,19,21,26,29,30,34,42,43,45,49,51,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],oracl:[6,34,49],order:[0,4,6,9,10,14,18,21,23,28,30,38,40,41,50,51,52],ordering_claus:13,orderpreservingpartition:6,org:[6,14,20,23,26,29,30,34,41,42,46,49],organ:[4,26,32],origin:[9,24,28,139],orign:13,other:[0,4,6,10,12,13,14,18,19,21,24,26,28,31,36,38,41,43,46,49,50,51,117,122,133],other_rol:19,otherwis:[0,9,12,13,16,21,92],our:[5,6,8,24,26,28,41],ourselv:24,out:[6,12,23,26,28,41,46,49,50,51,132],outbound:6,outboundtcpconnect:6,outgo:6,outgoingbyt:46,outlin:49,outofmemoryerror:36,output:[14,19,25,26,38,41,52,60,61,166,168],outsid:[11,20,21],over:[0,6,11,21,30,41,46,49,50,51],overal:14,overflow:[17,139],overhead:[6,30,42,46,51],overidden:49,overlap:[0,41],overload:[6,14,30],overrid:[6,23,49,51,139],overridden:[6,11],overview:[2,36,45],overwhelm:6,overwrit:[42,43],overwritten:[46,87],own:[0,6,11,12,14,21,28,30,34,41,42,46,49,95,101,108,117,171],owner:21,ownership:[41,138],p0000:21,pacif:21,packag:[26,30,31,33,35,52],packet:6,page:[6,21,26,28,29,30,43,46],paged_slic:46,pages:52,pagetimeout:52,pai:23,pair:[6,11,19,21,41,49],parallel:[29,41,132],paramet:[6,14,23,25,26,31,38,43,50,51,117,150],paranoid:6,parenthesi:[11,52],parnew:43,pars:[6,12,40,52],parser:[9,10,40],part:[0,5,6,11,13,14,18,21,25,26,28,29,30,50,51,52],parti:[25,46],partial:4,particip:[0,20],particular:[11,12,13,14,17,19,21,30,43,46,49],particularli:[12,21,49],partit:[4,6,10,13,14,30,38,41,43,46,87,95,99,117,139,167],partition:[4,10,13,14,52,64,117,132],partition_kei:[11,13],partli:13,pass:[25,28,31,52,155],password:[6,9,13,19,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],password_a:19,password_b:19,passwordauthent:[6,49],passwordfilepath:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],past:[6,46],patch:[10,13,23,24,25,27,29,36],path:[5,6,16,25,34,38,41,42,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],patter:19,pattern:[6,19,21],paus:[6,30,117,118],pausehandoff:117,paxo:[13,46,52],peer:[6,46],peerip:46,penalti:[6,13],pend:[41,46,117,131],pending_flush:166,pendingcompact:46,pendingflush:46,pendingrangecalcul:46,pendingtask:46,pendingtasksbytablenam:46,pennsylvania:21,peopl:[28,30],per:[0,4,6,10,11,13,23,24,28,30,38,40,41,42,46,49,52,117,140,148],percent:46,percent_repair:166,percentag:[6,46,50],percentil:46,percentrepair:46,perdiskmemtableflushwriter_0:46,perfect:14,perform:[6,11,13,19,21,24,25,27,30,31,38,41,43,46,49,50,52,132],period:[6,43,46,49,117,119],perman:[11,30,41,43],permiss:[6,9,12,29,49],permit:[6,19,40,49],persist:[4,30,38,43,49],perspect:30,pet:21,pgrep:34,phantom:32,phase:[51,52],phi:6,phone:[13,21],php:33,physic:[0,6,11,30,43,50],pick:[24,28,30,41,49,51,122],pid:[30,34],piec:[12,41,46],pile:6,pin:[6,50],ping:28,pkcs5pad:6,pkill:34,place:[5,6,16,20,23,24,28,40,41,46,49,52,117,124],placehold:[14,52],plai:[14,21],plain:4,plan:[11,24,28],platform:19,platter:[6,43],player:[14,21],playorm:32,pleas:[5,6,11,13,14,15,21,23,26,29,30],plu:[14,41,46],plug:6,pluggabl:[19,49],plugin:46,poe:21,point:[6,10,17,21,23,26,36,49,52,95,117],pointer:14,polici:[6,28,49,171],pool:[6,34,46,117,145,168],popul:[11,18],popular:[26,43],port:[6,26,31,36,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],portion:[43,52],posit:[4,6,10,11,21,38,46,51],possbili:6,possess:19,possibl:[6,10,11,13,14,17,19,21,25,28,29,30,38,41,43,46,49,51],post:[13,117,142],post_at:13,posted_at:13,posted_bi:11,posted_month:11,posted_tim:11,potenti:[0,6,9,11,12,14,25,41,43,49,51,139],power:6,pr3z1den7:21,practic:[11,12,13,49],pre:[6,17,21,43,49],preced:30,precis:[10,17,21,41],precondit:46,predefin:11,predict:13,prefer:[0,6,11,12,21,23,28,49,50],preferipv4stack:26,prefix:[11,12,21],prepar:[6,14,15,46],preparedstatementscount:46,preparedstatementsevict:46,preparedstatementsexecut:46,preparedstatementsratio:46,prepend:21,prerequisit:33,present:[12,13,18,46],preserv:[6,17,19],press:34,pressur:[6,46],pretti:52,prevent:[6,29,40],preview:132,previou:[6,10,11,21,41,51],previous:6,previsouli:[83,117],primari:[9,10,13,14,21,29,40,41,42,49,51],primarili:[6,11],primary_kei:[11,18],print:[52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],prior:[6,13,19,21],prioriti:28,privat:[6,23,49,50],privileg:[19,34,49],probabilist:[38,42],probabl:[6,11,29,38,41,104,117,154],problem:[5,6,14,24,25,30,49],problemat:21,proc:[6,30],proce:[25,42,51],procedur:[13,49],process:[0,6,14,24,25,26,28,29,30,34,40,42,43,46,49,51,52,56,92,117,118,137,145],prod_clust:52,produc:[13,14,41,80],product:[6,28,30,43,50],profil:[13,117,119],profileload:117,program:[14,29],progress:[23,24,28,38,45,117,173],project:[23,29,46],promin:11,prompt:52,propag:[6,11,14,23,25,50],proper:[11,21,30,49],properli:[6,25],properti:[6,11,19,33,40,41,49,50,51],propertyfilesnitch:[6,50],proport:[6,13],proportion:[6,89,117,140],propos:[6,46],protect:[6,43],protocol:[6,25,30,35,46,49,52,59,69,74,79,84,117,160],provid:[0,5,6,11,12,13,14,15,17,21,26,28,35,40,41,42,43,46,49,50,51,53,116,117,127,131],proxim:[6,50],proxyhistogram:117,prv:132,ps1:49,ps22dhd:13,pt89h8m53:21,pull:[29,41,46,132],purg:43,purpos:[11,12,13,21,43,49],push:[24,28,46],put:[15,28,31,41,51,108,132],pwf:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],python:[14,28,29,33,34,52],quak:[14,21],qualifi:[6,11,14,28],qualiti:49,quantiti:21,queri:[6,10,11,12,13,14,16,18,19,33,36,41,46,52,70,80,117,135],question:[8,19,36],queu:[6,46],queue:[6,46,80],quick:[108,171],quickli:[30,41],quill:32,quintana:21,quit:[41,52],quorum:[0,49,52],quot:[9,10,11,12,14,17,19,52],quotat:19,quoted_identifi:12,quoted_nam:11,race:[21,24],rack1:6,rack:[0,6,49,50],rackdc:[6,50],rackinferringsnitch:[6,50],raid0:43,raid1:43,raid5:43,rain:12,rais:[12,30],raison:9,ram:[38,42,43],random:[11,14,30,51],randomli:[0,6,51],randompartition:[6,13,14],rang:[2,6,10,11,13,21,25,41,45,46,52,60,65,103,117,122,132,153],range_slic:46,rangekeysampl:117,rangelat:46,rangemov:51,rangeslic:46,rapid:43,rare:[10,38],raspberri:43,rate:[6,11,46,49,52],ratebasedbackpressur:6,ratefil:52,rather:[13,30,41,43],ratio:[6,42,43,46],raw:[6,14],reach:[6,28,30,40,41],read:[0,6,11,13,21,23,25,29,30,33,36,38,41,42,43,45,46,49,50,52,103,153,166,171],read_lat:166,read_repair:46,read_repair_ch:[0,6,11,41,50],read_request_timeout:30,readabl:[11,62,116,166],readi:[28,49],readlat:46,readrepair:46,readrepairstag:46,readstag:46,readwrit:49,real:[8,11,23,30],realiz:41,realli:[6,29,31],reason:[0,6,13,14,15,30,31,34,41,43,49,51],rebuild:[38,41,42,46,117,123,139],rebuild_index:117,receiv:[6,14,28,30,41,43],recent:[6,28,29,43,59],reclaim:41,recogn:[13,26,28],recommend:[6,11,21,30,43,49,51],recompact:41,recompress:42,reconnect:49,record:[11,13,21,28,41],recov:[6,30,41],recoveri:6,recreat:52,recurs:80,recv:34,recycl:[6,46],redistribut:6,redo:28,reduc:[6,30,41,42,63,89,117,132,140],reduct:6,redund:[0,6,23,25,28,43],reenabl:[79,81,82,117],refactor:40,refer:[6,11,12,13,14,15,21,23,29,30,34,35,52],referenc:6,reflect:41,refresh:[6,49,52,117,125],refreshsizeestim:117,refus:36,regard:[11,13],regardless:[0,6,19,28],regener:38,regexp:12,region:[6,50],regist:21,registri:49,regress:[25,29],regular:[9,12,26,29,30,46,52],regularstatementsexecut:46,reinsert:139,reject:[6,13,30,40,49],rel:[6,21,52],relat:[8,10,12,13,26,28,41,46],releas:[6,10,34,52],relev:[13,19,21,28,42,49],reli:[6,14,21,30,51],reliabl:41,reload:[6,117,126,127,128,129],reloadlocalschema:117,reloadse:117,reloadssl:117,reloadtrigg:117,reloc:[117,130,163],relocatesst:117,remain:[6,13,14,21,24,41,46,51,166],remaind:[17,42],remedi:41,remot:[0,24,26,36,41,49,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],remov:[4,6,10,11,12,13,14,15,17,21,25,30,36,40,45,49,55,58,87,117,131],removenod:[51,55,117],renam:[9,21],reorder:6,repair:[0,4,6,11,30,36,42,45,46,50,51,108,117,133,150,171],repair_admin:117,repeat:[12,34,42,49],replac:[6,9,14,19,21,25,30,36,41,45,80],replace_address_first_boot:51,replai:[0,21,43,46,89,117,134,140],replaybatchlog:117,replic:[2,6,11,36,41,43,49,51,55,117],replica:[0,6,11,13,30,41,46,50,51,63,99,117],replication_factor:[0,11,49],repo:[24,26],report:[28,36,45],report_writ:19,reportfrequ:52,repositori:[5,8,26,28,29,34],repres:[6,10,17,19,21,30,41,46,49,50,52],represent:[10,17],request:[0,6,13,19,20,29,30,38,41,43,45,49,50,52,117,154,170],request_respons:46,requestresponsestag:46,requestschedul:6,requesttyp:46,requir:[0,6,11,13,14,19,23,24,25,26,28,30,38,42,43,49],require_client_auth:6,require_endpoint_verif:6,resampl:6,reserv:[6,10,12,15],reset:[6,13,117,136,150],reset_bootstrap_progress:51,resetfullquerylog:117,resetlocalschema:117,resid:[6,13,30,46],resolut:[6,13,30],resolv:[24,30,138,157],resort:[55,117],resourc:[19,49],resp:14,respect:[6,10,14,34,50,80],respond:[0,6,12],respons:[0,6,19,30,46,51],ressourc:21,rest:[6,11,12,21,25,51],restart:[30,41,49,51,117,124,142],restor:[41,51,52],restrict:[10,11,13,18,19],result:[0,6,8,10,11,12,14,17,19,21,28,30,41,46,52],resum:[56,117,137],resumehandoff:117,resurrect:41,resync:[117,136],retain:[30,41],rethrow:23,retri:[0,6,21,46,80],retriev:[11,13,19],reus:25,revers:13,review:[11,23,27,28,29,36],revok:[9,49],revoke_permission_stat:12,revoke_role_stat:12,rewrit:[38,41,42,117,139,170],rewritten:[43,139],rfc:[14,21],rhel:36,rich:21,rider:21,riderresult:21,right:[6,26,30,52],ring:[2,6,36,49,51,52,113,115,117,150],risk:11,rmem_max:6,rmi:[30,49],robin:6,rogu:14,role:[6,9,10,12,15,45],role_a:19,role_admin:19,role_b:19,role_c:19,role_manag:49,role_nam:19,role_opt:19,role_or_permission_stat:12,role_permiss:6,roll:[30,49,80],roll_cycl:80,romain:21,root:[6,24,28,34],rotat:6,roughli:6,round:[6,13,41,46],roundrobin:6,roundrobinschedul:6,rout:[6,50],row:[0,4,6,10,11,13,14,15,17,18,29,35,38,42,43,46,52,87,108,112,117,139,141,142],rowcach:46,rowcachehit:46,rowcachehitoutofrang:46,rowcachemiss:46,rowindexentri:46,rows_per_partit:11,rpc:[6,46],rpc_min:6,rpc_timeout_in_m:[103,153],rsc:171,rubi:[14,33],rule:[6,12,14,28,30],run:[5,6,12,21,24,26,28,30,31,34,41,43,46,49,51,108,117,132,155],runtim:[6,33,97,117],runtimeexcept:23,rust:33,safe:[6,14,21,41,49],safeguard:43,safeti:[41,51],sai:36,said:[11,28,30,117,170],same:[0,5,6,11,12,13,14,15,17,18,19,21,24,26,28,31,36,38,41,46,49,50,132],sampl:[4,6,12,14,46,52,80,117,119,121,167],sampler:[46,119,167],san:43,sandbox:[6,14],sasi:6,satisfi:[0,23,43,46,51],satur:[6,46],save:[6,13,21,30,31,38,42,43,51,117,142],saved_cach:6,saved_caches_directori:31,sbin:30,scala:[14,33],scalar:15,scale:[6,29,42],scan:[6,13,38,46],scenario:24,scene:30,schedul:6,schema:[0,9,11,14,17,46,52,64,117,126,136],schema_own:19,scope:[19,46,49],score:[6,14,21,50],script:[6,14,26,29,80],scrub:[38,41,42,46,117,163],search:28,second:[6,11,12,13,21,30,40,43,49,52,117,140,148],secondari:[10,12,13,15,36,41,46,117,123],secondary_index_stat:12,secondaryindexmanag:46,section:[2,5,7,10,11,12,13,15,19,21,30,33,34,35,41,46,49,51,53],secur:[6,14,15,36,45],see:[0,4,6,10,11,12,13,14,17,19,21,26,28,35,36,40,41,46,49,51,52,87,117,132],seed:[6,31,36,50,100,117,127],seedprovid:6,seek:[6,43,46],seen:[6,11],segment:[4,6,40,46,52,80],select:[6,9,10,11,12,14,15,19,26,29,30,35,38,41,49,52,122],select_claus:13,select_stat:[12,18],self:25,selinux:30,semant:[10,13,14],semi:30,send:[6,8,30],sens:[6,10,13,15,30],sensic:14,sensit:[11,12,14,17],sensor:21,sent:[0,6,21,30,46],separ:[4,6,11,13,23,28,31,41,43,49,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],seq:[6,132],sequenc:12,sequenti:[6,43,132],seren:13,seri:[11,41,52],serial:6,serializingcacheprovid:6,serv:[13,43,49],server:[6,12,13,21,26,29,30,43,46,49],server_encryption_opt:49,servic:[6,26,34,49,51],session:[6,19,49,117,133],set:[0,6,9,10,11,12,13,14,17,18,25,27,28,29,31,36,38,40,41,42,43,46,49,50,51,52,57,76,87,117,130,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,170],set_liter:21,setbatchlogreplaythrottl:117,setcachecapac:117,setcachekeystosav:117,setcompactionthreshold:[41,117],setcompactionthroughput:[41,117],setconcurr:117,setconcurrentcompactor:117,setconcurrentviewbuild:117,sethintedhandoffthrottlekb:117,setint:14,setinterdcstreamthroughput:117,setlogginglevel:117,setlong:14,setmaxhintwindow:117,setstr:14,setstreamthroughput:117,setter:[19,23],settimeout:117,settraceprob:117,setup:[28,29,49],sever:[4,13,19,41,49],sfunc:[9,14],sha:24,shadow:41,share:[11,13,26],sharedpool:52,sharp:32,shed:30,shell:[35,36,53],shift:21,ship:[29,35,49,52],shortcut:18,shorter:49,shorthand:52,should:[0,5,6,10,11,12,13,14,17,19,21,25,26,28,29,30,31,32,33,35,38,41,42,43,46,49,50,51,52,122,132,153],shouldn:11,show:[19,36,51,65,85,105,117,121,131,138,157,158,166,173],shown:[12,52,166],shrink:6,shut:6,shutdown:[6,43],side:[11,13,17,21,49],sign:[13,21,30],signal:[117,128],signatur:[34,40],signific:[6,26,28,29,43],significantli:6,silent:14,similar:[6,13,14,42,43],similarli:[0,10,17,23,43,117,122],simpl:[6,11,26,29,49],simple_classnam:29,simple_select:13,simplequerytest:29,simplereplicationstrategi:49,simpleseedprovid:6,simplesnitch:[6,50],simplestrategi:11,simpli:[0,6,11,13,14,17,21,26,29,41,43,46,51,171],simul:29,simultan:[6,43,52,57,87,130,139,170],sinc:[6,11,13,14,21,26,30,34,41,46,51],singl:[0,6,10,11,12,13,14,17,18,19,21,23,28,31,35,36,45,46,49,50,52,60],singleton:25,situat:[6,29,41],size:[4,6,11,21,23,30,31,38,40,42,43,45,46,49,52,80,114,117],size_estim:[117,125],sizetieredcompactionstrategi:[11,41],sjk:117,skip:[6,13,46,51,52,139,156],skipcol:52,skiprow:52,sks:34,sla:25,slash:12,slf4j:23,slightli:6,slow:[6,50],slower:[6,11,38],slowest:6,slowli:[6,21],small:[6,11,13,21,30,41,43],smaller:[6,30,41,43,52],smallest:[0,11,14,46],smallint:[9,10,14,17,21],smith:21,smoother:10,smoothli:6,snappi:6,snappycompressor:[11,42],snapshot:[6,26,46,58,114,117,139],snapshot_nam:58,snapshotnam:[58,117],snitch:[6,36,45,64,117],socket:[6,49,153],sole:11,solid:[6,43],some:[0,6,9,11,12,13,14,21,26,28,29,30,31,40,41,42,46,49,51,52],some_funct:14,some_nam:12,someaggreg:14,somearg:14,somefunct:14,someon:[24,41],sometim:[6,12,13],someudt:14,somewher:34,soon:49,sooner:6,sort:[4,11,13,21,41,43,166],sort_kei:166,sourc:[5,6,8,14,27,34,46,122],source_elaps:52,space:[6,23,30,40,41,43,46],space_used_by_snapshots_tot:166,space_used_l:166,space_used_tot:166,span:[6,13,41],sparingli:13,spark:32,spec:[25,35,46,52],speci:[11,18],special:[12,13,29,30,41,46],specif:[6,9,11,12,13,19,21,26,28,30,32,40,41,46,49,52,117,122,132],specifc:46,specifi:[0,6,10,11,12,13,14,16,18,19,21,26,30,35,40,41,42,46,49,51,52,58,60,101,117,122,132,138,151,153,156,163,166,169],specific_dc:132,specific_host:132,specific_keyspac:122,specific_sourc:122,specific_token:122,specul:[0,46],speculativeretri:46,speed:[6,36],spent:46,spike:30,spin:[6,43],spindl:6,spirit:[6,50],split:[23,30,41,46,52,60],spread:[6,50],sql:[13,15],squar:12,squash:28,src:122,ssd:[6,16,43],ssl:[6,30,45,52,117,128],ssl_storage_port:50,sss:17,sstabl:[2,6,11,30,38,42,43,45,57,60,87,101,108,114,117,124,130,139,170,171],sstable_compression_ratio:166,sstable_count:166,sstable_s:41,sstable_size_in_mb:41,sstableexpiredblock:41,sstablesperreadhistogram:46,sstablewrit:23,stabil:28,stabl:[34,52],stack:6,stage:[28,92,117,145],stai:[36,41],stale:49,stall:[6,51],stand:[6,29],standalon:29,standard:[6,21,30,34,46],start:[0,6,9,13,27,30,31,34,36,41,43,46,49,51,60,132,163],start_token:[60,132],start_token_1:122,start_token_2:122,start_token_n:122,starter:28,startup:[6,20,26,30,41,46,51],starvat:6,state:[6,14,38,41,43,46,51,117,157],statement:[6,9,10,11,13,14,15,16,17,19,20,21,25,27,28,38,41,46,49,52],static0:11,static1:11,statist:[4,41,46,52,62,88,117,120,165,166,168],statu:[19,25,28,30,34,52,117,131,158,159,160,161,162,171],statusautocompact:117,statusbackup:117,statusbinari:117,statusgossip:117,statushandoff:117,stc:11,stdin:52,stdout:52,step:[6,26,31,49],still:[0,6,10,13,14,17,21,23,49,51,52],stop:[6,34,52,75,117,135,164],stop_commit:6,stop_paranoid:6,stopdaemon:117,storag:[2,11,15,16,28,30,36,42,43,45],storage_port:[31,50],storageservic:[6,23],store:[0,4,6,10,11,12,13,21,36,38,41,42,43,46,49,52,72,80,82,117,162],store_typ:6,straight:51,straightforward:40,strategi:[0,6,11,45,50],stream:[4,6,36,41,42,45,56,96,102,117,122,132,149,150,152,153],street:21,strength:6,strict:[10,41],strictli:[8,11,14],string:[6,10,11,12,13,14,16,17,19,20,21,46,52,101],strong:0,strongli:[6,11,12,49],structur:[4,6,9,19,25,38,46],stub:49,style:[6,25,26,27,28,29,36],stype:[9,14],sub:[11,13,21,34,41],subclass:6,subdirectori:[6,20],subject:[6,14,49],submiss:[6,28],submit:[28,29,36,60],subscrib:8,subscript:8,subsequ:[6,13,30,41,42],subset:[19,41,52],substitut:34,subsystem:49,subvert:41,succed:46,succesfulli:46,success:[0,52],sudden:6,sudo:[30,34],suffici:[6,43],suggest:[12,28,43],suit:[6,28,29,49],suitabl:[13,14,25,28],sum:40,summari:[4,6,46],sun:[23,49],sunx509:6,supercolumn:9,supersed:[10,139],superus:[9,19,49],suppli:[13,24],support:[0,6,9,10,11,12,13,14,15,16,18,19,21,28,29,30,32,36,41,49,52,139,163],suppos:13,sure:[6,8,23,26,28,29,30,31,34,41],surplu:30,surpris:0,surprisingli:6,surround:[17,52],suscept:14,suspect:[5,28],suspend:26,swamp:30,swap:6,swiss:[117,155],symmetri:17,symptom:30,sync:[6,30,46,132],synchron:6,synonym:19,synopsi:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],syntact:[11,19],syntax:[10,12,13,14,19,21,41,42],sys:6,sysctl:30,sysintern:6,system:[6,11,14,19,29,30,31,35,41,43,46,49,52,91,93,94,96,102,108,117,124,125,126,144,146,147,149,152],system_auth:[6,49],system_trac:132,tab:23,tabl:[0,4,6,9,10,12,13,14,15,16,17,18,19,20,21,29,38,41,42,45,49,52,57,60,67,75,77,86,87,90,95,99,108,117,123,124,126,130,132,139,143,156,158,163,165,166,170,171],table1:19,table_nam:[11,13,16,19,20,41,166],table_opt:[11,18],tablehistogram:117,tablestat:117,tag:[21,25,28,156],take:[6,10,11,13,14,21,25,26,28,30,38,41,42,43,51,117,156],taken:[6,40,41,46],tar:34,tarbal:[31,33,52],target:[11,19,26,29,41],task:[6,26,28,46,52],tcp:[6,30],tcp_keepalive_intvl:30,tcp_keepalive_prob:30,tcp_keepalive_tim:30,tcp_nodelai:6,tcp_wmem:6,teach:[6,50],team:30,technetwork:6,technic:[11,15],technot:6,tee:34,tell:[6,13,25,30,31,46],temporari:49,temporarili:6,tenanc:6,tend:[6,30,43],tendenc:6,terabyt:42,term:[6,13,14,15,18,21],termin:[12,52],ternari:23,test:[6,8,23,25,27,28,35,36,43,52],test_keyspac:49,testabl:[25,28],testbatchandlist:29,testmethod1:29,testmethod2:29,testsom:29,teststaticcompactt:29,text:[4,9,11,12,13,14,17,21,40,42,49],than:[0,6,11,12,13,14,15,18,21,23,28,36,41,42,43,49,50,51,133,146,147],thei:[6,9,10,11,12,13,14,15,18,19,21,23,25,28,29,36,38,41,42,43,46,49],them:[6,10,11,13,14,21,23,28,29,30,35,38,41,46,49,117,170],themselv:[13,19],theoret:11,therefor:[28,29,49],thi:[0,2,4,5,6,7,10,11,12,13,14,15,17,18,19,21,23,24,25,26,28,29,30,31,33,34,36,38,40,41,42,43,46,49,50,51,52,53,54,55,57,58,60,63,65,67,73,77,83,86,87,89,90,92,95,99,101,103,107,108,115,117,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],thing:[6,21,24,28,30,33,41],think:6,third:[21,25,46],thobb:52,those:[11,12,13,14,16,17,18,19,21,28,30,40,41,49,52,170],though:[6,10,12,21,36,41,42,46],thousand:52,thousandssep:52,thread:[6,43,46,49,57,87,117,130,132,139,148,168,170],threadpool:45,threadpoolnam:46,threadprioritypolici:26,three:[0,6,38,41,42,49,52],threshold:[4,40,43,50,90,117,143,150],thrift:[6,9,11,15,30,46],throttl:[6,89,117,140,144,148,149,152],throttle_limit:6,through:[0,5,9,10,11,12,13,26,28,30,35,40,41,52],throughout:49,throughput:[0,6,41,42,43,46,91,96,102,117,144,149,152],throwabl:[25,29],thrown:21,thu:[6,10,11,12,13,18,21,30,46,50,51,117,170],thumb:[6,28],thusli:21,tib:[62,116,166],ticket:[5,24,25,28,29,40],tie:30,tier:45,ties:13,tighter:6,tightli:6,tild:52,time:[0,6,8,9,10,11,12,13,15,16,17,18,23,25,26,28,29,30,38,40,42,45,46,49,52,117,119],timehorizon:6,timelin:11,timeout:[6,21,30,46,52,103,117,153],timeout_in_m:153,timeout_typ:[103,153],timer:[6,46],timestamp:[4,9,10,11,13,14,15,17,36,41,52,139],timeunit:41,timeuuid:[9,10,11,17,21],timewindowcompactionstrategi:11,timezon:[17,52],tini:[6,41],tinyint:[9,10,14,17,21],tjake:23,tls_dhe_rsa_with_aes_128_cbc_sha:6,tls_dhe_rsa_with_aes_256_cbc_sha:6,tls_ecdhe_rsa_with_aes_128_cbc_sha:6,tls_ecdhe_rsa_with_aes_256_cbc_sha:6,tls_rsa_with_aes_128_cbc_sha:6,tls_rsa_with_aes_256_cbc_sha:6,toc:4,todai:12,todat:14,todo:[25,29],togeth:[6,11,13,14,41],toggl:49,tojson:15,token:[2,4,6,9,10,12,13,30,41,46,52,60,65,108,109,115,117,122,132,138,171],toler:38,tom:13,tombston:[4,6,11,17,30,45,46,87,139],tombstone_compact:163,tombstone_compaction_interv:41,tombstone_threshold:41,tombstonescannedhistogram:46,ton:29,too:[6,11,12,14,21,25,41],tool:[6,12,28,30,36,41,46,49,51],top:[13,21,28,36,46,119,166,167],topcount:[119,167],topic:52,topolog:[6,50,138],toppartit:117,total:[6,13,40,41,46,114,117],totalblockedtask:46,totalcommitlogs:46,totalcompactionscomplet:46,totaldiskspaceus:46,totalhint:46,totalhintsinprogress:46,totallat:46,totimestamp:14,touch:[8,30,41],tough:29,tounixtimestamp:14,tour:21,toward:11,tpstat:117,trace:[6,46,104,117,132,154],track:[6,41,46],tracker:28,tradeoff:[0,6],tradit:[41,42],traffic:[6,50],trail:23,transact:[13,20,46,163],transfer:[6,30,49],transform:13,transit:[10,19],translat:6,transpar:[6,30],transport:[6,26,46,69,79,117,160],treat:[0,6,10,30,50],tree:[6,26,46],tri:41,trigger:[4,6,9,12,15,36,38,42,45,57,117,129],trigger_nam:20,trigger_stat:12,trip:[6,13],trivial:49,troubleshoot:[25,36],truediskspaceus:[114,117],truesnapshotss:46,truli:9,truncat:[6,9,10,15,19,103,117,153,169],truncate_stat:12,truncatehint:117,trunk:[24,25,26,28],trust:49,trustor:6,truststor:[6,49],truststore_password:6,truststorepassword:49,tserverfactori:6,ttl:[4,6,9,10,11,14,17,21,45,139],tty:52,tunabl:2,tune:[30,38,41,43],tupl:[6,9,10,12,13,14,15,17],tuple_liter:[12,13],tuple_typ:21,tuplevalu:[10,14],turn:[0,6,28,30,49],twc:[11,41],twice:[6,21],two:[0,6,11,12,13,14,17,26,36,38,41,43,49,50,52],txt:[4,14,24,25,28],type:[0,6,10,11,12,13,14,15,19,25,34,36,43,45,49,52,103,117,153,163],type_hint:12,typeasblob:14,typecodec:14,typic:[0,6,13,30,38,41,43,46,49,52],ubuntu:26,udf:[6,14],udf_stat:12,udfcontext:[10,14],udt:[14,17],udt_liter:12,udt_nam:21,udt_stat:12,udtarg:14,udtnam:14,udtvalu:[10,14],ulimit:30,unabl:[6,25,36],unaffect:21,unavail:[6,11,46,49,51],unblock:46,unbound:21,unchecked_tombstone_compact:41,uncom:[6,46,49],uncommon:28,uncompress:[6,42,46],undelet:41,under:[6,21,23,29,46,49],underli:[6,18,41,49],understand:[6,28,30],unencrypt:[6,49],unexpectedli:21,unfinishedcommit:46,unflush:[40,156],unfortun:29,uniqu:[11,14,21],unit:[21,25,27,41,117,141],unixtimestampof:[10,14],unless:[6,11,13,16,18,19,21,23,40,49,50],unlik:[6,10,13,21],unlimit:[6,30,52],unlog:9,unnecessari:[25,51],unnecessarili:40,unpredict:13,unprepar:46,unquot:12,unquoted_identifi:12,unquoted_nam:11,unrel:28,unreleas:28,unrepair:45,unsecur:49,unset:[6,10,13,17],unsign:21,unspecifi:6,unsubscrib:[8,36],untar:34,until:[0,6,21,38,40,41,42,49,50],unus:6,unusu:25,updat:[6,9,10,11,12,14,15,17,18,19,21,25,28,29,34,36,41,42,46,49,52],update_paramet:13,update_stat:[12,13],upgrad:[6,41,117,170],upgrade_sst:163,upgradesst:[38,41,42,117],upload:28,upon:[6,21,38,42],upper:[12,17,41,49],ups:43,upstream:28,uptim:[109,117],url:24,usag:[4,6,11,21,36,38,40,42,46,52],use:[6,9,10,11,12,13,14,16,17,18,19,21,23,25,26,28,29,31,34,35,36,38,40,41,43,46,49,50,51,52,57,87,100,117,119,130,139,167,170],use_stat:12,usecas:41,useconcmarksweepgc:26,usecondcardmark:26,used:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,21,25,26,28,29,30,41,43,46,49,50,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,92,95,99,101,103,107,108,115,117,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],useecassandra:49,useful:[0,6,11,14,28,41,42,46,51,52,55,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],useparnewgc:26,user1:13,user2:13,user3:13,user4:13,user:[5,6,8,9,10,11,12,13,15,16,17,18,25,28,30,34,38,41,42,43,49,52,60,76,117],user_count:13,user_defined_typ:21,user_funct:19,user_nam:13,user_occup:13,user_opt:19,useract:13,userid:[11,13,14],userindex:16,usernam:[6,13,14,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],uses:[0,4,6,11,12,13,14,16,19,20,29,30,49],usethreadprior:26,using:[4,6,10,11,12,13,14,18,19,21,26,28,29,33,34,35,36,38,42,43,45,46,49,51,52,60,122,139,156],usr:52,usual:[6,13,21,24,29,38,49,132],utc:[17,52],utd:11,utf8:[21,52],utf8typ:9,utf:52,util:[14,25,41,52],uuid:[9,10,11,12,17,21],val0:11,val1:11,val:14,valid:[6,10,11,12,13,14,17,21,30,41,42,46,49,52,132,139,163],validationexecutor:46,valu:[6,9,10,11,12,13,14,16,17,21,25,26,30,38,41,46,49,50,52,76,104,108,117,140,144,146,147,148,149,151,152,153,154],value1:13,value2:13,value_in_kb_per_sec:[140,148],value_in_m:151,value_in_mb:[144,149,152],valueof:14,varchar:[9,11,14,17,21],vari:[6,42],variabl:[6,10,12,17,21,26,33],variant:12,varieti:40,varint:[9,11,14,17,21],variou:[26,29,43,49],veri:[6,11,13,28,29,30,38,41,42,43],verifi:[28,30,32,34,42,108,117,163],version:[5,6,9,11,14,15,21,26,28,32,34,41,46,51,59,64,74,84,117,170,171],vertic:52,via:[6,8,10,19,25,30,31,41,42,43,46,49,50],view:[6,10,11,12,15,19,36,46,52,94,117,147,173],view_build:163,view_nam:18,viewbuildstatu:117,viewlockacquiretim:46,viewmutationstag:46,viewpendingmut:46,viewreadtim:46,viewreplicasattempt:46,viewreplicassuccess:46,viewwrit:46,viewwritelat:46,virtual:[0,6,30,41,46,51],visibl:[11,19,23,38],vnode:[6,42],volum:[6,40,42],vulner:[6,49],wai:[4,6,12,15,17,18,21,24,26,29,30,41,42,132],wait:[0,6,11,28,30,46,117,134],waitingoncommit:46,waitingonfreememtablespac:46,waitingonsegmentalloc:46,want:[6,11,13,26,28,29,30,49,51],warmup:[117,142],warn:[6,11,23,29,45,132],washington:21,wasn:10,wast:6,watch:29,weaker:0,websit:[29,34],week:21,weight:[6,46,80],welcom:8,well:[6,11,13,14,17,21,25,26,40,42,43,49,50,117,135],went:46,were:[6,9,10,19,25,26,41,46],what:[11,13,21,27,29,31,36,41,43,49,52],whatev:[10,13,30],whedon:13,when:[4,6,9,10,11,12,13,14,15,16,17,19,21,23,25,28,29,31,36,38,40,42,43,45,46,49,50,51,52,55,57,58,60,63,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],where:[0,4,6,9,10,11,12,14,16,17,18,19,21,25,29,31,34,38,41,42,49,51,52,80,132],where_claus:13,wherea:[21,49],whether:[0,6,9,11,13,26,41,50,52,80],which:[0,4,5,6,10,11,12,13,14,15,16,18,19,20,21,28,29,30,31,34,35,38,40,41,42,43,46,49,50,51,60,95,99,108,114,117,122,132],whichev:[0,6],whitelist:49,whitespac:27,who:[19,28,30],whole:[6,11,13,14,21,41],whose:[11,21,163],why:[25,28,36],wide:[4,40],width:12,wiki:[6,26],wildcard:[13,19],window:[0,6,45,46,49,98,106,117,151],winner:30,wip:[26,28],wipe:[30,51],wire:30,wise:11,wish:[6,41,46],within:[0,4,6,11,12,13,16,28,30,41,43,46,49],withing:6,without:[6,11,12,13,14,19,21,24,26,28,29,30,40,43,46,49,52,55,108,117,124],wmem_max:6,won:[6,13,24],wont:41,word:[10,11,12,18,19,21,30],work:[6,10,11,14,15,17,23,24,26,27,29,30,41,43,46,49,50,51,52],worker:52,workload:[6,25,38,41,43],workspac:26,worktre:26,worri:[28,30],wors:[6,50],worst:[6,28],worthwhil:6,would:[6,12,13,14,17,19,26,28,29,36,41,42,43,49,50],wrap:50,write:[0,4,6,10,11,13,21,23,25,29,30,40,41,42,43,46,49,50,51,52,75,103,117,153,166],write_lat:166,write_request_timeout:30,writelat:46,writer:[6,23],writetim:[9,14],writetimeoutexcept:6,written:[4,6,20,30,38,41,42,46],wrong:6,wrte:46,www:[6,11,34],xlarg:43,xml:31,xmn220m:26,xms1024m:26,xmx1024m:26,xmx:43,xss256k:26,xvf:34,yaml:[6,14,31,34,46,49,50,51,61,76,80,117,135,166,168],year:[13,21],yes:[9,11,49],yet:[11,46],yield:[13,51],you:[5,6,8,10,11,12,13,14,16,17,18,20,21,23,24,26,27,29,30,31,32,33,34,35,36,41,46,49,50,51,52,55,117,156],younger:14,your:[0,5,6,8,10,11,12,23,26,28,29,30,31,34,36,41,43,49,50,52],yourself:[24,29],yyyi:[17,21],z_0:[11,16,18],zero:[6,10,30,46,50],zip:21,zipcod:21,zone:[6,21,50],zzzzz:28},titles:["Dynamo","Guarantees","Architecture","Overview","Storage Engine","Reporting Bugs and Contributing","Cassandra Configuration File","Configuring Cassandra","Contact us","Appendices","Changes","Data Definition","Definitions","Data Manipulation","Functions","The Cassandra Query Language (CQL)","Secondary Indexes","JSON Support","Materialized Views","Security","Triggers","Data Types","Data Modeling","Code Style","How-to Commit","Review Checklist","Building and IDE Integration","Cassandra Development","Contributing Code Changes","Testing","Frequently Asked Questions","Configuring Cassandra","Client drivers","Getting Started","Installing Cassandra","Inserting and querying","Welcome to Apache Cassandra\u2019s documentation!","Backups","Bloom Filters","Bulk Loading","Change Data Capture","Compaction","Compression","Hardware Choices","Hints","Operating Cassandra","Monitoring","Read repair","Repair","Security","Snitch","Adding, replacing, moving and removing nodes","cqlsh: the CQL shell","Cassandra Tools","Nodetool","assassinate","bootstrap","cleanup","clearsnapshot","clientstats","compact","compactionhistory","compactionstats","decommission","describecluster","describering","disableauditlog","disableautocompaction","disablebackup","disablebinary","disablefullquerylog","disablegossip","disablehandoff","disablehintsfordc","disableoldprotocolversions","drain","enableauditlog","enableautocompaction","enablebackup","enablebinary","enablefullquerylog","enablegossip","enablehandoff","enablehintsfordc","enableoldprotocolversions","failuredetector","flush","garbagecollect","gcstats","getbatchlogreplaythrottle","getcompactionthreshold","getcompactionthroughput","getconcurrency","getconcurrentcompactors","getconcurrentviewbuilders","getendpoints","getinterdcstreamthroughput","getlogginglevels","getmaxhintwindow","getreplicas","getseeds","getsstables","getstreamthroughput","gettimeout","gettraceprobability","gossipinfo","handoffwindow","help","import","info","invalidatecountercache","invalidatekeycache","invalidaterowcache","join","listsnapshots","move","netstats","Nodetool","pausehandoff","profileload","proxyhistograms","rangekeysample","rebuild","rebuild_index","refresh","refreshsizeestimates","reloadlocalschema","reloadseeds","reloadssl","reloadtriggers","relocatesstables","removenode","repair","repair_admin","replaybatchlog","resetfullquerylog","resetlocalschema","resumehandoff","ring","scrub","setbatchlogreplaythrottle","setcachecapacity","setcachekeystosave","setcompactionthreshold","setcompactionthroughput","setconcurrency","setconcurrentcompactors","setconcurrentviewbuilders","sethintedhandoffthrottlekb","setinterdcstreamthroughput","setlogginglevel","setmaxhintwindow","setstreamthroughput","settimeout","settraceprobability","sjk","snapshot","status","statusautocompaction","statusbackup","statusbinary","statusgossip","statushandoff","stop","stopdaemon","tablehistograms","tablestats","toppartitions","tpstats","truncatehints","upgradesstables","verify","version","viewbuildstatus","Troubleshooting"],titleterms:{"class":50,"function":[13,14,17],"import":[23,108],"long":29,"new":30,"static":11,"switch":41,Adding:51,IDE:26,IDEs:23,LCS:41,TLS:49,The:[11,13,15,17,41],USE:11,Use:42,Uses:42,Using:26,Will:30,With:49,access:49,add:30,address:30,advanc:42,after:51,aggreg:14,alias:13,all:[19,30],alloc:51,allocate_tokens_for_keyspac:6,allow:13,alter:[11,18,19,21],ani:30,apach:36,appendic:9,appendix:9,architectur:2,ask:30,assassin:55,assign:51,auth:49,authent:[6,19,49],author:[6,49],auto_snapshot:6,automat:19,avg:14,back_pressure_en:6,back_pressure_strategi:6,backup:37,batch:[13,30],batch_size_fail_threshold_in_kb:6,batch_size_warn_threshold_in_kb:6,batchlog_replay_throttle_in_kb:6,befor:28,benefit:42,binari:34,blob:[14,30],bloom:38,boilerpl:23,bootstrap:[30,41,51,56],branch:28,broadcast_address:6,broadcast_rpc_address:6,buffer_pool_use_heap_if_exhaust:6,bufferpool:46,bug:[5,28],build:26,bulk:[30,39],cach:[11,46,49],call:30,can:30,captur:[40,52],cas_contention_timeout_in_m:6,cassandra:[6,7,15,17,26,27,29,30,31,34,36,40,45,49,53],cast:14,cdc:40,cdc_enabl:6,cdc_free_space_check_interval_m:6,cdc_raw_directori:6,cdc_total_space_in_mb:6,chang:[10,28,30,31,38,40,41],characterist:21,checklist:25,choic:43,choos:28,circleci:29,claus:13,cleanup:[51,57],clear:52,clearsnapshot:58,client:[32,35,46,49],client_encryption_opt:6,clientstat:59,clojur:32,cloud:43,cluster:[11,30],cluster_nam:6,code:[23,28],collect:[21,41],column:11,column_index_cache_size_in_kb:6,column_index_size_in_kb:6,command:[26,41,52],comment:12,commit:24,commit_failure_polici:6,commitlog:[4,46],commitlog_compress:6,commitlog_directori:6,commitlog_segment_size_in_mb:6,commitlog_sync:6,commitlog_sync_batch_window_in_m:6,commitlog_sync_period_in_m:6,commitlog_total_space_in_mb:6,commitlogseg:40,common:[11,41,43],compact:[9,11,41,46,60],compaction_large_partition_warning_threshold_mb:6,compaction_throughput_mb_per_sec:6,compactionhistori:61,compactionstat:62,compactionstrategi:41,compat:52,compress:[11,42],concern:41,concurrent_compactor:6,concurrent_counter_writ:6,concurrent_materialized_view_writ:6,concurrent_read:6,concurrent_writ:6,condition:19,configur:[6,7,31,40,42],connect:30,consider:11,consist:[0,52],constant:12,contact:8,contribut:[5,28],control:19,convent:[12,23],convers:14,copi:52,count:14,counter:[13,21],counter_cache_keys_to_sav:6,counter_cache_save_period:6,counter_cache_size_in_mb:6,counter_write_request_timeout_in_m:6,cpu:43,cql:[9,15,46,52],cqlsh:[35,52],cqlshrc:52,creat:[11,14,16,18,19,20,21,28],credenti:19,credentials_update_interval_in_m:6,credentials_validity_in_m:6,cross_node_timeout:6,cstar_perf:29,custom:21,cython:52,data:[11,13,17,19,21,22,30,40,41,51],data_file_directori:6,databas:19,date:21,dead:51,debian:34,debug:26,decommiss:63,defin:[14,21],definit:[11,12],defragment:41,delet:[13,30,41],depend:52,describ:[52,65],describeclust:64,detail:41,detect:0,develop:27,dies:30,directori:[31,41],disabl:40,disableauditlog:66,disableautocompact:67,disablebackup:68,disablebinari:69,disablefullquerylog:70,disablegossip:71,disablehandoff:72,disablehintsfordc:73,disableoldprotocolvers:74,disk:[30,43],disk_failure_polici:6,disk_optimization_strategi:6,document:36,doe:30,drain:75,driver:[32,35],drop:[9,11,14,16,18,19,20,21,30],droppedmessag:46,dtest:29,durat:21,dynam:50,dynamic_snitch_badness_threshold:6,dynamic_snitch_reset_interval_in_m:6,dynamic_snitch_update_interval_in_m:6,dynamo:0,each:30,eclips:26,email:30,enabl:[40,49],enable_materialized_view:6,enable_sasi_index:6,enable_scripted_user_defined_funct:6,enable_user_defined_funct:6,enableauditlog:76,enableautocompact:77,enablebackup:78,enablebinari:79,enablefullquerylog:80,enablegossip:81,enablehandoff:82,enablehintsfordc:83,enableoldprotocolvers:84,encod:17,encrypt:49,endpoint_snitch:6,engin:4,entri:30,environ:31,erlang:32,error:30,even:30,except:23,exist:30,exit:52,expand:52,experiment:6,expir:41,factor:30,fail:[30,51],failur:[0,30],failuredetector:85,featur:6,file:[6,23,34],file_cache_size_in_mb:6,filedescriptorratio:46,filter:[13,38],fix:28,flush:86,format:23,frequent:30,from:[26,30,34,52],fromjson:17,fulli:41,further:40,garbag:41,garbagecollect:87,garbagecollector:46,gc_grace_second:41,gc_log_threshold_in_m:6,gc_warn_threshold_in_m:6,gcstat:88,gener:23,get:33,getbatchlogreplaythrottl:89,getcompactionthreshold:90,getcompactionthroughput:91,getconcurr:92,getconcurrentcompactor:93,getconcurrentviewbuild:94,getendpoint:95,getinterdcstreamthroughput:96,getlogginglevel:97,getmaxhintwindow:98,getreplica:99,getse:100,getsstabl:101,getstreamthroughput:102,gettimeout:103,gettraceprob:104,give:30,gossip:0,gossipinfo:105,grace:41,grant:19,group:13,guarante:1,handl:23,handoffwindow:106,hang:51,happen:30,hardwar:43,haskel:32,heap:30,help:[52,107],hint:44,hinted_handoff_disabled_datacent:6,hinted_handoff_en:6,hinted_handoff_throttle_in_kb:6,hintedhandoff:46,hints_compress:6,hints_directori:6,hints_flush_period_in_m:6,host:[30,52],how:[24,30],idea:26,identifi:12,impact:42,incremental_backup:6,index:[16,46],index_summary_capacity_in_mb:6,index_summary_resize_interval_in_minut:6,info:109,initial_token:6,insert:[13,17,35],instal:34,integr:[26,49],intellij:26,inter:49,inter_dc_stream_throughput_outbound_megabits_per_sec:6,inter_dc_tcp_nodelai:6,intern:[19,49],internode_authent:6,internode_compress:6,internode_recv_buff_size_in_byt:6,internode_send_buff_size_in_byt:6,invalidatecountercach:110,invalidatekeycach:111,invalidaterowcach:112,irc:8,java:[30,32],jconsol:30,jmx:[30,41,46,49],join:[30,113],json:17,jvm:46,kei:[11,16,18],key_cache_keys_to_sav:6,key_cache_save_period:6,key_cache_size_in_mb:6,keyspac:[11,30,46],keyword:[9,12],lang:30,languag:15,larg:30,level:[0,41],limit:13,line:[26,52],list:[8,19,21,30],listen:30,listen_address:[6,30],listen_interfac:6,listen_interface_prefer_ipv6:6,listen_on_broadcast_address:6,listsnapshot:114,liter:21,live:30,load:[30,39],locat:31,log:[30,31,41],login:52,lot:30,made:30,mail:8,main:31,major:41,manipul:13,manual:51,map:[16,21,30],materi:18,max:[14,30],max_hint_window_in_m:6,max_hints_delivery_thread:6,max_hints_file_size_in_mb:6,max_value_size_in_mb:6,maxtimeuuid:14,mean:30,memori:[30,43,46],memorypool:46,memtabl:4,memtable_allocation_typ:6,memtable_cleanup_threshold:6,memtable_flush_writ:6,memtable_heap_space_in_mb:6,memtable_offheap_space_in_mb:6,merg:41,messag:30,method:30,metric:46,min:14,minor:41,mintimeuuid:14,model:22,monitor:[46,51],more:[30,41],move:[51,115],movement:51,multilin:23,nativ:[14,21],native_transport_max_concurrent_connect:6,native_transport_max_concurrent_connections_per_ip:6,native_transport_max_frame_size_in_mb:6,native_transport_max_thread:6,native_transport_port:6,native_transport_port_ssl:6,net:32,netstat:116,networktopologystrategi:0,newer:26,node:[30,49,51],nodej:32,nodetool:[30,41,54,117],noteworthi:21,now:14,num_token:6,one:30,onli:30,oper:[30,41,42,45],option:[11,18,41,52],order:[11,13],otc_backlog_expiration_interval_m:6,otc_coalescing_enough_coalesced_messag:6,otc_coalescing_strategi:6,otc_coalescing_window_u:6,other:[11,30],outofmemoryerror:30,overview:[3,40],packag:34,page:52,paramet:[13,40,41],partit:11,partition:6,password:49,patch:28,pausehandoff:118,perform:29,permiss:19,permissions_update_interval_in_m:6,permissions_validity_in_m:6,phi_convict_threshold:6,php:32,pick:0,point:30,port:30,prepar:12,prepared_statements_cache_size_mb:6,prerequisit:34,primari:[11,18],profileload:119,progress:51,project:26,properti:31,proxyhistogram:120,python:32,pytz:52,queri:[15,35],question:30,rang:[0,51],range_request_timeout_in_m:6,rangekeysampl:121,read:[40,47],read_request_timeout_in_m:6,rebuild:122,rebuild_index:123,refresh:124,refreshsizeestim:125,refus:30,releas:28,reloadlocalschema:126,reloadse:127,reloadssl:128,reloadtrigg:129,relocatesst:130,remot:30,remov:[41,51],removenod:131,repair:[41,47,48,132],repair_admin:133,repair_session_max_tree_depth:6,replac:51,replaybatchlog:134,replic:[0,30],report:[5,30,46],request:46,request_schedul:6,request_scheduler_id:6,request_scheduler_opt:6,request_timeout_in_m:6,reserv:9,resetfullquerylog:135,resetlocalschema:136,result:13,resum:51,resumehandoff:137,revers:11,review:25,revok:19,rhel:30,right:28,ring:[0,30,138],role:[19,49],role_manag:6,roles_update_interval_in_m:6,roles_validity_in_m:6,row_cache_class_nam:6,row_cache_keys_to_sav:6,row_cache_save_period:6,row_cache_size_in_mb:6,rpc_address:6,rpc_interfac:6,rpc_interface_prefer_ipv6:6,rpc_keepal:6,rpc_max_thread:6,rpc_min_thread:6,rpc_port:6,rpc_recv_buff_size_in_byt:6,rpc_send_buff_size_in_byt:6,rpc_server_typ:6,rubi:32,run:29,runtim:31,rust:32,safeti:6,sai:30,same:30,saved_caches_directori:6,scala:32,scalar:14,scrub:139,secondari:16,secur:[19,49],see:30,seed:30,seed_provid:6,select:[13,17,18],selector:13,serial:52,server_encryption_opt:6,session:52,set:[19,21,26,30],setbatchlogreplaythrottl:140,setcachecapac:141,setcachekeystosav:142,setcompactionthreshold:143,setcompactionthroughput:144,setconcurr:145,setconcurrentcompactor:146,setconcurrentviewbuild:147,sethintedhandoffthrottlekb:148,setinterdcstreamthroughput:149,setlogginglevel:150,setmaxhintwindow:151,setstreamthroughput:152,settimeout:153,settraceprob:154,setup:26,share:52,shell:52,show:[30,52],signatur:14,simplestrategi:0,singl:[30,41],size:41,sjk:155,slow_query_log_timeout_in_m:6,snapshot:156,snapshot_before_compact:6,snitch:50,sourc:[26,52],special:52,speed:30,ssl:49,ssl_storage_port:6,sstabl:[4,41,46],sstable_preemptive_open_interval_in_mb:6,stai:30,standard:49,start:[26,28,33],start_native_transport:6,start_rpc:6,starv:41,statement:[12,18,23],statu:157,statusautocompact:158,statusbackup:159,statusbinari:160,statusgossip:161,statushandoff:162,stc:41,stop:163,stopdaemon:164,storag:[4,9,46],storage_port:6,store:30,strategi:41,stream:[30,46,51],stream_throughput_outbound_megabits_per_sec:6,streaming_keep_alive_period_in_sec:6,stress:29,style:23,sum:14,support:17,tabl:[11,40,46],tablehistogram:165,tablestat:166,tarbal:34,term:12,test:[26,29],than:30,thei:30,though:30,threadpool:46,threshold:6,thrift_framed_transport_size_in_mb:6,thrift_prepared_statements_cache_size_mb:6,tick:28,tier:41,time:[14,21,41],timestamp:[21,30],timeuuid:14,timewindowcompactionstrategi:41,tock:28,todo:[0,1,3,4,11,22,37,39,44,47,48,54],tojson:17,token:[0,14,51],tombston:41,tombstone_failure_threshold:6,tombstone_warn_threshold:6,tool:[29,53],top:30,toppartit:167,tpstat:168,trace:52,tracetype_query_ttl:6,tracetype_repair_ttl:6,transparent_data_encryption_opt:6,trickle_fsync:6,trickle_fsync_interval_in_kb:6,trigger:[20,41],troubleshoot:174,truncat:11,truncate_request_timeout_in_m:6,truncatehint:169,ttl:[13,41],tunabl:0,tupl:21,two:30,type:[9,17,21,41,46],udt:21,unabl:30,unit:[26,29],unlog:13,unlogged_batch_across_partitions_warn_threshold:6,unrepair:41,unsubscrib:30,updat:[13,30],upgradesst:170,usag:[30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],use:30,user:[14,19,21],using:[30,41],uuid:14,variabl:31,verifi:171,version:[10,52,172],view:18,viewbuildstatu:173,warn:40,welcom:36,what:[28,30],when:[30,41],where:13,whitespac:23,why:[30,41],window:41,windows_timer_interv:6,without:41,work:[21,28],write_request_timeout_in_m:6,writetim:13,yaml:40,you:28}})
\ No newline at end of file
diff --git a/content/doc/3.11/tools/cqlsh.html b/content/doc/3.11/tools/cqlsh.html
index 7f5ef48..a58c03b 100644
--- a/content/doc/3.11/tools/cqlsh.html
+++ b/content/doc/3.11/tools/cqlsh.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Tools" href="index.html"/> <link rel="next" title="Nodetool" href="nodetool.html"/> <link rel="prev" title="Cassandra Tools" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Tools" href="index.html"/> <link rel="next" title="Nodetool" href="nodetool.html"/> <link rel="prev" title="Cassandra Tools" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -177,60 +177,60 @@
 <div class="section" id="pytz">
 <h3>pytz<a class="headerlink" href="#pytz" title="Permalink to this headline">¶</a></h3>
 <p>By default, cqlsh displays all timestamps with a UTC timezone.  To support display of timestamps with another timezone,
-the <a class="reference external" href="http://pytz.sourceforge.net/">pytz</a> library must be installed.  See the <code class="docutils literal"><span class="pre">timezone</span></code> option in <a class="reference internal" href="#cqlshrc">cqlshrc</a> for
+the <a class="reference external" href="http://pytz.sourceforge.net/">pytz</a> library must be installed.  See the <code class="docutils literal notranslate"><span class="pre">timezone</span></code> option in <a class="reference internal" href="#cqlshrc">cqlshrc</a> for
 specifying a timezone to use.</p>
 </div>
 <div class="section" id="cython">
 <h3>cython<a class="headerlink" href="#cython" title="Permalink to this headline">¶</a></h3>
-<p>The performance of cqlsh&#8217;s <code class="docutils literal"><span class="pre">COPY</span></code> operations can be improved by installing <a class="reference external" href="http://cython.org/">cython</a>.  This will
-compile the python modules that are central to the performance of <code class="docutils literal"><span class="pre">COPY</span></code>.</p>
+<p>The performance of cqlsh’s <code class="docutils literal notranslate"><span class="pre">COPY</span></code> operations can be improved by installing <a class="reference external" href="http://cython.org/">cython</a>.  This will
+compile the python modules that are central to the performance of <code class="docutils literal notranslate"><span class="pre">COPY</span></code>.</p>
 </div>
 </div>
 <div class="section" id="cqlshrc">
 <h2>cqlshrc<a class="headerlink" href="#cqlshrc" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">cqlshrc</span></code> file holds configuration options for cqlsh.  By default this is in the user&#8217;s home directory at
-<code class="docutils literal"><span class="pre">~/.cassandra/cqlsh</span></code>, but a custom location can be specified with the <code class="docutils literal"><span class="pre">--cqlshrc</span></code> option.</p>
-<p>Example config values and documentation can be found in the <code class="docutils literal"><span class="pre">conf/cqlshrc.sample</span></code> file of a tarball installation.  You
+<p>The <code class="docutils literal notranslate"><span class="pre">cqlshrc</span></code> file holds configuration options for cqlsh.  By default this is in the user’s home directory at
+<code class="docutils literal notranslate"><span class="pre">~/.cassandra/cqlsh</span></code>, but a custom location can be specified with the <code class="docutils literal notranslate"><span class="pre">--cqlshrc</span></code> option.</p>
+<p>Example config values and documentation can be found in the <code class="docutils literal notranslate"><span class="pre">conf/cqlshrc.sample</span></code> file of a tarball installation.  You
 can also view the latest version of <a class="reference external" href="https://github.com/apache/cassandra/blob/trunk/conf/cqlshrc.sample">cqlshrc online</a>.</p>
 </div>
 <div class="section" id="command-line-options">
 <h2>Command Line Options<a class="headerlink" href="#command-line-options" title="Permalink to this headline">¶</a></h2>
 <p>Usage:</p>
-<p><code class="docutils literal"><span class="pre">cqlsh</span> <span class="pre">[options]</span> <span class="pre">[host</span> <span class="pre">[port]]</span></code></p>
+<p><code class="docutils literal notranslate"><span class="pre">cqlsh</span> <span class="pre">[options]</span> <span class="pre">[host</span> <span class="pre">[port]]</span></code></p>
 <p>Options:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">-C</span></code> <code class="docutils literal"><span class="pre">--color</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-C</span></code> <code class="docutils literal notranslate"><span class="pre">--color</span></code></dt>
 <dd>Force color output</dd>
-<dt><code class="docutils literal"><span class="pre">--no-color</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--no-color</span></code></dt>
 <dd>Disable color output</dd>
-<dt><code class="docutils literal"><span class="pre">--browser</span></code></dt>
-<dd>Specify the browser to use for displaying cqlsh help.  This can be one of the <a class="reference external" href="https://docs.python.org/2/library/webbrowser.html">supported browser names</a> (e.g. <code class="docutils literal"><span class="pre">firefox</span></code>) or a browser path followed by <code class="docutils literal"><span class="pre">%s</span></code> (e.g.
-<code class="docutils literal"><span class="pre">/usr/bin/google-chrome-stable</span> <span class="pre">%s</span></code>).</dd>
-<dt><code class="docutils literal"><span class="pre">--ssl</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--browser</span></code></dt>
+<dd>Specify the browser to use for displaying cqlsh help.  This can be one of the <a class="reference external" href="https://docs.python.org/2/library/webbrowser.html">supported browser names</a> (e.g. <code class="docutils literal notranslate"><span class="pre">firefox</span></code>) or a browser path followed by <code class="docutils literal notranslate"><span class="pre">%s</span></code> (e.g.
+<code class="docutils literal notranslate"><span class="pre">/usr/bin/google-chrome-stable</span> <span class="pre">%s</span></code>).</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">--ssl</span></code></dt>
 <dd>Use SSL when connecting to Cassandra</dd>
-<dt><code class="docutils literal"><span class="pre">-u</span></code> <code class="docutils literal"><span class="pre">--user</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-u</span></code> <code class="docutils literal notranslate"><span class="pre">--user</span></code></dt>
 <dd>Username to authenticate against Cassandra with</dd>
-<dt><code class="docutils literal"><span class="pre">-p</span></code> <code class="docutils literal"><span class="pre">--password</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-p</span></code> <code class="docutils literal notranslate"><span class="pre">--password</span></code></dt>
 <dd>Password to authenticate against Cassandra with, should
-be used in conjunction with <code class="docutils literal"><span class="pre">--user</span></code></dd>
-<dt><code class="docutils literal"><span class="pre">-k</span></code> <code class="docutils literal"><span class="pre">--keyspace</span></code></dt>
+be used in conjunction with <code class="docutils literal notranslate"><span class="pre">--user</span></code></dd>
+<dt><code class="docutils literal notranslate"><span class="pre">-k</span></code> <code class="docutils literal notranslate"><span class="pre">--keyspace</span></code></dt>
 <dd>Keyspace to authenticate to, should be used in conjunction
-with <code class="docutils literal"><span class="pre">--user</span></code></dd>
-<dt><code class="docutils literal"><span class="pre">-f</span></code> <code class="docutils literal"><span class="pre">--file</span></code></dt>
+with <code class="docutils literal notranslate"><span class="pre">--user</span></code></dd>
+<dt><code class="docutils literal notranslate"><span class="pre">-f</span></code> <code class="docutils literal notranslate"><span class="pre">--file</span></code></dt>
 <dd>Execute commands from the given file, then exit</dd>
-<dt><code class="docutils literal"><span class="pre">--debug</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--debug</span></code></dt>
 <dd>Print additional debugging information</dd>
-<dt><code class="docutils literal"><span class="pre">--encoding</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--encoding</span></code></dt>
 <dd>Specify a non-default encoding for output (defaults to UTF-8)</dd>
-<dt><code class="docutils literal"><span class="pre">--cqlshrc</span></code></dt>
-<dd>Specify a non-default location for the <code class="docutils literal"><span class="pre">cqlshrc</span></code> file</dd>
-<dt><code class="docutils literal"><span class="pre">-e</span></code> <code class="docutils literal"><span class="pre">--execute</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--cqlshrc</span></code></dt>
+<dd>Specify a non-default location for the <code class="docutils literal notranslate"><span class="pre">cqlshrc</span></code> file</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">-e</span></code> <code class="docutils literal notranslate"><span class="pre">--execute</span></code></dt>
 <dd>Execute the given statement, then exit</dd>
-<dt><code class="docutils literal"><span class="pre">--connect-timeout</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--connect-timeout</span></code></dt>
 <dd>Specify the connection timeout in seconds (defaults to 2s)</dd>
-<dt><code class="docutils literal"><span class="pre">--request-timeout</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--request-timeout</span></code></dt>
 <dd>Specify the request timeout in seconds (defaults to 10s)</dd>
-<dt><code class="docutils literal"><span class="pre">-t</span></code> <code class="docutils literal"><span class="pre">--tty</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-t</span></code> <code class="docutils literal notranslate"><span class="pre">--tty</span></code></dt>
 <dd>Force tty mode (command prompt)</dd>
 </dl>
 </div>
@@ -239,61 +239,61 @@
 <p>In addition to supporting regular CQL statements, cqlsh also supports a number of special commands that are not part of
 CQL.  These are detailed below.</p>
 <div class="section" id="consistency">
-<h3><code class="docutils literal"><span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#consistency" title="Permalink to this headline">¶</a></h3>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
+<h3><code class="docutils literal notranslate"><span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#consistency" title="Permalink to this headline">¶</a></h3>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
 <p>Sets the consistency level for operations to follow.  Valid arguments include:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">ANY</span></code></li>
-<li><code class="docutils literal"><span class="pre">ONE</span></code></li>
-<li><code class="docutils literal"><span class="pre">TWO</span></code></li>
-<li><code class="docutils literal"><span class="pre">THREE</span></code></li>
-<li><code class="docutils literal"><span class="pre">QUORUM</span></code></li>
-<li><code class="docutils literal"><span class="pre">ALL</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_QUORUM</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_ONE</span></code></li>
-<li><code class="docutils literal"><span class="pre">SERIAL</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ANY</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ONE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">TWO</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">THREE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">QUORUM</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ALL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_QUORUM</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_ONE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_SERIAL</span></code></li>
 </ul>
 </div>
 <div class="section" id="serial-consistency">
-<h3><code class="docutils literal"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#serial-consistency" title="Permalink to this headline">¶</a></h3>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
+<h3><code class="docutils literal notranslate"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#serial-consistency" title="Permalink to this headline">¶</a></h3>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
 <p>Sets the serial consistency level for operations to follow.  Valid arguments include:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SERIAL</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_SERIAL</span></code></li>
 </ul>
-<p>The serial consistency level is only used by conditional updates (<code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code> and <code class="docutils literal"><span class="pre">DELETE</span></code> with an <code class="docutils literal"><span class="pre">IF</span></code>
+<p>The serial consistency level is only used by conditional updates (<code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> with an <code class="docutils literal notranslate"><span class="pre">IF</span></code>
 condition). For those, the serial consistency level defines the consistency level of the serial phase (or “paxos” phase)
 while the normal consistency level defines the consistency for the “learn” phase, i.e. what type of reads will be
-guaranteed to see the update right away. For example, if a conditional write has a consistency level of <code class="docutils literal"><span class="pre">QUORUM</span></code> (and
-is successful), then a <code class="docutils literal"><span class="pre">QUORUM</span></code> read is guaranteed to see that write. But if the regular consistency level of that
-write is <code class="docutils literal"><span class="pre">ANY</span></code>, then only a read with a consistency level of <code class="docutils literal"><span class="pre">SERIAL</span></code> is guaranteed to see it (even a read with
-consistency <code class="docutils literal"><span class="pre">ALL</span></code> is not guaranteed to be enough).</p>
+guaranteed to see the update right away. For example, if a conditional write has a consistency level of <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> (and
+is successful), then a <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> read is guaranteed to see that write. But if the regular consistency level of that
+write is <code class="docutils literal notranslate"><span class="pre">ANY</span></code>, then only a read with a consistency level of <code class="docutils literal notranslate"><span class="pre">SERIAL</span></code> is guaranteed to see it (even a read with
+consistency <code class="docutils literal notranslate"><span class="pre">ALL</span></code> is not guaranteed to be enough).</p>
 </div>
 <div class="section" id="show-version">
-<h3><code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">VERSION</span></code><a class="headerlink" href="#show-version" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">VERSION</span></code><a class="headerlink" href="#show-version" title="Permalink to this headline">¶</a></h3>
 <p>Prints the cqlsh, Cassandra, CQL, and native protocol versions in use.  Example:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW VERSION
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW VERSION
 [cqlsh 5.0.1 | Cassandra 3.8 | CQL spec 3.4.2 | Native protocol v4]
 </pre></div>
 </div>
 </div>
 <div class="section" id="show-host">
-<h3><code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">HOST</span></code><a class="headerlink" href="#show-host" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">HOST</span></code><a class="headerlink" href="#show-host" title="Permalink to this headline">¶</a></h3>
 <p>Prints the IP address and port of the Cassandra node that cqlsh is connected to in addition to the cluster name.
 Example:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW HOST
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW HOST
 Connected to Prod_Cluster at 192.0.0.1:9042.
 </pre></div>
 </div>
 </div>
 <div class="section" id="show-session">
-<h3><code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">SESSION</span></code><a class="headerlink" href="#show-session" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">SESSION</span></code><a class="headerlink" href="#show-session" title="Permalink to this headline">¶</a></h3>
 <p>Pretty prints a specific tracing session.</p>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">SESSION</span> <span class="pre">&lt;session</span> <span class="pre">id&gt;</span></code></p>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">SESSION</span> <span class="pre">&lt;session</span> <span class="pre">id&gt;</span></code></p>
 <p>Example usage:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW SESSION 95ac6470-327e-11e6-beca-dfb660d92ad8
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW SESSION 95ac6470-327e-11e6-beca-dfb660d92ad8
 
 Tracing session: 95ac6470-327e-11e6-beca-dfb660d92ad8
 
@@ -306,100 +306,100 @@
 </div>
 </div>
 <div class="section" id="source">
-<h3><code class="docutils literal"><span class="pre">SOURCE</span></code><a class="headerlink" href="#source" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SOURCE</span></code><a class="headerlink" href="#source" title="Permalink to this headline">¶</a></h3>
 <p>Reads the contents of a file and executes each line as a CQL statement or special cqlsh command.</p>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">SOURCE</span> <span class="pre">&lt;string</span> <span class="pre">filename&gt;</span></code></p>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">SOURCE</span> <span class="pre">&lt;string</span> <span class="pre">filename&gt;</span></code></p>
 <p>Example usage:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SOURCE &#39;/home/thobbs/commands.cql&#39;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SOURCE &#39;/home/thobbs/commands.cql&#39;
 </pre></div>
 </div>
 </div>
 <div class="section" id="capture">
-<h3><code class="docutils literal"><span class="pre">CAPTURE</span></code><a class="headerlink" href="#capture" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">CAPTURE</span></code><a class="headerlink" href="#capture" title="Permalink to this headline">¶</a></h3>
 <p>Begins capturing command output and appending it to a specified file.  Output will not be shown at the console while it
 is captured.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CAPTURE &#39;&lt;file&gt;&#39;;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CAPTURE &#39;&lt;file&gt;&#39;;
 CAPTURE OFF;
 CAPTURE;
 </pre></div>
 </div>
 <p>That is, the path to the file to be appended to must be given inside a string literal. The path is interpreted relative
-to the current working directory. The tilde shorthand notation (<code class="docutils literal"><span class="pre">'~/mydir'</span></code>) is supported for referring to <code class="docutils literal"><span class="pre">$HOME</span></code>.</p>
+to the current working directory. The tilde shorthand notation (<code class="docutils literal notranslate"><span class="pre">'~/mydir'</span></code>) is supported for referring to <code class="docutils literal notranslate"><span class="pre">$HOME</span></code>.</p>
 <p>Only query result output is captured. Errors and output from cqlsh-only commands will still be shown in the cqlsh
 session.</p>
-<p>To stop capturing output and show it in the cqlsh session again, use <code class="docutils literal"><span class="pre">CAPTURE</span> <span class="pre">OFF</span></code>.</p>
-<p>To inspect the current capture configuration, use <code class="docutils literal"><span class="pre">CAPTURE</span></code> with no arguments.</p>
+<p>To stop capturing output and show it in the cqlsh session again, use <code class="docutils literal notranslate"><span class="pre">CAPTURE</span> <span class="pre">OFF</span></code>.</p>
+<p>To inspect the current capture configuration, use <code class="docutils literal notranslate"><span class="pre">CAPTURE</span></code> with no arguments.</p>
 </div>
 <div class="section" id="help">
-<h3><code class="docutils literal"><span class="pre">HELP</span></code><a class="headerlink" href="#help" title="Permalink to this headline">¶</a></h3>
-<p>Gives information about cqlsh commands. To see available topics, enter <code class="docutils literal"><span class="pre">HELP</span></code> without any arguments. To see help on a
-topic, use <code class="docutils literal"><span class="pre">HELP</span> <span class="pre">&lt;topic&gt;</span></code>.  Also see the <code class="docutils literal"><span class="pre">--browser</span></code> argument for controlling what browser is used to display help.</p>
+<h3><code class="docutils literal notranslate"><span class="pre">HELP</span></code><a class="headerlink" href="#help" title="Permalink to this headline">¶</a></h3>
+<p>Gives information about cqlsh commands. To see available topics, enter <code class="docutils literal notranslate"><span class="pre">HELP</span></code> without any arguments. To see help on a
+topic, use <code class="docutils literal notranslate"><span class="pre">HELP</span> <span class="pre">&lt;topic&gt;</span></code>.  Also see the <code class="docutils literal notranslate"><span class="pre">--browser</span></code> argument for controlling what browser is used to display help.</p>
 </div>
 <div class="section" id="tracing">
-<h3><code class="docutils literal"><span class="pre">TRACING</span></code><a class="headerlink" href="#tracing" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">TRACING</span></code><a class="headerlink" href="#tracing" title="Permalink to this headline">¶</a></h3>
 <p>Enables or disables tracing for queries.  When tracing is enabled, once a query completes, a trace of the events during
 the query will be printed.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>TRACING ON
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TRACING ON
 TRACING OFF
 </pre></div>
 </div>
 </div>
 <div class="section" id="paging">
-<h3><code class="docutils literal"><span class="pre">PAGING</span></code><a class="headerlink" href="#paging" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">PAGING</span></code><a class="headerlink" href="#paging" title="Permalink to this headline">¶</a></h3>
 <p>Enables paging, disables paging, or sets the page size for read queries.  When paging is enabled, only one page of data
-will be fetched at a time and a prompt will appear to fetch the next page.  Generally, it&#8217;s a good idea to leave paging
+will be fetched at a time and a prompt will appear to fetch the next page.  Generally, it’s a good idea to leave paging
 enabled in an interactive session to avoid fetching and printing large amounts of data at once.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>PAGING ON
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>PAGING ON
 PAGING OFF
 PAGING &lt;page size in rows&gt;
 </pre></div>
 </div>
 </div>
 <div class="section" id="expand">
-<h3><code class="docutils literal"><span class="pre">EXPAND</span></code><a class="headerlink" href="#expand" title="Permalink to this headline">¶</a></h3>
-<p>Enables or disables vertical printing of rows.  Enabling <code class="docutils literal"><span class="pre">EXPAND</span></code> is useful when many columns are fetched, or the
+<h3><code class="docutils literal notranslate"><span class="pre">EXPAND</span></code><a class="headerlink" href="#expand" title="Permalink to this headline">¶</a></h3>
+<p>Enables or disables vertical printing of rows.  Enabling <code class="docutils literal notranslate"><span class="pre">EXPAND</span></code> is useful when many columns are fetched, or the
 contents of a single column are large.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>EXPAND ON
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>EXPAND ON
 EXPAND OFF
 </pre></div>
 </div>
 </div>
 <div class="section" id="login">
-<h3><code class="docutils literal"><span class="pre">LOGIN</span></code><a class="headerlink" href="#login" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">LOGIN</span></code><a class="headerlink" href="#login" title="Permalink to this headline">¶</a></h3>
 <p>Authenticate as a specified Cassandra user for the current session.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>LOGIN &lt;username&gt; [&lt;password&gt;]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>LOGIN &lt;username&gt; [&lt;password&gt;]
 </pre></div>
 </div>
 </div>
 <div class="section" id="exit">
-<h3><code class="docutils literal"><span class="pre">EXIT</span></code><a class="headerlink" href="#exit" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">EXIT</span></code><a class="headerlink" href="#exit" title="Permalink to this headline">¶</a></h3>
 <p>Ends the current session and terminates the cqlsh process.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>EXIT
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>EXIT
 QUIT
 </pre></div>
 </div>
 </div>
 <div class="section" id="clear">
-<h3><code class="docutils literal"><span class="pre">CLEAR</span></code><a class="headerlink" href="#clear" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">CLEAR</span></code><a class="headerlink" href="#clear" title="Permalink to this headline">¶</a></h3>
 <p>Clears the console.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CLEAR
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CLEAR
 CLS
 </pre></div>
 </div>
 </div>
 <div class="section" id="describe">
-<h3><code class="docutils literal"><span class="pre">DESCRIBE</span></code><a class="headerlink" href="#describe" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code><a class="headerlink" href="#describe" title="Permalink to this headline">¶</a></h3>
 <p>Prints a description (typically a series of DDL statements) of a schema element or the cluster.  This is useful for
 dumping all or portions of the schema.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>DESCRIBE CLUSTER
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>DESCRIBE CLUSTER
 DESCRIBE SCHEMA
 DESCRIBE KEYSPACES
 DESCRIBE KEYSPACE &lt;keyspace name&gt;
@@ -415,114 +415,114 @@
 DESCRIBE AGGREGATE &lt;aggregate function name&gt;
 </pre></div>
 </div>
-<p>In any of the commands, <code class="docutils literal"><span class="pre">DESC</span></code> may be used in place of <code class="docutils literal"><span class="pre">DESCRIBE</span></code>.</p>
-<p>The <code class="docutils literal"><span class="pre">DESCRIBE</span> <span class="pre">CLUSTER</span></code> command prints the cluster name and partitioner:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; DESCRIBE CLUSTER
+<p>In any of the commands, <code class="docutils literal notranslate"><span class="pre">DESC</span></code> may be used in place of <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code>.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span> <span class="pre">CLUSTER</span></code> command prints the cluster name and partitioner:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; DESCRIBE CLUSTER
 
 Cluster: Test Cluster
 Partitioner: Murmur3Partitioner
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">DESCRIBE</span> <span class="pre">SCHEMA</span></code> command prints the DDL statements needed to recreate the entire schema.  This is especially
+<p>The <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span> <span class="pre">SCHEMA</span></code> command prints the DDL statements needed to recreate the entire schema.  This is especially
 useful for dumping the schema in order to clone a cluster or restore from a backup.</p>
 </div>
 <div class="section" id="copy-to">
-<h3><code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#copy-to" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#copy-to" title="Permalink to this headline">¶</a></h3>
 <p>Copies data from a table to a CSV file.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] TO &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] TO &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
 </pre></div>
 </div>
 <p>If no columns are specified, all columns from the table will be copied to the CSV file.  A subset of columns to copy may
 be specified by adding a comma-separated list of column names surrounded by parenthesis after the table name.</p>
-<p>The <code class="docutils literal"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the destination file.  This
-can also the special value <code class="docutils literal"><span class="pre">STDOUT</span></code> (without single quotes) to print the CSV to stdout.</p>
-<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the destination file.  This
+can also the special value <code class="docutils literal notranslate"><span class="pre">STDOUT</span></code> (without single quotes) to print the CSV to stdout.</p>
+<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
 <div class="section" id="options-for-copy-to">
-<h4>Options for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#options-for-copy-to" title="Permalink to this headline">¶</a></h4>
+<h4>Options for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#options-for-copy-to" title="Permalink to this headline">¶</a></h4>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">MAXREQUESTS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXREQUESTS</span></code></dt>
 <dd>The maximum number token ranges to fetch simultaneously. Defaults to 6.</dd>
-<dt><code class="docutils literal"><span class="pre">PAGESIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">PAGESIZE</span></code></dt>
 <dd>The number of rows to fetch in a single page. Defaults to 1000.</dd>
-<dt><code class="docutils literal"><span class="pre">PAGETIMEOUT</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">PAGETIMEOUT</span></code></dt>
 <dd>By default the page timeout is 10 seconds per 1000 entries
 in the page size or 10 seconds if pagesize is smaller.</dd>
-<dt><code class="docutils literal"><span class="pre">BEGINTOKEN</span></code>, <code class="docutils literal"><span class="pre">ENDTOKEN</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">BEGINTOKEN</span></code>, <code class="docutils literal notranslate"><span class="pre">ENDTOKEN</span></code></dt>
 <dd>Token range to export.  Defaults to exporting the full ring.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXOUTPUTSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXOUTPUTSIZE</span></code></dt>
 <dd>The maximum size of the output file measured in number of lines;
 beyond this maximum the output file will be split into segments.
 -1 means unlimited, and is the default.</dd>
-<dt><code class="docutils literal"><span class="pre">ENCODING</span></code></dt>
-<dd>The encoding used for characters. Defaults to <code class="docutils literal"><span class="pre">utf8</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">ENCODING</span></code></dt>
+<dd>The encoding used for characters. Defaults to <code class="docutils literal notranslate"><span class="pre">utf8</span></code>.</dd>
 </dl>
 </div>
 </div>
 <div class="section" id="copy-from">
-<h3><code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code><a class="headerlink" href="#copy-from" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code><a class="headerlink" href="#copy-from" title="Permalink to this headline">¶</a></h3>
 <p>Copies data from a CSV file to table.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] FROM &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] FROM &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
 </pre></div>
 </div>
 <p>If no columns are specified, all columns from the CSV file will be copied to the table.  A subset
 of columns to copy may be specified by adding a comma-separated list of column names surrounded
 by parenthesis after the table name.</p>
-<p>The <code class="docutils literal"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the
-source file.  This can also the special value <code class="docutils literal"><span class="pre">STDIN</span></code> (without single quotes) to read the
+<p>The <code class="docutils literal notranslate"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the
+source file.  This can also the special value <code class="docutils literal notranslate"><span class="pre">STDIN</span></code> (without single quotes) to read the
 CSV data from stdin.</p>
-<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
+<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
 <div class="section" id="id1">
-<h4>Options for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h4>
+<h4>Options for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h4>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">INGESTRATE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">INGESTRATE</span></code></dt>
 <dd>The maximum number of rows to process per second. Defaults to 100000.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXROWS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXROWS</span></code></dt>
 <dd>The maximum number of rows to import. -1 means unlimited, and is the default.</dd>
-<dt><code class="docutils literal"><span class="pre">SKIPROWS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">SKIPROWS</span></code></dt>
 <dd>A number of initial rows to skip.  Defaults to 0.</dd>
-<dt><code class="docutils literal"><span class="pre">SKIPCOLS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">SKIPCOLS</span></code></dt>
 <dd>A comma-separated list of column names to ignore.  By default, no columns are skipped.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXPARSEERRORS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXPARSEERRORS</span></code></dt>
 <dd>The maximum global number of parsing errors to ignore. -1 means unlimited, and is the default.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXINSERTERRORS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXINSERTERRORS</span></code></dt>
 <dd>The maximum global number of insert errors to ignore. -1 means unlimited.  The default is 1000.</dd>
-<dt><code class="docutils literal"><span class="pre">ERRFILE</span></code> =</dt>
-<dd>A file to store all rows that could not be imported, by default this is <code class="docutils literal"><span class="pre">import_&lt;ks&gt;_&lt;table&gt;.err</span></code> where <code class="docutils literal"><span class="pre">&lt;ks&gt;</span></code> is
-your keyspace and <code class="docutils literal"><span class="pre">&lt;table&gt;</span></code> is your table name.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXBATCHSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ERRFILE</span></code> =</dt>
+<dd>A file to store all rows that could not be imported, by default this is <code class="docutils literal notranslate"><span class="pre">import_&lt;ks&gt;_&lt;table&gt;.err</span></code> where <code class="docutils literal notranslate"><span class="pre">&lt;ks&gt;</span></code> is
+your keyspace and <code class="docutils literal notranslate"><span class="pre">&lt;table&gt;</span></code> is your table name.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXBATCHSIZE</span></code></dt>
 <dd>The max number of rows inserted in a single batch. Defaults to 20.</dd>
-<dt><code class="docutils literal"><span class="pre">MINBATCHSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MINBATCHSIZE</span></code></dt>
 <dd>The min number of rows inserted in a single batch. Defaults to 2.</dd>
-<dt><code class="docutils literal"><span class="pre">CHUNKSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">CHUNKSIZE</span></code></dt>
 <dd>The number of rows that are passed to child worker processes from the main process at a time. Defaults to 1000.</dd>
 </dl>
 </div>
 <div class="section" id="shared-copy-options">
 <span id="id2"></span><h4>Shared COPY Options<a class="headerlink" href="#shared-copy-options" title="Permalink to this headline">¶</a></h4>
-<p>Options that are common to both <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
+<p>Options that are common to both <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">NULLVAL</span></code></dt>
-<dd>The string placeholder for null values.  Defaults to <code class="docutils literal"><span class="pre">null</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">HEADER</span></code></dt>
-<dd>For <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code>, controls whether the first line in the CSV output file will contain the column names.  For COPY FROM,
-specifies whether the first line in the CSV input file contains column names.  Defaults to <code class="docutils literal"><span class="pre">false</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">DECIMALSEP</span></code></dt>
-<dd>The character that is used as the decimal point separator.  Defaults to <code class="docutils literal"><span class="pre">.</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">THOUSANDSSEP</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">NULLVAL</span></code></dt>
+<dd>The string placeholder for null values.  Defaults to <code class="docutils literal notranslate"><span class="pre">null</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">HEADER</span></code></dt>
+<dd>For <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code>, controls whether the first line in the CSV output file will contain the column names.  For COPY FROM,
+specifies whether the first line in the CSV input file contains column names.  Defaults to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">DECIMALSEP</span></code></dt>
+<dd>The character that is used as the decimal point separator.  Defaults to <code class="docutils literal notranslate"><span class="pre">.</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">THOUSANDSSEP</span></code></dt>
 <dd>The character that is used to separate thousands. Defaults to the empty string.</dd>
-<dt><code class="docutils literal"><span class="pre">BOOLSTYlE</span></code></dt>
-<dd>The string literal format for boolean values.  Defaults to <code class="docutils literal"><span class="pre">True,False</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">NUMPROCESSES</span></code></dt>
-<dd>The number of child worker processes to create for <code class="docutils literal"><span class="pre">COPY</span></code> tasks.  Defaults to a max of 4 for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code> and 16
-for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code>.  However, at most (num_cores - 1) processes will be created.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXATTEMPTS</span></code></dt>
-<dd>The maximum number of failed attempts to fetch a range of data (when using <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code>) or insert a chunk of data
-(when using <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>) before giving up. Defaults to 5.</dd>
-<dt><code class="docutils literal"><span class="pre">REPORTFREQUENCY</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">BOOLSTYlE</span></code></dt>
+<dd>The string literal format for boolean values.  Defaults to <code class="docutils literal notranslate"><span class="pre">True,False</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">NUMPROCESSES</span></code></dt>
+<dd>The number of child worker processes to create for <code class="docutils literal notranslate"><span class="pre">COPY</span></code> tasks.  Defaults to a max of 4 for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code> and 16
+for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code>.  However, at most (num_cores - 1) processes will be created.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXATTEMPTS</span></code></dt>
+<dd>The maximum number of failed attempts to fetch a range of data (when using <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code>) or insert a chunk of data
+(when using <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>) before giving up. Defaults to 5.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">REPORTFREQUENCY</span></code></dt>
 <dd>How often status updates are refreshed, in seconds.  Defaults to 0.25.</dd>
-<dt><code class="docutils literal"><span class="pre">RATEFILE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">RATEFILE</span></code></dt>
 <dd>An optional file to output rate statistics to.  By default, statistics are not output to a file.</dd>
 </dl>
 </div>
diff --git a/content/doc/3.11/tools/index.html b/content/doc/3.11/tools/index.html
index c741621..bd6e79e 100644
--- a/content/doc/3.11/tools/index.html
+++ b/content/doc/3.11/tools/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="cqlsh: the CQL shell" href="cqlsh.html"/> <link rel="prev" title="Hardware Choices" href="../operating/hardware.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="cqlsh: the CQL shell" href="cqlsh.html"/> <link rel="prev" title="Hardware Choices" href="../operating/hardware.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/tools/nodetool.html b/content/doc/3.11/tools/nodetool.html
index 12728c4..b99e1dc 100644
--- a/content/doc/3.11/tools/nodetool.html
+++ b/content/doc/3.11/tools/nodetool.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" 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="cqlsh: the CQL shell" href="cqlsh.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" 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="cqlsh: the CQL shell" href="cqlsh.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/3.11/tools/nodetool/assassinate.html b/content/doc/3.11/tools/nodetool/assassinate.html
index 04a706e..5b5aea6 100644
--- a/content/doc/3.11/tools/nodetool/assassinate.html
+++ b/content/doc/3.11/tools/nodetool/assassinate.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">assassinate</span> <span class="o">-</span> <span class="n">Forcefully</span> <span class="n">remove</span> <span class="n">a</span> <span class="n">dead</span> <span class="n">node</span> <span class="n">without</span>
         <span class="n">re</span><span class="o">-</span><span class="n">replicating</span> <span class="nb">any</span> <span class="n">data</span><span class="o">.</span> <span class="n">Use</span> <span class="k">as</span> <span class="n">a</span> <span class="n">last</span> <span class="n">resort</span> <span class="k">if</span> <span class="n">you</span> <span class="n">cannot</span> <span class="n">removenode</span>
 
diff --git a/content/doc/3.11/tools/nodetool/bootstrap.html b/content/doc/3.11/tools/nodetool/bootstrap.html
index da56430..69c0836 100644
--- a/content/doc/3.11/tools/nodetool/bootstrap.html
+++ b/content/doc/3.11/tools/nodetool/bootstrap.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,16 +151,16 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">bootstrap</span> <span class="o">-</span> <span class="n">Monitor</span><span class="o">/</span><span class="n">manage</span> <span class="n">node</span><span class="s1">&#39;s bootstrap process</span>
 
 <span class="n">SYNOPSIS</span>
         <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">pp</span> <span class="o">|</span> <span class="o">--</span><span class="nb">print</span><span class="o">-</span><span class="n">port</span><span class="p">)]</span>
+        <span class="n">nodetool</span> <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span><span class="p">)]</span>
+                <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span><span class="p">)]</span>
+                <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span><span class="p">)]</span>
                 <span class="p">[(</span><span class="o">-</span><span class="n">pwf</span> <span class="o">&lt;</span><span class="n">passwordFilePath</span><span class="o">&gt;</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">&lt;</span><span class="n">passwordFilePath</span><span class="o">&gt;</span><span class="p">)]</span>
-                <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span><span class="p">)]</span>
-                <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span><span class="p">)]</span>
-                <span class="n">bootstrap</span> <span class="n">resume</span>
+                <span class="p">[(</span><span class="o">-</span><span class="n">pp</span> <span class="o">|</span> <span class="o">--</span><span class="nb">print</span><span class="o">-</span><span class="n">port</span><span class="p">)]</span> <span class="n">bootstrap</span> <span class="n">resume</span>
 
 <span class="n">OPTIONS</span>
         <span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">,</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span>
diff --git a/content/doc/3.11/tools/nodetool/cleanup.html b/content/doc/3.11/tools/nodetool/cleanup.html
index 3792f78..641f7e7 100644
--- a/content/doc/3.11/tools/nodetool/cleanup.html
+++ b/content/doc/3.11/tools/nodetool/cleanup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">cleanup</span> <span class="o">-</span> <span class="n">Triggers</span> <span class="n">the</span> <span class="n">immediate</span> <span class="n">cleanup</span> <span class="n">of</span> <span class="n">keys</span> <span class="n">no</span> <span class="n">longer</span>
         <span class="n">belonging</span> <span class="n">to</span> <span class="n">a</span> <span class="n">node</span><span class="o">.</span> <span class="n">By</span> <span class="n">default</span><span class="p">,</span> <span class="n">clean</span> <span class="nb">all</span> <span class="n">keyspaces</span>
 
diff --git a/content/doc/3.11/tools/nodetool/clearsnapshot.html b/content/doc/3.11/tools/nodetool/clearsnapshot.html
index 23f6a9b..a4b69c1 100644
--- a/content/doc/3.11/tools/nodetool/clearsnapshot.html
+++ b/content/doc/3.11/tools/nodetool/clearsnapshot.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">clearsnapshot</span> <span class="o">-</span> <span class="n">Remove</span> <span class="n">the</span> <span class="n">snapshot</span> <span class="k">with</span> <span class="n">the</span> <span class="n">given</span> <span class="n">name</span> <span class="kn">from</span>
         <span class="nn">the</span> <span class="n">given</span> <span class="n">keyspaces</span><span class="o">.</span> <span class="n">If</span> <span class="n">no</span> <span class="n">snapshotName</span> <span class="ow">is</span> <span class="n">specified</span> <span class="n">we</span> <span class="n">will</span> <span class="n">remove</span> <span class="nb">all</span>
         <span class="n">snapshots</span>
diff --git a/content/doc/3.11/tools/nodetool/clientstats.html b/content/doc/3.11/tools/nodetool/clientstats.html
index 10f73d3..85c1b0a 100644
--- a/content/doc/3.11/tools/nodetool/clientstats.html
+++ b/content/doc/3.11/tools/nodetool/clientstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">clientstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">information</span> <span class="n">about</span> <span class="n">connected</span> <span class="n">clients</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/compact.html b/content/doc/3.11/tools/nodetool/compact.html
index 78d33a1..9097bc9 100644
--- a/content/doc/3.11/tools/nodetool/compact.html
+++ b/content/doc/3.11/tools/nodetool/compact.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">compact</span> <span class="o">-</span> <span class="n">Force</span> <span class="n">a</span> <span class="p">(</span><span class="n">major</span><span class="p">)</span> <span class="n">compaction</span> <span class="n">on</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span> <span class="ow">or</span>
         <span class="n">user</span><span class="o">-</span><span class="n">defined</span> <span class="n">compaction</span> <span class="n">on</span> <span class="n">given</span> <span class="n">SSTables</span>
 
diff --git a/content/doc/3.11/tools/nodetool/compactionhistory.html b/content/doc/3.11/tools/nodetool/compactionhistory.html
index 3df3db2..118d579 100644
--- a/content/doc/3.11/tools/nodetool/compactionhistory.html
+++ b/content/doc/3.11/tools/nodetool/compactionhistory.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">compactionhistory</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">history</span> <span class="n">of</span> <span class="n">compaction</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/compactionstats.html b/content/doc/3.11/tools/nodetool/compactionstats.html
index 0e9b66e..9ca6c78 100644
--- a/content/doc/3.11/tools/nodetool/compactionstats.html
+++ b/content/doc/3.11/tools/nodetool/compactionstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">compactionstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistics</span> <span class="n">on</span> <span class="n">compactions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/decommission.html b/content/doc/3.11/tools/nodetool/decommission.html
index 603684f..cb3c438 100644
--- a/content/doc/3.11/tools/nodetool/decommission.html
+++ b/content/doc/3.11/tools/nodetool/decommission.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">decommission</span> <span class="o">-</span> <span class="n">Decommission</span> <span class="n">the</span> <span class="o">*</span><span class="n">node</span> <span class="n">I</span> <span class="n">am</span> <span class="n">connecting</span> <span class="n">to</span><span class="o">*</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/describecluster.html b/content/doc/3.11/tools/nodetool/describecluster.html
index 1e03da4..68a8d77 100644
--- a/content/doc/3.11/tools/nodetool/describecluster.html
+++ b/content/doc/3.11/tools/nodetool/describecluster.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">describecluster</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">name</span><span class="p">,</span> <span class="n">snitch</span><span class="p">,</span> <span class="n">partitioner</span> <span class="ow">and</span>
         <span class="n">schema</span> <span class="n">version</span> <span class="n">of</span> <span class="n">a</span> <span class="n">cluster</span>
 
diff --git a/content/doc/3.11/tools/nodetool/describering.html b/content/doc/3.11/tools/nodetool/describering.html
index 0f1c169..1e64c77 100644
--- a/content/doc/3.11/tools/nodetool/describering.html
+++ b/content/doc/3.11/tools/nodetool/describering.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">describering</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">token</span> <span class="n">ranges</span> <span class="n">info</span> <span class="n">of</span> <span class="n">a</span> <span class="n">given</span> <span class="n">keyspace</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disableauditlog.html b/content/doc/3.11/tools/nodetool/disableauditlog.html
index a9017cf..8f8298d 100644
--- a/content/doc/3.11/tools/nodetool/disableauditlog.html
+++ b/content/doc/3.11/tools/nodetool/disableauditlog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disableauditlog</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">the</span> <span class="n">audit</span> <span class="n">log</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disableautocompaction.html b/content/doc/3.11/tools/nodetool/disableautocompaction.html
index 3128cf6..b318f3a 100644
--- a/content/doc/3.11/tools/nodetool/disableautocompaction.html
+++ b/content/doc/3.11/tools/nodetool/disableautocompaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disableautocompaction</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">autocompaction</span> <span class="k">for</span> <span class="n">the</span> <span class="n">given</span>
         <span class="n">keyspace</span> <span class="ow">and</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/disablebackup.html b/content/doc/3.11/tools/nodetool/disablebackup.html
index ed46de8..ba9263b 100644
--- a/content/doc/3.11/tools/nodetool/disablebackup.html
+++ b/content/doc/3.11/tools/nodetool/disablebackup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablebackup</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">incremental</span> <span class="n">backup</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disablebinary.html b/content/doc/3.11/tools/nodetool/disablebinary.html
index a46ece5..8fc6268 100644
--- a/content/doc/3.11/tools/nodetool/disablebinary.html
+++ b/content/doc/3.11/tools/nodetool/disablebinary.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablebinary</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">native</span> <span class="n">transport</span> <span class="p">(</span><span class="n">binary</span> <span class="n">protocol</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disablefullquerylog.html b/content/doc/3.11/tools/nodetool/disablefullquerylog.html
index 501bb9a..cb72dca 100644
--- a/content/doc/3.11/tools/nodetool/disablefullquerylog.html
+++ b/content/doc/3.11/tools/nodetool/disablefullquerylog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablefullquerylog</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">the</span> <span class="n">full</span> <span class="n">query</span> <span class="n">log</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disablegossip.html b/content/doc/3.11/tools/nodetool/disablegossip.html
index e07bfdd..294dd16 100644
--- a/content/doc/3.11/tools/nodetool/disablegossip.html
+++ b/content/doc/3.11/tools/nodetool/disablegossip.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablegossip</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">gossip</span> <span class="p">(</span><span class="n">effectively</span> <span class="n">marking</span> <span class="n">the</span> <span class="n">node</span>
         <span class="n">down</span><span class="p">)</span>
 
diff --git a/content/doc/3.11/tools/nodetool/disablehandoff.html b/content/doc/3.11/tools/nodetool/disablehandoff.html
index 5821331..d2dbbea 100644
--- a/content/doc/3.11/tools/nodetool/disablehandoff.html
+++ b/content/doc/3.11/tools/nodetool/disablehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablehandoff</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">storing</span> <span class="n">hinted</span> <span class="n">handoffs</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disablehintsfordc.html b/content/doc/3.11/tools/nodetool/disablehintsfordc.html
index 8530f3b..d43c5ba 100644
--- a/content/doc/3.11/tools/nodetool/disablehintsfordc.html
+++ b/content/doc/3.11/tools/nodetool/disablehintsfordc.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablehintsfordc</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">hints</span> <span class="k">for</span> <span class="n">a</span> <span class="n">data</span> <span class="n">center</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/disableoldprotocolversions.html b/content/doc/3.11/tools/nodetool/disableoldprotocolversions.html
index 46cb692..e5cb564 100644
--- a/content/doc/3.11/tools/nodetool/disableoldprotocolversions.html
+++ b/content/doc/3.11/tools/nodetool/disableoldprotocolversions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disableoldprotocolversions</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">old</span> <span class="n">protocol</span> <span class="n">versions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/drain.html b/content/doc/3.11/tools/nodetool/drain.html
index 26cbadf..2f17531 100644
--- a/content/doc/3.11/tools/nodetool/drain.html
+++ b/content/doc/3.11/tools/nodetool/drain.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">drain</span> <span class="o">-</span> <span class="n">Drain</span> <span class="n">the</span> <span class="n">node</span> <span class="p">(</span><span class="n">stop</span> <span class="n">accepting</span> <span class="n">writes</span> <span class="ow">and</span> <span class="n">flush</span> <span class="nb">all</span>
         <span class="n">tables</span><span class="p">)</span>
 
diff --git a/content/doc/3.11/tools/nodetool/enableauditlog.html b/content/doc/3.11/tools/nodetool/enableauditlog.html
index 5a4876f..e76bb4b 100644
--- a/content/doc/3.11/tools/nodetool/enableauditlog.html
+++ b/content/doc/3.11/tools/nodetool/enableauditlog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enableauditlog</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">the</span> <span class="n">audit</span> <span class="n">log</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/enableautocompaction.html b/content/doc/3.11/tools/nodetool/enableautocompaction.html
index bd890b6..a23e5a5 100644
--- a/content/doc/3.11/tools/nodetool/enableautocompaction.html
+++ b/content/doc/3.11/tools/nodetool/enableautocompaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enableautocompaction</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">autocompaction</span> <span class="k">for</span> <span class="n">the</span> <span class="n">given</span>
         <span class="n">keyspace</span> <span class="ow">and</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/enablebackup.html b/content/doc/3.11/tools/nodetool/enablebackup.html
index ce9cab2..916c04c 100644
--- a/content/doc/3.11/tools/nodetool/enablebackup.html
+++ b/content/doc/3.11/tools/nodetool/enablebackup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablebackup</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">incremental</span> <span class="n">backup</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/enablebinary.html b/content/doc/3.11/tools/nodetool/enablebinary.html
index 2f55511..136bb70 100644
--- a/content/doc/3.11/tools/nodetool/enablebinary.html
+++ b/content/doc/3.11/tools/nodetool/enablebinary.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablebinary</span> <span class="o">-</span> <span class="n">Reenable</span> <span class="n">native</span> <span class="n">transport</span> <span class="p">(</span><span class="n">binary</span> <span class="n">protocol</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/enablefullquerylog.html b/content/doc/3.11/tools/nodetool/enablefullquerylog.html
index db11745..5b94b7d 100644
--- a/content/doc/3.11/tools/nodetool/enablefullquerylog.html
+++ b/content/doc/3.11/tools/nodetool/enablefullquerylog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablefullquerylog</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">full</span> <span class="n">query</span> <span class="n">logging</span><span class="p">,</span> <span class="n">defaults</span> <span class="k">for</span>
         <span class="n">the</span> <span class="n">options</span> <span class="n">are</span> <span class="n">configured</span> <span class="ow">in</span> <span class="n">cassandra</span><span class="o">.</span><span class="n">yaml</span>
 
diff --git a/content/doc/3.11/tools/nodetool/enablegossip.html b/content/doc/3.11/tools/nodetool/enablegossip.html
index 129c60a..c67db90 100644
--- a/content/doc/3.11/tools/nodetool/enablegossip.html
+++ b/content/doc/3.11/tools/nodetool/enablegossip.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablegossip</span> <span class="o">-</span> <span class="n">Reenable</span> <span class="n">gossip</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/enablehandoff.html b/content/doc/3.11/tools/nodetool/enablehandoff.html
index 2560519..f006f35 100644
--- a/content/doc/3.11/tools/nodetool/enablehandoff.html
+++ b/content/doc/3.11/tools/nodetool/enablehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablehandoff</span> <span class="o">-</span> <span class="n">Reenable</span> <span class="n">future</span> <span class="n">hints</span> <span class="n">storing</span> <span class="n">on</span> <span class="n">the</span> <span class="n">current</span>
         <span class="n">node</span>
 
diff --git a/content/doc/3.11/tools/nodetool/enablehintsfordc.html b/content/doc/3.11/tools/nodetool/enablehintsfordc.html
index 8922115..b22e2e6 100644
--- a/content/doc/3.11/tools/nodetool/enablehintsfordc.html
+++ b/content/doc/3.11/tools/nodetool/enablehintsfordc.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablehintsfordc</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">hints</span> <span class="k">for</span> <span class="n">a</span> <span class="n">data</span> <span class="n">center</span> <span class="n">that</span> <span class="n">was</span>
         <span class="n">previsouly</span> <span class="n">disabled</span>
 
diff --git a/content/doc/3.11/tools/nodetool/enableoldprotocolversions.html b/content/doc/3.11/tools/nodetool/enableoldprotocolversions.html
index c9d1199..3927e59 100644
--- a/content/doc/3.11/tools/nodetool/enableoldprotocolversions.html
+++ b/content/doc/3.11/tools/nodetool/enableoldprotocolversions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enableoldprotocolversions</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">old</span> <span class="n">protocol</span> <span class="n">versions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/failuredetector.html b/content/doc/3.11/tools/nodetool/failuredetector.html
index d975d86..c40f2ed 100644
--- a/content/doc/3.11/tools/nodetool/failuredetector.html
+++ b/content/doc/3.11/tools/nodetool/failuredetector.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">failuredetector</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">failure</span> <span class="n">detector</span> <span class="n">information</span> <span class="k">for</span>
         <span class="n">the</span> <span class="n">cluster</span>
 
diff --git a/content/doc/3.11/tools/nodetool/flush.html b/content/doc/3.11/tools/nodetool/flush.html
index 1bd236d..ea88c5b 100644
--- a/content/doc/3.11/tools/nodetool/flush.html
+++ b/content/doc/3.11/tools/nodetool/flush.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">flush</span> <span class="o">-</span> <span class="n">Flush</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/garbagecollect.html b/content/doc/3.11/tools/nodetool/garbagecollect.html
index 3aa8b4d..0589c8d 100644
--- a/content/doc/3.11/tools/nodetool/garbagecollect.html
+++ b/content/doc/3.11/tools/nodetool/garbagecollect.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">garbagecollect</span> <span class="o">-</span> <span class="n">Remove</span> <span class="n">deleted</span> <span class="n">data</span> <span class="kn">from</span> <span class="nn">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/gcstats.html b/content/doc/3.11/tools/nodetool/gcstats.html
index 859012d..fef78c1 100644
--- a/content/doc/3.11/tools/nodetool/gcstats.html
+++ b/content/doc/3.11/tools/nodetool/gcstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gcstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">GC</span> <span class="n">Statistics</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/getbatchlogreplaythrottle.html b/content/doc/3.11/tools/nodetool/getbatchlogreplaythrottle.html
index aee8a47..35cc219 100644
--- a/content/doc/3.11/tools/nodetool/getbatchlogreplaythrottle.html
+++ b/content/doc/3.11/tools/nodetool/getbatchlogreplaythrottle.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getbatchlogreplaythrottle</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">batchlog</span> <span class="n">replay</span> <span class="n">throttle</span> <span class="ow">in</span>
         <span class="n">KB</span><span class="o">/</span><span class="n">s</span><span class="o">.</span> <span class="n">This</span> <span class="ow">is</span> <span class="n">reduced</span> <span class="n">proportionally</span> <span class="n">to</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">nodes</span> <span class="ow">in</span> <span class="n">the</span>
         <span class="n">cluster</span><span class="o">.</span>
diff --git a/content/doc/3.11/tools/nodetool/getcompactionthreshold.html b/content/doc/3.11/tools/nodetool/getcompactionthreshold.html
index 44b0326..6710c2f 100644
--- a/content/doc/3.11/tools/nodetool/getcompactionthreshold.html
+++ b/content/doc/3.11/tools/nodetool/getcompactionthreshold.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getcompactionthreshold</span> <span class="o">-</span> <span class="n">Print</span> <span class="nb">min</span> <span class="ow">and</span> <span class="nb">max</span> <span class="n">compaction</span>
         <span class="n">thresholds</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/getcompactionthroughput.html b/content/doc/3.11/tools/nodetool/getcompactionthroughput.html
index 833692f..694b2b2 100644
--- a/content/doc/3.11/tools/nodetool/getcompactionthroughput.html
+++ b/content/doc/3.11/tools/nodetool/getcompactionthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getcompactionthroughput</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">MB</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">compaction</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/3.11/tools/nodetool/getconcurrentcompactors.html b/content/doc/3.11/tools/nodetool/getconcurrentcompactors.html
index 1739eaa..697312f 100644
--- a/content/doc/3.11/tools/nodetool/getconcurrentcompactors.html
+++ b/content/doc/3.11/tools/nodetool/getconcurrentcompactors.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getconcurrentcompactors</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span>
         <span class="n">compactors</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="o">.</span>
 
diff --git a/content/doc/3.11/tools/nodetool/getconcurrentviewbuilders.html b/content/doc/3.11/tools/nodetool/getconcurrentviewbuilders.html
index 73ac00b..b73e36a 100644
--- a/content/doc/3.11/tools/nodetool/getconcurrentviewbuilders.html
+++ b/content/doc/3.11/tools/nodetool/getconcurrentviewbuilders.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getconcurrentviewbuilders</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span> <span class="n">view</span>
         <span class="n">builders</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/3.11/tools/nodetool/getendpoints.html b/content/doc/3.11/tools/nodetool/getendpoints.html
index 7f45a7b..80db2a3 100644
--- a/content/doc/3.11/tools/nodetool/getendpoints.html
+++ b/content/doc/3.11/tools/nodetool/getendpoints.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getendpoints</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">end</span> <span class="n">points</span> <span class="n">that</span> <span class="n">owns</span> <span class="n">the</span> <span class="n">key</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/getinterdcstreamthroughput.html b/content/doc/3.11/tools/nodetool/getinterdcstreamthroughput.html
index 12692ab..4af1eee 100644
--- a/content/doc/3.11/tools/nodetool/getinterdcstreamthroughput.html
+++ b/content/doc/3.11/tools/nodetool/getinterdcstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getinterdcstreamthroughput</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">inter</span><span class="o">-</span><span class="n">datacenter</span> <span class="n">streaming</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/3.11/tools/nodetool/getlogginglevels.html b/content/doc/3.11/tools/nodetool/getlogginglevels.html
index 5df6f60..17ba4a5 100644
--- a/content/doc/3.11/tools/nodetool/getlogginglevels.html
+++ b/content/doc/3.11/tools/nodetool/getlogginglevels.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getlogginglevels</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">runtime</span> <span class="n">logging</span> <span class="n">levels</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/getmaxhintwindow.html b/content/doc/3.11/tools/nodetool/getmaxhintwindow.html
index 7b06b59..54c0db2 100644
--- a/content/doc/3.11/tools/nodetool/getmaxhintwindow.html
+++ b/content/doc/3.11/tools/nodetool/getmaxhintwindow.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getmaxhintwindow</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="nb">max</span> <span class="n">hint</span> <span class="n">window</span> <span class="ow">in</span> <span class="n">ms</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/getreplicas.html b/content/doc/3.11/tools/nodetool/getreplicas.html
index 3cce2e8..c48d37f 100644
--- a/content/doc/3.11/tools/nodetool/getreplicas.html
+++ b/content/doc/3.11/tools/nodetool/getreplicas.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getreplicas</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">replicas</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">key</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/getseeds.html b/content/doc/3.11/tools/nodetool/getseeds.html
index 3726eb6..a352935 100644
--- a/content/doc/3.11/tools/nodetool/getseeds.html
+++ b/content/doc/3.11/tools/nodetool/getseeds.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getseeds</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">currently</span> <span class="ow">in</span> <span class="n">use</span> <span class="n">seed</span> <span class="n">node</span> <span class="n">IP</span> <span class="nb">list</span> <span class="n">excluding</span>
         <span class="n">the</span> <span class="n">node</span> <span class="n">IP</span>
 
diff --git a/content/doc/3.11/tools/nodetool/getsstables.html b/content/doc/3.11/tools/nodetool/getsstables.html
index fc79feb..df3d9f4 100644
--- a/content/doc/3.11/tools/nodetool/getsstables.html
+++ b/content/doc/3.11/tools/nodetool/getsstables.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getsstables</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">sstable</span> <span class="n">filenames</span> <span class="n">that</span> <span class="n">own</span> <span class="n">the</span> <span class="n">key</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/getstreamthroughput.html b/content/doc/3.11/tools/nodetool/getstreamthroughput.html
index 42c6dc0..cf97db1 100644
--- a/content/doc/3.11/tools/nodetool/getstreamthroughput.html
+++ b/content/doc/3.11/tools/nodetool/getstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getstreamthroughput</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">streaming</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/3.11/tools/nodetool/gettimeout.html b/content/doc/3.11/tools/nodetool/gettimeout.html
index 76ac1ca..2276303 100644
--- a/content/doc/3.11/tools/nodetool/gettimeout.html
+++ b/content/doc/3.11/tools/nodetool/gettimeout.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gettimeout</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">timeout</span> <span class="n">of</span> <span class="n">the</span> <span class="n">given</span> <span class="nb">type</span> <span class="ow">in</span> <span class="n">ms</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/gettraceprobability.html b/content/doc/3.11/tools/nodetool/gettraceprobability.html
index 81f8189..3da9fab 100644
--- a/content/doc/3.11/tools/nodetool/gettraceprobability.html
+++ b/content/doc/3.11/tools/nodetool/gettraceprobability.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gettraceprobability</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">current</span> <span class="n">trace</span> <span class="n">probability</span> <span class="n">value</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/gossipinfo.html b/content/doc/3.11/tools/nodetool/gossipinfo.html
index cb0e49e..21d9d11 100644
--- a/content/doc/3.11/tools/nodetool/gossipinfo.html
+++ b/content/doc/3.11/tools/nodetool/gossipinfo.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gossipinfo</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">gossip</span> <span class="n">information</span> <span class="k">for</span> <span class="n">the</span> <span class="n">cluster</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/handoffwindow.html b/content/doc/3.11/tools/nodetool/handoffwindow.html
index 11bb3f9..9a1e8f4 100644
--- a/content/doc/3.11/tools/nodetool/handoffwindow.html
+++ b/content/doc/3.11/tools/nodetool/handoffwindow.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">handoffwindow</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">current</span> <span class="n">hinted</span> <span class="n">handoff</span> <span class="n">window</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/help.html b/content/doc/3.11/tools/nodetool/help.html
index 994a73d..4ac0787 100644
--- a/content/doc/3.11/tools/nodetool/help.html
+++ b/content/doc/3.11/tools/nodetool/help.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">help</span> <span class="o">-</span> <span class="n">Display</span> <span class="n">help</span> <span class="n">information</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/import.html b/content/doc/3.11/tools/nodetool/import.html
index 0fa6305..c713f90 100644
--- a/content/doc/3.11/tools/nodetool/import.html
+++ b/content/doc/3.11/tools/nodetool/import.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="kn">import</span> <span class="o">-</span> <span class="n">Import</span> <span class="n">new</span> <span class="n">SSTables</span> <span class="n">to</span> <span class="n">the</span> <span class="n">system</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/info.html b/content/doc/3.11/tools/nodetool/info.html
index 579b8e4..c00ff7e 100644
--- a/content/doc/3.11/tools/nodetool/info.html
+++ b/content/doc/3.11/tools/nodetool/info.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">info</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">node</span> <span class="n">information</span> <span class="p">(</span><span class="n">uptime</span><span class="p">,</span> <span class="n">load</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/invalidatecountercache.html b/content/doc/3.11/tools/nodetool/invalidatecountercache.html
index bbc0601..fbdaee9 100644
--- a/content/doc/3.11/tools/nodetool/invalidatecountercache.html
+++ b/content/doc/3.11/tools/nodetool/invalidatecountercache.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">invalidatecountercache</span> <span class="o">-</span> <span class="n">Invalidate</span> <span class="n">the</span> <span class="n">counter</span> <span class="n">cache</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/invalidatekeycache.html b/content/doc/3.11/tools/nodetool/invalidatekeycache.html
index bf21d10..3b51ed8 100644
--- a/content/doc/3.11/tools/nodetool/invalidatekeycache.html
+++ b/content/doc/3.11/tools/nodetool/invalidatekeycache.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">invalidatekeycache</span> <span class="o">-</span> <span class="n">Invalidate</span> <span class="n">the</span> <span class="n">key</span> <span class="n">cache</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/invalidaterowcache.html b/content/doc/3.11/tools/nodetool/invalidaterowcache.html
index bfeaa2a..51c83a0 100644
--- a/content/doc/3.11/tools/nodetool/invalidaterowcache.html
+++ b/content/doc/3.11/tools/nodetool/invalidaterowcache.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">invalidaterowcache</span> <span class="o">-</span> <span class="n">Invalidate</span> <span class="n">the</span> <span class="n">row</span> <span class="n">cache</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/join.html b/content/doc/3.11/tools/nodetool/join.html
index f9964a7..3b606fc 100644
--- a/content/doc/3.11/tools/nodetool/join.html
+++ b/content/doc/3.11/tools/nodetool/join.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">join</span> <span class="o">-</span> <span class="n">Join</span> <span class="n">the</span> <span class="n">ring</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/listsnapshots.html b/content/doc/3.11/tools/nodetool/listsnapshots.html
index 4e0a087..a56dbb1 100644
--- a/content/doc/3.11/tools/nodetool/listsnapshots.html
+++ b/content/doc/3.11/tools/nodetool/listsnapshots.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,9 +151,11 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">listsnapshots</span> <span class="o">-</span> <span class="n">Lists</span> <span class="nb">all</span> <span class="n">the</span> <span class="n">snapshots</span> <span class="n">along</span> <span class="k">with</span> <span class="n">the</span> <span class="n">size</span> <span class="n">on</span>
-        <span class="n">disk</span> <span class="ow">and</span> <span class="n">true</span> <span class="n">size</span><span class="o">.</span>
+        <span class="n">disk</span> <span class="ow">and</span> <span class="n">true</span> <span class="n">size</span><span class="o">.</span> <span class="kc">True</span> <span class="n">size</span> <span class="ow">is</span> <span class="n">the</span> <span class="n">total</span> <span class="n">size</span> <span class="n">of</span> <span class="nb">all</span> <span class="n">SSTables</span> <span class="n">which</span>
+        <span class="n">are</span> <span class="ow">not</span> <span class="n">backed</span> <span class="n">up</span> <span class="n">to</span> <span class="n">disk</span><span class="o">.</span> <span class="n">Size</span> <span class="n">on</span> <span class="n">disk</span> <span class="ow">is</span> <span class="n">total</span> <span class="n">size</span> <span class="n">of</span> <span class="n">the</span> <span class="n">snapshot</span> <span class="n">on</span>
+        <span class="n">disk</span><span class="o">.</span> <span class="n">Total</span> <span class="n">TrueDiskSpaceUsed</span> <span class="n">does</span> <span class="ow">not</span> <span class="n">make</span> <span class="nb">any</span> <span class="n">SSTable</span> <span class="n">deduplication</span><span class="o">.</span>
 
 <span class="n">SYNOPSIS</span>
         <span class="n">nodetool</span> <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span><span class="p">)]</span>
diff --git a/content/doc/3.11/tools/nodetool/move.html b/content/doc/3.11/tools/nodetool/move.html
index 3678b7f..f704fbf 100644
--- a/content/doc/3.11/tools/nodetool/move.html
+++ b/content/doc/3.11/tools/nodetool/move.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">move</span> <span class="o">-</span> <span class="n">Move</span> <span class="n">node</span> <span class="n">on</span> <span class="n">the</span> <span class="n">token</span> <span class="n">ring</span> <span class="n">to</span> <span class="n">a</span> <span class="n">new</span> <span class="n">token</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/netstats.html b/content/doc/3.11/tools/nodetool/netstats.html
index 13428e1..2619bf9 100644
--- a/content/doc/3.11/tools/nodetool/netstats.html
+++ b/content/doc/3.11/tools/nodetool/netstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">netstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">network</span> <span class="n">information</span> <span class="n">on</span> <span class="n">provided</span> <span class="n">host</span>
         <span class="p">(</span><span class="n">connecting</span> <span class="n">node</span> <span class="n">by</span> <span class="n">default</span><span class="p">)</span>
 
diff --git a/content/doc/3.11/tools/nodetool/nodetool.html b/content/doc/3.11/tools/nodetool/nodetool.html
index 93f5b6a..db296ff 100644
--- a/content/doc/3.11/tools/nodetool/nodetool.html
+++ b/content/doc/3.11/tools/nodetool/nodetool.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -152,16 +152,16 @@
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
 <dl class="docutils">
-<dt>usage: nodetool [(-pp | &#8211;print-port)]</dt>
-<dd>[(-pwf &lt;passwordFilePath&gt; | &#8211;password-file &lt;passwordFilePath&gt;)]
-[(-p &lt;port&gt; | &#8211;port &lt;port&gt;)] [(-u &lt;username&gt; | &#8211;username &lt;username&gt;)]
-[(-h &lt;host&gt; | &#8211;host &lt;host&gt;)] [(-pw &lt;password&gt; | &#8211;password &lt;password&gt;)]
-&lt;command&gt; [&lt;args&gt;]</dd>
+<dt>usage: nodetool [(-u &lt;username&gt; | –username &lt;username&gt;)]</dt>
+<dd>[(-h &lt;host&gt; | –host &lt;host&gt;)] [(-p &lt;port&gt; | –port &lt;port&gt;)]
+[(-pw &lt;password&gt; | –password &lt;password&gt;)]
+[(-pwf &lt;passwordFilePath&gt; | –password-file &lt;passwordFilePath&gt;)]
+[(-pp | –print-port)] &lt;command&gt; [&lt;args&gt;]</dd>
 </dl>
 <p>The most commonly used nodetool commands are:</p>
 <blockquote>
 <div><p><a class="reference internal" href="assassinate.html"><span class="doc">assassinate</span></a> -                   Forcefully remove a dead node without re-replicating any data.  Use as a last resort if you cannot removenode</p>
-<p><a class="reference internal" href="bootstrap.html"><span class="doc">bootstrap</span></a> -                     Monitor/manage node&#8217;s bootstrap process</p>
+<p><a class="reference internal" href="bootstrap.html"><span class="doc">bootstrap</span></a> -                     Monitor/manage node’s bootstrap process</p>
 <p><a class="reference internal" href="cleanup.html"><span class="doc">cleanup</span></a> -                       Triggers the immediate cleanup of keys no longer belonging to a node. By default, clean all keyspaces</p>
 <p><a class="reference internal" href="clearsnapshot.html"><span class="doc">clearsnapshot</span></a> -                 Remove the snapshot with the given name from the given keyspaces. If no snapshotName is specified we will remove all snapshots</p>
 <p><a class="reference internal" href="clientstats.html"><span class="doc">clientstats</span></a> -                   Print information about connected clients</p>
@@ -197,6 +197,7 @@
 <p><a class="reference internal" href="getbatchlogreplaythrottle.html"><span class="doc">getbatchlogreplaythrottle</span></a> -     Print batchlog replay throttle in KB/s. This is reduced proportionally to the number of nodes in the cluster.</p>
 <p><a class="reference internal" href="getcompactionthreshold.html"><span class="doc">getcompactionthreshold</span></a> -        Print min and max compaction thresholds for a given table</p>
 <p><a class="reference internal" href="getcompactionthroughput.html"><span class="doc">getcompactionthroughput</span></a> -       Print the MB/s throughput cap for compaction in the system</p>
+<p><a class="reference internal" href="getconcurrency.html"><span class="doc">getconcurrency</span></a> -                Get maximum concurrency for processing stages</p>
 <p><a class="reference internal" href="getconcurrentcompactors.html"><span class="doc">getconcurrentcompactors</span></a> -       Get the number of concurrent compactors in the system.</p>
 <p><a class="reference internal" href="getconcurrentviewbuilders.html"><span class="doc">getconcurrentviewbuilders</span></a> -     Get the number of concurrent view builders in the system</p>
 <p><a class="reference internal" href="getendpoints.html"><span class="doc">getendpoints</span></a> -                  Print the end points that owns the key</p>
@@ -213,12 +214,12 @@
 <p><a class="reference internal" href="handoffwindow.html"><span class="doc">handoffwindow</span></a> -                 Print current hinted handoff window</p>
 <p><a class="reference internal" href="help.html"><span class="doc">help</span></a> -                          Display help information</p>
 <p><a class="reference internal" href="import.html"><span class="doc">import</span></a> -                        Import new SSTables to the system</p>
-<p><a class="reference internal" href="info.html"><span class="doc">info</span></a> -                          Print node information (uptime, load, ...)</p>
+<p><a class="reference internal" href="info.html"><span class="doc">info</span></a> -                          Print node information (uptime, load, …)</p>
 <p><a class="reference internal" href="invalidatecountercache.html"><span class="doc">invalidatecountercache</span></a> -        Invalidate the counter cache</p>
 <p><a class="reference internal" href="invalidatekeycache.html"><span class="doc">invalidatekeycache</span></a> -            Invalidate the key cache</p>
 <p><a class="reference internal" href="invalidaterowcache.html"><span class="doc">invalidaterowcache</span></a> -            Invalidate the row cache</p>
 <p><a class="reference internal" href="join.html"><span class="doc">join</span></a> -                          Join the ring</p>
-<p><a class="reference internal" href="listsnapshots.html"><span class="doc">listsnapshots</span></a> -                 Lists all the snapshots along with the size on disk and true size.</p>
+<p><a class="reference internal" href="listsnapshots.html"><span class="doc">listsnapshots</span></a> -                 Lists all the snapshots along with the size on disk and true size. True size is the total size of all SSTables which are not backed up to disk. Size on disk is total size of the snapshot on disk. Total TrueDiskSpaceUsed does not make any SSTable deduplication.</p>
 <p><a class="reference internal" href="move.html"><span class="doc">move</span></a> -                          Move node on the token ring to a new token</p>
 <p><a class="reference internal" href="netstats.html"><span class="doc">netstats</span></a> -                      Print network information on provided host (connecting node by default)</p>
 <p><a class="reference internal" href="pausehandoff.html"><span class="doc">pausehandoff</span></a> -                  Pause hints delivery process</p>
@@ -237,10 +238,10 @@
 <p><a class="reference internal" href="removenode.html"><span class="doc">removenode</span></a> -                    Show status of current node removal, force completion of pending removal or remove provided ID</p>
 <p><a class="reference internal" href="repair.html"><span class="doc">repair</span></a> -                        Repair one or more tables</p>
 <p><a class="reference internal" href="repair_admin.html"><span class="doc">repair_admin</span></a> -
-<span class="xref doc">list</span> -  and fail incremental repair sessions</p>
+<span class="xref std std-doc">list</span> -  and fail incremental repair sessions</p>
 <p><a class="reference internal" href="replaybatchlog.html"><span class="doc">replaybatchlog</span></a> -                Kick off batchlog replay and wait for finish</p>
 <p><a class="reference internal" href="resetfullquerylog.html"><span class="doc">resetfullquerylog</span></a> -             Stop the full query log and clean files in the configured full query log directory from cassandra.yaml as well as JMX</p>
-<p><a class="reference internal" href="resetlocalschema.html"><span class="doc">resetlocalschema</span></a> -              Reset node&#8217;s local schema and resync</p>
+<p><a class="reference internal" href="resetlocalschema.html"><span class="doc">resetlocalschema</span></a> -              Reset node’s local schema and resync</p>
 <p><a class="reference internal" href="resumehandoff.html"><span class="doc">resumehandoff</span></a> -                 Resume hints delivery process</p>
 <p><a class="reference internal" href="ring.html"><span class="doc">ring</span></a> -                          Print information about the token ring</p>
 <p><a class="reference internal" href="scrub.html"><span class="doc">scrub</span></a> -                         Scrub (rebuild sstables for) one or more tables</p>
@@ -249,6 +250,7 @@
 <p><a class="reference internal" href="setcachekeystosave.html"><span class="doc">setcachekeystosave</span></a> -            Set number of keys saved by each cache for faster post-restart warmup. 0 to disable</p>
 <p><a class="reference internal" href="setcompactionthreshold.html"><span class="doc">setcompactionthreshold</span></a> -        Set min and max compaction thresholds for a given table</p>
 <p><a class="reference internal" href="setcompactionthroughput.html"><span class="doc">setcompactionthroughput</span></a> -       Set the MB/s throughput cap for compaction in the system, or 0 to disable throttling</p>
+<p><a class="reference internal" href="setconcurrency.html"><span class="doc">setconcurrency</span></a> -                Set maximum concurrency for processing stage</p>
 <p><a class="reference internal" href="setconcurrentcompactors.html"><span class="doc">setconcurrentcompactors</span></a> -       Set number of concurrent compactors in the system.</p>
 <p><a class="reference internal" href="setconcurrentviewbuilders.html"><span class="doc">setconcurrentviewbuilders</span></a> -     Set the number of concurrent view builders in the system</p>
 <p><a class="reference internal" href="sethintedhandoffthrottlekb.html"><span class="doc">sethintedhandoffthrottlekb</span></a> -    Set hinted handoff throttle in kb per second, per delivery thread.</p>
@@ -258,8 +260,9 @@
 <p><a class="reference internal" href="setstreamthroughput.html"><span class="doc">setstreamthroughput</span></a> -           Set the Mb/s throughput cap for streaming in the system, or 0 to disable throttling</p>
 <p><a class="reference internal" href="settimeout.html"><span class="doc">settimeout</span></a> -                    Set the specified timeout in ms, or 0 to disable timeout</p>
 <p><a class="reference internal" href="settraceprobability.html"><span class="doc">settraceprobability</span></a> -           Sets the probability for tracing any given request to value. 0 disables, 1 enables for all requests, 0 is the default</p>
+<p><a class="reference internal" href="sjk.html"><span class="doc">sjk</span></a> -                           Run commands of ‘Swiss Java Knife’. Run ‘nodetool sjk –help’ for more information.</p>
 <p><a class="reference internal" href="snapshot.html"><span class="doc">snapshot</span></a> -                      Take a snapshot of specified keyspaces or a snapshot of the specified table</p>
-<p><a class="reference internal" href="status.html"><span class="doc">status</span></a> -                        Print cluster information (state, load, IDs, ...)</p>
+<p><a class="reference internal" href="status.html"><span class="doc">status</span></a> -                        Print cluster information (state, load, IDs, …)</p>
 <p><a class="reference internal" href="statusautocompaction.html"><span class="doc">statusautocompaction</span></a> -
 <a class="reference internal" href="status.html"><span class="doc">status</span></a> -  of autocompaction of the given keyspace and table</p>
 <p><a class="reference internal" href="statusbackup.html"><span class="doc">statusbackup</span></a> -                  Status of incremental backup</p>
@@ -278,7 +281,7 @@
 <p><a class="reference internal" href="version.html"><span class="doc">version</span></a> -                       Print cassandra version</p>
 <p><a class="reference internal" href="viewbuildstatus.html"><span class="doc">viewbuildstatus</span></a> -               Show progress of a materialized view build</p>
 </div></blockquote>
-<p>See &#8216;nodetool help &lt;command&gt;&#8217; for more information on a specific command.</p>
+<p>See ‘nodetool help &lt;command&gt;’ for more information on a specific command.</p>
 </div>
 
 
diff --git a/content/doc/3.11/tools/nodetool/pausehandoff.html b/content/doc/3.11/tools/nodetool/pausehandoff.html
index a686801..92dde8b 100644
--- a/content/doc/3.11/tools/nodetool/pausehandoff.html
+++ b/content/doc/3.11/tools/nodetool/pausehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">pausehandoff</span> <span class="o">-</span> <span class="n">Pause</span> <span class="n">hints</span> <span class="n">delivery</span> <span class="n">process</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/profileload.html b/content/doc/3.11/tools/nodetool/profileload.html
index 3f9ba47..82afbb3 100644
--- a/content/doc/3.11/tools/nodetool/profileload.html
+++ b/content/doc/3.11/tools/nodetool/profileload.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">profileload</span> <span class="o">-</span> <span class="n">Low</span> <span class="n">footprint</span> <span class="n">profiling</span> <span class="n">of</span> <span class="n">activity</span> <span class="k">for</span> <span class="n">a</span> <span class="n">period</span>
         <span class="n">of</span> <span class="n">time</span>
 
diff --git a/content/doc/3.11/tools/nodetool/proxyhistograms.html b/content/doc/3.11/tools/nodetool/proxyhistograms.html
index 94a159f..6869c96 100644
--- a/content/doc/3.11/tools/nodetool/proxyhistograms.html
+++ b/content/doc/3.11/tools/nodetool/proxyhistograms.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">proxyhistograms</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistic</span> <span class="n">histograms</span> <span class="k">for</span> <span class="n">network</span>
         <span class="n">operations</span>
 
diff --git a/content/doc/3.11/tools/nodetool/rangekeysample.html b/content/doc/3.11/tools/nodetool/rangekeysample.html
index 64ab2db..a240625 100644
--- a/content/doc/3.11/tools/nodetool/rangekeysample.html
+++ b/content/doc/3.11/tools/nodetool/rangekeysample.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">rangekeysample</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">sampled</span> <span class="n">keys</span> <span class="n">held</span> <span class="n">across</span> <span class="nb">all</span>
         <span class="n">keyspaces</span>
 
diff --git a/content/doc/3.11/tools/nodetool/rebuild.html b/content/doc/3.11/tools/nodetool/rebuild.html
index 9722b99..6d1b7b3 100644
--- a/content/doc/3.11/tools/nodetool/rebuild.html
+++ b/content/doc/3.11/tools/nodetool/rebuild.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">rebuild</span> <span class="o">-</span> <span class="n">Rebuild</span> <span class="n">data</span> <span class="n">by</span> <span class="n">streaming</span> <span class="kn">from</span> <span class="nn">other</span> <span class="n">nodes</span> <span class="p">(</span><span class="n">similarly</span>
         <span class="n">to</span> <span class="n">bootstrap</span><span class="p">)</span>
 
diff --git a/content/doc/3.11/tools/nodetool/rebuild_index.html b/content/doc/3.11/tools/nodetool/rebuild_index.html
index 2604e77..c6e5bce 100644
--- a/content/doc/3.11/tools/nodetool/rebuild_index.html
+++ b/content/doc/3.11/tools/nodetool/rebuild_index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">rebuild_index</span> <span class="o">-</span> <span class="n">A</span> <span class="n">full</span> <span class="n">rebuild</span> <span class="n">of</span> <span class="n">native</span> <span class="n">secondary</span> <span class="n">indexes</span> <span class="k">for</span>
         <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/refresh.html b/content/doc/3.11/tools/nodetool/refresh.html
index c9005a0..d0d7474 100644
--- a/content/doc/3.11/tools/nodetool/refresh.html
+++ b/content/doc/3.11/tools/nodetool/refresh.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">refresh</span> <span class="o">-</span> <span class="n">Load</span> <span class="n">newly</span> <span class="n">placed</span> <span class="n">SSTables</span> <span class="n">to</span> <span class="n">the</span> <span class="n">system</span> <span class="n">without</span>
         <span class="n">restart</span>
 
diff --git a/content/doc/3.11/tools/nodetool/refreshsizeestimates.html b/content/doc/3.11/tools/nodetool/refreshsizeestimates.html
index 0074bf2..5c7e33f 100644
--- a/content/doc/3.11/tools/nodetool/refreshsizeestimates.html
+++ b/content/doc/3.11/tools/nodetool/refreshsizeestimates.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">refreshsizeestimates</span> <span class="o">-</span> <span class="n">Refresh</span> <span class="n">system</span><span class="o">.</span><span class="n">size_estimates</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/reloadlocalschema.html b/content/doc/3.11/tools/nodetool/reloadlocalschema.html
index 3f9e6e8..5db8bb5 100644
--- a/content/doc/3.11/tools/nodetool/reloadlocalschema.html
+++ b/content/doc/3.11/tools/nodetool/reloadlocalschema.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadlocalschema</span> <span class="o">-</span> <span class="n">Reload</span> <span class="n">local</span> <span class="n">node</span> <span class="n">schema</span> <span class="kn">from</span> <span class="nn">system</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/reloadseeds.html b/content/doc/3.11/tools/nodetool/reloadseeds.html
index 75ac3b7..694f9f9 100644
--- a/content/doc/3.11/tools/nodetool/reloadseeds.html
+++ b/content/doc/3.11/tools/nodetool/reloadseeds.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadseeds</span> <span class="o">-</span> <span class="n">Reload</span> <span class="n">the</span> <span class="n">seed</span> <span class="n">node</span> <span class="nb">list</span> <span class="kn">from</span> <span class="nn">the</span> <span class="n">seed</span> <span class="n">node</span>
         <span class="n">provider</span>
 
diff --git a/content/doc/3.11/tools/nodetool/reloadssl.html b/content/doc/3.11/tools/nodetool/reloadssl.html
index faea88b..4b08466 100644
--- a/content/doc/3.11/tools/nodetool/reloadssl.html
+++ b/content/doc/3.11/tools/nodetool/reloadssl.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadssl</span> <span class="o">-</span> <span class="n">Signals</span> <span class="n">Cassandra</span> <span class="n">to</span> <span class="n">reload</span> <span class="n">SSL</span> <span class="n">certificates</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/reloadtriggers.html b/content/doc/3.11/tools/nodetool/reloadtriggers.html
index f36048f..62240ec 100644
--- a/content/doc/3.11/tools/nodetool/reloadtriggers.html
+++ b/content/doc/3.11/tools/nodetool/reloadtriggers.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadtriggers</span> <span class="o">-</span> <span class="n">Reload</span> <span class="n">trigger</span> <span class="n">classes</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/relocatesstables.html b/content/doc/3.11/tools/nodetool/relocatesstables.html
index f9abc60..c9a30c1 100644
--- a/content/doc/3.11/tools/nodetool/relocatesstables.html
+++ b/content/doc/3.11/tools/nodetool/relocatesstables.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">relocatesstables</span> <span class="o">-</span> <span class="n">Relocates</span> <span class="n">sstables</span> <span class="n">to</span> <span class="n">the</span> <span class="n">correct</span> <span class="n">disk</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/removenode.html b/content/doc/3.11/tools/nodetool/removenode.html
index 06bef41..07b70de 100644
--- a/content/doc/3.11/tools/nodetool/removenode.html
+++ b/content/doc/3.11/tools/nodetool/removenode.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">removenode</span> <span class="o">-</span> <span class="n">Show</span> <span class="n">status</span> <span class="n">of</span> <span class="n">current</span> <span class="n">node</span> <span class="n">removal</span><span class="p">,</span> <span class="n">force</span>
         <span class="n">completion</span> <span class="n">of</span> <span class="n">pending</span> <span class="n">removal</span> <span class="ow">or</span> <span class="n">remove</span> <span class="n">provided</span> <span class="n">ID</span>
 
diff --git a/content/doc/3.11/tools/nodetool/repair.html b/content/doc/3.11/tools/nodetool/repair.html
index 2f7d38d..8a6aadb 100644
--- a/content/doc/3.11/tools/nodetool/repair.html
+++ b/content/doc/3.11/tools/nodetool/repair.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">repair</span> <span class="o">-</span> <span class="n">Repair</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
@@ -178,7 +178,7 @@
             <span class="n">Use</span> <span class="o">-</span><span class="n">dcpar</span> <span class="n">to</span> <span class="n">repair</span> <span class="n">data</span> <span class="n">centers</span> <span class="ow">in</span> <span class="n">parallel</span><span class="o">.</span>
 
         <span class="o">-</span><span class="n">et</span> <span class="o">&lt;</span><span class="n">end_token</span><span class="o">&gt;</span><span class="p">,</span> <span class="o">--</span><span class="n">end</span><span class="o">-</span><span class="n">token</span> <span class="o">&lt;</span><span class="n">end_token</span><span class="o">&gt;</span>
-            <span class="n">Use</span> <span class="o">-</span><span class="n">et</span> <span class="n">to</span> <span class="n">specify</span> <span class="n">a</span> <span class="n">token</span> <span class="n">at</span> <span class="n">which</span> <span class="n">repair</span> <span class="nb">range</span> <span class="n">ends</span>
+            <span class="n">Use</span> <span class="o">-</span><span class="n">et</span> <span class="n">to</span> <span class="n">specify</span> <span class="n">a</span> <span class="n">token</span> <span class="n">at</span> <span class="n">which</span> <span class="n">repair</span> <span class="nb">range</span> <span class="n">ends</span> <span class="p">(</span><span class="n">inclusive</span><span class="p">)</span>
 
         <span class="o">-</span><span class="n">force</span><span class="p">,</span> <span class="o">--</span><span class="n">force</span>
             <span class="n">Use</span> <span class="o">-</span><span class="n">force</span> <span class="n">to</span> <span class="nb">filter</span> <span class="n">out</span> <span class="n">down</span> <span class="n">endpoints</span>
@@ -232,6 +232,7 @@
 
         <span class="o">-</span><span class="n">st</span> <span class="o">&lt;</span><span class="n">start_token</span><span class="o">&gt;</span><span class="p">,</span> <span class="o">--</span><span class="n">start</span><span class="o">-</span><span class="n">token</span> <span class="o">&lt;</span><span class="n">start_token</span><span class="o">&gt;</span>
             <span class="n">Use</span> <span class="o">-</span><span class="n">st</span> <span class="n">to</span> <span class="n">specify</span> <span class="n">a</span> <span class="n">token</span> <span class="n">at</span> <span class="n">which</span> <span class="n">the</span> <span class="n">repair</span> <span class="nb">range</span> <span class="n">starts</span>
+            <span class="p">(</span><span class="n">exclusive</span><span class="p">)</span>
 
         <span class="o">-</span><span class="n">tr</span><span class="p">,</span> <span class="o">--</span><span class="n">trace</span>
             <span class="n">Use</span> <span class="o">-</span><span class="n">tr</span> <span class="n">to</span> <span class="n">trace</span> <span class="n">the</span> <span class="n">repair</span><span class="o">.</span> <span class="n">Traces</span> <span class="n">are</span> <span class="n">logged</span> <span class="n">to</span>
diff --git a/content/doc/3.11/tools/nodetool/repair_admin.html b/content/doc/3.11/tools/nodetool/repair_admin.html
index 64e7674..6eafdaf 100644
--- a/content/doc/3.11/tools/nodetool/repair_admin.html
+++ b/content/doc/3.11/tools/nodetool/repair_admin.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">repair_admin</span> <span class="o">-</span> <span class="nb">list</span> <span class="ow">and</span> <span class="n">fail</span> <span class="n">incremental</span> <span class="n">repair</span> <span class="n">sessions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/replaybatchlog.html b/content/doc/3.11/tools/nodetool/replaybatchlog.html
index e87cbeb..3bce857 100644
--- a/content/doc/3.11/tools/nodetool/replaybatchlog.html
+++ b/content/doc/3.11/tools/nodetool/replaybatchlog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">replaybatchlog</span> <span class="o">-</span> <span class="n">Kick</span> <span class="n">off</span> <span class="n">batchlog</span> <span class="n">replay</span> <span class="ow">and</span> <span class="n">wait</span> <span class="k">for</span> <span class="n">finish</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/resetfullquerylog.html b/content/doc/3.11/tools/nodetool/resetfullquerylog.html
index d04d118..d2183c8 100644
--- a/content/doc/3.11/tools/nodetool/resetfullquerylog.html
+++ b/content/doc/3.11/tools/nodetool/resetfullquerylog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">resetfullquerylog</span> <span class="o">-</span> <span class="n">Stop</span> <span class="n">the</span> <span class="n">full</span> <span class="n">query</span> <span class="n">log</span> <span class="ow">and</span> <span class="n">clean</span> <span class="n">files</span> <span class="ow">in</span>
         <span class="n">the</span> <span class="n">configured</span> <span class="n">full</span> <span class="n">query</span> <span class="n">log</span> <span class="n">directory</span> <span class="kn">from</span> <span class="nn">cassandra.yaml</span> <span class="k">as</span> <span class="n">well</span> <span class="k">as</span>
         <span class="n">JMX</span>
diff --git a/content/doc/3.11/tools/nodetool/resetlocalschema.html b/content/doc/3.11/tools/nodetool/resetlocalschema.html
index 8687cf2..a2ef98c 100644
--- a/content/doc/3.11/tools/nodetool/resetlocalschema.html
+++ b/content/doc/3.11/tools/nodetool/resetlocalschema.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">resetlocalschema</span> <span class="o">-</span> <span class="n">Reset</span> <span class="n">node</span><span class="s1">&#39;s local schema and resync</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/resumehandoff.html b/content/doc/3.11/tools/nodetool/resumehandoff.html
index 8ac62ad..69b3774 100644
--- a/content/doc/3.11/tools/nodetool/resumehandoff.html
+++ b/content/doc/3.11/tools/nodetool/resumehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">resumehandoff</span> <span class="o">-</span> <span class="n">Resume</span> <span class="n">hints</span> <span class="n">delivery</span> <span class="n">process</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/ring.html b/content/doc/3.11/tools/nodetool/ring.html
index 6ffc3ff..d3fc5d8 100644
--- a/content/doc/3.11/tools/nodetool/ring.html
+++ b/content/doc/3.11/tools/nodetool/ring.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">ring</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">information</span> <span class="n">about</span> <span class="n">the</span> <span class="n">token</span> <span class="n">ring</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/scrub.html b/content/doc/3.11/tools/nodetool/scrub.html
index 18c9099..bf90113 100644
--- a/content/doc/3.11/tools/nodetool/scrub.html
+++ b/content/doc/3.11/tools/nodetool/scrub.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">scrub</span> <span class="o">-</span> <span class="n">Scrub</span> <span class="p">(</span><span class="n">rebuild</span> <span class="n">sstables</span> <span class="k">for</span><span class="p">)</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/setbatchlogreplaythrottle.html b/content/doc/3.11/tools/nodetool/setbatchlogreplaythrottle.html
index 5e67104..32944f1 100644
--- a/content/doc/3.11/tools/nodetool/setbatchlogreplaythrottle.html
+++ b/content/doc/3.11/tools/nodetool/setbatchlogreplaythrottle.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setbatchlogreplaythrottle</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">batchlog</span> <span class="n">replay</span> <span class="n">throttle</span> <span class="ow">in</span> <span class="n">KB</span>
         <span class="n">per</span> <span class="n">second</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span><span class="o">.</span> <span class="n">This</span> <span class="n">will</span> <span class="n">be</span> <span class="n">reduced</span>
         <span class="n">proportionally</span> <span class="n">to</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">nodes</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">cluster</span><span class="o">.</span>
diff --git a/content/doc/3.11/tools/nodetool/setcachecapacity.html b/content/doc/3.11/tools/nodetool/setcachecapacity.html
index 166bd0e..7c29b08 100644
--- a/content/doc/3.11/tools/nodetool/setcachecapacity.html
+++ b/content/doc/3.11/tools/nodetool/setcachecapacity.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcachecapacity</span> <span class="o">-</span> <span class="n">Set</span> <span class="k">global</span> <span class="n">key</span><span class="p">,</span> <span class="n">row</span><span class="p">,</span> <span class="ow">and</span> <span class="n">counter</span> <span class="n">cache</span>
         <span class="n">capacities</span> <span class="p">(</span><span class="ow">in</span> <span class="n">MB</span> <span class="n">units</span><span class="p">)</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setcachekeystosave.html b/content/doc/3.11/tools/nodetool/setcachekeystosave.html
index ab47a32..36ab397 100644
--- a/content/doc/3.11/tools/nodetool/setcachekeystosave.html
+++ b/content/doc/3.11/tools/nodetool/setcachekeystosave.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcachekeystosave</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">number</span> <span class="n">of</span> <span class="n">keys</span> <span class="n">saved</span> <span class="n">by</span> <span class="n">each</span> <span class="n">cache</span> <span class="k">for</span>
         <span class="n">faster</span> <span class="n">post</span><span class="o">-</span><span class="n">restart</span> <span class="n">warmup</span><span class="o">.</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setcompactionthreshold.html b/content/doc/3.11/tools/nodetool/setcompactionthreshold.html
index b634e92..3bb6a94 100644
--- a/content/doc/3.11/tools/nodetool/setcompactionthreshold.html
+++ b/content/doc/3.11/tools/nodetool/setcompactionthreshold.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcompactionthreshold</span> <span class="o">-</span> <span class="n">Set</span> <span class="nb">min</span> <span class="ow">and</span> <span class="nb">max</span> <span class="n">compaction</span> <span class="n">thresholds</span>
         <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setcompactionthroughput.html b/content/doc/3.11/tools/nodetool/setcompactionthroughput.html
index 04fddf9..80eaf8b 100644
--- a/content/doc/3.11/tools/nodetool/setcompactionthroughput.html
+++ b/content/doc/3.11/tools/nodetool/setcompactionthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcompactionthroughput</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">MB</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">compaction</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setconcurrentcompactors.html b/content/doc/3.11/tools/nodetool/setconcurrentcompactors.html
index 028cfe8..bcce6fa 100644
--- a/content/doc/3.11/tools/nodetool/setconcurrentcompactors.html
+++ b/content/doc/3.11/tools/nodetool/setconcurrentcompactors.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setconcurrentcompactors</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span> <span class="n">compactors</span>
         <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="o">.</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setconcurrentviewbuilders.html b/content/doc/3.11/tools/nodetool/setconcurrentviewbuilders.html
index ef5e147..681b6ff 100644
--- a/content/doc/3.11/tools/nodetool/setconcurrentviewbuilders.html
+++ b/content/doc/3.11/tools/nodetool/setconcurrentviewbuilders.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setconcurrentviewbuilders</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span> <span class="n">view</span>
         <span class="n">builders</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/3.11/tools/nodetool/sethintedhandoffthrottlekb.html b/content/doc/3.11/tools/nodetool/sethintedhandoffthrottlekb.html
index 991d11f..117c3bc 100644
--- a/content/doc/3.11/tools/nodetool/sethintedhandoffthrottlekb.html
+++ b/content/doc/3.11/tools/nodetool/sethintedhandoffthrottlekb.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">sethintedhandoffthrottlekb</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">hinted</span> <span class="n">handoff</span> <span class="n">throttle</span> <span class="ow">in</span> <span class="n">kb</span>
         <span class="n">per</span> <span class="n">second</span><span class="p">,</span> <span class="n">per</span> <span class="n">delivery</span> <span class="n">thread</span><span class="o">.</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setinterdcstreamthroughput.html b/content/doc/3.11/tools/nodetool/setinterdcstreamthroughput.html
index 2a39042..7c63e17 100644
--- a/content/doc/3.11/tools/nodetool/setinterdcstreamthroughput.html
+++ b/content/doc/3.11/tools/nodetool/setinterdcstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setinterdcstreamthroughput</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">inter</span><span class="o">-</span><span class="n">datacenter</span> <span class="n">streaming</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span>
 
diff --git a/content/doc/3.11/tools/nodetool/setlogginglevel.html b/content/doc/3.11/tools/nodetool/setlogginglevel.html
index 1993cc2..50c4a45 100644
--- a/content/doc/3.11/tools/nodetool/setlogginglevel.html
+++ b/content/doc/3.11/tools/nodetool/setlogginglevel.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setlogginglevel</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">log</span> <span class="n">level</span> <span class="n">threshold</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span>
         <span class="n">component</span> <span class="ow">or</span> <span class="n">class</span><span class="o">.</span> <span class="n">Will</span> <span class="n">reset</span> <span class="n">to</span> <span class="n">the</span> <span class="n">initial</span> <span class="n">configuration</span> <span class="k">if</span> <span class="n">called</span>
         <span class="k">with</span> <span class="n">no</span> <span class="n">parameters</span><span class="o">.</span>
diff --git a/content/doc/3.11/tools/nodetool/setmaxhintwindow.html b/content/doc/3.11/tools/nodetool/setmaxhintwindow.html
index ed3ccce..25a9d8a 100644
--- a/content/doc/3.11/tools/nodetool/setmaxhintwindow.html
+++ b/content/doc/3.11/tools/nodetool/setmaxhintwindow.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setmaxhintwindow</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">specified</span> <span class="nb">max</span> <span class="n">hint</span> <span class="n">window</span> <span class="ow">in</span> <span class="n">ms</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/setstreamthroughput.html b/content/doc/3.11/tools/nodetool/setstreamthroughput.html
index 75ebad0..16558b1 100644
--- a/content/doc/3.11/tools/nodetool/setstreamthroughput.html
+++ b/content/doc/3.11/tools/nodetool/setstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setstreamthroughput</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span> <span class="n">streaming</span>
         <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span>
 
diff --git a/content/doc/3.11/tools/nodetool/settimeout.html b/content/doc/3.11/tools/nodetool/settimeout.html
index 6c2ee2c..d4097b2 100644
--- a/content/doc/3.11/tools/nodetool/settimeout.html
+++ b/content/doc/3.11/tools/nodetool/settimeout.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">settimeout</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">specified</span> <span class="n">timeout</span> <span class="ow">in</span> <span class="n">ms</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span>
         <span class="n">timeout</span>
 
diff --git a/content/doc/3.11/tools/nodetool/settraceprobability.html b/content/doc/3.11/tools/nodetool/settraceprobability.html
index 4667d7f..73a8d2c 100644
--- a/content/doc/3.11/tools/nodetool/settraceprobability.html
+++ b/content/doc/3.11/tools/nodetool/settraceprobability.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">settraceprobability</span> <span class="o">-</span> <span class="n">Sets</span> <span class="n">the</span> <span class="n">probability</span> <span class="k">for</span> <span class="n">tracing</span> <span class="nb">any</span>
         <span class="n">given</span> <span class="n">request</span> <span class="n">to</span> <span class="n">value</span><span class="o">.</span> <span class="mi">0</span> <span class="n">disables</span><span class="p">,</span> <span class="mi">1</span> <span class="n">enables</span> <span class="k">for</span> <span class="nb">all</span> <span class="n">requests</span><span class="p">,</span> <span class="mi">0</span> <span class="ow">is</span> <span class="n">the</span>
         <span class="n">default</span>
diff --git a/content/doc/3.11/tools/nodetool/snapshot.html b/content/doc/3.11/tools/nodetool/snapshot.html
index 93bf78a..d3a614f 100644
--- a/content/doc/3.11/tools/nodetool/snapshot.html
+++ b/content/doc/3.11/tools/nodetool/snapshot.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">snapshot</span> <span class="o">-</span> <span class="n">Take</span> <span class="n">a</span> <span class="n">snapshot</span> <span class="n">of</span> <span class="n">specified</span> <span class="n">keyspaces</span> <span class="ow">or</span> <span class="n">a</span> <span class="n">snapshot</span>
         <span class="n">of</span> <span class="n">the</span> <span class="n">specified</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/status.html b/content/doc/3.11/tools/nodetool/status.html
index 596950c..de7a89a 100644
--- a/content/doc/3.11/tools/nodetool/status.html
+++ b/content/doc/3.11/tools/nodetool/status.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">status</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">cluster</span> <span class="n">information</span> <span class="p">(</span><span class="n">state</span><span class="p">,</span> <span class="n">load</span><span class="p">,</span> <span class="n">IDs</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/statusautocompaction.html b/content/doc/3.11/tools/nodetool/statusautocompaction.html
index 7264779..533567d 100644
--- a/content/doc/3.11/tools/nodetool/statusautocompaction.html
+++ b/content/doc/3.11/tools/nodetool/statusautocompaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusautocompaction</span> <span class="o">-</span> <span class="n">status</span> <span class="n">of</span> <span class="n">autocompaction</span> <span class="n">of</span> <span class="n">the</span> <span class="n">given</span>
         <span class="n">keyspace</span> <span class="ow">and</span> <span class="n">table</span>
 
diff --git a/content/doc/3.11/tools/nodetool/statusbackup.html b/content/doc/3.11/tools/nodetool/statusbackup.html
index bec984b..2685b16 100644
--- a/content/doc/3.11/tools/nodetool/statusbackup.html
+++ b/content/doc/3.11/tools/nodetool/statusbackup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusbackup</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">incremental</span> <span class="n">backup</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/statusbinary.html b/content/doc/3.11/tools/nodetool/statusbinary.html
index 2a9d2f2..2191752 100644
--- a/content/doc/3.11/tools/nodetool/statusbinary.html
+++ b/content/doc/3.11/tools/nodetool/statusbinary.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusbinary</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">native</span> <span class="n">transport</span> <span class="p">(</span><span class="n">binary</span> <span class="n">protocol</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/statusgossip.html b/content/doc/3.11/tools/nodetool/statusgossip.html
index b486809..a004c73 100644
--- a/content/doc/3.11/tools/nodetool/statusgossip.html
+++ b/content/doc/3.11/tools/nodetool/statusgossip.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusgossip</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">gossip</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/statushandoff.html b/content/doc/3.11/tools/nodetool/statushandoff.html
index a899c38..9819d48 100644
--- a/content/doc/3.11/tools/nodetool/statushandoff.html
+++ b/content/doc/3.11/tools/nodetool/statushandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statushandoff</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">storing</span> <span class="n">future</span> <span class="n">hints</span> <span class="n">on</span> <span class="n">the</span> <span class="n">current</span>
         <span class="n">node</span>
 
diff --git a/content/doc/3.11/tools/nodetool/stop.html b/content/doc/3.11/tools/nodetool/stop.html
index e890a42..c8a9751 100644
--- a/content/doc/3.11/tools/nodetool/stop.html
+++ b/content/doc/3.11/tools/nodetool/stop.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">stop</span> <span class="o">-</span> <span class="n">Stop</span> <span class="n">compaction</span>
 
 <span class="n">SYNOPSIS</span>
@@ -192,8 +192,9 @@
             <span class="n">command</span><span class="o">-</span><span class="n">line</span> <span class="n">options</span>
 
         <span class="o">&lt;</span><span class="n">compaction</span> <span class="nb">type</span><span class="o">&gt;</span>
-            <span class="n">Supported</span> <span class="n">types</span> <span class="n">are</span> <span class="n">COMPACTION</span><span class="p">,</span> <span class="n">VALIDATION</span><span class="p">,</span> <span class="n">CLEANUP</span><span class="p">,</span> <span class="n">SCRUB</span><span class="p">,</span> <span class="n">VERIFY</span><span class="p">,</span>
-            <span class="n">INDEX_BUILD</span>
+            <span class="n">Supported</span> <span class="n">types</span> <span class="n">are</span> <span class="n">COMPACTION</span><span class="p">,</span> <span class="n">VALIDATION</span><span class="p">,</span> <span class="n">CLEANUP</span><span class="p">,</span> <span class="n">SCRUB</span><span class="p">,</span>
+            <span class="n">UPGRADE_SSTABLES</span><span class="p">,</span> <span class="n">INDEX_BUILD</span><span class="p">,</span> <span class="n">TOMBSTONE_COMPACTION</span><span class="p">,</span> <span class="n">ANTICOMPACTION</span><span class="p">,</span>
+            <span class="n">VERIFY</span><span class="p">,</span> <span class="n">VIEW_BUILD</span><span class="p">,</span> <span class="n">INDEX_SUMMARY</span><span class="p">,</span> <span class="n">RELOCATE</span><span class="p">,</span> <span class="n">GARBAGE_COLLECT</span>
 
 
 </pre></div>
diff --git a/content/doc/3.11/tools/nodetool/stopdaemon.html b/content/doc/3.11/tools/nodetool/stopdaemon.html
index 2dd432e..abb3a78 100644
--- a/content/doc/3.11/tools/nodetool/stopdaemon.html
+++ b/content/doc/3.11/tools/nodetool/stopdaemon.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">stopdaemon</span> <span class="o">-</span> <span class="n">Stop</span> <span class="n">cassandra</span> <span class="n">daemon</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/tablehistograms.html b/content/doc/3.11/tools/nodetool/tablehistograms.html
index d35973c..ba6cfcd 100644
--- a/content/doc/3.11/tools/nodetool/tablehistograms.html
+++ b/content/doc/3.11/tools/nodetool/tablehistograms.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">tablehistograms</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistic</span> <span class="n">histograms</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/tablestats.html b/content/doc/3.11/tools/nodetool/tablestats.html
index 636c26c..9bf4ed0 100644
--- a/content/doc/3.11/tools/nodetool/tablestats.html
+++ b/content/doc/3.11/tools/nodetool/tablestats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">tablestats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistics</span> <span class="n">on</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/toppartitions.html b/content/doc/3.11/tools/nodetool/toppartitions.html
index 215716f..77b4648 100644
--- a/content/doc/3.11/tools/nodetool/toppartitions.html
+++ b/content/doc/3.11/tools/nodetool/toppartitions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">toppartitions</span> <span class="o">-</span> <span class="n">Sample</span> <span class="ow">and</span> <span class="nb">print</span> <span class="n">the</span> <span class="n">most</span> <span class="n">active</span> <span class="n">partitions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/tpstats.html b/content/doc/3.11/tools/nodetool/tpstats.html
index 3602097..f3592b2 100644
--- a/content/doc/3.11/tools/nodetool/tpstats.html
+++ b/content/doc/3.11/tools/nodetool/tpstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">tpstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">usage</span> <span class="n">statistics</span> <span class="n">of</span> <span class="n">thread</span> <span class="n">pools</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/truncatehints.html b/content/doc/3.11/tools/nodetool/truncatehints.html
index b402a33..988228a 100644
--- a/content/doc/3.11/tools/nodetool/truncatehints.html
+++ b/content/doc/3.11/tools/nodetool/truncatehints.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">truncatehints</span> <span class="o">-</span> <span class="n">Truncate</span> <span class="nb">all</span> <span class="n">hints</span> <span class="n">on</span> <span class="n">the</span> <span class="n">local</span> <span class="n">node</span><span class="p">,</span> <span class="ow">or</span>
         <span class="n">truncate</span> <span class="n">hints</span> <span class="k">for</span> <span class="n">the</span> <span class="n">endpoint</span><span class="p">(</span><span class="n">s</span><span class="p">)</span> <span class="n">specified</span><span class="o">.</span>
 
diff --git a/content/doc/3.11/tools/nodetool/upgradesstables.html b/content/doc/3.11/tools/nodetool/upgradesstables.html
index 06ca137..463d9d1 100644
--- a/content/doc/3.11/tools/nodetool/upgradesstables.html
+++ b/content/doc/3.11/tools/nodetool/upgradesstables.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">upgradesstables</span> <span class="o">-</span> <span class="n">Rewrite</span> <span class="n">sstables</span> <span class="p">(</span><span class="k">for</span> <span class="n">the</span> <span class="n">requested</span> <span class="n">tables</span><span class="p">)</span>
         <span class="n">that</span> <span class="n">are</span> <span class="ow">not</span> <span class="n">on</span> <span class="n">the</span> <span class="n">current</span> <span class="n">version</span> <span class="p">(</span><span class="n">thus</span> <span class="n">upgrading</span> <span class="n">them</span> <span class="n">to</span> <span class="n">said</span> <span class="n">current</span>
         <span class="n">version</span><span class="p">)</span>
diff --git a/content/doc/3.11/tools/nodetool/verify.html b/content/doc/3.11/tools/nodetool/verify.html
index 7e2a373..a1a5a20 100644
--- a/content/doc/3.11/tools/nodetool/verify.html
+++ b/content/doc/3.11/tools/nodetool/verify.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">verify</span> <span class="o">-</span> <span class="n">Verify</span> <span class="p">(</span><span class="n">check</span> <span class="n">data</span> <span class="n">checksum</span> <span class="k">for</span><span class="p">)</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/version.html b/content/doc/3.11/tools/nodetool/version.html
index 343e646..7cb62d8 100644
--- a/content/doc/3.11/tools/nodetool/version.html
+++ b/content/doc/3.11/tools/nodetool/version.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">version</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">cassandra</span> <span class="n">version</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/tools/nodetool/viewbuildstatus.html b/content/doc/3.11/tools/nodetool/viewbuildstatus.html
index 0d5a3f9..a1ce99e 100644
--- a/content/doc/3.11/tools/nodetool/viewbuildstatus.html
+++ b/content/doc/3.11/tools/nodetool/viewbuildstatus.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">viewbuildstatus</span> <span class="o">-</span> <span class="n">Show</span> <span class="n">progress</span> <span class="n">of</span> <span class="n">a</span> <span class="n">materialized</span> <span class="n">view</span> <span class="n">build</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/3.11/troubleshooting/index.html b/content/doc/3.11/troubleshooting/index.html
index e23b0f1..db1719c 100644
--- a/content/doc/3.11/troubleshooting/index.html
+++ b/content/doc/3.11/troubleshooting/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Cassandra Development" href="../development/index.html"/> <link rel="prev" title="Nodetool" href="../tools/nodetool.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Cassandra Development" href="../development/index.html"/> <link rel="prev" title="Nodetool" href="../tools/nodetool.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/architecture/dynamo.html b/content/doc/stable/architecture/dynamo.html
index 35aa419..21927c6 100644
--- a/content/doc/stable/architecture/dynamo.html
+++ b/content/doc/stable/architecture/dynamo.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Storage Engine" href="storage_engine.html"/> <link rel="prev" title="Overview" href="overview.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Storage Engine" href="storage_engine.html"/> <link rel="prev" title="Overview" href="overview.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -190,13 +190,13 @@
 replication strategies are <a class="reference internal" href="#simple-strategy"><span class="std std-ref">SimpleStrategy</span></a> and <a class="reference internal" href="#network-topology-strategy"><span class="std std-ref">NetworkTopologyStrategy</span></a>.</p>
 <div class="section" id="simplestrategy">
 <span id="simple-strategy"></span><h3>SimpleStrategy<a class="headerlink" href="#simplestrategy" title="Permalink to this headline">¶</a></h3>
-<p>SimpleStrategy allows a single integer <code class="docutils literal"><span class="pre">replication_factor</span></code> to be defined. This determines the number of nodes that
-should contain a copy of each row.  For example, if <code class="docutils literal"><span class="pre">replication_factor</span></code> is 3, then three different nodes should store
+<p>SimpleStrategy allows a single integer <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> to be defined. This determines the number of nodes that
+should contain a copy of each row.  For example, if <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> is 3, then three different nodes should store
 a copy of each row.</p>
 <p>SimpleStrategy treats all nodes identically, ignoring any configured datacenters or racks.  To determine the replicas
 for a token range, Cassandra iterates through the tokens in the ring, starting with the token range of interest.  For
 each token, it checks whether the owning node has been added to the set of replicas, and if it has not, it is added to
-the set.  This process continues until <code class="docutils literal"><span class="pre">replication_factor</span></code> distinct nodes have been added to the set of replicas.</p>
+the set.  This process continues until <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> distinct nodes have been added to the set of replicas.</p>
 </div>
 <div class="section" id="networktopologystrategy">
 <span id="network-topology-strategy"></span><h3>NetworkTopologyStrategy<a class="headerlink" href="#networktopologystrategy" title="Permalink to this headline">¶</a></h3>
@@ -210,34 +210,34 @@
 implications</a>.  For example, if there are not an even number of
 nodes in each rack, the data load on the smallest rack may be much higher.  Similarly, if a single node is bootstrapped
 into a new rack, it will be considered a replica for the entire ring.  For this reason, many operators choose to
-configure all nodes on a single &#8220;rack&#8221;.</p>
+configure all nodes on a single “rack”.</p>
 </div>
 </div>
 <div class="section" id="tunable-consistency">
 <h2>Tunable Consistency<a class="headerlink" href="#tunable-consistency" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra supports a per-operation tradeoff between consistency and availability through <em>Consistency Levels</em>.
-Essentially, an operation&#8217;s consistency level specifies how many of the replicas need to respond to the coordinator in
+Essentially, an operation’s consistency level specifies how many of the replicas need to respond to the coordinator in
 order to consider the operation a success.</p>
 <p>The following consistency levels are available:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">ONE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ONE</span></code></dt>
 <dd>Only a single replica must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">TWO</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">TWO</span></code></dt>
 <dd>Two replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">THREE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">THREE</span></code></dt>
 <dd>Three replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">QUORUM</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">QUORUM</span></code></dt>
 <dd>A majority (n/2 + 1) of the replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">ALL</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ALL</span></code></dt>
 <dd>All of the replicas must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">LOCAL_QUORUM</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">LOCAL_QUORUM</span></code></dt>
 <dd>A majority of the replicas in the local datacenter (whichever datacenter the coordinator is in) must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">EACH_QUORUM</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">EACH_QUORUM</span></code></dt>
 <dd>A majority of the replicas in each datacenter must respond.</dd>
-<dt><code class="docutils literal"><span class="pre">LOCAL_ONE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">LOCAL_ONE</span></code></dt>
 <dd>Only a single replica must respond.  In a multi-datacenter cluster, this also gaurantees that read requests are not
 sent to replicas in a remote datacenter.</dd>
-<dt><code class="docutils literal"><span class="pre">ANY</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ANY</span></code></dt>
 <dd>A single replica may respond, or the coordinator may store a hint. If a hint is stored, the coordinator will later
 attempt to replay the hint and deliver the mutation to the replicas.  This consistency level is only accepted for
 write operations.</dd>
@@ -249,19 +249,19 @@
 <ul class="simple">
 <li>Speculative retry may issue a redundant read request to an extra replica if the other replicas have not responded
 within a specified time window.</li>
-<li>Based on <code class="docutils literal"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal"><span class="pre">dclocal_read_repair_chance</span></code> (part of a table&#8217;s schema), read requests may be
+<li>Based on <code class="docutils literal notranslate"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal notranslate"><span class="pre">dclocal_read_repair_chance</span></code> (part of a table’s schema), read requests may be
 randomly sent to all replicas in order to repair potentially inconsistent data.</li>
 </ul>
 <div class="section" id="picking-consistency-levels">
 <h3>Picking Consistency Levels<a class="headerlink" href="#picking-consistency-levels" title="Permalink to this headline">¶</a></h3>
-<p>It is common to pick read and write consistency levels that are high enough to overlap, resulting in &#8220;strong&#8221;
-consistency.  This is typically expressed as <code class="docutils literal"><span class="pre">W</span> <span class="pre">+</span> <span class="pre">R</span> <span class="pre">&gt;</span> <span class="pre">RF</span></code>, where <code class="docutils literal"><span class="pre">W</span></code> is the write consistency level, <code class="docutils literal"><span class="pre">R</span></code> is the
-read consistency level, and <code class="docutils literal"><span class="pre">RF</span></code> is the replication factor.  For example, if <code class="docutils literal"><span class="pre">RF</span> <span class="pre">=</span> <span class="pre">3</span></code>, a <code class="docutils literal"><span class="pre">QUORUM</span></code> request will
-require responses from at least two of the three replicas.  If <code class="docutils literal"><span class="pre">QUORUM</span></code> is used for both writes and reads, at least
+<p>It is common to pick read and write consistency levels that are high enough to overlap, resulting in “strong”
+consistency.  This is typically expressed as <code class="docutils literal notranslate"><span class="pre">W</span> <span class="pre">+</span> <span class="pre">R</span> <span class="pre">&gt;</span> <span class="pre">RF</span></code>, where <code class="docutils literal notranslate"><span class="pre">W</span></code> is the write consistency level, <code class="docutils literal notranslate"><span class="pre">R</span></code> is the
+read consistency level, and <code class="docutils literal notranslate"><span class="pre">RF</span></code> is the replication factor.  For example, if <code class="docutils literal notranslate"><span class="pre">RF</span> <span class="pre">=</span> <span class="pre">3</span></code>, a <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> request will
+require responses from at least two of the three replicas.  If <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> is used for both writes and reads, at least
 one of the replicas is guaranteed to participate in <em>both</em> the write and the read request, which in turn guarantees that
-the latest write will be read. In a multi-datacenter environment, <code class="docutils literal"><span class="pre">LOCAL_QUORUM</span></code> can be used to provide a weaker but
+the latest write will be read. In a multi-datacenter environment, <code class="docutils literal notranslate"><span class="pre">LOCAL_QUORUM</span></code> can be used to provide a weaker but
 still useful guarantee: reads are guaranteed to see the latest write from within the same datacenter.</p>
-<p>If this type of strong consistency isn&#8217;t required, lower consistency levels like <code class="docutils literal"><span class="pre">ONE</span></code> may be used to improve
+<p>If this type of strong consistency isn’t required, lower consistency levels like <code class="docutils literal notranslate"><span class="pre">ONE</span></code> may be used to improve
 throughput, latency, and availability.</p>
 </div>
 </div>
diff --git a/content/doc/stable/architecture/guarantees.html b/content/doc/stable/architecture/guarantees.html
index 0ab7c25..8ef7fc6 100644
--- a/content/doc/stable/architecture/guarantees.html
+++ b/content/doc/stable/architecture/guarantees.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Data Modeling" href="../data_modeling/index.html"/> <link rel="prev" title="Storage Engine" href="storage_engine.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Data Modeling" href="../data_modeling/index.html"/> <link rel="prev" title="Storage Engine" href="storage_engine.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/architecture/index.html b/content/doc/stable/architecture/index.html
index 39c046d..1c07983 100644
--- a/content/doc/stable/architecture/index.html
+++ b/content/doc/stable/architecture/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Overview" href="overview.html"/> <link rel="prev" title="Client drivers" href="../getting_started/drivers.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Overview" href="overview.html"/> <link rel="prev" title="Client drivers" href="../getting_started/drivers.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/architecture/overview.html b/content/doc/stable/architecture/overview.html
index e693e59..38d7574 100644
--- a/content/doc/stable/architecture/overview.html
+++ b/content/doc/stable/architecture/overview.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Dynamo" href="dynamo.html"/> <link rel="prev" title="Architecture" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Dynamo" href="dynamo.html"/> <link rel="prev" title="Architecture" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/architecture/storage_engine.html b/content/doc/stable/architecture/storage_engine.html
index f932e42..7b15495 100644
--- a/content/doc/stable/architecture/storage_engine.html
+++ b/content/doc/stable/architecture/storage_engine.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Guarantees" href="guarantees.html"/> <link rel="prev" title="Dynamo" href="dynamo.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Architecture" href="index.html"/> <link rel="next" title="Guarantees" href="guarantees.html"/> <link rel="prev" title="Dynamo" href="dynamo.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -174,11 +174,11 @@
 Eventually, memtables are flushed onto disk and become immutable <a class="reference internal" href="#sstables">SSTables</a>.  This can be triggered in several
 ways:</p>
 <ul class="simple">
-<li>The memory usage of the memtables exceeds the configured threshold  (see <code class="docutils literal"><span class="pre">memtable_cleanup_threshold</span></code>)</li>
+<li>The memory usage of the memtables exceeds the configured threshold  (see <code class="docutils literal notranslate"><span class="pre">memtable_cleanup_threshold</span></code>)</li>
 <li>The <a class="reference internal" href="#commit-log"><span class="std std-ref">CommitLog</span></a> approaches its maximum size, and forces memtable flushes in order to allow commitlog segments to
 be freed</li>
 </ul>
-<p>Memtables may be stored entirely on-heap or partially off-heap, depending on <code class="docutils literal"><span class="pre">memtable_allocation_type</span></code>.</p>
+<p>Memtables may be stored entirely on-heap or partially off-heap, depending on <code class="docutils literal notranslate"><span class="pre">memtable_allocation_type</span></code>.</p>
 </div>
 <div class="section" id="sstables">
 <h2>SSTables<a class="headerlink" href="#sstables" title="Permalink to this headline">¶</a></h2>
@@ -187,27 +187,27 @@
 which combine multiple SSTables into one.  Once the new SSTable has been written, the old SSTables can be removed.</p>
 <p>Each SSTable is comprised of multiple components stored in separate files:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">Data.db</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Data.db</span></code></dt>
 <dd>The actual data, i.e. the contents of rows.</dd>
-<dt><code class="docutils literal"><span class="pre">Index.db</span></code></dt>
-<dd>An index from partition keys to positions in the <code class="docutils literal"><span class="pre">Data.db</span></code> file.  For wide partitions, this may also include an
+<dt><code class="docutils literal notranslate"><span class="pre">Index.db</span></code></dt>
+<dd>An index from partition keys to positions in the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file.  For wide partitions, this may also include an
 index to rows within a partition.</dd>
-<dt><code class="docutils literal"><span class="pre">Summary.db</span></code></dt>
-<dd>A sampling of (by default) every 128th entry in the <code class="docutils literal"><span class="pre">Index.db</span></code> file.</dd>
-<dt><code class="docutils literal"><span class="pre">Filter.db</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Summary.db</span></code></dt>
+<dd>A sampling of (by default) every 128th entry in the <code class="docutils literal notranslate"><span class="pre">Index.db</span></code> file.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">Filter.db</span></code></dt>
 <dd>A Bloom Filter of the partition keys in the SSTable.</dd>
-<dt><code class="docutils literal"><span class="pre">CompressionInfo.db</span></code></dt>
-<dd>Metadata about the offsets and lengths of compression chunks in the <code class="docutils literal"><span class="pre">Data.db</span></code> file.</dd>
-<dt><code class="docutils literal"><span class="pre">Statistics.db</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">CompressionInfo.db</span></code></dt>
+<dd>Metadata about the offsets and lengths of compression chunks in the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">Statistics.db</span></code></dt>
 <dd>Stores metadata about the SSTable, including information about timestamps, tombstones, clustering keys, compaction,
 repair, compression, TTLs, and more.</dd>
-<dt><code class="docutils literal"><span class="pre">Digest.crc32</span></code></dt>
-<dd>A CRC-32 digest of the <code class="docutils literal"><span class="pre">Data.db</span></code> file.</dd>
-<dt><code class="docutils literal"><span class="pre">TOC.txt</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Digest.crc32</span></code></dt>
+<dd>A CRC-32 digest of the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">TOC.txt</span></code></dt>
 <dd>A plain text list of the component files for the SSTable.</dd>
 </dl>
-<p>Within the <code class="docutils literal"><span class="pre">Data.db</span></code> file, rows are organized by partition.  These partitions are sorted in token order (i.e. by a
-hash of the partition key when the default partitioner, <code class="docutils literal"><span class="pre">Murmur3Partition</span></code>, is used).  Within a partition, rows are
+<p>Within the <code class="docutils literal notranslate"><span class="pre">Data.db</span></code> file, rows are organized by partition.  These partitions are sorted in token order (i.e. by a
+hash of the partition key when the default partitioner, <code class="docutils literal notranslate"><span class="pre">Murmur3Partition</span></code>, is used).  Within a partition, rows are
 stored in the order of their clustering keys.</p>
 <p>SSTables can be optionally compressed using block-based compression.</p>
 </div>
diff --git a/content/doc/stable/bugs.html b/content/doc/stable/bugs.html
index f6f45bb..866d521 100644
--- a/content/doc/stable/bugs.html
+++ b/content/doc/stable/bugs.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/> <link rel="next" title="Contact us" href="contactus.html"/> <link rel="prev" title="Frequently Asked Questions" href="faq/index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/> <link rel="next" title="Contact us" href="contactus.html"/> <link rel="prev" title="Frequently Asked Questions" href="faq/index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -148,10 +148,10 @@
           
   <div class="section" id="reporting-bugs-and-contributing">
 <h1>Reporting Bugs and Contributing<a class="headerlink" href="#reporting-bugs-and-contributing" title="Permalink to this headline">¶</a></h1>
-<p>If you encounter a problem with Cassandra, the first places to ask for help are the <a class="reference internal" href="contactus.html#mailing-lists"><span class="std std-ref">user mailing list</span></a> and the <code class="docutils literal"><span class="pre">#cassandra</span></code> <a class="reference internal" href="contactus.html#irc-channels"><span class="std std-ref">IRC channel</span></a>.</p>
+<p>If you encounter a problem with Cassandra, the first places to ask for help are the <a class="reference internal" href="contactus.html#mailing-lists"><span class="std std-ref">user mailing list</span></a> and the <code class="docutils literal notranslate"><span class="pre">#cassandra</span></code> <a class="reference internal" href="contactus.html#irc-channels"><span class="std std-ref">IRC channel</span></a>.</p>
 <p>If, after having asked for help, you suspect that you have found a bug in Cassandra, you should report it by opening a
 ticket through the <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA">Apache Cassandra JIRA</a>. Please provide as much
-details as you can on your problem, and don&#8217;t forget to indicate which version of Cassandra you are running and on which
+details as you can on your problem, and don’t forget to indicate which version of Cassandra you are running and on which
 environment.</p>
 <p>Further details on how to contribute can be found at our <a class="reference internal" href="development/index.html"><span class="doc">Cassandra Development</span></a> section. Please note that the source of
 this documentation is part of the Cassandra git repository and hence contributions to the documentation should follow the
diff --git a/content/doc/stable/configuration/cassandra_config_file.html b/content/doc/stable/configuration/cassandra_config_file.html
index 96ab4d4..ce606be 100644
--- a/content/doc/stable/configuration/cassandra_config_file.html
+++ b/content/doc/stable/configuration/cassandra_config_file.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Configuring Cassandra" href="index.html"/> <link rel="next" title="Operating Cassandra" href="../operating/index.html"/> <link rel="prev" title="Configuring Cassandra" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Configuring Cassandra" href="index.html"/> <link rel="next" title="Operating Cassandra" href="../operating/index.html"/> <link rel="prev" title="Configuring Cassandra" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -130,159 +130,161 @@
 <li class="toctree-l1"><a class="reference internal" href="../cql/index.html">The Cassandra Query Language (CQL)</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="index.html">Configuring Cassandra</a><ul class="current">
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Cassandra Configuration File</a><ul>
-<li class="toctree-l3"><a class="reference internal" href="#cluster-name"><code class="docutils literal"><span class="pre">cluster_name</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#num-tokens"><code class="docutils literal"><span class="pre">num_tokens</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#allocate-tokens-for-keyspace"><code class="docutils literal"><span class="pre">allocate_tokens_for_keyspace</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#initial-token"><code class="docutils literal"><span class="pre">initial_token</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-enabled"><code class="docutils literal"><span class="pre">hinted_handoff_enabled</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-disabled-datacenters"><code class="docutils literal"><span class="pre">hinted_handoff_disabled_datacenters</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-hint-window-in-ms"><code class="docutils literal"><span class="pre">max_hint_window_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-throttle-in-kb"><code class="docutils literal"><span class="pre">hinted_handoff_throttle_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-hints-delivery-threads"><code class="docutils literal"><span class="pre">max_hints_delivery_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hints-directory"><code class="docutils literal"><span class="pre">hints_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hints-flush-period-in-ms"><code class="docutils literal"><span class="pre">hints_flush_period_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-hints-file-size-in-mb"><code class="docutils literal"><span class="pre">max_hints_file_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#hints-compression"><code class="docutils literal"><span class="pre">hints_compression</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#batchlog-replay-throttle-in-kb"><code class="docutils literal"><span class="pre">batchlog_replay_throttle_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#authenticator"><code class="docutils literal"><span class="pre">authenticator</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#authorizer"><code class="docutils literal"><span class="pre">authorizer</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#role-manager"><code class="docutils literal"><span class="pre">role_manager</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#roles-validity-in-ms"><code class="docutils literal"><span class="pre">roles_validity_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#roles-update-interval-in-ms"><code class="docutils literal"><span class="pre">roles_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#permissions-validity-in-ms"><code class="docutils literal"><span class="pre">permissions_validity_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#permissions-update-interval-in-ms"><code class="docutils literal"><span class="pre">permissions_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#credentials-validity-in-ms"><code class="docutils literal"><span class="pre">credentials_validity_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#credentials-update-interval-in-ms"><code class="docutils literal"><span class="pre">credentials_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#partitioner"><code class="docutils literal"><span class="pre">partitioner</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#data-file-directories"><code class="docutils literal"><span class="pre">data_file_directories</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-directory"><code class="docutils literal"><span class="pre">commitlog_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-enabled"><code class="docutils literal"><span class="pre">cdc_enabled</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-raw-directory"><code class="docutils literal"><span class="pre">cdc_raw_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#disk-failure-policy"><code class="docutils literal"><span class="pre">disk_failure_policy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commit-failure-policy"><code class="docutils literal"><span class="pre">commit_failure_policy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#prepared-statements-cache-size-mb"><code class="docutils literal"><span class="pre">prepared_statements_cache_size_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#thrift-prepared-statements-cache-size-mb"><code class="docutils literal"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#key-cache-size-in-mb"><code class="docutils literal"><span class="pre">key_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#key-cache-save-period"><code class="docutils literal"><span class="pre">key_cache_save_period</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#key-cache-keys-to-save"><code class="docutils literal"><span class="pre">key_cache_keys_to_save</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-class-name"><code class="docutils literal"><span class="pre">row_cache_class_name</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-size-in-mb"><code class="docutils literal"><span class="pre">row_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-save-period"><code class="docutils literal"><span class="pre">row_cache_save_period</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#row-cache-keys-to-save"><code class="docutils literal"><span class="pre">row_cache_keys_to_save</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-cache-size-in-mb"><code class="docutils literal"><span class="pre">counter_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-cache-save-period"><code class="docutils literal"><span class="pre">counter_cache_save_period</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-cache-keys-to-save"><code class="docutils literal"><span class="pre">counter_cache_keys_to_save</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#saved-caches-directory"><code class="docutils literal"><span class="pre">saved_caches_directory</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync"><code class="docutils literal"><span class="pre">commitlog_sync</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-batch-window-in-ms"><code class="docutils literal"><span class="pre">commitlog_sync_batch_window_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#id1"><code class="docutils literal"><span class="pre">commitlog_sync</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-period-in-ms"><code class="docutils literal"><span class="pre">commitlog_sync_period_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-segment-size-in-mb"><code class="docutils literal"><span class="pre">commitlog_segment_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-compression"><code class="docutils literal"><span class="pre">commitlog_compression</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#seed-provider"><code class="docutils literal"><span class="pre">seed_provider</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-reads"><code class="docutils literal"><span class="pre">concurrent_reads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-writes"><code class="docutils literal"><span class="pre">concurrent_writes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-counter-writes"><code class="docutils literal"><span class="pre">concurrent_counter_writes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-materialized-view-writes"><code class="docutils literal"><span class="pre">concurrent_materialized_view_writes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#file-cache-size-in-mb"><code class="docutils literal"><span class="pre">file_cache_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#buffer-pool-use-heap-if-exhausted"><code class="docutils literal"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#disk-optimization-strategy"><code class="docutils literal"><span class="pre">disk_optimization_strategy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-heap-space-in-mb"><code class="docutils literal"><span class="pre">memtable_heap_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-offheap-space-in-mb"><code class="docutils literal"><span class="pre">memtable_offheap_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-cleanup-threshold"><code class="docutils literal"><span class="pre">memtable_cleanup_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-allocation-type"><code class="docutils literal"><span class="pre">memtable_allocation_type</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#commitlog-total-space-in-mb"><code class="docutils literal"><span class="pre">commitlog_total_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#memtable-flush-writers"><code class="docutils literal"><span class="pre">memtable_flush_writers</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-total-space-in-mb"><code class="docutils literal"><span class="pre">cdc_total_space_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cdc-free-space-check-interval-ms"><code class="docutils literal"><span class="pre">cdc_free_space_check_interval_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#index-summary-capacity-in-mb"><code class="docutils literal"><span class="pre">index_summary_capacity_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#index-summary-resize-interval-in-minutes"><code class="docutils literal"><span class="pre">index_summary_resize_interval_in_minutes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync"><code class="docutils literal"><span class="pre">trickle_fsync</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync-interval-in-kb"><code class="docutils literal"><span class="pre">trickle_fsync_interval_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#storage-port"><code class="docutils literal"><span class="pre">storage_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#ssl-storage-port"><code class="docutils literal"><span class="pre">ssl_storage_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-address"><code class="docutils literal"><span class="pre">listen_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-interface"><code class="docutils literal"><span class="pre">listen_interface</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-interface-prefer-ipv6"><code class="docutils literal"><span class="pre">listen_interface_prefer_ipv6</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#broadcast-address"><code class="docutils literal"><span class="pre">broadcast_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#listen-on-broadcast-address"><code class="docutils literal"><span class="pre">listen_on_broadcast_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-authenticator"><code class="docutils literal"><span class="pre">internode_authenticator</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#start-native-transport"><code class="docutils literal"><span class="pre">start_native_transport</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-port"><code class="docutils literal"><span class="pre">native_transport_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-port-ssl"><code class="docutils literal"><span class="pre">native_transport_port_ssl</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-threads"><code class="docutils literal"><span class="pre">native_transport_max_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-frame-size-in-mb"><code class="docutils literal"><span class="pre">native_transport_max_frame_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections"><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections-per-ip"><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#start-rpc"><code class="docutils literal"><span class="pre">start_rpc</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-address"><code class="docutils literal"><span class="pre">rpc_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-interface"><code class="docutils literal"><span class="pre">rpc_interface</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-interface-prefer-ipv6"><code class="docutils literal"><span class="pre">rpc_interface_prefer_ipv6</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-port"><code class="docutils literal"><span class="pre">rpc_port</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#broadcast-rpc-address"><code class="docutils literal"><span class="pre">broadcast_rpc_address</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-keepalive"><code class="docutils literal"><span class="pre">rpc_keepalive</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-server-type"><code class="docutils literal"><span class="pre">rpc_server_type</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-min-threads"><code class="docutils literal"><span class="pre">rpc_min_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-max-threads"><code class="docutils literal"><span class="pre">rpc_max_threads</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-send-buff-size-in-bytes"><code class="docutils literal"><span class="pre">rpc_send_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#rpc-recv-buff-size-in-bytes"><code class="docutils literal"><span class="pre">rpc_recv_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-send-buff-size-in-bytes"><code class="docutils literal"><span class="pre">internode_send_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-recv-buff-size-in-bytes"><code class="docutils literal"><span class="pre">internode_recv_buff_size_in_bytes</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#thrift-framed-transport-size-in-mb"><code class="docutils literal"><span class="pre">thrift_framed_transport_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#incremental-backups"><code class="docutils literal"><span class="pre">incremental_backups</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#snapshot-before-compaction"><code class="docutils literal"><span class="pre">snapshot_before_compaction</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#auto-snapshot"><code class="docutils literal"><span class="pre">auto_snapshot</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#column-index-size-in-kb"><code class="docutils literal"><span class="pre">column_index_size_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#column-index-cache-size-in-kb"><code class="docutils literal"><span class="pre">column_index_cache_size_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#concurrent-compactors"><code class="docutils literal"><span class="pre">concurrent_compactors</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#compaction-throughput-mb-per-sec"><code class="docutils literal"><span class="pre">compaction_throughput_mb_per_sec</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#sstable-preemptive-open-interval-in-mb"><code class="docutils literal"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#stream-throughput-outbound-megabits-per-sec"><code class="docutils literal"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#inter-dc-stream-throughput-outbound-megabits-per-sec"><code class="docutils literal"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#read-request-timeout-in-ms"><code class="docutils literal"><span class="pre">read_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#range-request-timeout-in-ms"><code class="docutils literal"><span class="pre">range_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#write-request-timeout-in-ms"><code class="docutils literal"><span class="pre">write_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#counter-write-request-timeout-in-ms"><code class="docutils literal"><span class="pre">counter_write_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cas-contention-timeout-in-ms"><code class="docutils literal"><span class="pre">cas_contention_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#truncate-request-timeout-in-ms"><code class="docutils literal"><span class="pre">truncate_request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-timeout-in-ms"><code class="docutils literal"><span class="pre">request_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#slow-query-log-timeout-in-ms"><code class="docutils literal"><span class="pre">slow_query_log_timeout_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#cross-node-timeout"><code class="docutils literal"><span class="pre">cross_node_timeout</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#streaming-keep-alive-period-in-secs"><code class="docutils literal"><span class="pre">streaming_keep_alive_period_in_secs</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#phi-convict-threshold"><code class="docutils literal"><span class="pre">phi_convict_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#endpoint-snitch"><code class="docutils literal"><span class="pre">endpoint_snitch</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-update-interval-in-ms"><code class="docutils literal"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-reset-interval-in-ms"><code class="docutils literal"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-badness-threshold"><code class="docutils literal"><span class="pre">dynamic_snitch_badness_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-scheduler"><code class="docutils literal"><span class="pre">request_scheduler</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-options"><code class="docutils literal"><span class="pre">request_scheduler_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-id"><code class="docutils literal"><span class="pre">request_scheduler_id</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#server-encryption-options"><code class="docutils literal"><span class="pre">server_encryption_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#client-encryption-options"><code class="docutils literal"><span class="pre">client_encryption_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#internode-compression"><code class="docutils literal"><span class="pre">internode_compression</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#inter-dc-tcp-nodelay"><code class="docutils literal"><span class="pre">inter_dc_tcp_nodelay</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tracetype-query-ttl"><code class="docutils literal"><span class="pre">tracetype_query_ttl</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tracetype-repair-ttl"><code class="docutils literal"><span class="pre">tracetype_repair_ttl</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#gc-log-threshold-in-ms"><code class="docutils literal"><span class="pre">gc_log_threshold_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#enable-user-defined-functions"><code class="docutils literal"><span class="pre">enable_user_defined_functions</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#enable-scripted-user-defined-functions"><code class="docutils literal"><span class="pre">enable_scripted_user_defined_functions</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#enable-materialized-views"><code class="docutils literal"><span class="pre">enable_materialized_views</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#windows-timer-interval"><code class="docutils literal"><span class="pre">windows_timer_interval</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#transparent-data-encryption-options"><code class="docutils literal"><span class="pre">transparent_data_encryption_options</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tombstone-warn-threshold"><code class="docutils literal"><span class="pre">tombstone_warn_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tombstone-failure-threshold"><code class="docutils literal"><span class="pre">tombstone_failure_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#batch-size-warn-threshold-in-kb"><code class="docutils literal"><span class="pre">batch_size_warn_threshold_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#batch-size-fail-threshold-in-kb"><code class="docutils literal"><span class="pre">batch_size_fail_threshold_in_kb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#unlogged-batch-across-partitions-warn-threshold"><code class="docutils literal"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#compaction-large-partition-warning-threshold-mb"><code class="docutils literal"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#gc-warn-threshold-in-ms"><code class="docutils literal"><span class="pre">gc_warn_threshold_in_ms</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#max-value-size-in-mb"><code class="docutils literal"><span class="pre">max_value_size_in_mb</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#back-pressure-enabled"><code class="docutils literal"><span class="pre">back_pressure_enabled</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#back-pressure-strategy"><code class="docutils literal"><span class="pre">back_pressure_strategy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-strategy"><code class="docutils literal"><span class="pre">otc_coalescing_strategy</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-window-us"><code class="docutils literal"><span class="pre">otc_coalescing_window_us</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-enough-coalesced-messages"><code class="docutils literal"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code></a></li>
-<li class="toctree-l3"><a class="reference internal" href="#otc-backlog-expiration-interval-ms"><code class="docutils literal"><span class="pre">otc_backlog_expiration_interval_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cluster-name"><code class="docutils literal notranslate"><span class="pre">cluster_name</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#num-tokens"><code class="docutils literal notranslate"><span class="pre">num_tokens</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#allocate-tokens-for-keyspace"><code class="docutils literal notranslate"><span class="pre">allocate_tokens_for_keyspace</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#initial-token"><code class="docutils literal notranslate"><span class="pre">initial_token</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-enabled"><code class="docutils literal notranslate"><span class="pre">hinted_handoff_enabled</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-disabled-datacenters"><code class="docutils literal notranslate"><span class="pre">hinted_handoff_disabled_datacenters</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-hint-window-in-ms"><code class="docutils literal notranslate"><span class="pre">max_hint_window_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hinted-handoff-throttle-in-kb"><code class="docutils literal notranslate"><span class="pre">hinted_handoff_throttle_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-hints-delivery-threads"><code class="docutils literal notranslate"><span class="pre">max_hints_delivery_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hints-directory"><code class="docutils literal notranslate"><span class="pre">hints_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hints-flush-period-in-ms"><code class="docutils literal notranslate"><span class="pre">hints_flush_period_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-hints-file-size-in-mb"><code class="docutils literal notranslate"><span class="pre">max_hints_file_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#hints-compression"><code class="docutils literal notranslate"><span class="pre">hints_compression</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#batchlog-replay-throttle-in-kb"><code class="docutils literal notranslate"><span class="pre">batchlog_replay_throttle_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#authenticator"><code class="docutils literal notranslate"><span class="pre">authenticator</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#authorizer"><code class="docutils literal notranslate"><span class="pre">authorizer</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#role-manager"><code class="docutils literal notranslate"><span class="pre">role_manager</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#roles-validity-in-ms"><code class="docutils literal notranslate"><span class="pre">roles_validity_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#roles-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">roles_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#permissions-validity-in-ms"><code class="docutils literal notranslate"><span class="pre">permissions_validity_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#permissions-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">permissions_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#credentials-validity-in-ms"><code class="docutils literal notranslate"><span class="pre">credentials_validity_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#credentials-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">credentials_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#partitioner"><code class="docutils literal notranslate"><span class="pre">partitioner</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#data-file-directories"><code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-directory"><code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-enabled"><code class="docutils literal notranslate"><span class="pre">cdc_enabled</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-raw-directory"><code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#disk-failure-policy"><code class="docutils literal notranslate"><span class="pre">disk_failure_policy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commit-failure-policy"><code class="docutils literal notranslate"><span class="pre">commit_failure_policy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#prepared-statements-cache-size-mb"><code class="docutils literal notranslate"><span class="pre">prepared_statements_cache_size_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#thrift-prepared-statements-cache-size-mb"><code class="docutils literal notranslate"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#key-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">key_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#key-cache-save-period"><code class="docutils literal notranslate"><span class="pre">key_cache_save_period</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#key-cache-keys-to-save"><code class="docutils literal notranslate"><span class="pre">key_cache_keys_to_save</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-class-name"><code class="docutils literal notranslate"><span class="pre">row_cache_class_name</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">row_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-save-period"><code class="docutils literal notranslate"><span class="pre">row_cache_save_period</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#row-cache-keys-to-save"><code class="docutils literal notranslate"><span class="pre">row_cache_keys_to_save</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">counter_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-cache-save-period"><code class="docutils literal notranslate"><span class="pre">counter_cache_save_period</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-cache-keys-to-save"><code class="docutils literal notranslate"><span class="pre">counter_cache_keys_to_save</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#saved-caches-directory"><code class="docutils literal notranslate"><span class="pre">saved_caches_directory</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync"><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-batch-window-in-ms"><code class="docutils literal notranslate"><span class="pre">commitlog_sync_batch_window_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#id1"><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-sync-period-in-ms"><code class="docutils literal notranslate"><span class="pre">commitlog_sync_period_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-segment-size-in-mb"><code class="docutils literal notranslate"><span class="pre">commitlog_segment_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-compression"><code class="docutils literal notranslate"><span class="pre">commitlog_compression</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#seed-provider"><code class="docutils literal notranslate"><span class="pre">seed_provider</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-reads"><code class="docutils literal notranslate"><span class="pre">concurrent_reads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-writes"><code class="docutils literal notranslate"><span class="pre">concurrent_writes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-counter-writes"><code class="docutils literal notranslate"><span class="pre">concurrent_counter_writes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-materialized-view-writes"><code class="docutils literal notranslate"><span class="pre">concurrent_materialized_view_writes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#file-cache-size-in-mb"><code class="docutils literal notranslate"><span class="pre">file_cache_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#buffer-pool-use-heap-if-exhausted"><code class="docutils literal notranslate"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#disk-optimization-strategy"><code class="docutils literal notranslate"><span class="pre">disk_optimization_strategy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-heap-space-in-mb"><code class="docutils literal notranslate"><span class="pre">memtable_heap_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-offheap-space-in-mb"><code class="docutils literal notranslate"><span class="pre">memtable_offheap_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-cleanup-threshold"><code class="docutils literal notranslate"><span class="pre">memtable_cleanup_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-allocation-type"><code class="docutils literal notranslate"><span class="pre">memtable_allocation_type</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#repair-session-max-tree-depth"><code class="docutils literal notranslate"><span class="pre">repair_session_max_tree_depth</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commitlog-total-space-in-mb"><code class="docutils literal notranslate"><span class="pre">commitlog_total_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#memtable-flush-writers"><code class="docutils literal notranslate"><span class="pre">memtable_flush_writers</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-total-space-in-mb"><code class="docutils literal notranslate"><span class="pre">cdc_total_space_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cdc-free-space-check-interval-ms"><code class="docutils literal notranslate"><span class="pre">cdc_free_space_check_interval_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#index-summary-capacity-in-mb"><code class="docutils literal notranslate"><span class="pre">index_summary_capacity_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#index-summary-resize-interval-in-minutes"><code class="docutils literal notranslate"><span class="pre">index_summary_resize_interval_in_minutes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync"><code class="docutils literal notranslate"><span class="pre">trickle_fsync</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#trickle-fsync-interval-in-kb"><code class="docutils literal notranslate"><span class="pre">trickle_fsync_interval_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#storage-port"><code class="docutils literal notranslate"><span class="pre">storage_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#ssl-storage-port"><code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-address"><code class="docutils literal notranslate"><span class="pre">listen_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-interface"><code class="docutils literal notranslate"><span class="pre">listen_interface</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-interface-prefer-ipv6"><code class="docutils literal notranslate"><span class="pre">listen_interface_prefer_ipv6</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#broadcast-address"><code class="docutils literal notranslate"><span class="pre">broadcast_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#listen-on-broadcast-address"><code class="docutils literal notranslate"><span class="pre">listen_on_broadcast_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-authenticator"><code class="docutils literal notranslate"><span class="pre">internode_authenticator</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#start-native-transport"><code class="docutils literal notranslate"><span class="pre">start_native_transport</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-port"><code class="docutils literal notranslate"><span class="pre">native_transport_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-port-ssl"><code class="docutils literal notranslate"><span class="pre">native_transport_port_ssl</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-threads"><code class="docutils literal notranslate"><span class="pre">native_transport_max_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-frame-size-in-mb"><code class="docutils literal notranslate"><span class="pre">native_transport_max_frame_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections"><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#native-transport-max-concurrent-connections-per-ip"><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#start-rpc"><code class="docutils literal notranslate"><span class="pre">start_rpc</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-address"><code class="docutils literal notranslate"><span class="pre">rpc_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-interface"><code class="docutils literal notranslate"><span class="pre">rpc_interface</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-interface-prefer-ipv6"><code class="docutils literal notranslate"><span class="pre">rpc_interface_prefer_ipv6</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-port"><code class="docutils literal notranslate"><span class="pre">rpc_port</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#broadcast-rpc-address"><code class="docutils literal notranslate"><span class="pre">broadcast_rpc_address</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-keepalive"><code class="docutils literal notranslate"><span class="pre">rpc_keepalive</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-server-type"><code class="docutils literal notranslate"><span class="pre">rpc_server_type</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-min-threads"><code class="docutils literal notranslate"><span class="pre">rpc_min_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-max-threads"><code class="docutils literal notranslate"><span class="pre">rpc_max_threads</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-send-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">rpc_send_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#rpc-recv-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">rpc_recv_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-send-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">internode_send_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-recv-buff-size-in-bytes"><code class="docutils literal notranslate"><span class="pre">internode_recv_buff_size_in_bytes</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#thrift-framed-transport-size-in-mb"><code class="docutils literal notranslate"><span class="pre">thrift_framed_transport_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#incremental-backups"><code class="docutils literal notranslate"><span class="pre">incremental_backups</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#snapshot-before-compaction"><code class="docutils literal notranslate"><span class="pre">snapshot_before_compaction</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#auto-snapshot"><code class="docutils literal notranslate"><span class="pre">auto_snapshot</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#column-index-size-in-kb"><code class="docutils literal notranslate"><span class="pre">column_index_size_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#column-index-cache-size-in-kb"><code class="docutils literal notranslate"><span class="pre">column_index_cache_size_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#concurrent-compactors"><code class="docutils literal notranslate"><span class="pre">concurrent_compactors</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#compaction-throughput-mb-per-sec"><code class="docutils literal notranslate"><span class="pre">compaction_throughput_mb_per_sec</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#sstable-preemptive-open-interval-in-mb"><code class="docutils literal notranslate"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#stream-throughput-outbound-megabits-per-sec"><code class="docutils literal notranslate"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#inter-dc-stream-throughput-outbound-megabits-per-sec"><code class="docutils literal notranslate"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#read-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">read_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#range-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">range_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#write-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">write_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#counter-write-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">counter_write_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cas-contention-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">cas_contention_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#truncate-request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">truncate_request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">request_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#slow-query-log-timeout-in-ms"><code class="docutils literal notranslate"><span class="pre">slow_query_log_timeout_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#cross-node-timeout"><code class="docutils literal notranslate"><span class="pre">cross_node_timeout</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#streaming-keep-alive-period-in-secs"><code class="docutils literal notranslate"><span class="pre">streaming_keep_alive_period_in_secs</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#phi-convict-threshold"><code class="docutils literal notranslate"><span class="pre">phi_convict_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#endpoint-snitch"><code class="docutils literal notranslate"><span class="pre">endpoint_snitch</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-update-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-reset-interval-in-ms"><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#dynamic-snitch-badness-threshold"><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_badness_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-scheduler"><code class="docutils literal notranslate"><span class="pre">request_scheduler</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-options"><code class="docutils literal notranslate"><span class="pre">request_scheduler_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#request-scheduler-id"><code class="docutils literal notranslate"><span class="pre">request_scheduler_id</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#server-encryption-options"><code class="docutils literal notranslate"><span class="pre">server_encryption_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#client-encryption-options"><code class="docutils literal notranslate"><span class="pre">client_encryption_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#internode-compression"><code class="docutils literal notranslate"><span class="pre">internode_compression</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#inter-dc-tcp-nodelay"><code class="docutils literal notranslate"><span class="pre">inter_dc_tcp_nodelay</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tracetype-query-ttl"><code class="docutils literal notranslate"><span class="pre">tracetype_query_ttl</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tracetype-repair-ttl"><code class="docutils literal notranslate"><span class="pre">tracetype_repair_ttl</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#gc-log-threshold-in-ms"><code class="docutils literal notranslate"><span class="pre">gc_log_threshold_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-user-defined-functions"><code class="docutils literal notranslate"><span class="pre">enable_user_defined_functions</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-scripted-user-defined-functions"><code class="docutils literal notranslate"><span class="pre">enable_scripted_user_defined_functions</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#windows-timer-interval"><code class="docutils literal notranslate"><span class="pre">windows_timer_interval</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#transparent-data-encryption-options"><code class="docutils literal notranslate"><span class="pre">transparent_data_encryption_options</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tombstone-warn-threshold"><code class="docutils literal notranslate"><span class="pre">tombstone_warn_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#tombstone-failure-threshold"><code class="docutils literal notranslate"><span class="pre">tombstone_failure_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#batch-size-warn-threshold-in-kb"><code class="docutils literal notranslate"><span class="pre">batch_size_warn_threshold_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#batch-size-fail-threshold-in-kb"><code class="docutils literal notranslate"><span class="pre">batch_size_fail_threshold_in_kb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#unlogged-batch-across-partitions-warn-threshold"><code class="docutils literal notranslate"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#compaction-large-partition-warning-threshold-mb"><code class="docutils literal notranslate"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#gc-warn-threshold-in-ms"><code class="docutils literal notranslate"><span class="pre">gc_warn_threshold_in_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#max-value-size-in-mb"><code class="docutils literal notranslate"><span class="pre">max_value_size_in_mb</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#back-pressure-enabled"><code class="docutils literal notranslate"><span class="pre">back_pressure_enabled</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#back-pressure-strategy"><code class="docutils literal notranslate"><span class="pre">back_pressure_strategy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-strategy"><code class="docutils literal notranslate"><span class="pre">otc_coalescing_strategy</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-window-us"><code class="docutils literal notranslate"><span class="pre">otc_coalescing_window_us</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-coalescing-enough-coalesced-messages"><code class="docutils literal notranslate"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#otc-backlog-expiration-interval-ms"><code class="docutils literal notranslate"><span class="pre">otc_backlog_expiration_interval_ms</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-materialized-views"><code class="docutils literal notranslate"><span class="pre">enable_materialized_views</span></code></a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-sasi-indexes"><code class="docutils literal notranslate"><span class="pre">enable_sasi_indexes</span></code></a></li>
 </ul>
 </li>
 </ul>
@@ -309,27 +311,27 @@
   <div class="section" id="cassandra-configuration-file">
 <span id="cassandra-yaml"></span><h1>Cassandra Configuration File<a class="headerlink" href="#cassandra-configuration-file" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="cluster-name">
-<h2><code class="docutils literal"><span class="pre">cluster_name</span></code><a class="headerlink" href="#cluster-name" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cluster_name</span></code><a class="headerlink" href="#cluster-name" title="Permalink to this headline">¶</a></h2>
 <p>The name of the cluster. This is mainly used to prevent machines in
 one logical cluster from joining another.</p>
-<p><em>Default Value:</em> &#8216;Test Cluster&#8217;</p>
+<p><em>Default Value:</em> ‘Test Cluster’</p>
 </div>
 <div class="section" id="num-tokens">
-<h2><code class="docutils literal"><span class="pre">num_tokens</span></code><a class="headerlink" href="#num-tokens" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">num_tokens</span></code><a class="headerlink" href="#num-tokens" title="Permalink to this headline">¶</a></h2>
 <p>This defines the number of tokens randomly assigned to this node on the ring
 The more tokens, relative to other nodes, the larger the proportion of data
 that this node will store. You probably want all nodes to have the same number
 of tokens assuming they have equal hardware capability.</p>
 <p>If you leave this unspecified, Cassandra will use the default of 1 token for legacy compatibility,
 and will use the initial_token as described below.</p>
-<p>Specifying initial_token will override this setting on the node&#8217;s initial start,
+<p>Specifying initial_token will override this setting on the node’s initial start,
 on subsequent starts, this setting will apply even if initial token is set.</p>
 <p>If you already have a cluster with 1 token per node, and wish to migrate to
 multiple tokens per node, see <a class="reference external" href="http://wiki.apache.org/cassandra/Operations">http://wiki.apache.org/cassandra/Operations</a></p>
 <p><em>Default Value:</em> 256</p>
 </div>
 <div class="section" id="allocate-tokens-for-keyspace">
-<h2><code class="docutils literal"><span class="pre">allocate_tokens_for_keyspace</span></code><a class="headerlink" href="#allocate-tokens-for-keyspace" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">allocate_tokens_for_keyspace</span></code><a class="headerlink" href="#allocate-tokens-for-keyspace" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Triggers automatic allocation of num_tokens tokens for this node. The allocation
 algorithm attempts to choose tokens in a way that optimizes replicated load over
@@ -341,39 +343,39 @@
 <p><em>Default Value:</em> KEYSPACE</p>
 </div>
 <div class="section" id="initial-token">
-<h2><code class="docutils literal"><span class="pre">initial_token</span></code><a class="headerlink" href="#initial-token" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">initial_token</span></code><a class="headerlink" href="#initial-token" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>initial_token allows you to specify tokens manually.  While you can use it with
-vnodes (num_tokens &gt; 1, above) &#8211; in which case you should provide a
-comma-separated list &#8211; it&#8217;s primarily used when adding nodes to legacy clusters
+vnodes (num_tokens &gt; 1, above) – in which case you should provide a
+comma-separated list – it’s primarily used when adding nodes to legacy clusters
 that do not have vnodes enabled.</p>
 </div>
 <div class="section" id="hinted-handoff-enabled">
-<h2><code class="docutils literal"><span class="pre">hinted_handoff_enabled</span></code><a class="headerlink" href="#hinted-handoff-enabled" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hinted_handoff_enabled</span></code><a class="headerlink" href="#hinted-handoff-enabled" title="Permalink to this headline">¶</a></h2>
 <p>See <a class="reference external" href="http://wiki.apache.org/cassandra/HintedHandoff">http://wiki.apache.org/cassandra/HintedHandoff</a>
-May either be &#8220;true&#8221; or &#8220;false&#8221; to enable globally</p>
+May either be “true” or “false” to enable globally</p>
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="hinted-handoff-disabled-datacenters">
-<h2><code class="docutils literal"><span class="pre">hinted_handoff_disabled_datacenters</span></code><a class="headerlink" href="#hinted-handoff-disabled-datacenters" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hinted_handoff_disabled_datacenters</span></code><a class="headerlink" href="#hinted-handoff-disabled-datacenters" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>When hinted_handoff_enabled is true, a black list of data centers that will not
 perform hinted handoff</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#    - DC1</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#    - DC1</span>
 <span class="c1">#    - DC2</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="max-hint-window-in-ms">
-<h2><code class="docutils literal"><span class="pre">max_hint_window_in_ms</span></code><a class="headerlink" href="#max-hint-window-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_hint_window_in_ms</span></code><a class="headerlink" href="#max-hint-window-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>this defines the maximum amount of time a dead host will have hints
 generated.  After it has been dead this long, new hints for it will not be
 created until it has been seen alive and gone down again.</p>
 <p><em>Default Value:</em> 10800000 # 3 hours</p>
 </div>
 <div class="section" id="hinted-handoff-throttle-in-kb">
-<h2><code class="docutils literal"><span class="pre">hinted_handoff_throttle_in_kb</span></code><a class="headerlink" href="#hinted-handoff-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hinted_handoff_throttle_in_kb</span></code><a class="headerlink" href="#hinted-handoff-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum throttle in KBs per second, per delivery thread.  This will be
 reduced proportionally to the number of nodes in the cluster.  (If there
 are two nodes in the cluster, each delivery thread will use the maximum
@@ -382,51 +384,51 @@
 <p><em>Default Value:</em> 1024</p>
 </div>
 <div class="section" id="max-hints-delivery-threads">
-<h2><code class="docutils literal"><span class="pre">max_hints_delivery_threads</span></code><a class="headerlink" href="#max-hints-delivery-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_hints_delivery_threads</span></code><a class="headerlink" href="#max-hints-delivery-threads" title="Permalink to this headline">¶</a></h2>
 <p>Number of threads with which to deliver hints;
 Consider increasing this number when you have multi-dc deployments, since
 cross-dc handoff tends to be slower</p>
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="hints-directory">
-<h2><code class="docutils literal"><span class="pre">hints_directory</span></code><a class="headerlink" href="#hints-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hints_directory</span></code><a class="headerlink" href="#hints-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Directory where Cassandra should store hints.
 If not set, the default directory is $CASSANDRA_HOME/data/hints.</p>
 <p><em>Default Value:</em>  /var/lib/cassandra/hints</p>
 </div>
 <div class="section" id="hints-flush-period-in-ms">
-<h2><code class="docutils literal"><span class="pre">hints_flush_period_in_ms</span></code><a class="headerlink" href="#hints-flush-period-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hints_flush_period_in_ms</span></code><a class="headerlink" href="#hints-flush-period-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How often hints should be flushed from the internal buffers to disk.
 Will <em>not</em> trigger fsync.</p>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="max-hints-file-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">max_hints_file_size_in_mb</span></code><a class="headerlink" href="#max-hints-file-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_hints_file_size_in_mb</span></code><a class="headerlink" href="#max-hints-file-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size for a single hints file, in megabytes.</p>
 <p><em>Default Value:</em> 128</p>
 </div>
 <div class="section" id="hints-compression">
-<h2><code class="docutils literal"><span class="pre">hints_compression</span></code><a class="headerlink" href="#hints-compression" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">hints_compression</span></code><a class="headerlink" href="#hints-compression" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Compression to apply to the hint files. If omitted, hints files
 will be written uncompressed. LZ4, Snappy, and Deflate compressors
 are supported.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
 <span class="c1">#     parameters:</span>
 <span class="c1">#         -</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="batchlog-replay-throttle-in-kb">
-<h2><code class="docutils literal"><span class="pre">batchlog_replay_throttle_in_kb</span></code><a class="headerlink" href="#batchlog-replay-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">batchlog_replay_throttle_in_kb</span></code><a class="headerlink" href="#batchlog-replay-throttle-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum throttle in KBs per second, total. This will be
 reduced proportionally to the number of nodes in the cluster.</p>
 <p><em>Default Value:</em> 1024</p>
 </div>
 <div class="section" id="authenticator">
-<h2><code class="docutils literal"><span class="pre">authenticator</span></code><a class="headerlink" href="#authenticator" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">authenticator</span></code><a class="headerlink" href="#authenticator" title="Permalink to this headline">¶</a></h2>
 <p>Authentication backend, implementing IAuthenticator; used to identify users
 Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthenticator,
 PasswordAuthenticator}.</p>
@@ -440,7 +442,7 @@
 <p><em>Default Value:</em> AllowAllAuthenticator</p>
 </div>
 <div class="section" id="authorizer">
-<h2><code class="docutils literal"><span class="pre">authorizer</span></code><a class="headerlink" href="#authorizer" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">authorizer</span></code><a class="headerlink" href="#authorizer" title="Permalink to this headline">¶</a></h2>
 <p>Authorization backend, implementing IAuthorizer; used to limit access/provide permissions
 Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthorizer,
 CassandraAuthorizer}.</p>
@@ -452,7 +454,7 @@
 <p><em>Default Value:</em> AllowAllAuthorizer</p>
 </div>
 <div class="section" id="role-manager">
-<h2><code class="docutils literal"><span class="pre">role_manager</span></code><a class="headerlink" href="#role-manager" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">role_manager</span></code><a class="headerlink" href="#role-manager" title="Permalink to this headline">¶</a></h2>
 <p>Part of the Authentication &amp; Authorization backend, implementing IRoleManager; used
 to maintain grants and memberships between roles.
 Out of the box, Cassandra provides org.apache.cassandra.auth.CassandraRoleManager,
@@ -466,7 +468,7 @@
 <p><em>Default Value:</em> CassandraRoleManager</p>
 </div>
 <div class="section" id="roles-validity-in-ms">
-<h2><code class="docutils literal"><span class="pre">roles_validity_in_ms</span></code><a class="headerlink" href="#roles-validity-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">roles_validity_in_ms</span></code><a class="headerlink" href="#roles-validity-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>Validity period for roles cache (fetching granted roles can be an expensive
 operation depending on the role manager, CassandraRoleManager is one example)
 Granted roles are cached for authenticated sessions in AuthenticatedUser and
@@ -476,7 +478,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="roles-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">roles_update_interval_in_ms</span></code><a class="headerlink" href="#roles-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">roles_update_interval_in_ms</span></code><a class="headerlink" href="#roles-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Refresh interval for roles cache (if enabled).
 After this interval, cache entries become eligible for refresh. Upon next
@@ -487,7 +489,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="permissions-validity-in-ms">
-<h2><code class="docutils literal"><span class="pre">permissions_validity_in_ms</span></code><a class="headerlink" href="#permissions-validity-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">permissions_validity_in_ms</span></code><a class="headerlink" href="#permissions-validity-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>Validity period for permissions cache (fetching permissions can be an
 expensive operation depending on the authorizer, CassandraAuthorizer is
 one example). Defaults to 2000, set to 0 to disable.
@@ -495,7 +497,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="permissions-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">permissions_update_interval_in_ms</span></code><a class="headerlink" href="#permissions-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">permissions_update_interval_in_ms</span></code><a class="headerlink" href="#permissions-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Refresh interval for permissions cache (if enabled).
 After this interval, cache entries become eligible for refresh. Upon next
@@ -506,7 +508,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="credentials-validity-in-ms">
-<h2><code class="docutils literal"><span class="pre">credentials_validity_in_ms</span></code><a class="headerlink" href="#credentials-validity-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">credentials_validity_in_ms</span></code><a class="headerlink" href="#credentials-validity-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>Validity period for credentials cache. This cache is tightly coupled to
 the provided PasswordAuthenticator implementation of IAuthenticator. If
 another IAuthenticator implementation is configured, this cache will not
@@ -519,7 +521,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="credentials-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">credentials_update_interval_in_ms</span></code><a class="headerlink" href="#credentials-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">credentials_update_interval_in_ms</span></code><a class="headerlink" href="#credentials-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Refresh interval for credentials cache (if enabled).
 After this interval, cache entries become eligible for refresh. Upon next
@@ -530,7 +532,7 @@
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="partitioner">
-<h2><code class="docutils literal"><span class="pre">partitioner</span></code><a class="headerlink" href="#partitioner" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">partitioner</span></code><a class="headerlink" href="#partitioner" title="Permalink to this headline">¶</a></h2>
 <p>The partitioner is responsible for distributing groups of rows (by
 partition key) across nodes in the cluster.  You should leave this
 alone for new clusters.  The partitioner can NOT be changed without
@@ -542,19 +544,19 @@
 <p><em>Default Value:</em> org.apache.cassandra.dht.Murmur3Partitioner</p>
 </div>
 <div class="section" id="data-file-directories">
-<h2><code class="docutils literal"><span class="pre">data_file_directories</span></code><a class="headerlink" href="#data-file-directories" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code><a class="headerlink" href="#data-file-directories" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Directories where Cassandra should store data on disk.  Cassandra
 will spread data evenly across them, subject to the granularity of
 the configured compaction strategy.
 If not set, the default directory is $CASSANDRA_HOME/data/data.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#     - /var/lib/cassandra/data</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#     - /var/lib/cassandra/data</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="commitlog-directory">
-<h2><code class="docutils literal"><span class="pre">commitlog_directory</span></code><a class="headerlink" href="#commitlog-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code><a class="headerlink" href="#commitlog-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
 commit log.  when running on magnetic HDD, this should be a
 separate spindle than the data directories.
@@ -562,14 +564,14 @@
 <p><em>Default Value:</em>  /var/lib/cassandra/commitlog</p>
 </div>
 <div class="section" id="cdc-enabled">
-<h2><code class="docutils literal"><span class="pre">cdc_enabled</span></code><a class="headerlink" href="#cdc-enabled" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_enabled</span></code><a class="headerlink" href="#cdc-enabled" title="Permalink to this headline">¶</a></h2>
 <p>Enable / disable CDC functionality on a per-node basis. This modifies the logic used
 for write path allocation rejection (standard: never reject. cdc: reject Mutation
 containing a CDC-enabled table if at space limit in cdc_raw_directory).</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="cdc-raw-directory">
-<h2><code class="docutils literal"><span class="pre">cdc_raw_directory</span></code><a class="headerlink" href="#cdc-raw-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code><a class="headerlink" href="#cdc-raw-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>CommitLogSegments are moved to this directory on flush if cdc_enabled: true and the
 segment contains mutations for a CDC-enabled table. This should be placed on a
@@ -578,7 +580,7 @@
 <p><em>Default Value:</em>  /var/lib/cassandra/cdc_raw</p>
 </div>
 <div class="section" id="disk-failure-policy">
-<h2><code class="docutils literal"><span class="pre">disk_failure_policy</span></code><a class="headerlink" href="#disk-failure-policy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">disk_failure_policy</span></code><a class="headerlink" href="#disk-failure-policy" title="Permalink to this headline">¶</a></h2>
 <p>Policy for data disk failures:</p>
 <dl class="docutils">
 <dt>die</dt>
@@ -600,7 +602,7 @@
 <p><em>Default Value:</em> stop</p>
 </div>
 <div class="section" id="commit-failure-policy">
-<h2><code class="docutils literal"><span class="pre">commit_failure_policy</span></code><a class="headerlink" href="#commit-failure-policy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commit_failure_policy</span></code><a class="headerlink" href="#commit-failure-policy" title="Permalink to this headline">¶</a></h2>
 <p>Policy for commit disk failures:</p>
 <dl class="docutils">
 <dt>die</dt>
@@ -617,41 +619,41 @@
 <p><em>Default Value:</em> stop</p>
 </div>
 <div class="section" id="prepared-statements-cache-size-mb">
-<h2><code class="docutils literal"><span class="pre">prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the native protocol prepared statement cache</p>
-<p>Valid values are either &#8220;auto&#8221; (omitting the value) or a value greater 0.</p>
+<p>Valid values are either “auto” (omitting the value) or a value greater 0.</p>
 <p>Note that specifying a too large value will result in long running GCs and possbily
 out-of-memory errors. Keep the value at a small fraction of the heap.</p>
-<p>If you constantly see &#8220;prepared statements discarded in the last minute because
-cache limit reached&#8221; messages, the first step is to investigate the root cause
+<p>If you constantly see “prepared statements discarded in the last minute because
+cache limit reached” messages, the first step is to investigate the root cause
 of these messages and check whether prepared statements are used correctly -
 i.e. use bind markers for variable parts.</p>
 <p>Do only change the default value, if you really have more prepared statements than
 fit in the cache. In most cases it is not neccessary to change this value.
 Constantly re-preparing statements is a performance penalty.</p>
-<p>Default value (&#8220;auto&#8221;) is 1/256th of the heap or 10MB, whichever is greater</p>
+<p>Default value (“auto”) is 1/256th of the heap or 10MB, whichever is greater</p>
 </div>
 <div class="section" id="thrift-prepared-statements-cache-size-mb">
-<h2><code class="docutils literal"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#thrift-prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">thrift_prepared_statements_cache_size_mb</span></code><a class="headerlink" href="#thrift-prepared-statements-cache-size-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the Thrift prepared statement cache</p>
-<p>If you do not use Thrift at all, it is safe to leave this value at &#8220;auto&#8221;.</p>
-<p>See description of &#8216;prepared_statements_cache_size_mb&#8217; above for more information.</p>
-<p>Default value (&#8220;auto&#8221;) is 1/256th of the heap or 10MB, whichever is greater</p>
+<p>If you do not use Thrift at all, it is safe to leave this value at “auto”.</p>
+<p>See description of ‘prepared_statements_cache_size_mb’ above for more information.</p>
+<p>Default value (“auto”) is 1/256th of the heap or 10MB, whichever is greater</p>
 </div>
 <div class="section" id="key-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">key_cache_size_in_mb</span></code><a class="headerlink" href="#key-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">key_cache_size_in_mb</span></code><a class="headerlink" href="#key-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the key cache in memory.</p>
 <p>Each key cache hit saves 1 seek and each row cache hit saves 2 seeks at the
 minimum, sometimes more. The key cache is fairly tiny for the amount of
-time it saves, so it&#8217;s worthwhile to use it at large numbers.
+time it saves, so it’s worthwhile to use it at large numbers.
 The row cache saves even more time, but must contain the entire row,
-so it is extremely space-intensive. It&#8217;s best to only use the
+so it is extremely space-intensive. It’s best to only use the
 row cache if you have hot rows or static rows.</p>
 <p>NOTE: if you reduce the size, you may not get you hottest keys loaded on startup.</p>
-<p>Default value is empty to make it &#8220;auto&#8221; (min(5% of Heap (in MB), 100MB)). Set to 0 to disable key cache.</p>
+<p>Default value is empty to make it “auto” (min(5% of Heap (in MB), 100MB)). Set to 0 to disable key cache.</p>
 </div>
 <div class="section" id="key-cache-save-period">
-<h2><code class="docutils literal"><span class="pre">key_cache_save_period</span></code><a class="headerlink" href="#key-cache-save-period" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">key_cache_save_period</span></code><a class="headerlink" href="#key-cache-save-period" title="Permalink to this headline">¶</a></h2>
 <p>Duration in seconds after which Cassandra should
 save the key cache. Caches are saved to saved_caches_directory as
 specified in this configuration file.</p>
@@ -662,14 +664,14 @@
 <p><em>Default Value:</em> 14400</p>
 </div>
 <div class="section" id="key-cache-keys-to-save">
-<h2><code class="docutils literal"><span class="pre">key_cache_keys_to_save</span></code><a class="headerlink" href="#key-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">key_cache_keys_to_save</span></code><a class="headerlink" href="#key-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of keys from the key cache to save
 Disabled by default, meaning all keys are going to be saved</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="row-cache-class-name">
-<h2><code class="docutils literal"><span class="pre">row_cache_class_name</span></code><a class="headerlink" href="#row-cache-class-name" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_class_name</span></code><a class="headerlink" href="#row-cache-class-name" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Row cache implementation class name. Available implementations:</p>
 <dl class="docutils">
@@ -682,7 +684,7 @@
 <p><em>Default Value:</em> org.apache.cassandra.cache.OHCProvider</p>
 </div>
 <div class="section" id="row-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">row_cache_size_in_mb</span></code><a class="headerlink" href="#row-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_size_in_mb</span></code><a class="headerlink" href="#row-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the row cache in memory.
 Please note that OHC cache implementation requires some additional off-heap memory to manage
 the map structures and some in-flight memory during operations before/after cache entries can be
@@ -693,7 +695,7 @@
 <p><em>Default Value:</em> 0</p>
 </div>
 <div class="section" id="row-cache-save-period">
-<h2><code class="docutils literal"><span class="pre">row_cache_save_period</span></code><a class="headerlink" href="#row-cache-save-period" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_save_period</span></code><a class="headerlink" href="#row-cache-save-period" title="Permalink to this headline">¶</a></h2>
 <p>Duration in seconds after which Cassandra should save the row cache.
 Caches are saved to saved_caches_directory as specified in this configuration file.</p>
 <p>Saved caches greatly improve cold-start speeds, and is relatively cheap in
@@ -703,27 +705,27 @@
 <p><em>Default Value:</em> 0</p>
 </div>
 <div class="section" id="row-cache-keys-to-save">
-<h2><code class="docutils literal"><span class="pre">row_cache_keys_to_save</span></code><a class="headerlink" href="#row-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">row_cache_keys_to_save</span></code><a class="headerlink" href="#row-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of keys from the row cache to save.
 Specify 0 (which is the default), meaning all keys are going to be saved</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="counter-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">counter_cache_size_in_mb</span></code><a class="headerlink" href="#counter-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_cache_size_in_mb</span></code><a class="headerlink" href="#counter-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Maximum size of the counter cache in memory.</p>
-<p>Counter cache helps to reduce counter locks&#8217; contention for hot counter cells.
+<p>Counter cache helps to reduce counter locks’ contention for hot counter cells.
 In case of RF = 1 a counter cache hit will cause Cassandra to skip the read before
 write entirely. With RF &gt; 1 a counter cache hit will still help to reduce the duration
 of the lock hold, helping with hot counter cell updates, but will not allow skipping
 the read entirely. Only the local (clock, count) tuple of a counter cell is kept
-in memory, not the whole counter, so it&#8217;s relatively cheap.</p>
+in memory, not the whole counter, so it’s relatively cheap.</p>
 <p>NOTE: if you reduce the size, you may not get you hottest keys loaded on startup.</p>
-<p>Default value is empty to make it &#8220;auto&#8221; (min(2.5% of Heap (in MB), 50MB)). Set to 0 to disable counter cache.
+<p>Default value is empty to make it “auto” (min(2.5% of Heap (in MB), 50MB)). Set to 0 to disable counter cache.
 NOTE: if you perform counter deletes and rely on low gcgs, you should disable the counter cache.</p>
 </div>
 <div class="section" id="counter-cache-save-period">
-<h2><code class="docutils literal"><span class="pre">counter_cache_save_period</span></code><a class="headerlink" href="#counter-cache-save-period" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_cache_save_period</span></code><a class="headerlink" href="#counter-cache-save-period" title="Permalink to this headline">¶</a></h2>
 <p>Duration in seconds after which Cassandra should
 save the counter cache (keys only). Caches are saved to saved_caches_directory as
 specified in this configuration file.</p>
@@ -731,24 +733,24 @@
 <p><em>Default Value:</em> 7200</p>
 </div>
 <div class="section" id="counter-cache-keys-to-save">
-<h2><code class="docutils literal"><span class="pre">counter_cache_keys_to_save</span></code><a class="headerlink" href="#counter-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_cache_keys_to_save</span></code><a class="headerlink" href="#counter-cache-keys-to-save" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of keys from the counter cache to save
 Disabled by default, meaning all keys are going to be saved</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="saved-caches-directory">
-<h2><code class="docutils literal"><span class="pre">saved_caches_directory</span></code><a class="headerlink" href="#saved-caches-directory" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">saved_caches_directory</span></code><a class="headerlink" href="#saved-caches-directory" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>saved caches
 If not set, the default directory is $CASSANDRA_HOME/data/saved_caches.</p>
 <p><em>Default Value:</em>  /var/lib/cassandra/saved_caches</p>
 </div>
 <div class="section" id="commitlog-sync">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#commitlog-sync" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#commitlog-sync" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
-<p>commitlog_sync may be either &#8220;periodic&#8221; or &#8220;batch.&#8221;</p>
-<p>When in batch mode, Cassandra won&#8217;t ack writes until the commit log
+<p>commitlog_sync may be either “periodic” or “batch.”</p>
+<p>When in batch mode, Cassandra won’t ack writes until the commit log
 has been fsynced to disk.  It will wait
 commitlog_sync_batch_window_in_ms milliseconds between fsyncs.
 This window should be kept short because the writer threads will
@@ -757,23 +759,23 @@
 <p><em>Default Value:</em> batch</p>
 </div>
 <div class="section" id="commitlog-sync-batch-window-in-ms">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync_batch_window_in_ms</span></code><a class="headerlink" href="#commitlog-sync-batch-window-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync_batch_window_in_ms</span></code><a class="headerlink" href="#commitlog-sync-batch-window-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="id1">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
-<p>the other option is &#8220;periodic&#8221; where writes may be acked immediately
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
+<p>the other option is “periodic” where writes may be acked immediately
 and the CommitLog is simply synced every commitlog_sync_period_in_ms
 milliseconds.</p>
 <p><em>Default Value:</em> periodic</p>
 </div>
 <div class="section" id="commitlog-sync-period-in-ms">
-<h2><code class="docutils literal"><span class="pre">commitlog_sync_period_in_ms</span></code><a class="headerlink" href="#commitlog-sync-period-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_sync_period_in_ms</span></code><a class="headerlink" href="#commitlog-sync-period-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="commitlog-segment-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">commitlog_segment_size_in_mb</span></code><a class="headerlink" href="#commitlog-segment-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_segment_size_in_mb</span></code><a class="headerlink" href="#commitlog-segment-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>The size of the individual commitlog file segments.  A commitlog
 segment may be archived, deleted, or recycled once all the data
 in it (potentially from each columnfamily in the system) has been
@@ -790,24 +792,24 @@
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="commitlog-compression">
-<h2><code class="docutils literal"><span class="pre">commitlog_compression</span></code><a class="headerlink" href="#commitlog-compression" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_compression</span></code><a class="headerlink" href="#commitlog-compression" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Compression to apply to the commit log. If omitted, the commit log
 will be written uncompressed.  LZ4, Snappy, and Deflate compressors
 are supported.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#   - class_name: LZ4Compressor</span>
 <span class="c1">#     parameters:</span>
 <span class="c1">#         -</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="seed-provider">
-<h2><code class="docutils literal"><span class="pre">seed_provider</span></code><a class="headerlink" href="#seed-provider" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">seed_provider</span></code><a class="headerlink" href="#seed-provider" title="Permalink to this headline">¶</a></h2>
 <p>any class that implements the SeedProvider interface and has a
 constructor that takes a Map&lt;String, String&gt; of parameters will do.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1"># Addresses of hosts that are deemed contact points.</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1"># Addresses of hosts that are deemed contact points.</span>
 <span class="c1"># Cassandra nodes use this list of hosts to find each other and learn</span>
 <span class="c1"># the topology of the ring.  You must change this if you are running</span>
 <span class="c1"># multiple nodes!</span>
@@ -820,35 +822,35 @@
 </div>
 </div>
 <div class="section" id="concurrent-reads">
-<h2><code class="docutils literal"><span class="pre">concurrent_reads</span></code><a class="headerlink" href="#concurrent-reads" title="Permalink to this headline">¶</a></h2>
-<p>For workloads with more data than can fit in memory, Cassandra&#8217;s
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_reads</span></code><a class="headerlink" href="#concurrent-reads" title="Permalink to this headline">¶</a></h2>
+<p>For workloads with more data than can fit in memory, Cassandra’s
 bottleneck will be reads that need to fetch data from
-disk. &#8220;concurrent_reads&#8221; should be set to (16 * number_of_drives) in
+disk. “concurrent_reads” should be set to (16 * number_of_drives) in
 order to allow the operations to enqueue low enough in the stack
 that the OS and drives can reorder them. Same applies to
-&#8220;concurrent_counter_writes&#8221;, since counter writes read the current
+“concurrent_counter_writes”, since counter writes read the current
 values before incrementing and writing them back.</p>
 <p>On the other hand, since writes are almost never IO bound, the ideal
-number of &#8220;concurrent_writes&#8221; is dependent on the number of cores in
+number of “concurrent_writes” is dependent on the number of cores in
 your system; (8 * number_of_cores) is a good rule of thumb.</p>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="concurrent-writes">
-<h2><code class="docutils literal"><span class="pre">concurrent_writes</span></code><a class="headerlink" href="#concurrent-writes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_writes</span></code><a class="headerlink" href="#concurrent-writes" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="concurrent-counter-writes">
-<h2><code class="docutils literal"><span class="pre">concurrent_counter_writes</span></code><a class="headerlink" href="#concurrent-counter-writes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_counter_writes</span></code><a class="headerlink" href="#concurrent-counter-writes" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="concurrent-materialized-view-writes">
-<h2><code class="docutils literal"><span class="pre">concurrent_materialized_view_writes</span></code><a class="headerlink" href="#concurrent-materialized-view-writes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_materialized_view_writes</span></code><a class="headerlink" href="#concurrent-materialized-view-writes" title="Permalink to this headline">¶</a></h2>
 <p>For materialized view writes, as there is a read involved, so this should
 be limited by the less of concurrent reads or concurrent writes.</p>
 <p><em>Default Value:</em> 32</p>
 </div>
 <div class="section" id="file-cache-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">file_cache_size_in_mb</span></code><a class="headerlink" href="#file-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">file_cache_size_in_mb</span></code><a class="headerlink" href="#file-cache-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Maximum memory to use for sstable chunk cache and buffer pooling.
 32MB of this are reserved for pooling buffers, the rest is used as an
@@ -861,7 +863,7 @@
 <p><em>Default Value:</em> 512</p>
 </div>
 <div class="section" id="buffer-pool-use-heap-if-exhausted">
-<h2><code class="docutils literal"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code><a class="headerlink" href="#buffer-pool-use-heap-if-exhausted" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">buffer_pool_use_heap_if_exhausted</span></code><a class="headerlink" href="#buffer-pool-use-heap-if-exhausted" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Flag indicating whether to allocate on or off heap when the sstable buffer
 pool is exhausted, that is when it has exceeded the maximum memory
@@ -869,7 +871,7 @@
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="disk-optimization-strategy">
-<h2><code class="docutils literal"><span class="pre">disk_optimization_strategy</span></code><a class="headerlink" href="#disk-optimization-strategy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">disk_optimization_strategy</span></code><a class="headerlink" href="#disk-optimization-strategy" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The strategy for optimizing disk read
 Possible values are:
@@ -878,7 +880,7 @@
 <p><em>Default Value:</em> ssd</p>
 </div>
 <div class="section" id="memtable-heap-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">memtable_heap_space_in_mb</span></code><a class="headerlink" href="#memtable-heap-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_heap_space_in_mb</span></code><a class="headerlink" href="#memtable-heap-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Total permitted memory to use for memtables. Cassandra will stop
 accepting writes when the limit is exceeded until a flush completes,
@@ -887,12 +889,12 @@
 <p><em>Default Value:</em> 2048</p>
 </div>
 <div class="section" id="memtable-offheap-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">memtable_offheap_space_in_mb</span></code><a class="headerlink" href="#memtable-offheap-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_offheap_space_in_mb</span></code><a class="headerlink" href="#memtable-offheap-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p><em>Default Value:</em> 2048</p>
 </div>
 <div class="section" id="memtable-cleanup-threshold">
-<h2><code class="docutils literal"><span class="pre">memtable_cleanup_threshold</span></code><a class="headerlink" href="#memtable-cleanup-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_cleanup_threshold</span></code><a class="headerlink" href="#memtable-cleanup-threshold" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>memtable_cleanup_threshold is deprecated. The default calculation
 is the only reasonable choice. See the comments on  memtable_flush_writers
@@ -906,7 +908,7 @@
 <p><em>Default Value:</em> 0.11</p>
 </div>
 <div class="section" id="memtable-allocation-type">
-<h2><code class="docutils literal"><span class="pre">memtable_allocation_type</span></code><a class="headerlink" href="#memtable-allocation-type" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_allocation_type</span></code><a class="headerlink" href="#memtable-allocation-type" title="Permalink to this headline">¶</a></h2>
 <p>Specify the way Cassandra allocates and manages memtable memory.
 Options are:</p>
 <dl class="docutils">
@@ -919,8 +921,21 @@
 </dl>
 <p><em>Default Value:</em> heap_buffers</p>
 </div>
+<div class="section" id="repair-session-max-tree-depth">
+<h2><code class="docutils literal notranslate"><span class="pre">repair_session_max_tree_depth</span></code><a class="headerlink" href="#repair-session-max-tree-depth" title="Permalink to this headline">¶</a></h2>
+<p><em>This option is commented out by default.</em></p>
+<p>Limits the maximum Merkle tree depth to avoid consuming too much
+memory during repairs.</p>
+<p>The default setting of 18 generates trees of maximum size around
+50 MiB / tree. If you are running out of memory during repairs consider
+lowering this to 15 (~6 MiB / tree) or lower, but try not to lower it
+too much past that or you will lose too much resolution and stream
+too much redundant data during repair. Cannot be set lower than 10.</p>
+<p>For more details see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-14096">https://issues.apache.org/jira/browse/CASSANDRA-14096</a>.</p>
+<p><em>Default Value:</em> 18</p>
+</div>
 <div class="section" id="commitlog-total-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">commitlog_total_space_in_mb</span></code><a class="headerlink" href="#commitlog-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">commitlog_total_space_in_mb</span></code><a class="headerlink" href="#commitlog-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Total space to use for commit logs on disk.</p>
 <p>If space gets above this value, Cassandra will flush every dirty CF
@@ -931,7 +946,7 @@
 <p><em>Default Value:</em> 8192</p>
 </div>
 <div class="section" id="memtable-flush-writers">
-<h2><code class="docutils literal"><span class="pre">memtable_flush_writers</span></code><a class="headerlink" href="#memtable-flush-writers" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">memtable_flush_writers</span></code><a class="headerlink" href="#memtable-flush-writers" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>This sets the number of memtable flush writer threads per disk
 as well as the total number of memtables that can be flushed concurrently.
@@ -957,7 +972,7 @@
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="cdc-total-space-in-mb">
-<h2><code class="docutils literal"><span class="pre">cdc_total_space_in_mb</span></code><a class="headerlink" href="#cdc-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_total_space_in_mb</span></code><a class="headerlink" href="#cdc-total-space-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Total space to use for change-data-capture logs on disk.</p>
 <p>If space gets above this value, Cassandra will throw WriteTimeoutException
@@ -968,7 +983,7 @@
 <p><em>Default Value:</em> 4096</p>
 </div>
 <div class="section" id="cdc-free-space-check-interval-ms">
-<h2><code class="docutils literal"><span class="pre">cdc_free_space_check_interval_ms</span></code><a class="headerlink" href="#cdc-free-space-check-interval-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cdc_free_space_check_interval_ms</span></code><a class="headerlink" href="#cdc-free-space-check-interval-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>When we hit our cdc_raw limit and the CDCCompactor is either running behind
 or experiencing backpressure, we check at the following interval to see if any
@@ -976,7 +991,7 @@
 <p><em>Default Value:</em> 250</p>
 </div>
 <div class="section" id="index-summary-capacity-in-mb">
-<h2><code class="docutils literal"><span class="pre">index_summary_capacity_in_mb</span></code><a class="headerlink" href="#index-summary-capacity-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">index_summary_capacity_in_mb</span></code><a class="headerlink" href="#index-summary-capacity-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>A fixed memory pool size in MB for for SSTable index summaries. If left
 empty, this will default to 5% of the heap size. If the memory usage of
 all index summaries exceeds this limit, SSTables with low read rates will
@@ -985,7 +1000,7 @@
 more than this amount of memory.</p>
 </div>
 <div class="section" id="index-summary-resize-interval-in-minutes">
-<h2><code class="docutils literal"><span class="pre">index_summary_resize_interval_in_minutes</span></code><a class="headerlink" href="#index-summary-resize-interval-in-minutes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">index_summary_resize_interval_in_minutes</span></code><a class="headerlink" href="#index-summary-resize-interval-in-minutes" title="Permalink to this headline">¶</a></h2>
 <p>How frequently index summaries should be resampled.  This is done
 periodically to redistribute memory from the fixed-size pool to sstables
 proportional their recent read rates.  Setting to -1 will disable this
@@ -993,7 +1008,7 @@
 <p><em>Default Value:</em> 60</p>
 </div>
 <div class="section" id="trickle-fsync">
-<h2><code class="docutils literal"><span class="pre">trickle_fsync</span></code><a class="headerlink" href="#trickle-fsync" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">trickle_fsync</span></code><a class="headerlink" href="#trickle-fsync" title="Permalink to this headline">¶</a></h2>
 <p>Whether to, when doing sequential writing, fsync() at intervals in
 order to force the operating system to flush the dirty
 buffers. Enable this to avoid sudden dirty buffer flushing from
@@ -1002,24 +1017,24 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="trickle-fsync-interval-in-kb">
-<h2><code class="docutils literal"><span class="pre">trickle_fsync_interval_in_kb</span></code><a class="headerlink" href="#trickle-fsync-interval-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">trickle_fsync_interval_in_kb</span></code><a class="headerlink" href="#trickle-fsync-interval-in-kb" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 10240</p>
 </div>
 <div class="section" id="storage-port">
-<h2><code class="docutils literal"><span class="pre">storage_port</span></code><a class="headerlink" href="#storage-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">storage_port</span></code><a class="headerlink" href="#storage-port" title="Permalink to this headline">¶</a></h2>
 <p>TCP port, for commands and data
 For security reasons, you should not expose this port to the internet.  Firewall it if needed.</p>
 <p><em>Default Value:</em> 7000</p>
 </div>
 <div class="section" id="ssl-storage-port">
-<h2><code class="docutils literal"><span class="pre">ssl_storage_port</span></code><a class="headerlink" href="#ssl-storage-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code><a class="headerlink" href="#ssl-storage-port" title="Permalink to this headline">¶</a></h2>
 <p>SSL port, for encrypted communication.  Unused unless enabled in
 encryption_options
 For security reasons, you should not expose this port to the internet.  Firewall it if needed.</p>
 <p><em>Default Value:</em> 7001</p>
 </div>
 <div class="section" id="listen-address">
-<h2><code class="docutils literal"><span class="pre">listen_address</span></code><a class="headerlink" href="#listen-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_address</span></code><a class="headerlink" href="#listen-address" title="Permalink to this headline">¶</a></h2>
 <p>Address or interface to bind to and tell other Cassandra nodes to connect to.
 You _must_ change this if you want multiple nodes to be able to communicate!</p>
 <p>Set listen_address OR listen_interface, not both.</p>
@@ -1031,14 +1046,14 @@
 <p><em>Default Value:</em> localhost</p>
 </div>
 <div class="section" id="listen-interface">
-<h2><code class="docutils literal"><span class="pre">listen_interface</span></code><a class="headerlink" href="#listen-interface" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_interface</span></code><a class="headerlink" href="#listen-interface" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Set listen_address OR listen_interface, not both. Interfaces must correspond
 to a single address, IP aliasing is not supported.</p>
 <p><em>Default Value:</em> eth0</p>
 </div>
 <div class="section" id="listen-interface-prefer-ipv6">
-<h2><code class="docutils literal"><span class="pre">listen_interface_prefer_ipv6</span></code><a class="headerlink" href="#listen-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_interface_prefer_ipv6</span></code><a class="headerlink" href="#listen-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>If you choose to specify the interface by name and the interface has an ipv4 and an ipv6 address
 you can specify which should be chosen using listen_interface_prefer_ipv6. If false the first ipv4
@@ -1047,14 +1062,14 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="broadcast-address">
-<h2><code class="docutils literal"><span class="pre">broadcast_address</span></code><a class="headerlink" href="#broadcast-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">broadcast_address</span></code><a class="headerlink" href="#broadcast-address" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Address to broadcast to other Cassandra nodes
 Leaving this blank will set it to the same value as listen_address</p>
 <p><em>Default Value:</em> 1.2.3.4</p>
 </div>
 <div class="section" id="listen-on-broadcast-address">
-<h2><code class="docutils literal"><span class="pre">listen_on_broadcast_address</span></code><a class="headerlink" href="#listen-on-broadcast-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">listen_on_broadcast_address</span></code><a class="headerlink" href="#listen-on-broadcast-address" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>When using multiple physical network interfaces, set this
 to true to listen on broadcast_address in addition to
@@ -1065,27 +1080,27 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="internode-authenticator">
-<h2><code class="docutils literal"><span class="pre">internode_authenticator</span></code><a class="headerlink" href="#internode-authenticator" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_authenticator</span></code><a class="headerlink" href="#internode-authenticator" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Internode authentication backend, implementing IInternodeAuthenticator;
 used to allow/disallow connections from peer nodes.</p>
 <p><em>Default Value:</em> org.apache.cassandra.auth.AllowAllInternodeAuthenticator</p>
 </div>
 <div class="section" id="start-native-transport">
-<h2><code class="docutils literal"><span class="pre">start_native_transport</span></code><a class="headerlink" href="#start-native-transport" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">start_native_transport</span></code><a class="headerlink" href="#start-native-transport" title="Permalink to this headline">¶</a></h2>
 <p>Whether to start the native transport server.
 Please note that the address on which the native transport is bound is the
 same as the rpc_address. The port however is different and specified below.</p>
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="native-transport-port">
-<h2><code class="docutils literal"><span class="pre">native_transport_port</span></code><a class="headerlink" href="#native-transport-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_port</span></code><a class="headerlink" href="#native-transport-port" title="Permalink to this headline">¶</a></h2>
 <p>port for the CQL native transport to listen for clients on
 For security reasons, you should not expose this port to the internet.  Firewall it if needed.</p>
 <p><em>Default Value:</em> 9042</p>
 </div>
 <div class="section" id="native-transport-port-ssl">
-<h2><code class="docutils literal"><span class="pre">native_transport_port_ssl</span></code><a class="headerlink" href="#native-transport-port-ssl" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_port_ssl</span></code><a class="headerlink" href="#native-transport-port-ssl" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
 Enabling native transport encryption in client_encryption_options allows you to either use
 encryption for the standard port or to use a dedicated, additional port along with the unencrypted
@@ -1097,7 +1112,7 @@
 <p><em>Default Value:</em> 9142</p>
 </div>
 <div class="section" id="native-transport-max-threads">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_threads</span></code><a class="headerlink" href="#native-transport-max-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_threads</span></code><a class="headerlink" href="#native-transport-max-threads" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
 The maximum threads for handling requests when the native transport is used.
 This is similar to rpc_max_threads though the default differs slightly (and
@@ -1106,34 +1121,34 @@
 <p><em>Default Value:</em> 128</p>
 </div>
 <div class="section" id="native-transport-max-frame-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_frame_size_in_mb</span></code><a class="headerlink" href="#native-transport-max-frame-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_frame_size_in_mb</span></code><a class="headerlink" href="#native-transport-max-frame-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The maximum size of allowed frame. Frame (requests) larger than this will
-be rejected as invalid. The default is 256MB. If you&#8217;re changing this parameter,
+be rejected as invalid. The default is 256MB. If you’re changing this parameter,
 you may want to adjust max_value_size_in_mb accordingly. This should be positive and less than 2048.</p>
 <p><em>Default Value:</em> 256</p>
 </div>
 <div class="section" id="native-transport-max-concurrent-connections">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The maximum number of concurrent client connections.
 The default is -1, which means unlimited.</p>
 <p><em>Default Value:</em> -1</p>
 </div>
 <div class="section" id="native-transport-max-concurrent-connections-per-ip">
-<h2><code class="docutils literal"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections-per-ip" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">native_transport_max_concurrent_connections_per_ip</span></code><a class="headerlink" href="#native-transport-max-concurrent-connections-per-ip" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>The maximum number of concurrent client connections per source ip.
 The default is -1, which means unlimited.</p>
 <p><em>Default Value:</em> -1</p>
 </div>
 <div class="section" id="start-rpc">
-<h2><code class="docutils literal"><span class="pre">start_rpc</span></code><a class="headerlink" href="#start-rpc" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">start_rpc</span></code><a class="headerlink" href="#start-rpc" title="Permalink to this headline">¶</a></h2>
 <p>Whether to start the thrift rpc server.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="rpc-address">
-<h2><code class="docutils literal"><span class="pre">rpc_address</span></code><a class="headerlink" href="#rpc-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_address</span></code><a class="headerlink" href="#rpc-address" title="Permalink to this headline">¶</a></h2>
 <p>The address or interface to bind the Thrift RPC service and native transport
 server to.</p>
 <p>Set rpc_address OR rpc_interface, not both.</p>
@@ -1145,14 +1160,14 @@
 <p><em>Default Value:</em> localhost</p>
 </div>
 <div class="section" id="rpc-interface">
-<h2><code class="docutils literal"><span class="pre">rpc_interface</span></code><a class="headerlink" href="#rpc-interface" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_interface</span></code><a class="headerlink" href="#rpc-interface" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Set rpc_address OR rpc_interface, not both. Interfaces must correspond
 to a single address, IP aliasing is not supported.</p>
 <p><em>Default Value:</em> eth1</p>
 </div>
 <div class="section" id="rpc-interface-prefer-ipv6">
-<h2><code class="docutils literal"><span class="pre">rpc_interface_prefer_ipv6</span></code><a class="headerlink" href="#rpc-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_interface_prefer_ipv6</span></code><a class="headerlink" href="#rpc-interface-prefer-ipv6" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>If you choose to specify the interface by name and the interface has an ipv4 and an ipv6 address
 you can specify which should be chosen using rpc_interface_prefer_ipv6. If false the first ipv4
@@ -1161,12 +1176,12 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="rpc-port">
-<h2><code class="docutils literal"><span class="pre">rpc_port</span></code><a class="headerlink" href="#rpc-port" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_port</span></code><a class="headerlink" href="#rpc-port" title="Permalink to this headline">¶</a></h2>
 <p>port for Thrift to listen for clients on</p>
 <p><em>Default Value:</em> 9160</p>
 </div>
 <div class="section" id="broadcast-rpc-address">
-<h2><code class="docutils literal"><span class="pre">broadcast_rpc_address</span></code><a class="headerlink" href="#broadcast-rpc-address" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">broadcast_rpc_address</span></code><a class="headerlink" href="#broadcast-rpc-address" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>RPC address to broadcast to drivers and other Cassandra nodes. This cannot
 be set to 0.0.0.0. If left blank, this will be set to the value of
@@ -1175,12 +1190,12 @@
 <p><em>Default Value:</em> 1.2.3.4</p>
 </div>
 <div class="section" id="rpc-keepalive">
-<h2><code class="docutils literal"><span class="pre">rpc_keepalive</span></code><a class="headerlink" href="#rpc-keepalive" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_keepalive</span></code><a class="headerlink" href="#rpc-keepalive" title="Permalink to this headline">¶</a></h2>
 <p>enable or disable keepalive on rpc/native connections</p>
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="rpc-server-type">
-<h2><code class="docutils literal"><span class="pre">rpc_server_type</span></code><a class="headerlink" href="#rpc-server-type" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_server_type</span></code><a class="headerlink" href="#rpc-server-type" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra provides two out-of-the-box options for the RPC Server:</p>
 <dl class="docutils">
 <dt>sync</dt>
@@ -1189,7 +1204,7 @@
 per thread, and that will correspond to your use of virtual memory (but physical memory
 may be limited depending on use of stack space).</dd>
 <dt>hsha</dt>
-<dd>Stands for &#8220;half synchronous, half asynchronous.&#8221; All thrift clients are handled
+<dd>Stands for “half synchronous, half asynchronous.” All thrift clients are handled
 asynchronously using a small number of threads that does not vary with the amount
 of thrift clients (and thus scales well to many clients). The rpc requests are still
 synchronous (one thread per active request). If hsha is selected then it is essential
@@ -1202,7 +1217,7 @@
 <p><em>Default Value:</em> sync</p>
 </div>
 <div class="section" id="rpc-min-threads">
-<h2><code class="docutils literal"><span class="pre">rpc_min_threads</span></code><a class="headerlink" href="#rpc-min-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_min_threads</span></code><a class="headerlink" href="#rpc-min-threads" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Uncomment rpc_min|max_thread to set request pool size limits.</p>
 <p>Regardless of your choice of RPC server (see above), the number of maximum requests in the
@@ -1214,21 +1229,21 @@
 <p><em>Default Value:</em> 16</p>
 </div>
 <div class="section" id="rpc-max-threads">
-<h2><code class="docutils literal"><span class="pre">rpc_max_threads</span></code><a class="headerlink" href="#rpc-max-threads" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_max_threads</span></code><a class="headerlink" href="#rpc-max-threads" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p><em>Default Value:</em> 2048</p>
 </div>
 <div class="section" id="rpc-send-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">rpc_send_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_send_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>uncomment to set socket buffer sizes on rpc connections</p>
 </div>
 <div class="section" id="rpc-recv-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">rpc_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">rpc_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#rpc-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 </div>
 <div class="section" id="internode-send-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">internode_send_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_send_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-send-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Uncomment to set socket buffer size for internode communication
 Note that when setting this, the buffer size is limited by net.core.wmem_max
@@ -1238,38 +1253,38 @@
 /proc/sys/net/core/rmem_max
 /proc/sys/net/ipv4/tcp_wmem
 /proc/sys/net/ipv4/tcp_wmem
-and &#8216;man tcp&#8217;</p>
+and ‘man tcp’</p>
 </div>
 <div class="section" id="internode-recv-buff-size-in-bytes">
-<h2><code class="docutils literal"><span class="pre">internode_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_recv_buff_size_in_bytes</span></code><a class="headerlink" href="#internode-recv-buff-size-in-bytes" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Uncomment to set socket buffer size for internode communication
 Note that when setting this, the buffer size is limited by net.core.wmem_max
 and when not setting it it is defined by net.ipv4.tcp_wmem</p>
 </div>
 <div class="section" id="thrift-framed-transport-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">thrift_framed_transport_size_in_mb</span></code><a class="headerlink" href="#thrift-framed-transport-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">thrift_framed_transport_size_in_mb</span></code><a class="headerlink" href="#thrift-framed-transport-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>Frame size for thrift (maximum message length).</p>
 <p><em>Default Value:</em> 15</p>
 </div>
 <div class="section" id="incremental-backups">
-<h2><code class="docutils literal"><span class="pre">incremental_backups</span></code><a class="headerlink" href="#incremental-backups" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">incremental_backups</span></code><a class="headerlink" href="#incremental-backups" title="Permalink to this headline">¶</a></h2>
 <p>Set to true to have Cassandra create a hard link to each sstable
 flushed or streamed locally in a backups/ subdirectory of the
-keyspace data.  Removing these links is the operator&#8217;s
+keyspace data.  Removing these links is the operator’s
 responsibility.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="snapshot-before-compaction">
-<h2><code class="docutils literal"><span class="pre">snapshot_before_compaction</span></code><a class="headerlink" href="#snapshot-before-compaction" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">snapshot_before_compaction</span></code><a class="headerlink" href="#snapshot-before-compaction" title="Permalink to this headline">¶</a></h2>
 <p>Whether or not to take a snapshot before each compaction.  Be
-careful using this option, since Cassandra won&#8217;t clean up the
-snapshots for you.  Mostly useful if you&#8217;re paranoid when there
+careful using this option, since Cassandra won’t clean up the
+snapshots for you.  Mostly useful if you’re paranoid when there
 is a data format change.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="auto-snapshot">
-<h2><code class="docutils literal"><span class="pre">auto_snapshot</span></code><a class="headerlink" href="#auto-snapshot" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">auto_snapshot</span></code><a class="headerlink" href="#auto-snapshot" title="Permalink to this headline">¶</a></h2>
 <p>Whether or not a snapshot is taken of the data before keyspace truncation
 or dropping of column families. The STRONGLY advised default of true
 should be used to provide data safety. If you set this flag to false, you will
@@ -1277,7 +1292,7 @@
 <p><em>Default Value:</em> true</p>
 </div>
 <div class="section" id="column-index-size-in-kb">
-<h2><code class="docutils literal"><span class="pre">column_index_size_in_kb</span></code><a class="headerlink" href="#column-index-size-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">column_index_size_in_kb</span></code><a class="headerlink" href="#column-index-size-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Granularity of the collation index of rows within a partition.
 Increase if your rows are large, or if you have a very large
 number of rows per partition.  The competing goals are these:</p>
@@ -1292,7 +1307,7 @@
 <p><em>Default Value:</em> 64</p>
 </div>
 <div class="section" id="column-index-cache-size-in-kb">
-<h2><code class="docutils literal"><span class="pre">column_index_cache_size_in_kb</span></code><a class="headerlink" href="#column-index-cache-size-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">column_index_cache_size_in_kb</span></code><a class="headerlink" href="#column-index-cache-size-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Per sstable indexed key cache entries (the collation index in memory
 mentioned above) exceeding this size will not be held on heap.
 This means that only partition information is held on heap and the
@@ -1302,10 +1317,10 @@
 <p><em>Default Value:</em> 2</p>
 </div>
 <div class="section" id="concurrent-compactors">
-<h2><code class="docutils literal"><span class="pre">concurrent_compactors</span></code><a class="headerlink" href="#concurrent-compactors" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">concurrent_compactors</span></code><a class="headerlink" href="#concurrent-compactors" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Number of simultaneous compactions to allow, NOT including
-validation &#8220;compactions&#8221; for anti-entropy repair.  Simultaneous
+validation “compactions” for anti-entropy repair.  Simultaneous
 compactions can help preserve read performance in a mixed read/write
 workload, by mitigating the tendency of small sstables to accumulate
 during a single long running compactions. The default is usually
@@ -1319,7 +1334,7 @@
 <p><em>Default Value:</em> 1</p>
 </div>
 <div class="section" id="compaction-throughput-mb-per-sec">
-<h2><code class="docutils literal"><span class="pre">compaction_throughput_mb_per_sec</span></code><a class="headerlink" href="#compaction-throughput-mb-per-sec" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">compaction_throughput_mb_per_sec</span></code><a class="headerlink" href="#compaction-throughput-mb-per-sec" title="Permalink to this headline">¶</a></h2>
 <p>Throttles compaction to the given total throughput across the entire
 system. The faster you insert data, the faster you need to compact in
 order to keep the sstable count down, but in general, setting this to
@@ -1329,7 +1344,7 @@
 <p><em>Default Value:</em> 16</p>
 </div>
 <div class="section" id="sstable-preemptive-open-interval-in-mb">
-<h2><code class="docutils literal"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code><a class="headerlink" href="#sstable-preemptive-open-interval-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">sstable_preemptive_open_interval_in_mb</span></code><a class="headerlink" href="#sstable-preemptive-open-interval-in-mb" title="Permalink to this headline">¶</a></h2>
 <p>When compacting, the replacement sstable(s) can be opened before they
 are completely written, and used in place of the prior sstables for
 any range that has been written. This helps to smoothly transfer reads
@@ -1337,7 +1352,7 @@
 <p><em>Default Value:</em> 50</p>
 </div>
 <div class="section" id="stream-throughput-outbound-megabits-per-sec">
-<h2><code class="docutils literal"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Throttles all outbound streaming file transfers on this node to the
 given total throughput in Mbps. This is necessary because Cassandra does
@@ -1347,7 +1362,7 @@
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="inter-dc-stream-throughput-outbound-megabits-per-sec">
-<h2><code class="docutils literal"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#inter-dc-stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">inter_dc_stream_throughput_outbound_megabits_per_sec</span></code><a class="headerlink" href="#inter-dc-stream-throughput-outbound-megabits-per-sec" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Throttles all streaming file transfer between the datacenters,
 this setting allows users to throttle inter dc stream throughput in addition
@@ -1357,52 +1372,52 @@
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="read-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">read_request_timeout_in_ms</span></code><a class="headerlink" href="#read-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">read_request_timeout_in_ms</span></code><a class="headerlink" href="#read-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for read operations to complete</p>
 <p><em>Default Value:</em> 5000</p>
 </div>
 <div class="section" id="range-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">range_request_timeout_in_ms</span></code><a class="headerlink" href="#range-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">range_request_timeout_in_ms</span></code><a class="headerlink" href="#range-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for seq or index scans to complete</p>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="write-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">write_request_timeout_in_ms</span></code><a class="headerlink" href="#write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">write_request_timeout_in_ms</span></code><a class="headerlink" href="#write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for writes to complete</p>
 <p><em>Default Value:</em> 2000</p>
 </div>
 <div class="section" id="counter-write-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">counter_write_request_timeout_in_ms</span></code><a class="headerlink" href="#counter-write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">counter_write_request_timeout_in_ms</span></code><a class="headerlink" href="#counter-write-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for counter writes to complete</p>
 <p><em>Default Value:</em> 5000</p>
 </div>
 <div class="section" id="cas-contention-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">cas_contention_timeout_in_ms</span></code><a class="headerlink" href="#cas-contention-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cas_contention_timeout_in_ms</span></code><a class="headerlink" href="#cas-contention-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long a coordinator should continue to retry a CAS operation
 that contends with other proposals for the same row</p>
 <p><em>Default Value:</em> 1000</p>
 </div>
 <div class="section" id="truncate-request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">truncate_request_timeout_in_ms</span></code><a class="headerlink" href="#truncate-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">truncate_request_timeout_in_ms</span></code><a class="headerlink" href="#truncate-request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long the coordinator should wait for truncates to complete
 (This can be much longer, because unless auto_snapshot is disabled
 we need to flush first so we can snapshot before removing the data.)</p>
 <p><em>Default Value:</em> 60000</p>
 </div>
 <div class="section" id="request-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">request_timeout_in_ms</span></code><a class="headerlink" href="#request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">request_timeout_in_ms</span></code><a class="headerlink" href="#request-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>The default timeout for other, miscellaneous operations</p>
 <p><em>Default Value:</em> 10000</p>
 </div>
 <div class="section" id="slow-query-log-timeout-in-ms">
-<h2><code class="docutils literal"><span class="pre">slow_query_log_timeout_in_ms</span></code><a class="headerlink" href="#slow-query-log-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">slow_query_log_timeout_in_ms</span></code><a class="headerlink" href="#slow-query-log-timeout-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>How long before a node logs slow queries. Select queries that take longer than
 this timeout to execute, will generate an aggregated log message, so that slow queries
 can be identified. Set this value to zero to disable slow query logging.</p>
 <p><em>Default Value:</em> 500</p>
 </div>
 <div class="section" id="cross-node-timeout">
-<h2><code class="docutils literal"><span class="pre">cross_node_timeout</span></code><a class="headerlink" href="#cross-node-timeout" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">cross_node_timeout</span></code><a class="headerlink" href="#cross-node-timeout" title="Permalink to this headline">¶</a></h2>
 <p>Enable operation timeout information exchange between nodes to accurately
 measure request timeouts.  If disabled, replicas will assume that requests
 were forwarded to them instantly by the coordinator, which means that
@@ -1413,7 +1428,7 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="streaming-keep-alive-period-in-secs">
-<h2><code class="docutils literal"><span class="pre">streaming_keep_alive_period_in_secs</span></code><a class="headerlink" href="#streaming-keep-alive-period-in-secs" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">streaming_keep_alive_period_in_secs</span></code><a class="headerlink" href="#streaming-keep-alive-period-in-secs" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Set keep-alive period for streaming
 This node will send a keep-alive message periodically with this period.
@@ -1424,33 +1439,33 @@
 <p><em>Default Value:</em> 300</p>
 </div>
 <div class="section" id="phi-convict-threshold">
-<h2><code class="docutils literal"><span class="pre">phi_convict_threshold</span></code><a class="headerlink" href="#phi-convict-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">phi_convict_threshold</span></code><a class="headerlink" href="#phi-convict-threshold" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>phi value that must be reached for a host to be marked down.
 most users should never need to adjust this.</p>
 <p><em>Default Value:</em> 8</p>
 </div>
 <div class="section" id="endpoint-snitch">
-<h2><code class="docutils literal"><span class="pre">endpoint_snitch</span></code><a class="headerlink" href="#endpoint-snitch" title="Permalink to this headline">¶</a></h2>
-<p>endpoint_snitch &#8211; Set this to a class that implements
+<h2><code class="docutils literal notranslate"><span class="pre">endpoint_snitch</span></code><a class="headerlink" href="#endpoint-snitch" title="Permalink to this headline">¶</a></h2>
+<p>endpoint_snitch – Set this to a class that implements
 IEndpointSnitch.  The snitch has two functions:</p>
 <ul class="simple">
 <li>it teaches Cassandra enough about your network topology to route
 requests efficiently</li>
 <li>it allows Cassandra to spread replicas around your cluster to avoid
 correlated failures. It does this by grouping machines into
-&#8220;datacenters&#8221; and &#8220;racks.&#8221;  Cassandra will do its best not to have
-more than one replica on the same &#8220;rack&#8221; (which may not actually
+“datacenters” and “racks.”  Cassandra will do its best not to have
+more than one replica on the same “rack” (which may not actually
 be a physical location)</li>
 </ul>
 <p>CASSANDRA WILL NOT ALLOW YOU TO SWITCH TO AN INCOMPATIBLE SNITCH
 ONCE DATA IS INSERTED INTO THE CLUSTER.  This would cause data loss.
 This means that if you start with the default SimpleSnitch, which
-locates every node on &#8220;rack1&#8221; in &#8220;datacenter1&#8221;, your only options
+locates every node on “rack1” in “datacenter1”, your only options
 if you need to add another datacenter are GossipingPropertyFileSnitch
 (and the older PFS).  From there, if you want to migrate to an
 incompatible snitch like Ec2Snitch you can do it by adding new nodes
-under Ec2Snitch (which will locate them in a new &#8220;datacenter&#8221;) and
+under Ec2Snitch (which will locate them in a new “datacenter”) and
 decommissioning the old ones.</p>
 <p>Out of the box, Cassandra provides:</p>
 <dl class="docutils">
@@ -1482,7 +1497,7 @@
 establishing a connection.)</dd>
 <dt>RackInferringSnitch:</dt>
 <dd>Proximity is determined by rack and data center, which are
-assumed to correspond to the 3rd and 2nd octet of each node&#8217;s IP
+assumed to correspond to the 3rd and 2nd octet of each node’s IP
 address, respectively.  Unless this happens to match your
 deployment conventions, this is best used as an example of
 writing a custom Snitch class and is provided in that spirit.</dd>
@@ -1492,21 +1507,21 @@
 <p><em>Default Value:</em> SimpleSnitch</p>
 </div>
 <div class="section" id="dynamic-snitch-update-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-update-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>controls how often to perform the more expensive part of host score
 calculation</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="dynamic-snitch-reset-interval-in-ms">
-<h2><code class="docutils literal"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-reset-interval-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code><a class="headerlink" href="#dynamic-snitch-reset-interval-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>controls how often to reset all host scores, allowing a bad host to
 possibly recover</p>
 <p><em>Default Value:</em> 600000</p>
 </div>
 <div class="section" id="dynamic-snitch-badness-threshold">
-<h2><code class="docutils literal"><span class="pre">dynamic_snitch_badness_threshold</span></code><a class="headerlink" href="#dynamic-snitch-badness-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_badness_threshold</span></code><a class="headerlink" href="#dynamic-snitch-badness-threshold" title="Permalink to this headline">¶</a></h2>
 <p>if set greater than zero and read_repair_chance is &lt; 1.0, this will allow
-&#8216;pinning&#8217; of replicas to hosts in order to increase cache capacity.
+‘pinning’ of replicas to hosts in order to increase cache capacity.
 The badness threshold will control how much worse the pinned host has to be
 before the dynamic snitch will prefer other replicas over it.  This is
 expressed as a double which represents a percentage.  Thus, a value of
@@ -1515,8 +1530,8 @@
 <p><em>Default Value:</em> 0.1</p>
 </div>
 <div class="section" id="request-scheduler">
-<h2><code class="docutils literal"><span class="pre">request_scheduler</span></code><a class="headerlink" href="#request-scheduler" title="Permalink to this headline">¶</a></h2>
-<p>request_scheduler &#8211; Set this to a class that implements
+<h2><code class="docutils literal notranslate"><span class="pre">request_scheduler</span></code><a class="headerlink" href="#request-scheduler" title="Permalink to this headline">¶</a></h2>
+<p>request_scheduler – Set this to a class that implements
 RequestScheduler, which will schedule incoming client requests
 according to the specific policy. This is useful for multi-tenancy
 with a single Cassandra cluster.
@@ -1530,7 +1545,7 @@
 <p><em>Default Value:</em> org.apache.cassandra.scheduler.NoScheduler</p>
 </div>
 <div class="section" id="request-scheduler-options">
-<h2><code class="docutils literal"><span class="pre">request_scheduler_options</span></code><a class="headerlink" href="#request-scheduler-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">request_scheduler_options</span></code><a class="headerlink" href="#request-scheduler-options" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Scheduler Options vary based on the type of scheduler</p>
 <dl class="docutils">
@@ -1557,7 +1572,7 @@
 </dd>
 </dl>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#    throttle_limit: 80</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1">#    throttle_limit: 80</span>
 <span class="c1">#    default_weight: 5</span>
 <span class="c1">#    weights:</span>
 <span class="c1">#      Keyspace1: 1</span>
@@ -1566,14 +1581,14 @@
 </div>
 </div>
 <div class="section" id="request-scheduler-id">
-<h2><code class="docutils literal"><span class="pre">request_scheduler_id</span></code><a class="headerlink" href="#request-scheduler-id" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">request_scheduler_id</span></code><a class="headerlink" href="#request-scheduler-id" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em>
-request_scheduler_id &#8211; An identifier based on which to perform
+request_scheduler_id – An identifier based on which to perform
 the request scheduling. Currently the only valid option is keyspace.</p>
 <p><em>Default Value:</em> keyspace</p>
 </div>
 <div class="section" id="server-encryption-options">
-<h2><code class="docutils literal"><span class="pre">server_encryption_options</span></code><a class="headerlink" href="#server-encryption-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">server_encryption_options</span></code><a class="headerlink" href="#server-encryption-options" title="Permalink to this headline">¶</a></h2>
 <p>Enable or disable inter-node encryption
 JVM defaults for supported SSL socket protocols and cipher suites can
 be replaced using custom encryption options. This is not recommended
@@ -1591,7 +1606,7 @@
 the keystore and truststore.  For instructions on generating these files, see:
 <a class="reference external" href="http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore">http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore</a></p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">internode_encryption</span><span class="p">:</span> <span class="n">none</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">internode_encryption</span><span class="p">:</span> <span class="n">none</span>
 <span class="n">keystore</span><span class="p">:</span> <span class="n">conf</span><span class="o">/.</span><span class="n">keystore</span>
 <span class="n">keystore_password</span><span class="p">:</span> <span class="n">cassandra</span>
 <span class="n">truststore</span><span class="p">:</span> <span class="n">conf</span><span class="o">/.</span><span class="n">truststore</span>
@@ -1607,10 +1622,10 @@
 </div>
 </div>
 <div class="section" id="client-encryption-options">
-<h2><code class="docutils literal"><span class="pre">client_encryption_options</span></code><a class="headerlink" href="#client-encryption-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">client_encryption_options</span></code><a class="headerlink" href="#client-encryption-options" title="Permalink to this headline">¶</a></h2>
 <p>enable or disable client/server encryption.</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
 <span class="c1"># If enabled and optional is set to true encrypted and unencrypted connections are handled.</span>
 <span class="n">optional</span><span class="p">:</span> <span class="n">false</span>
 <span class="n">keystore</span><span class="p">:</span> <span class="n">conf</span><span class="o">/.</span><span class="n">keystore</span>
@@ -1628,7 +1643,7 @@
 </div>
 </div>
 <div class="section" id="internode-compression">
-<h2><code class="docutils literal"><span class="pre">internode_compression</span></code><a class="headerlink" href="#internode-compression" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">internode_compression</span></code><a class="headerlink" href="#internode-compression" title="Permalink to this headline">¶</a></h2>
 <p>internode_compression controls whether traffic between nodes is
 compressed.
 Can be:</p>
@@ -1643,7 +1658,7 @@
 <p><em>Default Value:</em> dc</p>
 </div>
 <div class="section" id="inter-dc-tcp-nodelay">
-<h2><code class="docutils literal"><span class="pre">inter_dc_tcp_nodelay</span></code><a class="headerlink" href="#inter-dc-tcp-nodelay" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">inter_dc_tcp_nodelay</span></code><a class="headerlink" href="#inter-dc-tcp-nodelay" title="Permalink to this headline">¶</a></h2>
 <p>Enable or disable tcp_nodelay for inter-dc communication.
 Disabling it will result in larger (but fewer) network packets being sent,
 reducing overhead from the TCP protocol itself, at the cost of increasing
@@ -1651,23 +1666,23 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="tracetype-query-ttl">
-<h2><code class="docutils literal"><span class="pre">tracetype_query_ttl</span></code><a class="headerlink" href="#tracetype-query-ttl" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tracetype_query_ttl</span></code><a class="headerlink" href="#tracetype-query-ttl" title="Permalink to this headline">¶</a></h2>
 <p>TTL for different trace types used during logging of the repair process.</p>
 <p><em>Default Value:</em> 86400</p>
 </div>
 <div class="section" id="tracetype-repair-ttl">
-<h2><code class="docutils literal"><span class="pre">tracetype_repair_ttl</span></code><a class="headerlink" href="#tracetype-repair-ttl" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tracetype_repair_ttl</span></code><a class="headerlink" href="#tracetype-repair-ttl" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 604800</p>
 </div>
 <div class="section" id="gc-log-threshold-in-ms">
-<h2><code class="docutils literal"><span class="pre">gc_log_threshold_in_ms</span></code><a class="headerlink" href="#gc-log-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">gc_log_threshold_in_ms</span></code><a class="headerlink" href="#gc-log-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>By default, Cassandra logs GC Pauses greater than 200 ms at INFO level
 This threshold can be adjusted to minimize logging if necessary</p>
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="enable-user-defined-functions">
-<h2><code class="docutils literal"><span class="pre">enable_user_defined_functions</span></code><a class="headerlink" href="#enable-user-defined-functions" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">enable_user_defined_functions</span></code><a class="headerlink" href="#enable-user-defined-functions" title="Permalink to this headline">¶</a></h2>
 <p>If unset, all GC Pauses greater than gc_log_threshold_in_ms will log at
 INFO level
 UDFs (user defined functions) are disabled by default.
@@ -1675,33 +1690,27 @@
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="enable-scripted-user-defined-functions">
-<h2><code class="docutils literal"><span class="pre">enable_scripted_user_defined_functions</span></code><a class="headerlink" href="#enable-scripted-user-defined-functions" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">enable_scripted_user_defined_functions</span></code><a class="headerlink" href="#enable-scripted-user-defined-functions" title="Permalink to this headline">¶</a></h2>
 <p>Enables scripted UDFs (JavaScript UDFs).
 Java UDFs are always enabled, if enable_user_defined_functions is true.
-Enable this option to be able to use UDFs with &#8220;language javascript&#8221; or any custom JSR-223 provider.
+Enable this option to be able to use UDFs with “language javascript” or any custom JSR-223 provider.
 This option has no effect, if enable_user_defined_functions is false.</p>
 <p><em>Default Value:</em> false</p>
 </div>
-<div class="section" id="enable-materialized-views">
-<h2><code class="docutils literal"><span class="pre">enable_materialized_views</span></code><a class="headerlink" href="#enable-materialized-views" title="Permalink to this headline">¶</a></h2>
-<p>Enables materialized view creation on this node.
-Materialized views are considered experimental and are not recommended for production use.</p>
-<p><em>Default Value:</em> true</p>
-</div>
 <div class="section" id="windows-timer-interval">
-<h2><code class="docutils literal"><span class="pre">windows_timer_interval</span></code><a class="headerlink" href="#windows-timer-interval" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">windows_timer_interval</span></code><a class="headerlink" href="#windows-timer-interval" title="Permalink to this headline">¶</a></h2>
 <p>The default Windows kernel timer and scheduling resolution is 15.6ms for power conservation.
 Lowering this value on Windows can provide much tighter latency and better throughput, however
 some virtualized environments may see a negative performance impact from changing this setting
-below their system default. The sysinternals &#8216;clockres&#8217; tool can confirm your system&#8217;s default
+below their system default. The sysinternals ‘clockres’ tool can confirm your system’s default
 setting.</p>
 <p><em>Default Value:</em> 1</p>
 </div>
 <div class="section" id="transparent-data-encryption-options">
-<h2><code class="docutils literal"><span class="pre">transparent_data_encryption_options</span></code><a class="headerlink" href="#transparent-data-encryption-options" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">transparent_data_encryption_options</span></code><a class="headerlink" href="#transparent-data-encryption-options" title="Permalink to this headline">¶</a></h2>
 <p>Enables encrypting data at-rest (on disk). Different key providers can be plugged in, but the default reads from
 a JCE-style keystore. A single keystore can hold multiple keys, but the one referenced by
-the &#8220;key_alias&#8221; is the only key that will be used for encrypt opertaions; previously used keys
+the “key_alias” is the only key that will be used for encrypt opertaions; previously used keys
 can still (and should!) be in the keystore and will be used on decrypt operations
 (to handle the case of key rotation).</p>
 <p>It is strongly recommended to download and install Java Cryptography Extension (JCE)
@@ -1710,7 +1719,7 @@
 <p>Currently, only the following file types are supported for transparent data encryption, although
 more are coming in future cassandra releases: commitlog, hints</p>
 <p><em>Default Value (complex option)</em>:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">enabled</span><span class="p">:</span> <span class="n">false</span>
 <span class="n">chunk_length_kb</span><span class="p">:</span> <span class="mi">64</span>
 <span class="n">cipher</span><span class="p">:</span> <span class="n">AES</span><span class="o">/</span><span class="n">CBC</span><span class="o">/</span><span class="n">PKCS5Padding</span>
 <span class="n">key_alias</span><span class="p">:</span> <span class="n">testing</span><span class="p">:</span><span class="mi">1</span>
@@ -1727,7 +1736,7 @@
 </div>
 </div>
 <div class="section" id="tombstone-warn-threshold">
-<h2><code class="docutils literal"><span class="pre">tombstone_warn_threshold</span></code><a class="headerlink" href="#tombstone-warn-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tombstone_warn_threshold</span></code><a class="headerlink" href="#tombstone-warn-threshold" title="Permalink to this headline">¶</a></h2>
 <div class="section" id="safety-thresholds">
 <h3>SAFETY THRESHOLDS #<a class="headerlink" href="#safety-thresholds" title="Permalink to this headline">¶</a></h3>
 <p>When executing a scan, within or across a partition, we need to keep the
@@ -1743,39 +1752,39 @@
 </div>
 </div>
 <div class="section" id="tombstone-failure-threshold">
-<h2><code class="docutils literal"><span class="pre">tombstone_failure_threshold</span></code><a class="headerlink" href="#tombstone-failure-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">tombstone_failure_threshold</span></code><a class="headerlink" href="#tombstone-failure-threshold" title="Permalink to this headline">¶</a></h2>
 <p><em>Default Value:</em> 100000</p>
 </div>
 <div class="section" id="batch-size-warn-threshold-in-kb">
-<h2><code class="docutils literal"><span class="pre">batch_size_warn_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-warn-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">batch_size_warn_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-warn-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Log WARN on any multiple-partition batch size exceeding this value. 5kb per batch by default.
 Caution should be taken on increasing the size of this threshold as it can lead to node instability.</p>
 <p><em>Default Value:</em> 5</p>
 </div>
 <div class="section" id="batch-size-fail-threshold-in-kb">
-<h2><code class="docutils literal"><span class="pre">batch_size_fail_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-fail-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">batch_size_fail_threshold_in_kb</span></code><a class="headerlink" href="#batch-size-fail-threshold-in-kb" title="Permalink to this headline">¶</a></h2>
 <p>Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default.</p>
 <p><em>Default Value:</em> 50</p>
 </div>
 <div class="section" id="unlogged-batch-across-partitions-warn-threshold">
-<h2><code class="docutils literal"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code><a class="headerlink" href="#unlogged-batch-across-partitions-warn-threshold" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">unlogged_batch_across_partitions_warn_threshold</span></code><a class="headerlink" href="#unlogged-batch-across-partitions-warn-threshold" title="Permalink to this headline">¶</a></h2>
 <p>Log WARN on any batches not of type LOGGED than span across more partitions than this limit</p>
 <p><em>Default Value:</em> 10</p>
 </div>
 <div class="section" id="compaction-large-partition-warning-threshold-mb">
-<h2><code class="docutils literal"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code><a class="headerlink" href="#compaction-large-partition-warning-threshold-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">compaction_large_partition_warning_threshold_mb</span></code><a class="headerlink" href="#compaction-large-partition-warning-threshold-mb" title="Permalink to this headline">¶</a></h2>
 <p>Log a warning when compacting partitions larger than this value</p>
 <p><em>Default Value:</em> 100</p>
 </div>
 <div class="section" id="gc-warn-threshold-in-ms">
-<h2><code class="docutils literal"><span class="pre">gc_warn_threshold_in_ms</span></code><a class="headerlink" href="#gc-warn-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">gc_warn_threshold_in_ms</span></code><a class="headerlink" href="#gc-warn-threshold-in-ms" title="Permalink to this headline">¶</a></h2>
 <p>GC Pauses greater than gc_warn_threshold_in_ms will be logged at WARN level
 Adjust the threshold based on your application throughput requirement
 By default, Cassandra logs GC Pauses greater than 200 ms at INFO level</p>
 <p><em>Default Value:</em> 1000</p>
 </div>
 <div class="section" id="max-value-size-in-mb">
-<h2><code class="docutils literal"><span class="pre">max_value_size_in_mb</span></code><a class="headerlink" href="#max-value-size-in-mb" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">max_value_size_in_mb</span></code><a class="headerlink" href="#max-value-size-in-mb" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Maximum size of any value in SSTables. Safety measure to detect SSTable corruption
 early. Any value size larger than this threshold will result into marking an SSTable
@@ -1783,14 +1792,14 @@
 <p><em>Default Value:</em> 256</p>
 </div>
 <div class="section" id="back-pressure-enabled">
-<h2><code class="docutils literal"><span class="pre">back_pressure_enabled</span></code><a class="headerlink" href="#back-pressure-enabled" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">back_pressure_enabled</span></code><a class="headerlink" href="#back-pressure-enabled" title="Permalink to this headline">¶</a></h2>
 <p>Back-pressure settings #
 If enabled, the coordinator will apply the back-pressure strategy specified below to each mutation
 sent to replicas, with the aim of reducing pressure on overloaded replicas.</p>
 <p><em>Default Value:</em> false</p>
 </div>
 <div class="section" id="back-pressure-strategy">
-<h2><code class="docutils literal"><span class="pre">back_pressure_strategy</span></code><a class="headerlink" href="#back-pressure-strategy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">back_pressure_strategy</span></code><a class="headerlink" href="#back-pressure-strategy" title="Permalink to this headline">¶</a></h2>
 <p>The back-pressure strategy applied.
 The default implementation, RateBasedBackPressure, takes three arguments:
 high ratio, factor, and flow type, and uses the ratio between incoming mutation responses and outgoing mutation requests.
@@ -1798,20 +1807,20 @@
 if above high ratio, the rate limiting is increased by the given factor;
 such factor is usually best configured between 1 and 10, use larger values for a faster recovery
 at the expense of potentially more dropped mutations;
-the rate limiting is applied according to the flow type: if FAST, it&#8217;s rate limited at the speed of the fastest replica,
+the rate limiting is applied according to the flow type: if FAST, it’s rate limited at the speed of the fastest replica,
 if SLOW at the speed of the slowest one.
 New strategies can be added. Implementors need to implement org.apache.cassandra.net.BackpressureStrategy and
 provide a public constructor accepting a Map&lt;String, Object&gt;.</p>
 </div>
 <div class="section" id="otc-coalescing-strategy">
-<h2><code class="docutils literal"><span class="pre">otc_coalescing_strategy</span></code><a class="headerlink" href="#otc-coalescing-strategy" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_coalescing_strategy</span></code><a class="headerlink" href="#otc-coalescing-strategy" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Coalescing Strategies #
 Coalescing multiples messages turns out to significantly boost message processing throughput (think doubling or more).
-On bare metal, the floor for packet processing throughput is high enough that many applications won&#8217;t notice, but in
+On bare metal, the floor for packet processing throughput is high enough that many applications won’t notice, but in
 virtualized environments, the point at which an application can be bound by network packet processing can be
-surprisingly low compared to the throughput of task processing that is possible inside a VM. It&#8217;s not that bare metal
-doesn&#8217;t benefit from coalescing messages, it&#8217;s that the number of packets a bare metal network interface can process
+surprisingly low compared to the throughput of task processing that is possible inside a VM. It’s not that bare metal
+doesn’t benefit from coalescing messages, it’s that the number of packets a bare metal network interface can process
 is sufficient for many applications such that no load starvation is experienced even without coalescing.
 There are other benefits to coalescing network messages that are harder to isolate with a simple metric like messages
 per second. By coalescing multiple tasks together, a network thread can process multiple messages for the cost of one
@@ -1824,7 +1833,7 @@
 <p><em>Default Value:</em> DISABLED</p>
 </div>
 <div class="section" id="otc-coalescing-window-us">
-<h2><code class="docutils literal"><span class="pre">otc_coalescing_window_us</span></code><a class="headerlink" href="#otc-coalescing-window-us" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_coalescing_window_us</span></code><a class="headerlink" href="#otc-coalescing-window-us" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>How many microseconds to wait for coalescing. For fixed strategy this is the amount of time after the first
 message is received before it will be sent with any accompanying messages. For moving average this is the
@@ -1833,13 +1842,13 @@
 <p><em>Default Value:</em> 200</p>
 </div>
 <div class="section" id="otc-coalescing-enough-coalesced-messages">
-<h2><code class="docutils literal"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code><a class="headerlink" href="#otc-coalescing-enough-coalesced-messages" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_coalescing_enough_coalesced_messages</span></code><a class="headerlink" href="#otc-coalescing-enough-coalesced-messages" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>Do not try to coalesce messages if we already got that many messages. This should be more than 2 and less than 128.</p>
 <p><em>Default Value:</em> 8</p>
 </div>
 <div class="section" id="otc-backlog-expiration-interval-ms">
-<h2><code class="docutils literal"><span class="pre">otc_backlog_expiration_interval_ms</span></code><a class="headerlink" href="#otc-backlog-expiration-interval-ms" title="Permalink to this headline">¶</a></h2>
+<h2><code class="docutils literal notranslate"><span class="pre">otc_backlog_expiration_interval_ms</span></code><a class="headerlink" href="#otc-backlog-expiration-interval-ms" title="Permalink to this headline">¶</a></h2>
 <p><em>This option is commented out by default.</em></p>
 <p>How many milliseconds to wait between two expiration runs on the backlog (queue) of the OutboundTcpConnection.
 Expiration is done if messages are piling up in the backlog. Droppable messages are expired to free the memory
@@ -1849,6 +1858,21 @@
 An interval of 0 disables any wait time, which is the behavior of former Cassandra versions.</p>
 <p><em>Default Value:</em> 200</p>
 </div>
+<div class="section" id="enable-materialized-views">
+<h2><code class="docutils literal notranslate"><span class="pre">enable_materialized_views</span></code><a class="headerlink" href="#enable-materialized-views" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="experimental-features">
+<h3>EXPERIMENTAL FEATURES #<a class="headerlink" href="#experimental-features" title="Permalink to this headline">¶</a></h3>
+<p>Enables materialized view creation on this node.
+Materialized views are considered experimental and are not recommended for production use.</p>
+<p><em>Default Value:</em> true</p>
+</div>
+</div>
+<div class="section" id="enable-sasi-indexes">
+<h2><code class="docutils literal notranslate"><span class="pre">enable_sasi_indexes</span></code><a class="headerlink" href="#enable-sasi-indexes" title="Permalink to this headline">¶</a></h2>
+<p>Enables SASI index creation on this node.
+SASI indexes are considered experimental and are not recommended for production use.</p>
+<p><em>Default Value:</em> true</p>
+</div>
 </div>
 
 
diff --git a/content/doc/stable/configuration/index.html b/content/doc/stable/configuration/index.html
index aafcaa1..5b5ddb9 100644
--- a/content/doc/stable/configuration/index.html
+++ b/content/doc/stable/configuration/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Cassandra Configuration File" href="cassandra_config_file.html"/> <link rel="prev" title="Changes" href="../cql/changes.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Cassandra Configuration File" href="cassandra_config_file.html"/> <link rel="prev" title="Changes" href="../cql/changes.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/contactus.html b/content/doc/stable/contactus.html
index 9a03815..178916d 100644
--- a/content/doc/stable/contactus.html
+++ b/content/doc/stable/contactus.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/> <link rel="prev" title="Reporting Bugs and Contributing" href="bugs.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/> <link rel="prev" title="Reporting Bugs and Contributing" href="bugs.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -173,9 +173,9 @@
 <p>To chat with developers or users in real-time, join our channels on <a class="reference external" href="http://webchat.freenode.net/">IRC freenode</a>. The
 following channels are available:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">#cassandra</span></code> - for user questions and general discussions.</li>
-<li><code class="docutils literal"><span class="pre">#cassandra-dev</span></code> - strictly for questions or discussions related to Cassandra development.</li>
-<li><code class="docutils literal"><span class="pre">#cassandra-builds</span></code> - results of automated test builds.</li>
+<li><code class="docutils literal notranslate"><span class="pre">#cassandra</span></code> - for user questions and general discussions.</li>
+<li><code class="docutils literal notranslate"><span class="pre">#cassandra-dev</span></code> - strictly for questions or discussions related to Cassandra development.</li>
+<li><code class="docutils literal notranslate"><span class="pre">#cassandra-builds</span></code> - results of automated test builds.</li>
 </ul>
 </div>
 </div>
diff --git a/content/doc/stable/cql/appendices.html b/content/doc/stable/cql/appendices.html
index 194b299..7d934da 100644
--- a/content/doc/stable/cql/appendices.html
+++ b/content/doc/stable/cql/appendices.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Changes" href="changes.html"/> <link rel="prev" title="Triggers" href="triggers.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Changes" href="changes.html"/> <link rel="prev" title="Triggers" href="triggers.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -191,373 +191,373 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ADD</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ADD</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AGGREGATE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AGGREGATE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALL</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALL</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALLOW</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALLOW</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AND</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AND</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">APPLY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">APPLY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ASC</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ASC</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ASCII</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ASCII</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">BATCH</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">BATCH</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">BEGIN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">BEGIN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">BIGINT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">BIGINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">BLOB</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">BLOB</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">BOOLEAN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">BOOLEAN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">BY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">BY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CALLED</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CALLED</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CLUSTERING</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CLUSTERING</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">COLUMNFAMILY</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">COLUMNFAMILY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">COMPACT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">COMPACT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CONTAINS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">COUNT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">COUNT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">COUNTER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">COUNTER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CUSTOM</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CUSTOM</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DATE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DECIMAL</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DECIMAL</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DELETE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DELETE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DESC</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DESC</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DISTINCT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DISTINCT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DOUBLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DOUBLE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ENTRIES</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ENTRIES</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXISTS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXISTS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FILTERING</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FILTERING</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FINALFUNC</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FLOAT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FLOAT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FROM</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FROM</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FROZEN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FROZEN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FULL</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FULL</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">FUNCTIONS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">FUNCTIONS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">GRANT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">GRANT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">IF</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">IF</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">IN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">IN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INDEX</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INDEX</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INET</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INET</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INFINITY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INFINITY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INITCOND</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INITCOND</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INPUT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INPUT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INSERT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">INT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">INT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">INTO</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">INTO</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">JSON</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">JSON</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">KEY</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">KEY</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">KEYS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">KEYS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">KEYSPACES</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">KEYSPACES</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">LANGUAGE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">LANGUAGE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">LIMIT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">LIMIT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">LIST</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">LIST</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">LOGIN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">LOGIN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MAP</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MAP</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">NAN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">NAN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">NOLOGIN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">NOLOGIN</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">NORECURSIVE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">NORECURSIVE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">NOSUPERUSER</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">NOSUPERUSER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">NOT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">NOT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">NULL</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">NULL</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">OF</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">OF</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ON</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ON</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">OPTIONS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">OPTIONS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">OR</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">OR</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ORDER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ORDER</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">PASSWORD</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">PASSWORD</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">PERMISSION</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">PERMISSION</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">PERMISSIONS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">PERMISSIONS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">PRIMARY</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">PRIMARY</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">RENAME</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">RENAME</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">REPLACE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">REPLACE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">RETURNS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">RETURNS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">REVOKE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">REVOKE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ROLE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ROLES</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ROLES</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SCHEMA</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SCHEMA</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SET</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SET</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SFUNC</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SFUNC</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SMALLINT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SMALLINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">STATIC</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">STATIC</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">STORAGE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">STORAGE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">STYPE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">STYPE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SUPERUSER</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TEXT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TEXT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TIME</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TIME</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TIMESTAMP</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TIMEUUID</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TIMEUUID</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TINYINT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TINYINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TO</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TO</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TOKEN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TOKEN</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TRIGGER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TRIGGER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TRUNCATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TTL</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TTL</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">TUPLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">TUPLE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">TYPE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">TYPE</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">UNLOGGED</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">UPDATE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">UPDATE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">USE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">USE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">USER</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">USER</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">USERS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">USERS</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">USING</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">USING</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">UUID</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">UUID</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">VALUES</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">VALUES</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">VARCHAR</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">VARCHAR</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">VARINT</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">VARINT</span></code></td>
 <td>no</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">WHERE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">WHERE</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">WITH</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">WITH</span></code></td>
 <td>yes</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">WRITETIME</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code></td>
 <td>no</td>
 </tr>
 </tbody>
@@ -577,17 +577,17 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">bitstring</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">bitstring</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">byte</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">byte</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">complex</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">complex</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">enum</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">enum</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">interval</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">interval</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">macaddr</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">macaddr</span></code></td>
 </tr>
 </tbody>
 </table>
@@ -595,17 +595,17 @@
 <div class="section" id="appendix-c-dropping-compact-storage">
 <h2>Appendix C: Dropping Compact Storage<a class="headerlink" href="#appendix-c-dropping-compact-storage" title="Permalink to this headline">¶</a></h2>
 <p>Starting version 4.0, Thrift and COMPACT STORAGE is no longer supported.</p>
-<p>&#8216;ALTER ... DROP COMPACT STORAGE&#8217; statement makes Compact Tables CQL-compatible,
+<p>‘ALTER … DROP COMPACT STORAGE’ statement makes Compact Tables CQL-compatible,
 exposing internal structure of Thrift/Compact Tables:</p>
 <ul class="simple">
 <li>CQL-created Compact Tables that have no clustering columns, will expose an
-additional clustering column <code class="docutils literal"><span class="pre">column1</span></code> with <code class="docutils literal"><span class="pre">UTF8Type</span></code>.</li>
+additional clustering column <code class="docutils literal notranslate"><span class="pre">column1</span></code> with <code class="docutils literal notranslate"><span class="pre">UTF8Type</span></code>.</li>
 <li>CQL-created Compact Tables that had no regular columns, will expose a
-regular column <code class="docutils literal"><span class="pre">value</span></code> with <code class="docutils literal"><span class="pre">BytesType</span></code>.</li>
+regular column <code class="docutils literal notranslate"><span class="pre">value</span></code> with <code class="docutils literal notranslate"><span class="pre">BytesType</span></code>.</li>
 <li>For CQL-Created Compact Tables, all columns originally defined as
-<code class="docutils literal"><span class="pre">regular</span></code> will be come <code class="docutils literal"><span class="pre">static</span></code></li>
+<code class="docutils literal notranslate"><span class="pre">regular</span></code> will be come <code class="docutils literal notranslate"><span class="pre">static</span></code></li>
 <li>CQL-created Compact Tables that have clustering but have no regular
-columns will have an empty value column (of <code class="docutils literal"><span class="pre">EmptyType</span></code>)</li>
+columns will have an empty value column (of <code class="docutils literal notranslate"><span class="pre">EmptyType</span></code>)</li>
 <li>SuperColumn Tables (can only be created through Thrift) will expose
 a compact value map with an empty name.</li>
 <li>Thrift-created Compact Tables will have types corresponding to their
diff --git a/content/doc/stable/cql/changes.html b/content/doc/stable/cql/changes.html
index 3360b45..29476c2 100644
--- a/content/doc/stable/cql/changes.html
+++ b/content/doc/stable/cql/changes.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="../configuration/index.html"/> <link rel="prev" title="Appendices" href="appendices.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="../configuration/index.html"/> <link rel="prev" title="Appendices" href="appendices.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -192,53 +192,53 @@
 <div class="section" id="id1">
 <h2>3.4.4<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal"><span class="pre">ALTER</span></code> has been removed; a column&#8217;s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> <code class="docutils literal"><span class="pre">ALTER</span></code> has been removed; a field&#8217;s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> has been removed; a column’s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> has been removed; a field’s type may not be changed after creation (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12443">CASSANDRA-12443</a>).</li>
 </ul>
 </div>
 <div class="section" id="id2">
 <h2>3.4.3<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Adds a new <a href="#id3"><span class="problematic" id="id4">``</span></a>duration `` <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-11873">CASSANDRA-11873</a>).</li>
-<li>Support for <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10707">CASSANDRA-10707</a>).</li>
-<li>Adds a <code class="docutils literal"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> option for <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> to ignore omitted columns (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-11424">CASSANDRA-11424</a>).</li>
-<li>Allows <code class="docutils literal"><span class="pre">null</span></code> as a legal value for TTL on insert and update. It will be treated as equivalent to</li>
+<li>Support for <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10707">CASSANDRA-10707</a>).</li>
+<li>Adds a <code class="docutils literal notranslate"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> option for <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> to ignore omitted columns (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-11424">CASSANDRA-11424</a>).</li>
+<li>Allows <code class="docutils literal notranslate"><span class="pre">null</span></code> as a legal value for TTL on insert and update. It will be treated as equivalent to</li>
 </ul>
 <p>inserting a 0 (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-12216">CASSANDRA-12216</a>).</p>
 </div>
 <div class="section" id="id5">
 <h2>3.4.2<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>If a table has a non zero <code class="docutils literal"><span class="pre">default_time_to_live</span></code>, then explicitly specifying a TTL of 0 in an <code class="docutils literal"><span class="pre">INSERT</span></code> or
-<code class="docutils literal"><span class="pre">UPDATE</span></code> statement will result in the new writes not having any expiration (that is, an explicit TTL of 0 cancels
-the <code class="docutils literal"><span class="pre">default_time_to_live</span></code>). This wasn&#8217;t the case before and the <code class="docutils literal"><span class="pre">default_time_to_live</span></code> was applied even though a
+<li>If a table has a non zero <code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code>, then explicitly specifying a TTL of 0 in an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> or
+<code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement will result in the new writes not having any expiration (that is, an explicit TTL of 0 cancels
+the <code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code>). This wasn’t the case before and the <code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code> was applied even though a
 TTL had been explicitly set.</li>
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal"><span class="pre">ADD</span></code> and <code class="docutils literal"><span class="pre">DROP</span></code> now allow multiple columns to be added/removed.</li>
-<li>New <code class="docutils literal"><span class="pre">PER</span> <span class="pre">PARTITION</span> <span class="pre">LIMIT</span></code> option for <code class="docutils literal"><span class="pre">SELECT</span></code> statements (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7017)">CASSANDRA-7017</a>.</li>
-<li><a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">User-defined functions</span></a> can now instantiate <code class="docutils literal"><span class="pre">UDTValue</span></code> and <code class="docutils literal"><span class="pre">TupleValue</span></code> instances via the
-new <code class="docutils literal"><span class="pre">UDFContext</span></code> interface (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10818)">CASSANDRA-10818</a>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal notranslate"><span class="pre">ADD</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span></code> now allow multiple columns to be added/removed.</li>
+<li>New <code class="docutils literal notranslate"><span class="pre">PER</span> <span class="pre">PARTITION</span> <span class="pre">LIMIT</span></code> option for <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7017)">CASSANDRA-7017</a>.</li>
+<li><a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">User-defined functions</span></a> can now instantiate <code class="docutils literal notranslate"><span class="pre">UDTValue</span></code> and <code class="docutils literal notranslate"><span class="pre">TupleValue</span></code> instances via the
+new <code class="docutils literal notranslate"><span class="pre">UDFContext</span></code> interface (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-10818)">CASSANDRA-10818</a>.</li>
 <li><a class="reference internal" href="types.html#udts"><span class="std std-ref">User-defined types</span></a> may now be stored in a non-frozen form, allowing individual fields to be updated and
-deleted in <code class="docutils literal"><span class="pre">UPDATE</span></code> statements and <code class="docutils literal"><span class="pre">DELETE</span></code> statements, respectively. (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7423)">CASSANDRA-7423</a>).</li>
+deleted in <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statements, respectively. (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-7423)">CASSANDRA-7423</a>).</li>
 </ul>
 </div>
 <div class="section" id="id6">
 <h2>3.4.1<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Adds <code class="docutils literal"><span class="pre">CAST</span></code> functions.</li>
+<li>Adds <code class="docutils literal notranslate"><span class="pre">CAST</span></code> functions.</li>
 </ul>
 </div>
 <div class="section" id="id7">
 <h2>3.4.0<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Support for <a class="reference internal" href="mvs.html#materialized-views"><span class="std std-ref">materialized views</span></a>.</li>
-<li><code class="docutils literal"><span class="pre">DELETE</span></code> support for inequality expressions and <code class="docutils literal"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
-<li><code class="docutils literal"><span class="pre">UPDATE</span></code> support for <code class="docutils literal"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">DELETE</span></code> support for inequality expressions and <code class="docutils literal notranslate"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> support for <code class="docutils literal notranslate"><span class="pre">IN</span></code> restrictions on any primary key columns.</li>
 </ul>
 </div>
 <div class="section" id="id8">
 <h2>3.3.1<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>The syntax <code class="docutils literal"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">X</span></code> is now accepted as an alias for <code class="docutils literal"><span class="pre">TRUNCATE</span> <span class="pre">X</span></code>.</li>
+<li>The syntax <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">X</span></code> is now accepted as an alias for <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span> <span class="pre">X</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="id9">
@@ -247,36 +247,36 @@
 <li><a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">User-defined functions and aggregates</span></a> are now supported.</li>
 <li>Allows double-dollar enclosed strings literals as an alternative to single-quote enclosed strings.</li>
 <li>Introduces Roles to supersede user based authentication and access control</li>
-<li>New <code class="docutils literal"><span class="pre">date</span></code>, <code class="docutils literal"><span class="pre">time</span></code>, <code class="docutils literal"><span class="pre">tinyint</span></code> and <code class="docutils literal"><span class="pre">smallint</span></code> <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> have been added.</li>
+<li>New <code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">time</span></code>, <code class="docutils literal notranslate"><span class="pre">tinyint</span></code> and <code class="docutils literal notranslate"><span class="pre">smallint</span></code> <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> have been added.</li>
 <li><a class="reference internal" href="json.html#cql-json"><span class="std std-ref">JSON support</span></a> has been added</li>
-<li>Adds new time conversion functions and deprecate <code class="docutils literal"><span class="pre">dateOf</span></code> and <code class="docutils literal"><span class="pre">unixTimestampOf</span></code>.</li>
+<li>Adds new time conversion functions and deprecate <code class="docutils literal notranslate"><span class="pre">dateOf</span></code> and <code class="docutils literal notranslate"><span class="pre">unixTimestampOf</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="id10">
 <h2>3.2.0<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li><a class="reference internal" href="types.html#udts"><span class="std std-ref">User-defined types</span></a> supported.</li>
-<li><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now supports indexing collection columns, including indexing the keys of map collections through the
-<code class="docutils literal"><span class="pre">keys()</span></code> function</li>
-<li>Indexes on collections may be queried using the new <code class="docutils literal"><span class="pre">CONTAINS</span></code> and <code class="docutils literal"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operators</li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now supports indexing collection columns, including indexing the keys of map collections through the
+<code class="docutils literal notranslate"><span class="pre">keys()</span></code> function</li>
+<li>Indexes on collections may be queried using the new <code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code> and <code class="docutils literal notranslate"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operators</li>
 <li><a class="reference internal" href="types.html#tuples"><span class="std std-ref">Tuple types</span></a> were added to hold fixed-length sets of typed positional fields.</li>
-<li><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> now supports optionally specifying a keyspace.</li>
+<li><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> now supports optionally specifying a keyspace.</li>
 </ul>
 </div>
 <div class="section" id="id11">
 <h2>3.1.7<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SELECT</span></code> statements now support selecting multiple rows in a single partition using an <code class="docutils literal"><span class="pre">IN</span></code> clause on combinations
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements now support selecting multiple rows in a single partition using an <code class="docutils literal notranslate"><span class="pre">IN</span></code> clause on combinations
 of clustering columns.</li>
-<li><code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> and <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax is now supported by <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">USER</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">USER</span></code> statements,
+<li><code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> and <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax is now supported by <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">USER</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">USER</span></code> statements,
 respectively.</li>
 </ul>
 </div>
 <div class="section" id="id12">
 <h2>3.1.6<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>A new <code class="docutils literal"><span class="pre">uuid()</span></code> method has been added.</li>
-<li>Support for <code class="docutils literal"><span class="pre">DELETE</span> <span class="pre">...</span> <span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax.</li>
+<li>A new <code class="docutils literal notranslate"><span class="pre">uuid()</span></code> method has been added.</li>
+<li>Support for <code class="docutils literal notranslate"><span class="pre">DELETE</span> <span class="pre">...</span> <span class="pre">IF</span> <span class="pre">EXISTS</span></code> syntax.</li>
 </ul>
 </div>
 <div class="section" id="id13">
@@ -289,7 +289,7 @@
 <div class="section" id="id14">
 <h2>3.1.4<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now allows specifying options when creating CUSTOM indexes.</li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> now allows specifying options when creating CUSTOM indexes.</li>
 </ul>
 </div>
 <div class="section" id="id15">
@@ -301,33 +301,33 @@
 <div class="section" id="id16">
 <h2>3.1.2<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">NaN</span></code> and <code class="docutils literal"><span class="pre">Infinity</span></code> has been added as valid float constants. They are now reserved keywords. In the unlikely case
+<li><code class="docutils literal notranslate"><span class="pre">NaN</span></code> and <code class="docutils literal notranslate"><span class="pre">Infinity</span></code> has been added as valid float constants. They are now reserved keywords. In the unlikely case
 you we using them as a column identifier (or keyspace/table one), you will now need to double quote them.</li>
 </ul>
 </div>
 <div class="section" id="id17">
 <h2>3.1.1<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SELECT</span></code> statement now allows listing the partition keys (using the <code class="docutils literal"><span class="pre">DISTINCT</span></code> modifier). See <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4536">CASSANDRA-4536</a>.</li>
-<li>The syntax <code class="docutils literal"><span class="pre">c</span> <span class="pre">IN</span> <span class="pre">?</span></code> is now supported in <code class="docutils literal"><span class="pre">WHERE</span></code> clauses. In that case, the value expected for the bind variable
-will be a list of whatever type <code class="docutils literal"><span class="pre">c</span></code> is.</li>
-<li>It is now possible to use named bind variables (using <code class="docutils literal"><span class="pre">:name</span></code> instead of <code class="docutils literal"><span class="pre">?</span></code>).</li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement now allows listing the partition keys (using the <code class="docutils literal notranslate"><span class="pre">DISTINCT</span></code> modifier). See <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4536">CASSANDRA-4536</a>.</li>
+<li>The syntax <code class="docutils literal notranslate"><span class="pre">c</span> <span class="pre">IN</span> <span class="pre">?</span></code> is now supported in <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clauses. In that case, the value expected for the bind variable
+will be a list of whatever type <code class="docutils literal notranslate"><span class="pre">c</span></code> is.</li>
+<li>It is now possible to use named bind variables (using <code class="docutils literal notranslate"><span class="pre">:name</span></code> instead of <code class="docutils literal notranslate"><span class="pre">?</span></code>).</li>
 </ul>
 </div>
 <div class="section" id="id18">
 <h2>3.1.0<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal"><span class="pre">DROP</span></code> option added.</li>
-<li><code class="docutils literal"><span class="pre">SELECT</span></code> statement now supports aliases in select clause. Aliases in WHERE and ORDER BY clauses are not supported.</li>
-<li><code class="docutils literal"><span class="pre">CREATE</span></code> statements for <code class="docutils literal"><span class="pre">KEYSPACE</span></code>, <code class="docutils literal"><span class="pre">TABLE</span></code> and <code class="docutils literal"><span class="pre">INDEX</span></code> now supports an <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition.
-Similarly, <code class="docutils literal"><span class="pre">DROP</span></code> statements support a <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> condition.</li>
-<li><code class="docutils literal"><span class="pre">INSERT</span></code> statements optionally supports a <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition and <code class="docutils literal"><span class="pre">UPDATE</span></code> supports <code class="docutils literal"><span class="pre">IF</span></code> conditions.</li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> <code class="docutils literal notranslate"><span class="pre">DROP</span></code> option added.</li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement now supports aliases in select clause. Aliases in WHERE and ORDER BY clauses are not supported.</li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span></code> statements for <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code>, <code class="docutils literal notranslate"><span class="pre">TABLE</span></code> and <code class="docutils literal notranslate"><span class="pre">INDEX</span></code> now supports an <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition.
+Similarly, <code class="docutils literal notranslate"><span class="pre">DROP</span></code> statements support a <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> condition.</li>
+<li><code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statements optionally supports a <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> supports <code class="docutils literal notranslate"><span class="pre">IF</span></code> conditions.</li>
 </ul>
 </div>
 <div class="section" id="id19">
 <h2>3.0.5<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, and <code class="docutils literal"><span class="pre">DELETE</span></code> statements now allow empty <code class="docutils literal"><span class="pre">IN</span></code> relations (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-5626)">CASSANDRA-5626</a>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statements now allow empty <code class="docutils literal notranslate"><span class="pre">IN</span></code> relations (see <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-5626)">CASSANDRA-5626</a>.</li>
 </ul>
 </div>
 <div class="section" id="id20">
@@ -335,7 +335,7 @@
 <ul class="simple">
 <li>Updated the syntax for custom <a class="reference internal" href="indexes.html#secondary-indexes"><span class="std std-ref">secondary indexes</span></a>.</li>
 <li>Non-equal condition on the partition key are now never supported, even for ordering partitioner as this was not
-correct (the order was <strong>not</strong> the one of the type of the partition key). Instead, the <code class="docutils literal"><span class="pre">token</span></code> method should always
+correct (the order was <strong>not</strong> the one of the type of the partition key). Instead, the <code class="docutils literal notranslate"><span class="pre">token</span></code> method should always
 be used for range queries on the partition key (see <a class="reference internal" href="dml.html#where-clause"><span class="std std-ref">WHERE clauses</span></a>).</li>
 </ul>
 </div>
@@ -349,8 +349,8 @@
 <h2>3.0.2<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Type validation for the <a class="reference internal" href="definitions.html#constants"><span class="std std-ref">constants</span></a> has been fixed. For instance, the implementation used to allow
-<code class="docutils literal"><span class="pre">'2'</span></code> as a valid value for an <code class="docutils literal"><span class="pre">int</span></code> column (interpreting it has the equivalent of <code class="docutils literal"><span class="pre">2</span></code>), or <code class="docutils literal"><span class="pre">42</span></code> as a valid
-<code class="docutils literal"><span class="pre">blob</span></code> value (in which case <code class="docutils literal"><span class="pre">42</span></code> was interpreted as an hexadecimal representation of the blob). This is no longer
+<code class="docutils literal notranslate"><span class="pre">'2'</span></code> as a valid value for an <code class="docutils literal notranslate"><span class="pre">int</span></code> column (interpreting it has the equivalent of <code class="docutils literal notranslate"><span class="pre">2</span></code>), or <code class="docutils literal notranslate"><span class="pre">42</span></code> as a valid
+<code class="docutils literal notranslate"><span class="pre">blob</span></code> value (in which case <code class="docutils literal notranslate"><span class="pre">42</span></code> was interpreted as an hexadecimal representation of the blob). This is no longer
 the case, type validation of constants is now more strict. See the <a class="reference internal" href="types.html#data-types"><span class="std std-ref">data types</span></a> section for details
 on which constant is allowed for which type.</li>
 <li>The type validation fixed of the previous point has lead to the introduction of blobs constants to allow the input of
@@ -364,11 +364,11 @@
 <div class="section" id="id23">
 <h2>3.0.1<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Date strings (and timestamps) are no longer accepted as valid <code class="docutils literal"><span class="pre">timeuuid</span></code> values. Doing so was a bug in the sense
-that date string are not valid <code class="docutils literal"><span class="pre">timeuuid</span></code>, and it was thus resulting in <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4936">confusing behaviors</a>. However, the following new methods have been added to help
-working with <code class="docutils literal"><span class="pre">timeuuid</span></code>: <code class="docutils literal"><span class="pre">now</span></code>, <code class="docutils literal"><span class="pre">minTimeuuid</span></code>, <code class="docutils literal"><span class="pre">maxTimeuuid</span></code> ,
-<code class="docutils literal"><span class="pre">dateOf</span></code> and <code class="docutils literal"><span class="pre">unixTimestampOf</span></code>.</li>
-<li>Float constants now support the exponent notation. In other words, <code class="docutils literal"><span class="pre">4.2E10</span></code> is now a valid floating point value.</li>
+<li>Date strings (and timestamps) are no longer accepted as valid <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> values. Doing so was a bug in the sense
+that date string are not valid <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code>, and it was thus resulting in <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-4936">confusing behaviors</a>. However, the following new methods have been added to help
+working with <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code>: <code class="docutils literal notranslate"><span class="pre">now</span></code>, <code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code>, <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code> ,
+<code class="docutils literal notranslate"><span class="pre">dateOf</span></code> and <code class="docutils literal notranslate"><span class="pre">unixTimestampOf</span></code>.</li>
+<li>Float constants now support the exponent notation. In other words, <code class="docutils literal notranslate"><span class="pre">4.2E10</span></code> is now a valid floating point value.</li>
 </ul>
 </div>
 <div class="section" id="versioning">
diff --git a/content/doc/stable/cql/ddl.html b/content/doc/stable/cql/ddl.html
index e29bd15..1bd0908 100644
--- a/content/doc/stable/cql/ddl.html
+++ b/content/doc/stable/cql/ddl.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Manipulation" href="dml.html"/> <link rel="prev" title="Data Types" href="types.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Manipulation" href="dml.html"/> <link rel="prev" title="Data Types" href="types.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -184,37 +184,37 @@
 <h2>Common definitions<a class="headerlink" href="#common-definitions" title="Permalink to this headline">¶</a></h2>
 <p>The names of the keyspaces and tables are defined by the following grammar:</p>
 <pre>
-<strong id="grammar-token-keyspace_name">keyspace_name</strong> ::=  <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal"><span class="pre">name</span></code></a>
-<strong id="grammar-token-table_name">table_name   </strong> ::=  [ <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal"><span class="pre">name</span></code></a>
-<strong id="grammar-token-name">name         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted_name"><code class="xref docutils literal"><span class="pre">unquoted_name</span></code></a> | <a class="reference internal" href="#grammar-token-quoted_name"><code class="xref docutils literal"><span class="pre">quoted_name</span></code></a>
-<strong id="grammar-token-unquoted_name">unquoted_name</strong> ::=  re('[a-zA-Z_0-9]{1, 48}')
-<strong id="grammar-token-quoted_name">quoted_name  </strong> ::=  '&quot;' <a class="reference internal" href="#grammar-token-unquoted_name"><code class="xref docutils literal"><span class="pre">unquoted_name</span></code></a> '&quot;'
+<strong id="grammar-token-keyspace-name">keyspace_name</strong> ::=  <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal notranslate"><span class="pre">name</span></code></a>
+<strong id="grammar-token-table-name">table_name   </strong> ::=  [ <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="#grammar-token-name"><code class="xref docutils literal notranslate"><span class="pre">name</span></code></a>
+<strong id="grammar-token-name">name         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted-name"><code class="xref docutils literal notranslate"><span class="pre">unquoted_name</span></code></a> | <a class="reference internal" href="#grammar-token-quoted-name"><code class="xref docutils literal notranslate"><span class="pre">quoted_name</span></code></a>
+<strong id="grammar-token-unquoted-name">unquoted_name</strong> ::=  re('[a-zA-Z_0-9]{1, 48}')
+<strong id="grammar-token-quoted-name">quoted_name  </strong> ::=  '&quot;' <a class="reference internal" href="#grammar-token-unquoted-name"><code class="xref docutils literal notranslate"><span class="pre">unquoted_name</span></code></a> '&quot;'
 </pre>
 <p>Both keyspace and table name should be comprised of only alphanumeric characters, cannot be empty and are limited in
 size to 48 characters (that limit exists mostly to avoid filenames (which may include the keyspace and table name) to go
-over the limits of certain file systems). By default, keyspace and table names are case insensitive (<code class="docutils literal"><span class="pre">myTable</span></code> is
-equivalent to <code class="docutils literal"><span class="pre">mytable</span></code>) but case sensitivity can be forced by using double-quotes (<code class="docutils literal"><span class="pre">&quot;myTable&quot;</span></code> is different from
-<code class="docutils literal"><span class="pre">mytable</span></code>).</p>
+over the limits of certain file systems). By default, keyspace and table names are case insensitive (<code class="docutils literal notranslate"><span class="pre">myTable</span></code> is
+equivalent to <code class="docutils literal notranslate"><span class="pre">mytable</span></code>) but case sensitivity can be forced by using double-quotes (<code class="docutils literal notranslate"><span class="pre">&quot;myTable&quot;</span></code> is different from
+<code class="docutils literal notranslate"><span class="pre">mytable</span></code>).</p>
 <p>Further, a table is always part of a keyspace and a table name can be provided fully-qualified by the keyspace it is
 part of. If is is not fully-qualified, the table is assumed to be in the <em>current</em> keyspace (see <a class="reference internal" href="#use-statement"><span class="std std-ref">USE statement</span></a>).</p>
 <p>Further, the valid names for columns is simply defined as:</p>
 <pre>
-<strong id="grammar-token-column_name">column_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-column-name">column_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <p>We also define the notion of statement options for use in the following section:</p>
 <pre>
-<strong id="grammar-token-options">options</strong> ::=  <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal"><span class="pre">option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal"><span class="pre">option</span></code></a> )*
-<strong id="grammar-token-option">option </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> '=' ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref docutils literal"><span class="pre">constant</span></code></a> | <a class="reference internal" href="types.html#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a> )
+<strong id="grammar-token-options">options</strong> ::=  <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal notranslate"><span class="pre">option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-option"><code class="xref docutils literal notranslate"><span class="pre">option</span></code></a> )*
+<strong id="grammar-token-option">option </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> '=' ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref docutils literal notranslate"><span class="pre">constant</span></code></a> | <a class="reference internal" href="types.html#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a> )
 </pre>
 </div>
 <div class="section" id="create-keyspace">
 <span id="create-keyspace-statement"></span><h2>CREATE KEYSPACE<a class="headerlink" href="#create-keyspace" title="Permalink to this headline">¶</a></h2>
-<p>A keyspace is created using a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> statement:</p>
+<p>A keyspace is created using a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_keyspace_statement">create_keyspace_statement</strong> ::=  CREATE KEYSPACE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
+<strong id="grammar-token-create-keyspace-statement">create_keyspace_statement</strong> ::=  CREATE KEYSPACE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
            <span class="k">WITH</span> <span class="n">replication</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;class&#39;</span><span class="p">:</span> <span class="s1">&#39;SimpleStrategy&#39;</span><span class="p">,</span> <span class="s1">&#39;replication_factor&#39;</span> <span class="p">:</span> <span class="mf">3</span><span class="p">};</span>
 
 <span class="k">CREATE</span> <span class="k">KEYSPACE</span> <span class="n">Excalibur</span>
@@ -222,7 +222,7 @@
             <span class="k">AND</span> <span class="n">durable_writes</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The supported <code class="docutils literal"><span class="pre">options</span></code> are:</p>
+<p>The supported <code class="docutils literal notranslate"><span class="pre">options</span></code> are:</p>
 <table border="1" class="docutils">
 <colgroup>
 <col width="16%" />
@@ -240,14 +240,14 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">replication</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">replication</span></code></td>
 <td><em>map</em></td>
 <td>yes</td>
 <td>&#160;</td>
 <td>The replication strategy and options to use for the keyspace (see
 details below).</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">durable_writes</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">durable_writes</span></code></td>
 <td><em>simple</em></td>
 <td>no</td>
 <td>true</td>
@@ -256,37 +256,37 @@
 </tr>
 </tbody>
 </table>
-<p>The <code class="docutils literal"><span class="pre">replication</span></code> property is mandatory and must at least contains the <code class="docutils literal"><span class="pre">'class'</span></code> sub-option which defines the
+<p>The <code class="docutils literal notranslate"><span class="pre">replication</span></code> property is mandatory and must at least contains the <code class="docutils literal notranslate"><span class="pre">'class'</span></code> sub-option which defines the
 <a class="reference internal" href="../architecture/dynamo.html#replication-strategy"><span class="std std-ref">replication strategy</span></a> class to use. The rest of the sub-options depends on what replication
-strategy is used. By default, Cassandra support the following <code class="docutils literal"><span class="pre">'class'</span></code>:</p>
+strategy is used. By default, Cassandra support the following <code class="docutils literal notranslate"><span class="pre">'class'</span></code>:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">'SimpleStrategy'</span></code>: A simple strategy that defines a replication factor for the whole cluster. The only sub-options
-supported is <code class="docutils literal"><span class="pre">'replication_factor'</span></code> to define that replication factor and is mandatory.</li>
-<li><code class="docutils literal"><span class="pre">'NetworkTopologyStrategy'</span></code>: A replication strategy that allows to set the replication factor independently for
+<li><code class="docutils literal notranslate"><span class="pre">'SimpleStrategy'</span></code>: A simple strategy that defines a replication factor for the whole cluster. The only sub-options
+supported is <code class="docutils literal notranslate"><span class="pre">'replication_factor'</span></code> to define that replication factor and is mandatory.</li>
+<li><code class="docutils literal notranslate"><span class="pre">'NetworkTopologyStrategy'</span></code>: A replication strategy that allows to set the replication factor independently for
 each data-center. The rest of the sub-options are key-value pairs where a key is a data-center name and its value is
 the associated replication factor.</li>
 </ul>
-<p>Attempting to create a keyspace that already exists will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
+<p>Attempting to create a keyspace that already exists will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
 it is used, the statement will be a no-op if the keyspace already exists.</p>
 </div>
 <div class="section" id="use">
 <span id="use-statement"></span><h2>USE<a class="headerlink" href="#use" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">USE</span></code> statement allows to change the <em>current</em> keyspace (for the <em>connection</em> on which it is executed). A number
-of objects in CQL are bound to a keyspace (tables, user-defined types, functions, ...) and the current keyspace is the
+<p>The <code class="docutils literal notranslate"><span class="pre">USE</span></code> statement allows to change the <em>current</em> keyspace (for the <em>connection</em> on which it is executed). A number
+of objects in CQL are bound to a keyspace (tables, user-defined types, functions, …) and the current keyspace is the
 default keyspace used when those objects are referred without a fully-qualified name (that is, without being prefixed a
-keyspace name). A <code class="docutils literal"><span class="pre">USE</span></code> statement simply takes the keyspace to use as current as argument:</p>
+keyspace name). A <code class="docutils literal notranslate"><span class="pre">USE</span></code> statement simply takes the keyspace to use as current as argument:</p>
 <pre>
-<strong id="grammar-token-use_statement">use_statement</strong> ::=  USE <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a>
+<strong id="grammar-token-use-statement">use_statement</strong> ::=  USE <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a>
 </pre>
 </div>
 <div class="section" id="alter-keyspace">
 <span id="alter-keyspace-statement"></span><h2>ALTER KEYSPACE<a class="headerlink" href="#alter-keyspace" title="Permalink to this headline">¶</a></h2>
-<p>An <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> statement allows to modify the options of a keyspace:</p>
+<p>An <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> statement allows to modify the options of a keyspace:</p>
 <pre>
-<strong id="grammar-token-alter_keyspace_statement">alter_keyspace_statement</strong> ::=  ALTER KEYSPACE <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
+<strong id="grammar-token-alter-keyspace-statement">alter_keyspace_statement</strong> ::=  ALTER KEYSPACE <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span>
           <span class="k">WITH</span> <span class="n">replication</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;class&#39;</span><span class="p">:</span> <span class="s1">&#39;SimpleStrategy&#39;</span><span class="p">,</span> <span class="s1">&#39;replication_factor&#39;</span> <span class="p">:</span> <span class="mf">4</span><span class="p">};</span>
 </pre></div>
 </div>
@@ -294,41 +294,41 @@
 </div>
 <div class="section" id="drop-keyspace">
 <span id="drop-keyspace-statement"></span><h2>DROP KEYSPACE<a class="headerlink" href="#drop-keyspace" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a keyspace can be done using the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> statement:</p>
+<p>Dropping a keyspace can be done using the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_keyspace_statement">drop_keyspace_statement</strong> ::=  DROP KEYSPACE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a>
+<strong id="grammar-token-drop-keyspace-statement">drop_keyspace_statement</strong> ::=  DROP KEYSPACE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">KEYSPACE</span> <span class="n">Excelsior</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>Dropping a keyspace results in the immediate, irreversible removal of that keyspace, including all the tables, UTD and
 functions in it, and all the data contained in those tables.</p>
-<p>If the keyspace does not exists, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
+<p>If the keyspace does not exists, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
 operation is a no-op.</p>
 </div>
 <div class="section" id="create-table">
 <span id="create-table-statement"></span><h2>CREATE TABLE<a class="headerlink" href="#create-table" title="Permalink to this headline">¶</a></h2>
-<p>Creating a new table uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement:</p>
+<p>Creating a new table uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_table_statement">create_table_statement</strong> ::=  CREATE TABLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-create-table-statement">create_table_statement</strong> ::=  CREATE TABLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
                             '('
-                                <a class="reference internal" href="#grammar-token-column_definition"><code class="xref docutils literal"><span class="pre">column_definition</span></code></a>
-                                ( ',' <a class="reference internal" href="#grammar-token-column_definition"><code class="xref docutils literal"><span class="pre">column_definition</span></code></a> )*
-                                [ ',' PRIMARY KEY '(' <a class="reference internal" href="#grammar-token-primary_key"><code class="xref docutils literal"><span class="pre">primary_key</span></code></a> ')' ]
-                            ')' [ WITH <a class="reference internal" href="#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a> ]
-<strong id="grammar-token-column_definition">column_definition     </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> [ STATIC ] [ PRIMARY KEY]
-<strong id="grammar-token-primary_key">primary_key           </strong> ::=  <a class="reference internal" href="#grammar-token-partition_key"><code class="xref docutils literal"><span class="pre">partition_key</span></code></a> [ ',' <a class="reference internal" href="#grammar-token-clustering_columns"><code class="xref docutils literal"><span class="pre">clustering_columns</span></code></a> ]
-<strong id="grammar-token-partition_key">partition_key         </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                            | '(' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')'
-<strong id="grammar-token-clustering_columns">clustering_columns    </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )*
-<strong id="grammar-token-table_options">table_options         </strong> ::=  COMPACT STORAGE [ AND <a class="reference internal" href="#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a> ]
-                            | CLUSTERING ORDER BY '(' <a class="reference internal" href="#grammar-token-clustering_order"><code class="xref docutils literal"><span class="pre">clustering_order</span></code></a> ')' [ AND <a class="reference internal" href="#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a> ]
-                            | <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
-<strong id="grammar-token-clustering_order">clustering_order      </strong> ::=  <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> (ASC | DESC) ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> (ASC | DESC) )*
+                                <a class="reference internal" href="#grammar-token-column-definition"><code class="xref docutils literal notranslate"><span class="pre">column_definition</span></code></a>
+                                ( ',' <a class="reference internal" href="#grammar-token-column-definition"><code class="xref docutils literal notranslate"><span class="pre">column_definition</span></code></a> )*
+                                [ ',' PRIMARY KEY '(' <a class="reference internal" href="#grammar-token-primary-key"><code class="xref docutils literal notranslate"><span class="pre">primary_key</span></code></a> ')' ]
+                            ')' [ WITH <a class="reference internal" href="#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a> ]
+<strong id="grammar-token-column-definition">column_definition     </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> [ STATIC ] [ PRIMARY KEY]
+<strong id="grammar-token-primary-key">primary_key           </strong> ::=  <a class="reference internal" href="#grammar-token-partition-key"><code class="xref docutils literal notranslate"><span class="pre">partition_key</span></code></a> [ ',' <a class="reference internal" href="#grammar-token-clustering-columns"><code class="xref docutils literal notranslate"><span class="pre">clustering_columns</span></code></a> ]
+<strong id="grammar-token-partition-key">partition_key         </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                            | '(' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')'
+<strong id="grammar-token-clustering-columns">clustering_columns    </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )*
+<strong id="grammar-token-table-options">table_options         </strong> ::=  COMPACT STORAGE [ AND <a class="reference internal" href="#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a> ]
+                            | CLUSTERING ORDER BY '(' <a class="reference internal" href="#grammar-token-clustering-order"><code class="xref docutils literal notranslate"><span class="pre">clustering_order</span></code></a> ')' [ AND <a class="reference internal" href="#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a> ]
+                            | <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
+<strong id="grammar-token-clustering-order">clustering_order      </strong> ::=  <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> (ASC | DESC) ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> (ASC | DESC) )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">monkeySpecies</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">monkeySpecies</span> <span class="p">(</span>
     <span class="n">species</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">common_name</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">population</span> <span class="nb">varint</span><span class="p">,</span>
@@ -356,26 +356,26 @@
 </div>
 <p>A CQL table has a name and is composed of a set of <em>rows</em>. Creating a table amounts to defining which <a class="reference internal" href="#column-definition"><span class="std std-ref">columns</span></a> the rows will be composed, which of those columns compose the <a class="reference internal" href="#primary-key"><span class="std std-ref">primary key</span></a>, as
 well as optional <a class="reference internal" href="#create-table-options"><span class="std std-ref">options</span></a> for the table.</p>
-<p>Attempting to create an already existing table will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> directive is used. If
+<p>Attempting to create an already existing table will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> directive is used. If
 it is used, the statement will be a no-op if the table already exists.</p>
 <div class="section" id="column-definitions">
 <span id="column-definition"></span><h3>Column definitions<a class="headerlink" href="#column-definitions" title="Permalink to this headline">¶</a></h3>
 <p>Every rows in a CQL table has a set of predefined columns defined at the time of the table creation (or added later
 using an <a class="reference internal" href="#alter-table-statement"><span class="std std-ref">alter statement</span></a>).</p>
-<p>A <a class="reference internal" href="#grammar-token-column_definition"><code class="xref std std-token docutils literal"><span class="pre">column_definition</span></code></a> is primarily comprised of the name of the column defined and it&#8217;s <a class="reference internal" href="types.html#data-types"><span class="std std-ref">type</span></a>,
+<p>A <a class="reference internal" href="#grammar-token-column-definition"><code class="xref std std-token docutils literal notranslate"><span class="pre">column_definition</span></code></a> is primarily comprised of the name of the column defined and it’s <a class="reference internal" href="types.html#data-types"><span class="std std-ref">type</span></a>,
 which restrict which values are accepted for that column. Additionally, a column definition can have the following
 modifiers:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">STATIC</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">STATIC</span></code></dt>
 <dd>it declares the column as being a <a class="reference internal" href="#static-columns"><span class="std std-ref">static column</span></a>.</dd>
-<dt><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code></dt>
 <dd>it declares the column as being the sole component of the <a class="reference internal" href="#primary-key"><span class="std std-ref">primary key</span></a> of the table.</dd>
 </dl>
 <div class="section" id="static-columns">
 <span id="id2"></span><h4>Static columns<a class="headerlink" href="#static-columns" title="Permalink to this headline">¶</a></h4>
-<p>Some columns can be declared as <code class="docutils literal"><span class="pre">STATIC</span></code> in a table definition. A column that is static will be “shared” by all the
+<p>Some columns can be declared as <code class="docutils literal notranslate"><span class="pre">STATIC</span></code> in a table definition. A column that is static will be “shared” by all the
 rows belonging to the same partition (having the same <a class="reference internal" href="#partition-key"><span class="std std-ref">partition key</span></a>). For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">pk</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">t</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">v</span> <span class="nb">text</span><span class="p">,</span>
@@ -393,30 +393,30 @@
    <span class="mf">0</span>  <span class="o">|</span> <span class="mf">1</span> <span class="o">|</span> <span class="s1">&#39;val1&#39;</span> <span class="o">|</span> <span class="s1">&#39;static1&#39;</span>
 </pre></div>
 </div>
-<p>As can be seen, the <code class="docutils literal"><span class="pre">s</span></code> value is the same (<code class="docutils literal"><span class="pre">static1</span></code>) for both of the row in the partition (the partition key in
-that example being <code class="docutils literal"><span class="pre">pk</span></code>, both rows are in that same partition): the 2nd insertion has overridden the value for <code class="docutils literal"><span class="pre">s</span></code>.</p>
+<p>As can be seen, the <code class="docutils literal notranslate"><span class="pre">s</span></code> value is the same (<code class="docutils literal notranslate"><span class="pre">static1</span></code>) for both of the row in the partition (the partition key in
+that example being <code class="docutils literal notranslate"><span class="pre">pk</span></code>, both rows are in that same partition): the 2nd insertion has overridden the value for <code class="docutils literal notranslate"><span class="pre">s</span></code>.</p>
 <p>The use of static columns as the following restrictions:</p>
 <ul class="simple">
-<li>tables with the <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option (see below) cannot use them.</li>
+<li>tables with the <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option (see below) cannot use them.</li>
 <li>a table without clustering columns cannot have static columns (in a table without clustering columns, every partition
 has only one row, and so every column is inherently static).</li>
-<li>only non <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> columns can be static.</li>
+<li>only non <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> columns can be static.</li>
 </ul>
 </div>
 </div>
 <div class="section" id="the-primary-key">
 <span id="primary-key"></span><h3>The Primary key<a class="headerlink" href="#the-primary-key" title="Permalink to this headline">¶</a></h3>
-<p>Within a table, a row is uniquely identified by its <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, and hence all table <strong>must</strong> define a PRIMARY KEY
-(and only one). A <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> definition is composed of one or more of the columns defined in the table.
-Syntactically, the primary key is defined the keywords <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> followed by comma-separated list of the column
+<p>Within a table, a row is uniquely identified by its <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, and hence all table <strong>must</strong> define a PRIMARY KEY
+(and only one). A <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> definition is composed of one or more of the columns defined in the table.
+Syntactically, the primary key is defined the keywords <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> followed by comma-separated list of the column
 names composing it within parenthesis, but if the primary key has only one column, one can alternatively follow that
-column definition by the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> keywords. The order of the columns in the primary key definition matter.</p>
+column definition by the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> keywords. The order of the columns in the primary key definition matter.</p>
 <p>A CQL primary key is composed of 2 parts:</p>
 <ul>
 <li><p class="first">the <a class="reference internal" href="#partition-key"><span class="std std-ref">partition key</span></a> part. It is the first component of the primary key definition. It can be a
 single column or, using additional parenthesis, can be multiple columns. A table always have at least a partition key,
 the smallest possible table definition is:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span><span class="n">k</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span><span class="n">k</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">);</span>
 </pre></div>
 </div>
 </li>
@@ -426,10 +426,10 @@
 </ul>
 <p>Some example of primary key definition are:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a)</span></code>: <code class="docutils literal"><span class="pre">a</span></code> is the partition key and there is no clustering columns.</li>
-<li><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a,</span> <span class="pre">b,</span> <span class="pre">c)</span></code> : <code class="docutils literal"><span class="pre">a</span></code> is the partition key and <code class="docutils literal"><span class="pre">b</span></code> and <code class="docutils literal"><span class="pre">c</span></code> are the clustering columns.</li>
-<li><code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">((a,</span> <span class="pre">b),</span> <span class="pre">c)</span></code> : <code class="docutils literal"><span class="pre">a</span></code> and <code class="docutils literal"><span class="pre">b</span></code> compose the partition key (this is often called a <em>composite</em> partition
-key) and <code class="docutils literal"><span class="pre">c</span></code> is the clustering column.</li>
+<li><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a)</span></code>: <code class="docutils literal notranslate"><span class="pre">a</span></code> is the partition key and there is no clustering columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">(a,</span> <span class="pre">b,</span> <span class="pre">c)</span></code> : <code class="docutils literal notranslate"><span class="pre">a</span></code> is the partition key and <code class="docutils literal notranslate"><span class="pre">b</span></code> and <code class="docutils literal notranslate"><span class="pre">c</span></code> are the clustering columns.</li>
+<li><code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">((a,</span> <span class="pre">b),</span> <span class="pre">c)</span></code> : <code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> compose the partition key (this is often called a <em>composite</em> partition
+key) and <code class="docutils literal notranslate"><span class="pre">c</span></code> is the clustering column.</li>
 </ul>
 <div class="section" id="the-partition-key">
 <span id="partition-key"></span><h4>The partition key<a class="headerlink" href="#the-partition-key" title="Permalink to this headline">¶</a></h4>
@@ -437,7 +437,7 @@
 for their partition key. Note that if the partition key is composed of multiple columns, then rows belong to the same
 partition only they have the same values for all those partition key column. So for instance, given the following table
 definition and content:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">a</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">b</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c</span> <span class="nb">int</span><span class="p">,</span>
@@ -455,8 +455,8 @@
    <span class="mf">1</span> <span class="o">|</span> <span class="mf">1</span> <span class="o">|</span> <span class="mf">4</span> <span class="o">|</span> <span class="mf">4</span>    <span class="c1">// row 5</span>
 </pre></div>
 </div>
-<p><code class="docutils literal"><span class="pre">row</span> <span class="pre">1</span></code> and <code class="docutils literal"><span class="pre">row</span> <span class="pre">2</span></code> are in the same partition, <code class="docutils literal"><span class="pre">row</span> <span class="pre">3</span></code> and <code class="docutils literal"><span class="pre">row</span> <span class="pre">4</span></code> are also in the same partition (but a
-different one) and <code class="docutils literal"><span class="pre">row</span> <span class="pre">5</span></code> is in yet another partition.</p>
+<p><code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">1</span></code> and <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">2</span></code> are in the same partition, <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">3</span></code> and <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">4</span></code> are also in the same partition (but a
+different one) and <code class="docutils literal notranslate"><span class="pre">row</span> <span class="pre">5</span></code> is in yet another partition.</p>
 <p>Note that a table always has a partition key, and that if the table has no <a class="reference internal" href="#clustering-columns"><span class="std std-ref">clustering columns</span></a>, then every partition of that table is only comprised of a single row (since the primary key
 uniquely identifies rows and the primary key is equal to the partition key if there is no clustering columns).</p>
 <p>The most important property of partition is that all the rows belonging to the same partition are guarantee to be stored
@@ -476,7 +476,7 @@
 <p>The clustering columns of a table defines the clustering order for the partition of that table. For a given
 <a class="reference internal" href="#partition-key"><span class="std std-ref">partition</span></a>, all the rows are physically ordered inside Cassandra by that clustering order. For
 instance, given:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">a</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">b</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c</span> <span class="nb">int</span><span class="p">,</span>
@@ -493,17 +493,17 @@
 </pre></div>
 </div>
 <p>then the rows (which all belong to the same partition) are all stored internally in the order of the values of their
-<code class="docutils literal"><span class="pre">b</span></code> column (the order they are displayed above). So where the partition key of the table allows to group rows on the
+<code class="docutils literal notranslate"><span class="pre">b</span></code> column (the order they are displayed above). So where the partition key of the table allows to group rows on the
 same replica set, the clustering columns controls how those rows are stored on the replica. That sorting allows the
-retrieval of a range of rows within a partition (for instance, in the example above, <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">t</span> <span class="pre">WHERE</span> <span class="pre">a</span> <span class="pre">=</span> <span class="pre">0</span> <span class="pre">AND</span> <span class="pre">b</span>
+retrieval of a range of rows within a partition (for instance, in the example above, <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">t</span> <span class="pre">WHERE</span> <span class="pre">a</span> <span class="pre">=</span> <span class="pre">0</span> <span class="pre">AND</span> <span class="pre">b</span>
 <span class="pre">&gt;</span> <span class="pre">1</span> <span class="pre">and</span> <span class="pre">b</span> <span class="pre">&lt;=</span> <span class="pre">3</span></code>) to be very efficient.</p>
 </div>
 </div>
 <div class="section" id="table-options">
 <span id="create-table-options"></span><h3>Table options<a class="headerlink" href="#table-options" title="Permalink to this headline">¶</a></h3>
-<p>A CQL table has a number of options that can be set at creation (and, for most of them, <a class="reference internal" href="#alter-table-statement"><span class="std std-ref">altered</span></a> later). These options are specified after the <code class="docutils literal"><span class="pre">WITH</span></code> keyword.</p>
+<p>A CQL table has a number of options that can be set at creation (and, for most of them, <a class="reference internal" href="#alter-table-statement"><span class="std std-ref">altered</span></a> later). These options are specified after the <code class="docutils literal notranslate"><span class="pre">WITH</span></code> keyword.</p>
 <p>Amongst those options, two important ones cannot be changed after creation and influence which queries can be done
-against the table: the <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option and the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option. Those, as well as the other
+against the table: the <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option and the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option. Those, as well as the other
 options of a table are described in the following sections.</p>
 <div class="section" id="compact-tables">
 <span id="id3"></span><h4>Compact tables<a class="headerlink" href="#compact-tables" title="Permalink to this headline">¶</a></h4>
@@ -511,12 +511,12 @@
 <p class="first admonition-title">Warning</p>
 <p class="last">Since Cassandra 3.0, compact tables have the exact same layout internally than non compact ones (for the
 same schema obviously), and declaring a table compact <strong>only</strong> creates artificial limitations on the table definition
-and usage that are necessary to ensure backward compatibility with the deprecated Thrift API. And as <code class="docutils literal"><span class="pre">COMPACT</span>
-<span class="pre">STORAGE</span></code> cannot, as of Cassandra 3.11.3, be removed, it is strongly discouraged to create new table with the
-<code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option.</p>
+and usage that are necessary to ensure backward compatibility with the deprecated Thrift API. And as <code class="docutils literal notranslate"><span class="pre">COMPACT</span>
+<span class="pre">STORAGE</span></code> cannot, as of Cassandra 3.11.7, be removed, it is strongly discouraged to create new table with the
+<code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option.</p>
 </div>
-<p>A <em>compact</em> table is one defined with the <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option. This option is mainly targeted towards backward
-compatibility for definitions created before CQL version 3 (see <a class="reference external" href="http://www.datastax.com/dev/blog/thrift-to-cql3">www.datastax.com/dev/blog/thrift-to-cql3</a> for more details) and shouldn&#8217;t be used for new tables. Declaring a
+<p>A <em>compact</em> table is one defined with the <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> option. This option is mainly targeted towards backward
+compatibility for definitions created before CQL version 3 (see <a class="reference external" href="http://www.datastax.com/dev/blog/thrift-to-cql3">www.datastax.com/dev/blog/thrift-to-cql3</a> for more details) and shouldn’t be used for new tables. Declaring a
 table with this option creates limitations for the table which are largely arbitrary but necessary for backward
 compatibility with the (deprecated) Thrift API. Amongst those limitation:</p>
 <ul class="simple">
@@ -529,21 +529,21 @@
 <div class="section" id="reversing-the-clustering-order">
 <span id="clustering-order"></span><h4>Reversing the clustering order<a class="headerlink" href="#reversing-the-clustering-order" title="Permalink to this headline">¶</a></h4>
 <p>The clustering order of a table is defined by the <a class="reference internal" href="#clustering-columns"><span class="std std-ref">clustering columns</span></a> of that table. By
-default, that ordering is based on natural order of those clustering order, but the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> allows to
+default, that ordering is based on natural order of those clustering order, but the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> allows to
 change that clustering order to use the <em>reverse</em> natural order for some (potentially all) of the columns.</p>
-<p>The <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option takes the comma-separated list of the clustering column, each with a <code class="docutils literal"><span class="pre">ASC</span></code> (for
-<em>ascendant</em>, e.g. the natural order) or <code class="docutils literal"><span class="pre">DESC</span></code> (for <em>descendant</em>, e.g. the reverse natural order). Note in particular
-that the default (if the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option is not used) is strictly equivalent to using the option with all
-clustering columns using the <code class="docutils literal"><span class="pre">ASC</span></code> modifier.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option takes the comma-separated list of the clustering column, each with a <code class="docutils literal notranslate"><span class="pre">ASC</span></code> (for
+<em>ascendant</em>, e.g. the natural order) or <code class="docutils literal notranslate"><span class="pre">DESC</span></code> (for <em>descendant</em>, e.g. the reverse natural order). Note in particular
+that the default (if the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option is not used) is strictly equivalent to using the option with all
+clustering columns using the <code class="docutils literal notranslate"><span class="pre">ASC</span></code> modifier.</p>
 <p>Note that this option is basically a hint for the storage engine to change the order in which it stores the row but it
 has 3 visible consequences:</p>
 <dl class="docutils">
-<dt># it limits which <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause are allowed for <a class="reference internal" href="dml.html#select-statement"><span class="std std-ref">selects</span></a> on that table. You can only</dt>
+<dt># it limits which <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause are allowed for <a class="reference internal" href="dml.html#select-statement"><span class="std std-ref">selects</span></a> on that table. You can only</dt>
 <dd>order results by the clustering order or the reverse clustering order. Meaning that if a table has 2 clustering column
-<code class="docutils literal"><span class="pre">a</span></code> and <code class="docutils literal"><span class="pre">b</span></code> and you defined <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">CLUSTERING</span> <span class="pre">ORDER</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code>, then in queries you will be allowed to use
-<code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> and (reverse clustering order) <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code> but <strong>not</strong> <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span>
-<span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> (nor <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code>).</dd>
-<dt># it also change the default order of results when queried (if no <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> is provided). Results are always returned</dt>
+<code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> and you defined <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">CLUSTERING</span> <span class="pre">ORDER</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code>, then in queries you will be allowed to use
+<code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> and (reverse clustering order) <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code> but <strong>not</strong> <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span>
+<span class="pre">ASC,</span> <span class="pre">b</span> <span class="pre">ASC)</span></code> (nor <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span> <span class="pre">(a</span> <span class="pre">DESC,</span> <span class="pre">b</span> <span class="pre">DESC)</span></code>).</dd>
+<dt># it also change the default order of results when queried (if no <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> is provided). Results are always returned</dt>
 <dd>in clustering order (within a partition).</dd>
 <dt># it has a small performance impact on some queries as queries in reverse clustering order are slower than the one in</dt>
 <dd>forward clustering order. In practice, this means that if you plan on querying mostly in the reverse natural order of
@@ -573,19 +573,19 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">comment</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">comment</span></code></td>
 <td><em>simple</em></td>
 <td>none</td>
 <td>A free-form, human-readable comment.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">read_repair_chance</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">read_repair_chance</span></code></td>
 <td><em>simple</em></td>
 <td>0.1</td>
 <td>The probability with which to query extra nodes (e.g.
 more nodes than required by the consistency level) for
 the purpose of read repairs.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">dclocal_read_repair_chance</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">dclocal_read_repair_chance</span></code></td>
 <td><em>simple</em></td>
 <td>0</td>
 <td>The probability with which to query extra nodes (e.g.
@@ -593,13 +593,13 @@
 belonging to the same data center than the read
 coordinator for the purpose of read repairs.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">gc_grace_seconds</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code></td>
 <td><em>simple</em></td>
 <td>864000</td>
 <td>Time to wait before garbage collecting tombstones
 (deletion markers).</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code></td>
 <td><em>simple</em></td>
 <td>0.00075</td>
 <td>The target probability of false positive of the sstable
@@ -607,23 +607,23 @@
 the provided probability (thus lowering this value impact
 the size of bloom filters in-memory and on-disk)</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">default_time_to_live</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">default_time_to_live</span></code></td>
 <td><em>simple</em></td>
 <td>0</td>
 <td>The default expiration time (“TTL”) in seconds for a
 table.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">compaction</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">compaction</span></code></td>
 <td><em>map</em></td>
 <td><em>see below</em></td>
 <td><a class="reference internal" href="#cql-compaction-options"><span class="std std-ref">Compaction options</span></a>.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">compression</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">compression</span></code></td>
 <td><em>map</em></td>
 <td><em>see below</em></td>
 <td><a class="reference internal" href="#cql-compression-options"><span class="std std-ref">Compression options</span></a>.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">caching</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">caching</span></code></td>
 <td><em>map</em></td>
 <td><em>see below</em></td>
 <td><a class="reference internal" href="#cql-caching-options"><span class="std std-ref">Caching options</span></a>.</td>
@@ -632,17 +632,17 @@
 </table>
 <div class="section" id="compaction-options">
 <span id="cql-compaction-options"></span><h5>Compaction options<a class="headerlink" href="#compaction-options" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">compaction</span></code> options must at least define the <code class="docutils literal"><span class="pre">'class'</span></code> sub-option, that defines the compaction strategy class
-to use. The default supported class are <code class="docutils literal"><span class="pre">'SizeTieredCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#stcs"><span class="std std-ref">STCS</span></a>),
-<code class="docutils literal"><span class="pre">'LeveledCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#lcs"><span class="std std-ref">LCS</span></a>) and <code class="docutils literal"><span class="pre">'TimeWindowCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>) (the
-<code class="docutils literal"><span class="pre">'DateTieredCompactionStrategy'</span></code> is also supported but is deprecated and <code class="docutils literal"><span class="pre">'TimeWindowCompactionStrategy'</span></code> should be
+<p>The <code class="docutils literal notranslate"><span class="pre">compaction</span></code> options must at least define the <code class="docutils literal notranslate"><span class="pre">'class'</span></code> sub-option, that defines the compaction strategy class
+to use. The default supported class are <code class="docutils literal notranslate"><span class="pre">'SizeTieredCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#stcs"><span class="std std-ref">STCS</span></a>),
+<code class="docutils literal notranslate"><span class="pre">'LeveledCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#lcs"><span class="std std-ref">LCS</span></a>) and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>) (the
+<code class="docutils literal notranslate"><span class="pre">'DateTieredCompactionStrategy'</span></code> is also supported but is deprecated and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> should be
 preferred instead). Custom strategy can be provided by specifying the full class name as a <a class="reference internal" href="definitions.html#constants"><span class="std std-ref">string constant</span></a>.</p>
 <p>All default strategies support a number of <a class="reference internal" href="../operating/compaction.html#compaction-options"><span class="std std-ref">common options</span></a>, as well as options specific to
 the strategy chosen (see the section corresponding to your strategy for details: <a class="reference internal" href="../operating/compaction.html#stcs-options"><span class="std std-ref">STCS</span></a>, <a class="reference internal" href="../operating/compaction.html#lcs-options"><span class="std std-ref">LCS</span></a> and <a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>).</p>
 </div>
 <div class="section" id="compression-options">
 <span id="cql-compression-options"></span><h5>Compression options<a class="headerlink" href="#compression-options" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">compression</span></code> options define if and how the sstables of the table are compressed. The following sub-options are
+<p>The <code class="docutils literal notranslate"><span class="pre">compression</span></code> options define if and how the sstables of the table are compressed. The following sub-options are
 available:</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -657,25 +657,25 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">class</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">class</span></code></td>
 <td>LZ4Compressor</td>
 <td>The compression algorithm to use. Default compressor are: LZ4Compressor,
-SnappyCompressor and DeflateCompressor. Use <code class="docutils literal"><span class="pre">'enabled'</span> <span class="pre">:</span> <span class="pre">false</span></code> to disable
+SnappyCompressor and DeflateCompressor. Use <code class="docutils literal notranslate"><span class="pre">'enabled'</span> <span class="pre">:</span> <span class="pre">false</span></code> to disable
 compression. Custom compressor can be provided by specifying the full class
 name as a “string constant”:#constants.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">enabled</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">enabled</span></code></td>
 <td>true</td>
 <td>Enable/disable sstable compression.</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code></td>
 <td>64</td>
 <td>On disk SSTables are compressed by block (to allow random reads). This
 defines the size (in KB) of said block. Bigger values may improve the
 compression rate, but increases the minimum size of data to be read from disk
 for a read</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">crc_check_chance</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">crc_check_chance</span></code></td>
 <td>1.0</td>
 <td>When compression is enabled, each compressed block includes a checksum of
 that block for the purpose of detecting disk bitrot and avoiding the
@@ -687,7 +687,7 @@
 </tbody>
 </table>
 <p>For instance, to create a table with LZ4Compressor and a chunk_lenth_in_kb of 4KB:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
    <span class="n">id</span> <span class="nb">int</span><span class="p">,</span>
    <span class="k">key</span> <span class="nb">text</span><span class="p">,</span>
    <span class="n">value</span> <span class="nb">text</span><span class="p">,</span>
@@ -698,7 +698,7 @@
 </div>
 <div class="section" id="caching-options">
 <span id="cql-caching-options"></span><h5>Caching options<a class="headerlink" href="#caching-options" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">caching</span></code> options allows to configure both the <em>key cache</em> and the <em>row cache</em> for the table. The following
+<p>The <code class="docutils literal notranslate"><span class="pre">caching</span></code> options allows to configure both the <em>key cache</em> and the <em>row cache</em> for the table. The following
 sub-options are available:</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -713,22 +713,22 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">keys</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">keys</span></code></td>
 <td>ALL</td>
-<td>Whether to cache keys (“key cache”) for this table. Valid values are: <code class="docutils literal"><span class="pre">ALL</span></code> and
-<code class="docutils literal"><span class="pre">NONE</span></code>.</td>
+<td>Whether to cache keys (“key cache”) for this table. Valid values are: <code class="docutils literal notranslate"><span class="pre">ALL</span></code> and
+<code class="docutils literal notranslate"><span class="pre">NONE</span></code>.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">rows_per_partition</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">rows_per_partition</span></code></td>
 <td>NONE</td>
-<td>The amount of rows to cache per partition (“row cache”). If an integer <code class="docutils literal"><span class="pre">n</span></code> is
-specified, the first <code class="docutils literal"><span class="pre">n</span></code> queried rows of a partition will be cached. Other
-possible options are <code class="docutils literal"><span class="pre">ALL</span></code>, to cache all rows of a queried partition, or <code class="docutils literal"><span class="pre">NONE</span></code>
+<td>The amount of rows to cache per partition (“row cache”). If an integer <code class="docutils literal notranslate"><span class="pre">n</span></code> is
+specified, the first <code class="docutils literal notranslate"><span class="pre">n</span></code> queried rows of a partition will be cached. Other
+possible options are <code class="docutils literal notranslate"><span class="pre">ALL</span></code>, to cache all rows of a queried partition, or <code class="docutils literal notranslate"><span class="pre">NONE</span></code>
 to disable row caching.</td>
 </tr>
 </tbody>
 </table>
 <p>For instance, to create a table with both a key cache and 10 rows per partition:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">simple</span> <span class="p">(</span>
 <span class="n">id</span> <span class="nb">int</span><span class="p">,</span>
 <span class="k">key</span> <span class="nb">text</span><span class="p">,</span>
 <span class="n">value</span> <span class="nb">text</span><span class="p">,</span>
@@ -740,7 +740,7 @@
 <div class="section" id="other-considerations">
 <h5>Other considerations:<a class="headerlink" href="#other-considerations" title="Permalink to this headline">¶</a></h5>
 <ul class="simple">
-<li>Adding new columns (see <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> below) is a constant time operation. There is thus no need to try to
+<li>Adding new columns (see <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> below) is a constant time operation. There is thus no need to try to
 anticipate future usage when creating a table.</li>
 </ul>
 </div>
@@ -749,24 +749,24 @@
 </div>
 <div class="section" id="alter-table">
 <span id="alter-table-statement"></span><h2>ALTER TABLE<a class="headerlink" href="#alter-table" title="Permalink to this headline">¶</a></h2>
-<p>Altering an existing table uses the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
+<p>Altering an existing table uses the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_table_statement">alter_table_statement  </strong> ::=  ALTER TABLE <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a> <a class="reference internal" href="#grammar-token-alter_table_instruction"><code class="xref docutils literal"><span class="pre">alter_table_instruction</span></code></a>
-<strong id="grammar-token-alter_table_instruction">alter_table_instruction</strong> ::=  ADD <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )*
-                             | DROP <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( <a class="reference internal" href="#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )*
-                             | WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal"><span class="pre">options</span></code></a>
+<strong id="grammar-token-alter-table-statement">alter_table_statement  </strong> ::=  ALTER TABLE <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a> <a class="reference internal" href="#grammar-token-alter-table-instruction"><code class="xref docutils literal notranslate"><span class="pre">alter_table_instruction</span></code></a>
+<strong id="grammar-token-alter-table-instruction">alter_table_instruction</strong> ::=  ADD <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )*
+                             | DROP <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( <a class="reference internal" href="#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )*
+                             | WITH <a class="reference internal" href="#grammar-token-options"><code class="xref docutils literal notranslate"><span class="pre">options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">addamsFamily</span> <span class="k">ADD</span> <span class="n">gravesite</span> <span class="nb">varchar</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">addamsFamily</span> <span class="k">ADD</span> <span class="n">gravesite</span> <span class="nb">varchar</span><span class="p">;</span>
 
 <span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">addamsFamily</span>
        <span class="k">WITH</span> <span class="n">comment</span> <span class="o">=</span> <span class="s1">&#39;A most excellent and useful table&#39;</span>
        <span class="k">AND</span> <span class="n">read_repair_chance</span> <span class="o">=</span> <span class="mf">0.2</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement can:</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement can:</p>
 <ul class="simple">
-<li>Add new column(s) to the table (through the <code class="docutils literal"><span class="pre">ADD</span></code> instruction). Note that the primary key of a table cannot be
+<li>Add new column(s) to the table (through the <code class="docutils literal notranslate"><span class="pre">ADD</span></code> instruction). Note that the primary key of a table cannot be
 changed and thus newly added column will, by extension, never be part of the primary key. Also note that <a class="reference internal" href="#compact-tables"><span class="std std-ref">compact
 tables</span></a> have restrictions regarding column addition. Note that this is constant (in the amount of
 data the cluster contains) time operation.</li>
@@ -774,15 +774,15 @@
 becomes immediately unavailable, its content is only removed lazily during compaction. Please also see the warnings
 below. Due to lazy removal, the altering itself is a constant (in the amount of data removed or contained in the
 cluster) time operation.</li>
-<li>Change some of the table options (through the <code class="docutils literal"><span class="pre">WITH</span></code> instruction). The <a class="reference internal" href="#create-table-options"><span class="std std-ref">supported options</span></a> are the same that when creating a table (outside of <code class="docutils literal"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> and <code class="docutils literal"><span class="pre">CLUSTERING</span>
-<span class="pre">ORDER</span></code> that cannot be changed after creation). Note that setting any <code class="docutils literal"><span class="pre">compaction</span></code> sub-options has the effect of
-erasing all previous <code class="docutils literal"><span class="pre">compaction</span></code> options, so you need to re-specify all the sub-options if you want to keep them.
-The same note applies to the set of <code class="docutils literal"><span class="pre">compression</span></code> sub-options.</li>
+<li>Change some of the table options (through the <code class="docutils literal notranslate"><span class="pre">WITH</span></code> instruction). The <a class="reference internal" href="#create-table-options"><span class="std std-ref">supported options</span></a> are the same that when creating a table (outside of <code class="docutils literal notranslate"><span class="pre">COMPACT</span> <span class="pre">STORAGE</span></code> and <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span>
+<span class="pre">ORDER</span></code> that cannot be changed after creation). Note that setting any <code class="docutils literal notranslate"><span class="pre">compaction</span></code> sub-options has the effect of
+erasing all previous <code class="docutils literal notranslate"><span class="pre">compaction</span></code> options, so you need to re-specify all the sub-options if you want to keep them.
+The same note applies to the set of <code class="docutils literal notranslate"><span class="pre">compression</span></code> sub-options.</li>
 </ul>
 <div class="admonition warning">
 <p class="first admonition-title">Warning</p>
-<p class="last">Dropping a column assumes that the timestamps used for the value of this column are &#8220;real&#8221; timestamp in
-microseconds. Using &#8220;real&#8221; timestamps in microseconds is the default is and is <strong>strongly</strong> recommended but as
+<p class="last">Dropping a column assumes that the timestamps used for the value of this column are “real” timestamp in
+microseconds. Using “real” timestamps in microseconds is the default is and is <strong>strongly</strong> recommended but as
 Cassandra allows the client to provide any timestamp on any table it is theoretically possible to use another
 convention. Please be aware that if you do so, dropping a column will not work correctly.</p>
 </div>
@@ -794,22 +794,22 @@
 </div>
 <div class="section" id="drop-table">
 <span id="drop-table-statement"></span><h2>DROP TABLE<a class="headerlink" href="#drop-table" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a table uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement:</p>
+<p>Dropping a table uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_table_statement">drop_table_statement</strong> ::=  DROP TABLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-drop-table-statement">drop_table_statement</strong> ::=  DROP TABLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
 </pre>
 <p>Dropping a table results in the immediate, irreversible removal of the table, including all data it contains.</p>
-<p>If the table does not exist, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
+<p>If the table does not exist, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
 operation is a no-op.</p>
 </div>
 <div class="section" id="truncate">
 <span id="truncate-statement"></span><h2>TRUNCATE<a class="headerlink" href="#truncate" title="Permalink to this headline">¶</a></h2>
-<p>A table can be truncated using the <code class="docutils literal"><span class="pre">TRUNCATE</span></code> statement:</p>
+<p>A table can be truncated using the <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-truncate_statement">truncate_statement</strong> ::=  TRUNCATE [ TABLE ] <a class="reference internal" href="#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-truncate-statement">truncate_statement</strong> ::=  TRUNCATE [ TABLE ] <a class="reference internal" href="#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
 </pre>
-<p>Note that <code class="docutils literal"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">foo</span></code> is allowed for consistency with other DDL statements but tables are the only object
-that can be truncated currently and so the <code class="docutils literal"><span class="pre">TABLE</span></code> keyword can be omitted.</p>
+<p>Note that <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span> <span class="pre">TABLE</span> <span class="pre">foo</span></code> is allowed for consistency with other DDL statements but tables are the only object
+that can be truncated currently and so the <code class="docutils literal notranslate"><span class="pre">TABLE</span></code> keyword can be omitted.</p>
 <p>Truncating a table permanently removes all existing data from the table, but without removing the table itself.</p>
 </div>
 </div>
diff --git a/content/doc/stable/cql/definitions.html b/content/doc/stable/cql/definitions.html
index 1513a07..829f5b6 100644
--- a/content/doc/stable/cql/definitions.html
+++ b/content/doc/stable/cql/definitions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Types" href="types.html"/> <link rel="prev" title="The Cassandra Query Language (CQL)" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Types" href="types.html"/> <link rel="prev" title="The Cassandra Query Language (CQL)" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -177,78 +177,78 @@
 <span id="id1"></span><h2>Conventions<a class="headerlink" href="#conventions" title="Permalink to this headline">¶</a></h2>
 <p>To aid in specifying the CQL syntax, we will use the following conventions in this document:</p>
 <ul class="simple">
-<li>Language rules will be given in an informal <a class="reference external" href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form#Variants">BNF variant</a> notation. In particular, we&#8217;ll use square brakets
-(<code class="docutils literal"><span class="pre">[</span> <span class="pre">item</span> <span class="pre">]</span></code>) for optional items, <code class="docutils literal"><span class="pre">*</span></code> and <code class="docutils literal"><span class="pre">+</span></code> for repeated items (where <code class="docutils literal"><span class="pre">+</span></code> imply at least one).</li>
+<li>Language rules will be given in an informal <a class="reference external" href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form#Variants">BNF variant</a> notation. In particular, we’ll use square brakets
+(<code class="docutils literal notranslate"><span class="pre">[</span> <span class="pre">item</span> <span class="pre">]</span></code>) for optional items, <code class="docutils literal notranslate"><span class="pre">*</span></code> and <code class="docutils literal notranslate"><span class="pre">+</span></code> for repeated items (where <code class="docutils literal notranslate"><span class="pre">+</span></code> imply at least one).</li>
 <li>The grammar will also use the following convention for convenience: non-terminal term will be lowercase (and link to
-their definition) while terminal keywords will be provided &#8220;all caps&#8221;. Note however that keywords are
+their definition) while terminal keywords will be provided “all caps”. Note however that keywords are
 <a class="reference internal" href="#identifiers"><span class="std std-ref">Identifiers and keywords</span></a> and are thus case insensitive in practice. We will also define some early construction using
-regexp, which we&#8217;ll indicate with <code class="docutils literal"><span class="pre">re(&lt;some</span> <span class="pre">regular</span> <span class="pre">expression&gt;)</span></code>.</li>
+regexp, which we’ll indicate with <code class="docutils literal notranslate"><span class="pre">re(&lt;some</span> <span class="pre">regular</span> <span class="pre">expression&gt;)</span></code>.</li>
 <li>The grammar is provided for documentation purposes and leave some minor details out.  For instance, the comma on the
-last column definition in a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement is optional but supported if present even though the grammar in
+last column definition in a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> statement is optional but supported if present even though the grammar in
 this document suggests otherwise. Also, not everything accepted by the grammar is necessarily valid CQL.</li>
-<li>References to keywords or pieces of CQL code in running text will be shown in a <code class="docutils literal"><span class="pre">fixed-width</span> <span class="pre">font</span></code>.</li>
+<li>References to keywords or pieces of CQL code in running text will be shown in a <code class="docutils literal notranslate"><span class="pre">fixed-width</span> <span class="pre">font</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="identifiers">
 <span id="identifiers-and-keywords"></span><h2>Identifiers and keywords<a class="headerlink" href="#identifiers" title="Permalink to this headline">¶</a></h2>
 <p>The CQL language uses <em>identifiers</em> (or <em>names</em>) to identify tables, columns and other objects. An identifier is a token
-matching the regular expression <code class="docutils literal"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code>.</p>
-<p>A number of such identifiers, like <code class="docutils literal"><span class="pre">SELECT</span></code> or <code class="docutils literal"><span class="pre">WITH</span></code>, are <em>keywords</em>. They have a fixed meaning for the language
+matching the regular expression <code class="docutils literal notranslate"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code>.</p>
+<p>A number of such identifiers, like <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> or <code class="docutils literal notranslate"><span class="pre">WITH</span></code>, are <em>keywords</em>. They have a fixed meaning for the language
 and most are reserved. The list of those keywords can be found in <a class="reference internal" href="appendices.html#appendix-a"><span class="std std-ref">Appendix A: CQL Keywords</span></a>.</p>
-<p>Identifiers and (unquoted) keywords are case insensitive. Thus <code class="docutils literal"><span class="pre">SELECT</span></code> is the same than <code class="docutils literal"><span class="pre">select</span></code> or <code class="docutils literal"><span class="pre">sElEcT</span></code>, and
-<code class="docutils literal"><span class="pre">myId</span></code> is the same than <code class="docutils literal"><span class="pre">myid</span></code> or <code class="docutils literal"><span class="pre">MYID</span></code>. A convention often used (in particular by the samples of this
+<p>Identifiers and (unquoted) keywords are case insensitive. Thus <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> is the same than <code class="docutils literal notranslate"><span class="pre">select</span></code> or <code class="docutils literal notranslate"><span class="pre">sElEcT</span></code>, and
+<code class="docutils literal notranslate"><span class="pre">myId</span></code> is the same than <code class="docutils literal notranslate"><span class="pre">myid</span></code> or <code class="docutils literal notranslate"><span class="pre">MYID</span></code>. A convention often used (in particular by the samples of this
 documentation) is to use upper case for keywords and lower case for other identifiers.</p>
 <p>There is a second kind of identifiers called <em>quoted identifiers</em> defined by enclosing an arbitrary sequence of
-characters (non empty) in double-quotes(<code class="docutils literal"><span class="pre">&quot;</span></code>). Quoted identifiers are never keywords. Thus <code class="docutils literal"><span class="pre">&quot;select&quot;</span></code> is not a
-reserved keyword and can be used to refer to a column (note that using this is particularly advised), while <code class="docutils literal"><span class="pre">select</span></code>
+characters (non empty) in double-quotes(<code class="docutils literal notranslate"><span class="pre">&quot;</span></code>). Quoted identifiers are never keywords. Thus <code class="docutils literal notranslate"><span class="pre">&quot;select&quot;</span></code> is not a
+reserved keyword and can be used to refer to a column (note that using this is particularly advised), while <code class="docutils literal notranslate"><span class="pre">select</span></code>
 would raise a parsing error. Also, contrarily to unquoted identifiers and keywords, quoted identifiers are case
-sensitive (<code class="docutils literal"><span class="pre">&quot;My</span> <span class="pre">Quoted</span> <span class="pre">Id&quot;</span></code> is <em>different</em> from <code class="docutils literal"><span class="pre">&quot;my</span> <span class="pre">quoted</span> <span class="pre">id&quot;</span></code>). A fully lowercase quoted identifier that matches
-<code class="docutils literal"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code> is however <em>equivalent</em> to the unquoted identifier obtained by removing the double-quote (so
-<code class="docutils literal"><span class="pre">&quot;myid&quot;</span></code> is equivalent to <code class="docutils literal"><span class="pre">myid</span></code> and to <code class="docutils literal"><span class="pre">myId</span></code> but different from <code class="docutils literal"><span class="pre">&quot;myId&quot;</span></code>).  Inside a quoted identifier, the
-double-quote character can be repeated to escape it, so <code class="docutils literal"><span class="pre">&quot;foo</span> <span class="pre">&quot;&quot;</span> <span class="pre">bar&quot;</span></code> is a valid identifier.</p>
+sensitive (<code class="docutils literal notranslate"><span class="pre">&quot;My</span> <span class="pre">Quoted</span> <span class="pre">Id&quot;</span></code> is <em>different</em> from <code class="docutils literal notranslate"><span class="pre">&quot;my</span> <span class="pre">quoted</span> <span class="pre">id&quot;</span></code>). A fully lowercase quoted identifier that matches
+<code class="docutils literal notranslate"><span class="pre">[a-zA-Z][a-zA-Z0-9_]*</span></code> is however <em>equivalent</em> to the unquoted identifier obtained by removing the double-quote (so
+<code class="docutils literal notranslate"><span class="pre">&quot;myid&quot;</span></code> is equivalent to <code class="docutils literal notranslate"><span class="pre">myid</span></code> and to <code class="docutils literal notranslate"><span class="pre">myId</span></code> but different from <code class="docutils literal notranslate"><span class="pre">&quot;myId&quot;</span></code>).  Inside a quoted identifier, the
+double-quote character can be repeated to escape it, so <code class="docutils literal notranslate"><span class="pre">&quot;foo</span> <span class="pre">&quot;&quot;</span> <span class="pre">bar&quot;</span></code> is a valid identifier.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
 <p class="last"><em>quoted identifiers</em> allows to declare columns with arbitrary names, and those can sometime clash with
 specific names used by the server. For instance, when using conditional update, the server will respond with a
-result-set containing a special result named <code class="docutils literal"><span class="pre">&quot;[applied]&quot;</span></code>. If you’ve declared a column with such a name, this
+result-set containing a special result named <code class="docutils literal notranslate"><span class="pre">&quot;[applied]&quot;</span></code>. If you’ve declared a column with such a name, this
 could potentially confuse some tools and should be avoided. In general, unquoted identifiers should be preferred but
 if you use quoted identifiers, it is strongly advised to avoid any name enclosed by squared brackets (like
-<code class="docutils literal"><span class="pre">&quot;[applied]&quot;</span></code>) and any name that looks like a function call (like <code class="docutils literal"><span class="pre">&quot;f(x)&quot;</span></code>).</p>
+<code class="docutils literal notranslate"><span class="pre">&quot;[applied]&quot;</span></code>) and any name that looks like a function call (like <code class="docutils literal notranslate"><span class="pre">&quot;f(x)&quot;</span></code>).</p>
 </div>
 <p>More formally, we have:</p>
 <pre>
-<strong id="grammar-token-identifier">identifier         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted_identifier"><code class="xref docutils literal"><span class="pre">unquoted_identifier</span></code></a> | <a class="reference internal" href="#grammar-token-quoted_identifier"><code class="xref docutils literal"><span class="pre">quoted_identifier</span></code></a>
-<strong id="grammar-token-unquoted_identifier">unquoted_identifier</strong> ::=  re('[a-zA-Z][a-zA-Z0-9_]*')
-<strong id="grammar-token-quoted_identifier">quoted_identifier  </strong> ::=  '&quot;' (any character where &quot; can appear if doubled)+ '&quot;'
+<strong id="grammar-token-identifier">identifier         </strong> ::=  <a class="reference internal" href="#grammar-token-unquoted-identifier"><code class="xref docutils literal notranslate"><span class="pre">unquoted_identifier</span></code></a> | <a class="reference internal" href="#grammar-token-quoted-identifier"><code class="xref docutils literal notranslate"><span class="pre">quoted_identifier</span></code></a>
+<strong id="grammar-token-unquoted-identifier">unquoted_identifier</strong> ::=  re('[a-zA-Z][a-zA-Z0-9_]*')
+<strong id="grammar-token-quoted-identifier">quoted_identifier  </strong> ::=  '&quot;' (any character where &quot; can appear if doubled)+ '&quot;'
 </pre>
 </div>
 <div class="section" id="constants">
 <span id="id2"></span><h2>Constants<a class="headerlink" href="#constants" title="Permalink to this headline">¶</a></h2>
 <p>CQL defines the following kind of <em>constants</em>:</p>
 <pre>
-<strong id="grammar-token-constant">constant</strong> ::=  <a class="reference internal" href="#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> | <a class="reference internal" href="#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="#grammar-token-float"><code class="xref docutils literal"><span class="pre">float</span></code></a> | <a class="reference internal" href="#grammar-token-boolean"><code class="xref docutils literal"><span class="pre">boolean</span></code></a> | <a class="reference internal" href="#grammar-token-uuid"><code class="xref docutils literal"><span class="pre">uuid</span></code></a> | <a class="reference internal" href="#grammar-token-blob"><code class="xref docutils literal"><span class="pre">blob</span></code></a> | NULL
+<strong id="grammar-token-constant">constant</strong> ::=  <a class="reference internal" href="#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> | <a class="reference internal" href="#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="#grammar-token-float"><code class="xref docutils literal notranslate"><span class="pre">float</span></code></a> | <a class="reference internal" href="#grammar-token-boolean"><code class="xref docutils literal notranslate"><span class="pre">boolean</span></code></a> | <a class="reference internal" href="#grammar-token-uuid"><code class="xref docutils literal notranslate"><span class="pre">uuid</span></code></a> | <a class="reference internal" href="#grammar-token-blob"><code class="xref docutils literal notranslate"><span class="pre">blob</span></code></a> | NULL
 <strong id="grammar-token-string">string  </strong> ::=  '\'' (any character where ' can appear if doubled)+ '\''
               '$$' (any character other than '$$') '$$'
 <strong id="grammar-token-integer">integer </strong> ::=  re('-?[0-9]+')
 <strong id="grammar-token-float">float   </strong> ::=  re('-?[0-9]+(\.[0-9]*)?([eE][+-]?[0-9+])?') | NAN | INFINITY
 <strong id="grammar-token-boolean">boolean </strong> ::=  TRUE | FALSE
-<strong id="grammar-token-uuid">uuid    </strong> ::=  <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{8}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>{12}
+<strong id="grammar-token-uuid">uuid    </strong> ::=  <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{8}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{4}-<a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>{12}
 <strong id="grammar-token-hex">hex     </strong> ::=  re(&quot;[0-9a-fA-F]&quot;)
-<strong id="grammar-token-blob">blob    </strong> ::=  '0' ('x' | 'X') <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal"><span class="pre">hex</span></code></a>+
+<strong id="grammar-token-blob">blob    </strong> ::=  '0' ('x' | 'X') <a class="reference internal" href="#grammar-token-hex"><code class="xref docutils literal notranslate"><span class="pre">hex</span></code></a>+
 </pre>
 <p>In other words:</p>
 <ul class="simple">
-<li>A string constant is an arbitrary sequence of characters enclosed by single-quote(<code class="docutils literal"><span class="pre">'</span></code>). A single-quote
-can be included by repeating it, e.g. <code class="docutils literal"><span class="pre">'It''s</span> <span class="pre">raining</span> <span class="pre">today'</span></code>. Those are not to be confused with quoted
+<li>A string constant is an arbitrary sequence of characters enclosed by single-quote(<code class="docutils literal notranslate"><span class="pre">'</span></code>). A single-quote
+can be included by repeating it, e.g. <code class="docutils literal notranslate"><span class="pre">'It''s</span> <span class="pre">raining</span> <span class="pre">today'</span></code>. Those are not to be confused with quoted
 <a class="reference internal" href="#identifiers"><span class="std std-ref">Identifiers and keywords</span></a> that use double-quotes. Alternatively, a string can be defined by enclosing the arbitrary sequence
-of characters by two dollar characters, in which case single-quote can be used without escaping (<code class="docutils literal"><span class="pre">$$It's</span> <span class="pre">raining</span>
+of characters by two dollar characters, in which case single-quote can be used without escaping (<code class="docutils literal notranslate"><span class="pre">$$It's</span> <span class="pre">raining</span>
 <span class="pre">today$$</span></code>). That latter form is often used when defining <a class="reference internal" href="functions.html#udfs"><span class="std std-ref">user-defined functions</span></a> to avoid having to
-escape single-quote characters in function body (as they are more likely to occur than <code class="docutils literal"><span class="pre">$$</span></code>).</li>
-<li>Integer, float and boolean constant are defined as expected. Note however than float allows the special <code class="docutils literal"><span class="pre">NaN</span></code> and
-<code class="docutils literal"><span class="pre">Infinity</span></code> constants.</li>
+escape single-quote characters in function body (as they are more likely to occur than <code class="docutils literal notranslate"><span class="pre">$$</span></code>).</li>
+<li>Integer, float and boolean constant are defined as expected. Note however than float allows the special <code class="docutils literal notranslate"><span class="pre">NaN</span></code> and
+<code class="docutils literal notranslate"><span class="pre">Infinity</span></code> constants.</li>
 <li>CQL supports <a class="reference external" href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a> constants.</li>
-<li>Blobs content are provided in hexadecimal and prefixed by <code class="docutils literal"><span class="pre">0x</span></code>.</li>
-<li>The special <code class="docutils literal"><span class="pre">NULL</span></code> constant denotes the absence of value.</li>
+<li>Blobs content are provided in hexadecimal and prefixed by <code class="docutils literal notranslate"><span class="pre">0x</span></code>.</li>
+<li>The special <code class="docutils literal notranslate"><span class="pre">NULL</span></code> constant denotes the absence of value.</li>
 </ul>
 <p>For how these constants are typed, see the <a class="reference internal" href="types.html#data-types"><span class="std std-ref">Data Types</span></a> section.</p>
 </div>
@@ -256,11 +256,11 @@
 <h2>Terms<a class="headerlink" href="#terms" title="Permalink to this headline">¶</a></h2>
 <p>CQL has the notion of a <em>term</em>, which denotes the kind of values that CQL support. Terms are defined by:</p>
 <pre>
-<strong id="grammar-token-term">term         </strong> ::=  <a class="reference internal" href="#grammar-token-constant"><code class="xref docutils literal"><span class="pre">constant</span></code></a> | <a class="reference internal" href="#grammar-token-literal"><code class="xref docutils literal"><span class="pre">literal</span></code></a> | <a class="reference internal" href="#grammar-token-function_call"><code class="xref docutils literal"><span class="pre">function_call</span></code></a> | <a class="reference internal" href="#grammar-token-type_hint"><code class="xref docutils literal"><span class="pre">type_hint</span></code></a> | <a class="reference internal" href="#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a>
-<strong id="grammar-token-literal">literal      </strong> ::=  <a class="reference internal" href="types.html#grammar-token-collection_literal"><code class="xref docutils literal"><span class="pre">collection_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-udt_literal"><code class="xref docutils literal"><span class="pre">udt_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-tuple_literal"><code class="xref docutils literal"><span class="pre">tuple_literal</span></code></a>
-<strong id="grammar-token-function_call">function_call</strong> ::=  <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] ')'
-<strong id="grammar-token-type_hint">type_hint    </strong> ::=  '(' <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> `)` term
-<strong id="grammar-token-bind_marker">bind_marker  </strong> ::=  '?' | ':' <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-term">term         </strong> ::=  <a class="reference internal" href="#grammar-token-constant"><code class="xref docutils literal notranslate"><span class="pre">constant</span></code></a> | <a class="reference internal" href="#grammar-token-literal"><code class="xref docutils literal notranslate"><span class="pre">literal</span></code></a> | <a class="reference internal" href="#grammar-token-function-call"><code class="xref docutils literal notranslate"><span class="pre">function_call</span></code></a> | <a class="reference internal" href="#grammar-token-type-hint"><code class="xref docutils literal notranslate"><span class="pre">type_hint</span></code></a> | <a class="reference internal" href="#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a>
+<strong id="grammar-token-literal">literal      </strong> ::=  <a class="reference internal" href="types.html#grammar-token-collection-literal"><code class="xref docutils literal notranslate"><span class="pre">collection_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-udt-literal"><code class="xref docutils literal notranslate"><span class="pre">udt_literal</span></code></a> | <a class="reference internal" href="types.html#grammar-token-tuple-literal"><code class="xref docutils literal notranslate"><span class="pre">tuple_literal</span></code></a>
+<strong id="grammar-token-function-call">function_call</strong> ::=  <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] ')'
+<strong id="grammar-token-type-hint">type_hint    </strong> ::=  '(' <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> `)` term
+<strong id="grammar-token-bind-marker">bind_marker  </strong> ::=  '?' | ':' <a class="reference internal" href="#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <p>A term is thus one of:</p>
 <ul class="simple">
@@ -270,15 +270,15 @@
 <li>A function call: see <a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">the section on functions</span></a> for details on which <a class="reference internal" href="functions.html#native-functions"><span class="std std-ref">native function</span></a> exists and how to define your own <a class="reference internal" href="functions.html#udfs"><span class="std std-ref">user-defined ones</span></a>.</li>
 <li>A <em>type hint</em>: see the <span class="xref std std-ref">related section</span> for details.</li>
 <li>A bind marker, which denotes a variable to be bound at execution time. See the section on <a class="reference internal" href="#prepared-statements"><span class="std std-ref">Prepared Statements</span></a>
-for details. A bind marker can be either anonymous (<code class="docutils literal"><span class="pre">?</span></code>) or named (<code class="docutils literal"><span class="pre">:some_name</span></code>). The latter form provides a more
+for details. A bind marker can be either anonymous (<code class="docutils literal notranslate"><span class="pre">?</span></code>) or named (<code class="docutils literal notranslate"><span class="pre">:some_name</span></code>). The latter form provides a more
 convenient way to refer to the variable for binding it and should generally be preferred.</li>
 </ul>
 </div>
 <div class="section" id="comments">
 <h2>Comments<a class="headerlink" href="#comments" title="Permalink to this headline">¶</a></h2>
-<p>A comment in CQL is a line beginning by either double dashes (<code class="docutils literal"><span class="pre">--</span></code>) or double slash (<code class="docutils literal"><span class="pre">//</span></code>).</p>
-<p>Multi-line comments are also supported through enclosure within <code class="docutils literal"><span class="pre">/*</span></code> and <code class="docutils literal"><span class="pre">*/</span></code> (but nesting is not supported).</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">-- This is a comment</span>
+<p>A comment in CQL is a line beginning by either double dashes (<code class="docutils literal notranslate"><span class="pre">--</span></code>) or double slash (<code class="docutils literal notranslate"><span class="pre">//</span></code>).</p>
+<p>Multi-line comments are also supported through enclosure within <code class="docutils literal notranslate"><span class="pre">/*</span></code> and <code class="docutils literal notranslate"><span class="pre">*/</span></code> (but nesting is not supported).</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">-- This is a comment</span>
 <span class="c1">// This is a comment too</span>
 <span class="cm">/* This is</span>
 <span class="cm">   a multi-line comment */</span>
@@ -301,61 +301,61 @@
 </ul>
 <p>All the statements are listed below and are described in the rest of this documentation (see links above):</p>
 <pre>
-<strong id="grammar-token-cql_statement">cql_statement               </strong> ::=  <a class="reference internal" href="#grammar-token-statement"><code class="xref docutils literal"><span class="pre">statement</span></code></a> [ ';' ]
-<strong id="grammar-token-statement">statement                   </strong> ::=  <a class="reference internal" href="#grammar-token-ddl_statement"><code class="xref docutils literal"><span class="pre">ddl_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-dml_statement"><code class="xref docutils literal"><span class="pre">dml_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-secondary_index_statement"><code class="xref docutils literal"><span class="pre">secondary_index_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-materialized_view_statement"><code class="xref docutils literal"><span class="pre">materialized_view_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-role_or_permission_statement"><code class="xref docutils literal"><span class="pre">role_or_permission_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-udf_statement"><code class="xref docutils literal"><span class="pre">udf_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-udt_statement"><code class="xref docutils literal"><span class="pre">udt_statement</span></code></a>
-                                  | <a class="reference internal" href="#grammar-token-trigger_statement"><code class="xref docutils literal"><span class="pre">trigger_statement</span></code></a>
-<strong id="grammar-token-ddl_statement">ddl_statement               </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-use_statement"><code class="xref docutils literal"><span class="pre">use_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-create_keyspace_statement"><code class="xref docutils literal"><span class="pre">create_keyspace_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-alter_keyspace_statement"><code class="xref docutils literal"><span class="pre">alter_keyspace_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-drop_keyspace_statement"><code class="xref docutils literal"><span class="pre">drop_keyspace_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-create_table_statement"><code class="xref docutils literal"><span class="pre">create_table_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-alter_table_statement"><code class="xref docutils literal"><span class="pre">alter_table_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-drop_table_statement"><code class="xref docutils literal"><span class="pre">drop_table_statement</span></code></a>
-                                  | <a class="reference internal" href="ddl.html#grammar-token-truncate_statement"><code class="xref docutils literal"><span class="pre">truncate_statement</span></code></a>
-<strong id="grammar-token-dml_statement">dml_statement               </strong> ::=  <a class="reference internal" href="dml.html#grammar-token-select_statement"><code class="xref docutils literal"><span class="pre">select_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-insert_statement"><code class="xref docutils literal"><span class="pre">insert_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-update_statement"><code class="xref docutils literal"><span class="pre">update_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-delete_statement"><code class="xref docutils literal"><span class="pre">delete_statement</span></code></a>
-                                  | <a class="reference internal" href="dml.html#grammar-token-batch_statement"><code class="xref docutils literal"><span class="pre">batch_statement</span></code></a>
-<strong id="grammar-token-secondary_index_statement">secondary_index_statement   </strong> ::=  <a class="reference internal" href="indexes.html#grammar-token-create_index_statement"><code class="xref docutils literal"><span class="pre">create_index_statement</span></code></a>
-                                  | <a class="reference internal" href="indexes.html#grammar-token-drop_index_statement"><code class="xref docutils literal"><span class="pre">drop_index_statement</span></code></a>
-<strong id="grammar-token-materialized_view_statement">materialized_view_statement </strong> ::=  <a class="reference internal" href="mvs.html#grammar-token-create_materialized_view_statement"><code class="xref docutils literal"><span class="pre">create_materialized_view_statement</span></code></a>
-                                  | <a class="reference internal" href="mvs.html#grammar-token-drop_materialized_view_statement"><code class="xref docutils literal"><span class="pre">drop_materialized_view_statement</span></code></a>
-<strong id="grammar-token-role_or_permission_statement">role_or_permission_statement</strong> ::=  <a class="reference internal" href="security.html#grammar-token-create_role_statement"><code class="xref docutils literal"><span class="pre">create_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-alter_role_statement"><code class="xref docutils literal"><span class="pre">alter_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-drop_role_statement"><code class="xref docutils literal"><span class="pre">drop_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-grant_role_statement"><code class="xref docutils literal"><span class="pre">grant_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-revoke_role_statement"><code class="xref docutils literal"><span class="pre">revoke_role_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-list_roles_statement"><code class="xref docutils literal"><span class="pre">list_roles_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-grant_permission_statement"><code class="xref docutils literal"><span class="pre">grant_permission_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-revoke_permission_statement"><code class="xref docutils literal"><span class="pre">revoke_permission_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-list_permissions_statement"><code class="xref docutils literal"><span class="pre">list_permissions_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-create_user_statement"><code class="xref docutils literal"><span class="pre">create_user_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-alter_user_statement"><code class="xref docutils literal"><span class="pre">alter_user_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-drop_user_statement"><code class="xref docutils literal"><span class="pre">drop_user_statement</span></code></a>
-                                  | <a class="reference internal" href="security.html#grammar-token-list_users_statement"><code class="xref docutils literal"><span class="pre">list_users_statement</span></code></a>
-<strong id="grammar-token-udf_statement">udf_statement               </strong> ::=  <a class="reference internal" href="functions.html#grammar-token-create_function_statement"><code class="xref docutils literal"><span class="pre">create_function_statement</span></code></a>
-                                  | <a class="reference internal" href="functions.html#grammar-token-drop_function_statement"><code class="xref docutils literal"><span class="pre">drop_function_statement</span></code></a>
-                                  | <a class="reference internal" href="functions.html#grammar-token-create_aggregate_statement"><code class="xref docutils literal"><span class="pre">create_aggregate_statement</span></code></a>
-                                  | <a class="reference internal" href="functions.html#grammar-token-drop_aggregate_statement"><code class="xref docutils literal"><span class="pre">drop_aggregate_statement</span></code></a>
-<strong id="grammar-token-udt_statement">udt_statement               </strong> ::=  <a class="reference internal" href="types.html#grammar-token-create_type_statement"><code class="xref docutils literal"><span class="pre">create_type_statement</span></code></a>
-                                  | <a class="reference internal" href="types.html#grammar-token-alter_type_statement"><code class="xref docutils literal"><span class="pre">alter_type_statement</span></code></a>
-                                  | <a class="reference internal" href="types.html#grammar-token-drop_type_statement"><code class="xref docutils literal"><span class="pre">drop_type_statement</span></code></a>
-<strong id="grammar-token-trigger_statement">trigger_statement           </strong> ::=  <a class="reference internal" href="triggers.html#grammar-token-create_trigger_statement"><code class="xref docutils literal"><span class="pre">create_trigger_statement</span></code></a>
-                                  | <a class="reference internal" href="triggers.html#grammar-token-drop_trigger_statement"><code class="xref docutils literal"><span class="pre">drop_trigger_statement</span></code></a>
+<strong id="grammar-token-cql-statement">cql_statement               </strong> ::=  <a class="reference internal" href="#grammar-token-statement"><code class="xref docutils literal notranslate"><span class="pre">statement</span></code></a> [ ';' ]
+<strong id="grammar-token-statement">statement                   </strong> ::=  <a class="reference internal" href="#grammar-token-ddl-statement"><code class="xref docutils literal notranslate"><span class="pre">ddl_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-dml-statement"><code class="xref docutils literal notranslate"><span class="pre">dml_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-secondary-index-statement"><code class="xref docutils literal notranslate"><span class="pre">secondary_index_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-materialized-view-statement"><code class="xref docutils literal notranslate"><span class="pre">materialized_view_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-role-or-permission-statement"><code class="xref docutils literal notranslate"><span class="pre">role_or_permission_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-udf-statement"><code class="xref docutils literal notranslate"><span class="pre">udf_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-udt-statement"><code class="xref docutils literal notranslate"><span class="pre">udt_statement</span></code></a>
+                                  | <a class="reference internal" href="#grammar-token-trigger-statement"><code class="xref docutils literal notranslate"><span class="pre">trigger_statement</span></code></a>
+<strong id="grammar-token-ddl-statement">ddl_statement               </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-use-statement"><code class="xref docutils literal notranslate"><span class="pre">use_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-create-keyspace-statement"><code class="xref docutils literal notranslate"><span class="pre">create_keyspace_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-alter-keyspace-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_keyspace_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-drop-keyspace-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_keyspace_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-create-table-statement"><code class="xref docutils literal notranslate"><span class="pre">create_table_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-alter-table-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_table_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-drop-table-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_table_statement</span></code></a>
+                                  | <a class="reference internal" href="ddl.html#grammar-token-truncate-statement"><code class="xref docutils literal notranslate"><span class="pre">truncate_statement</span></code></a>
+<strong id="grammar-token-dml-statement">dml_statement               </strong> ::=  <a class="reference internal" href="dml.html#grammar-token-select-statement"><code class="xref docutils literal notranslate"><span class="pre">select_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-insert-statement"><code class="xref docutils literal notranslate"><span class="pre">insert_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-update-statement"><code class="xref docutils literal notranslate"><span class="pre">update_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-delete-statement"><code class="xref docutils literal notranslate"><span class="pre">delete_statement</span></code></a>
+                                  | <a class="reference internal" href="dml.html#grammar-token-batch-statement"><code class="xref docutils literal notranslate"><span class="pre">batch_statement</span></code></a>
+<strong id="grammar-token-secondary-index-statement">secondary_index_statement   </strong> ::=  <a class="reference internal" href="indexes.html#grammar-token-create-index-statement"><code class="xref docutils literal notranslate"><span class="pre">create_index_statement</span></code></a>
+                                  | <a class="reference internal" href="indexes.html#grammar-token-drop-index-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_index_statement</span></code></a>
+<strong id="grammar-token-materialized-view-statement">materialized_view_statement </strong> ::=  <a class="reference internal" href="mvs.html#grammar-token-create-materialized-view-statement"><code class="xref docutils literal notranslate"><span class="pre">create_materialized_view_statement</span></code></a>
+                                  | <a class="reference internal" href="mvs.html#grammar-token-drop-materialized-view-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_materialized_view_statement</span></code></a>
+<strong id="grammar-token-role-or-permission-statement">role_or_permission_statement</strong> ::=  <a class="reference internal" href="security.html#grammar-token-create-role-statement"><code class="xref docutils literal notranslate"><span class="pre">create_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-alter-role-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-drop-role-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-grant-role-statement"><code class="xref docutils literal notranslate"><span class="pre">grant_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-revoke-role-statement"><code class="xref docutils literal notranslate"><span class="pre">revoke_role_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-list-roles-statement"><code class="xref docutils literal notranslate"><span class="pre">list_roles_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-grant-permission-statement"><code class="xref docutils literal notranslate"><span class="pre">grant_permission_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-revoke-permission-statement"><code class="xref docutils literal notranslate"><span class="pre">revoke_permission_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-list-permissions-statement"><code class="xref docutils literal notranslate"><span class="pre">list_permissions_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-create-user-statement"><code class="xref docutils literal notranslate"><span class="pre">create_user_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-alter-user-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_user_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-drop-user-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_user_statement</span></code></a>
+                                  | <a class="reference internal" href="security.html#grammar-token-list-users-statement"><code class="xref docutils literal notranslate"><span class="pre">list_users_statement</span></code></a>
+<strong id="grammar-token-udf-statement">udf_statement               </strong> ::=  <a class="reference internal" href="functions.html#grammar-token-create-function-statement"><code class="xref docutils literal notranslate"><span class="pre">create_function_statement</span></code></a>
+                                  | <a class="reference internal" href="functions.html#grammar-token-drop-function-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_function_statement</span></code></a>
+                                  | <a class="reference internal" href="functions.html#grammar-token-create-aggregate-statement"><code class="xref docutils literal notranslate"><span class="pre">create_aggregate_statement</span></code></a>
+                                  | <a class="reference internal" href="functions.html#grammar-token-drop-aggregate-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_aggregate_statement</span></code></a>
+<strong id="grammar-token-udt-statement">udt_statement               </strong> ::=  <a class="reference internal" href="types.html#grammar-token-create-type-statement"><code class="xref docutils literal notranslate"><span class="pre">create_type_statement</span></code></a>
+                                  | <a class="reference internal" href="types.html#grammar-token-alter-type-statement"><code class="xref docutils literal notranslate"><span class="pre">alter_type_statement</span></code></a>
+                                  | <a class="reference internal" href="types.html#grammar-token-drop-type-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_type_statement</span></code></a>
+<strong id="grammar-token-trigger-statement">trigger_statement           </strong> ::=  <a class="reference internal" href="triggers.html#grammar-token-create-trigger-statement"><code class="xref docutils literal notranslate"><span class="pre">create_trigger_statement</span></code></a>
+                                  | <a class="reference internal" href="triggers.html#grammar-token-drop-trigger-statement"><code class="xref docutils literal notranslate"><span class="pre">drop_trigger_statement</span></code></a>
 </pre>
 </div>
 <div class="section" id="prepared-statements">
 <span id="id3"></span><h2>Prepared Statements<a class="headerlink" href="#prepared-statements" title="Permalink to this headline">¶</a></h2>
 <p>CQL supports <em>prepared statements</em>. Prepared statements are an optimization that allows to parse a query only once but
 execute it multiple times with different concrete values.</p>
-<p>Any statement that uses at least one bind marker (see <a class="reference internal" href="#grammar-token-bind_marker"><code class="xref std std-token docutils literal"><span class="pre">bind_marker</span></code></a>) will need to be <em>prepared</em>. After which the statement
+<p>Any statement that uses at least one bind marker (see <a class="reference internal" href="#grammar-token-bind-marker"><code class="xref std std-token docutils literal notranslate"><span class="pre">bind_marker</span></code></a>) will need to be <em>prepared</em>. After which the statement
 can be <em>executed</em> by provided concrete values for each of its marker. The exact details of how a statement is prepared
 and then executed depends on the CQL driver used and you should refer to your driver documentation.</p>
 </div>
diff --git a/content/doc/stable/cql/dml.html b/content/doc/stable/cql/dml.html
index ebb9922..cc8bd01 100644
--- a/content/doc/stable/cql/dml.html
+++ b/content/doc/stable/cql/dml.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Secondary Indexes" href="indexes.html"/> <link rel="prev" title="Data Definition" href="ddl.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Secondary Indexes" href="indexes.html"/> <link rel="prev" title="Data Definition" href="ddl.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -174,32 +174,32 @@
 <p>This section describes the statements supported by CQL to insert, update, delete and query data.</p>
 <div class="section" id="select">
 <span id="select-statement"></span><h2>SELECT<a class="headerlink" href="#select" title="Permalink to this headline">¶</a></h2>
-<p>Querying data from data is done using a <code class="docutils literal"><span class="pre">SELECT</span></code> statement:</p>
+<p>Querying data from data is done using a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-select_statement">select_statement</strong> ::=  SELECT [ JSON | DISTINCT ] ( <a class="reference internal" href="#grammar-token-select_clause"><code class="xref docutils literal"><span class="pre">select_clause</span></code></a> | '*' )
-                      FROM <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                      [ WHERE <a class="reference internal" href="#grammar-token-where_clause"><code class="xref docutils literal"><span class="pre">where_clause</span></code></a> ]
-                      [ GROUP BY <a class="reference internal" href="#grammar-token-group_by_clause"><code class="xref docutils literal"><span class="pre">group_by_clause</span></code></a> ]
-                      [ ORDER BY <a class="reference internal" href="#grammar-token-ordering_clause"><code class="xref docutils literal"><span class="pre">ordering_clause</span></code></a> ]
-                      [ PER PARTITION LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a>) ]
-                      [ LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a>) ]
+<strong id="grammar-token-select-statement">select_statement</strong> ::=  SELECT [ JSON | DISTINCT ] ( <a class="reference internal" href="#grammar-token-select-clause"><code class="xref docutils literal notranslate"><span class="pre">select_clause</span></code></a> | '*' )
+                      FROM <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                      [ WHERE <a class="reference internal" href="#grammar-token-where-clause"><code class="xref docutils literal notranslate"><span class="pre">where_clause</span></code></a> ]
+                      [ GROUP BY <a class="reference internal" href="#grammar-token-group-by-clause"><code class="xref docutils literal notranslate"><span class="pre">group_by_clause</span></code></a> ]
+                      [ ORDER BY <a class="reference internal" href="#grammar-token-ordering-clause"><code class="xref docutils literal notranslate"><span class="pre">ordering_clause</span></code></a> ]
+                      [ PER PARTITION LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a>) ]
+                      [ LIMIT (<a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a>) ]
                       [ ALLOW FILTERING ]
-<strong id="grammar-token-select_clause">select_clause   </strong> ::=  <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ] ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ] )
-<strong id="grammar-token-selector">selector        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                      | <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                      | CAST '(' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> AS <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ')'
-                      | <a class="reference internal" href="functions.html#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal"><span class="pre">selector</span></code></a> )* ] ')'
+<strong id="grammar-token-select-clause">select_clause   </strong> ::=  <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ] ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> [ AS <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ] )
+<strong id="grammar-token-selector">selector        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                      | <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                      | CAST '(' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> AS <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ')'
+                      | <a class="reference internal" href="functions.html#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-selector"><code class="xref docutils literal notranslate"><span class="pre">selector</span></code></a> )* ] ')'
                       | COUNT '(' '*' ')'
-<strong id="grammar-token-where_clause">where_clause    </strong> ::=  <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal"><span class="pre">relation</span></code></a> ( AND <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal"><span class="pre">relation</span></code></a> )*
-<strong id="grammar-token-relation">relation        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                      '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="types.html#grammar-token-tuple_literal"><code class="xref docutils literal"><span class="pre">tuple_literal</span></code></a>
-                      TOKEN '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
+<strong id="grammar-token-where-clause">where_clause    </strong> ::=  <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal notranslate"><span class="pre">relation</span></code></a> ( AND <a class="reference internal" href="#grammar-token-relation"><code class="xref docutils literal notranslate"><span class="pre">relation</span></code></a> )*
+<strong id="grammar-token-relation">relation        </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                      '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="types.html#grammar-token-tuple-literal"><code class="xref docutils literal notranslate"><span class="pre">tuple_literal</span></code></a>
+                      TOKEN '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')' <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
 <strong id="grammar-token-operator">operator        </strong> ::=  '=' | '&lt;' | '&gt;' | '&lt;=' | '&gt;=' | '!=' | IN | CONTAINS | CONTAINS KEY
-<strong id="grammar-token-group_by_clause">group_by_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )*
-<strong id="grammar-token-ordering_clause">ordering_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> [ ASC | DESC ] ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> [ ASC | DESC ] )*
+<strong id="grammar-token-group-by-clause">group_by_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )*
+<strong id="grammar-token-ordering-clause">ordering_clause </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> [ ASC | DESC ] ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> [ ASC | DESC ] )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="k">IN</span> <span class="p">(</span><span class="mf">199</span><span class="p">,</span> <span class="mf">200</span><span class="p">,</span> <span class="mf">207</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="k">IN</span> <span class="p">(</span><span class="mf">199</span><span class="p">,</span> <span class="mf">200</span><span class="p">,</span> <span class="mf">207</span><span class="p">);</span>
 <span class="k">SELECT</span> <span class="k">JSON</span> <span class="n">name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="mf">199</span><span class="p">;</span>
 <span class="k">SELECT</span> <span class="n">name</span> <span class="k">AS</span> <span class="n">user_name</span><span class="p">,</span> <span class="n">occupation</span> <span class="k">AS</span> <span class="n">user_occupation</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
 
@@ -212,22 +212,22 @@
 <span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="o">*</span><span class="p">)</span> <span class="k">AS</span> <span class="n">user_count</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">SELECT</span></code> statements reads one or more columns for one or more rows in a table. It returns a result-set of the rows
+<p>The <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements reads one or more columns for one or more rows in a table. It returns a result-set of the rows
 matching the request, where each row contains the values for the selection corresponding to the query. Additionally,
 <a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">functions</span></a> including <a class="reference internal" href="functions.html#aggregate-functions"><span class="std std-ref">aggregation</span></a> ones can be applied to the result.</p>
-<p>A <code class="docutils literal"><span class="pre">SELECT</span></code> statement contains at least a <a class="reference internal" href="#selection-clause"><span class="std std-ref">selection clause</span></a> and the name of the table on which
+<p>A <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement contains at least a <a class="reference internal" href="#selection-clause"><span class="std std-ref">selection clause</span></a> and the name of the table on which
 the selection is on (note that CQL does <strong>not</strong> joins or sub-queries and thus a select statement only apply to a single
 table). In most case, a select will also have a <a class="reference internal" href="#where-clause"><span class="std std-ref">where clause</span></a> and it can optionally have additional
 clauses to <a class="reference internal" href="#ordering-clause"><span class="std std-ref">order</span></a> or <a class="reference internal" href="#limit-clause"><span class="std std-ref">limit</span></a> the results. Lastly, <a class="reference internal" href="#allow-filtering"><span class="std std-ref">queries that require
-filtering</span></a> can be allowed if the <code class="docutils literal"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> flag is provided.</p>
+filtering</span></a> can be allowed if the <code class="docutils literal notranslate"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> flag is provided.</p>
 <div class="section" id="selection-clause">
 <span id="id2"></span><h3>Selection clause<a class="headerlink" href="#selection-clause" title="Permalink to this headline">¶</a></h3>
-<p>The <a class="reference internal" href="#grammar-token-select_clause"><code class="xref std std-token docutils literal"><span class="pre">select_clause</span></code></a> determines which columns needs to be queried and returned in the result-set, as well as any
+<p>The <a class="reference internal" href="#grammar-token-select-clause"><code class="xref std std-token docutils literal notranslate"><span class="pre">select_clause</span></code></a> determines which columns needs to be queried and returned in the result-set, as well as any
 transformation to apply to this result before returning. It consists of a comma-separated list of <em>selectors</em> or,
-alternatively, of the wildcard character (<code class="docutils literal"><span class="pre">*</span></code>) to select all the columns defined in the table.</p>
+alternatively, of the wildcard character (<code class="docutils literal notranslate"><span class="pre">*</span></code>) to select all the columns defined in the table.</p>
 <div class="section" id="selectors">
 <h4>Selectors<a class="headerlink" href="#selectors" title="Permalink to this headline">¶</a></h4>
-<p>A <a class="reference internal" href="#grammar-token-selector"><code class="xref std std-token docutils literal"><span class="pre">selector</span></code></a> can be one of:</p>
+<p>A <a class="reference internal" href="#grammar-token-selector"><code class="xref std std-token docutils literal notranslate"><span class="pre">selector</span></code></a> can be one of:</p>
 <ul class="simple">
 <li>A column name of the table selected, to retrieve the values for that column.</li>
 <li>A term, which is usually used nested inside other selectors like functions (if a term is selected directly, then the
@@ -235,14 +235,14 @@
 <li>A casting, which allows to convert a nested selector to a (compatible) type.</li>
 <li>A function call, where the arguments are selector themselves. See the section on <a class="reference internal" href="functions.html#cql-functions"><span class="std std-ref">functions</span></a> for
 more details.</li>
-<li>The special call <code class="docutils literal"><span class="pre">COUNT(*)</span></code> to the <a class="reference internal" href="functions.html#count-function"><span class="std std-ref">COUNT function</span></a>, which counts all non-null results.</li>
+<li>The special call <code class="docutils literal notranslate"><span class="pre">COUNT(*)</span></code> to the <a class="reference internal" href="functions.html#count-function"><span class="std std-ref">COUNT function</span></a>, which counts all non-null results.</li>
 </ul>
 </div>
 <div class="section" id="aliases">
 <h4>Aliases<a class="headerlink" href="#aliases" title="Permalink to this headline">¶</a></h4>
 <p>Every <em>top-level</em> selector can also be aliased (using <cite>AS</cite>). If so, the name of the corresponding column in the result
 set will be that of the alias. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">// Without alias</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">// Without alias</span>
 <span class="k">SELECT</span> <span class="n">intAsBlob</span><span class="p">(</span><span class="mf">4</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">t</span><span class="p">;</span>
 
 <span class="c1">//  intAsBlob(4)</span>
@@ -259,31 +259,31 @@
 </div>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">Currently, aliases aren&#8217;t recognized anywhere else in the statement where they are used (not in the <code class="docutils literal"><span class="pre">WHERE</span></code>
-clause, not in the <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause, ...). You must use the orignal column name instead.</p>
+<p class="last">Currently, aliases aren’t recognized anywhere else in the statement where they are used (not in the <code class="docutils literal notranslate"><span class="pre">WHERE</span></code>
+clause, not in the <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause, …). You must use the orignal column name instead.</p>
 </div>
 </div>
 <div class="section" id="writetime-and-ttl-function">
-<h4><code class="docutils literal"><span class="pre">WRITETIME</span></code> and <code class="docutils literal"><span class="pre">TTL</span></code> function<a class="headerlink" href="#writetime-and-ttl-function" title="Permalink to this headline">¶</a></h4>
-<p>Selection supports two special functions (that aren&#8217;t allowed anywhere else): <code class="docutils literal"><span class="pre">WRITETIME</span></code> and <code class="docutils literal"><span class="pre">TTL</span></code>. Both function
-take only one argument and that argument <em>must</em> be a column name (so for instance <code class="docutils literal"><span class="pre">TTL(3)</span></code> is invalid).</p>
+<h4><code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code> and <code class="docutils literal notranslate"><span class="pre">TTL</span></code> function<a class="headerlink" href="#writetime-and-ttl-function" title="Permalink to this headline">¶</a></h4>
+<p>Selection supports two special functions (that aren’t allowed anywhere else): <code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code> and <code class="docutils literal notranslate"><span class="pre">TTL</span></code>. Both function
+take only one argument and that argument <em>must</em> be a column name (so for instance <code class="docutils literal notranslate"><span class="pre">TTL(3)</span></code> is invalid).</p>
 <p>Those functions allow to retrieve meta-information that are stored internally for each column, namely:</p>
 <ul class="simple">
-<li>the timestamp of the value of the column for <code class="docutils literal"><span class="pre">WRITETIME</span></code>.</li>
-<li>the remaining time to live (in seconds) for the value of the column if it set to expire (and <code class="docutils literal"><span class="pre">null</span></code> otherwise).</li>
+<li>the timestamp of the value of the column for <code class="docutils literal notranslate"><span class="pre">WRITETIME</span></code>.</li>
+<li>the remaining time to live (in seconds) for the value of the column if it set to expire (and <code class="docutils literal notranslate"><span class="pre">null</span></code> otherwise).</li>
 </ul>
 </div>
 </div>
 <div class="section" id="the-where-clause">
-<span id="where-clause"></span><h3>The <code class="docutils literal"><span class="pre">WHERE</span></code> clause<a class="headerlink" href="#the-where-clause" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">WHERE</span></code> clause specifies which rows must be queried. It is composed of relations on the columns that are part of
-the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> and/or have a <a class="reference external" href="#createIndexStmt">secondary index</a> defined on them.</p>
-<p>Not all relations are allowed in a query. For instance, non-equal relations (where <code class="docutils literal"><span class="pre">IN</span></code> is considered as an equal
-relation) on a partition key are not supported (but see the use of the <code class="docutils literal"><span class="pre">TOKEN</span></code> method below to do non-equal queries on
+<span id="where-clause"></span><h3>The <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause<a class="headerlink" href="#the-where-clause" title="Permalink to this headline">¶</a></h3>
+<p>The <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause specifies which rows must be queried. It is composed of relations on the columns that are part of
+the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> and/or have a <a class="reference external" href="#createIndexStmt">secondary index</a> defined on them.</p>
+<p>Not all relations are allowed in a query. For instance, non-equal relations (where <code class="docutils literal notranslate"><span class="pre">IN</span></code> is considered as an equal
+relation) on a partition key are not supported (but see the use of the <code class="docutils literal notranslate"><span class="pre">TOKEN</span></code> method below to do non-equal queries on
 the partition key). Moreover, for a given partition key, the clustering columns induce an ordering of rows and relations
 on them is restricted to the relations that allow to select a <strong>contiguous</strong> (for the ordering) set of rows. For
 instance, given:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">posts</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">posts</span> <span class="p">(</span>
     <span class="n">userid</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">blog_title</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">posted_at</span> <span class="nb">timestamp</span><span class="p">,</span>
@@ -295,7 +295,7 @@
 </pre></div>
 </div>
 <p>The following query is allowed:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">entry_title</span><span class="p">,</span> <span class="n">content</span> <span class="k">FROM</span> <span class="n">posts</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">entry_title</span><span class="p">,</span> <span class="n">content</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="n">blog_title</span><span class="o">=</span><span class="s1">&#39;John&#39;&#39;s Blog&#39;</span>
    <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&gt;=</span> <span class="s1">&#39;2012-01-01&#39;</span> <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&lt;</span> <span class="s1">&#39;2012-01-31&#39;</span>
@@ -303,92 +303,92 @@
 </div>
 <p>But the following one is not, as it does not select a contiguous set of rows (and we suppose no secondary indexes are
 set):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">// Needs a blog_title to be set to select ranges of posted_at</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">// Needs a blog_title to be set to select ranges of posted_at</span>
 <span class="k">SELECT</span> <span class="n">entry_title</span><span class="p">,</span> <span class="n">content</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&gt;=</span> <span class="s1">&#39;2012-01-01&#39;</span> <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&lt;</span> <span class="s1">&#39;2012-01-31&#39;</span>
 </pre></div>
 </div>
-<p>When specifying relations, the <code class="docutils literal"><span class="pre">TOKEN</span></code> function can be used on the <code class="docutils literal"><span class="pre">PARTITION</span> <span class="pre">KEY</span></code> column to query. In that case,
-rows will be selected based on the token of their <code class="docutils literal"><span class="pre">PARTITION_KEY</span></code> rather than on the value. Note that the token of a
-key depends on the partitioner in use, and that in particular the RandomPartitioner won&#8217;t yield a meaningful order. Also
+<p>When specifying relations, the <code class="docutils literal notranslate"><span class="pre">TOKEN</span></code> function can be used on the <code class="docutils literal notranslate"><span class="pre">PARTITION</span> <span class="pre">KEY</span></code> column to query. In that case,
+rows will be selected based on the token of their <code class="docutils literal notranslate"><span class="pre">PARTITION_KEY</span></code> rather than on the value. Note that the token of a
+key depends on the partitioner in use, and that in particular the RandomPartitioner won’t yield a meaningful order. Also
 note that ordering partitioners always order token values by bytes (so even if the partition key is of type int,
-<code class="docutils literal"><span class="pre">token(-1)</span> <span class="pre">&gt;</span> <span class="pre">token(0)</span></code> in particular). Example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<code class="docutils literal notranslate"><span class="pre">token(-1)</span> <span class="pre">&gt;</span> <span class="pre">token(0)</span></code> in particular). Example:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="k">token</span><span class="p">(</span><span class="n">userid</span><span class="p">)</span> <span class="o">&gt;</span> <span class="k">token</span><span class="p">(</span><span class="s1">&#39;tom&#39;</span><span class="p">)</span> <span class="k">AND</span> <span class="k">token</span><span class="p">(</span><span class="n">userid</span><span class="p">)</span> <span class="o">&lt;</span> <span class="k">token</span><span class="p">(</span><span class="s1">&#39;bob&#39;</span><span class="p">)</span>
 </pre></div>
 </div>
-<p>Moreover, the <code class="docutils literal"><span class="pre">IN</span></code> relation is only allowed on the last column of the partition key and on the last column of the full
+<p>Moreover, the <code class="docutils literal notranslate"><span class="pre">IN</span></code> relation is only allowed on the last column of the partition key and on the last column of the full
 primary key.</p>
-<p>It is also possible to “group” <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">COLUMNS</span></code> together in a relation using the tuple notation. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<p>It is also possible to “group” <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">COLUMNS</span></code> together in a relation using the tuple notation. For instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="p">(</span><span class="n">blog_title</span><span class="p">,</span> <span class="n">posted_at</span><span class="p">)</span> <span class="o">&gt;</span> <span class="p">(</span><span class="s1">&#39;John&#39;&#39;s Blog&#39;</span><span class="p">,</span> <span class="s1">&#39;2012-01-01&#39;</span><span class="p">)</span>
 </pre></div>
 </div>
-<p>will request all rows that sorts after the one having “John&#8217;s Blog” as <code class="docutils literal"><span class="pre">blog_tile</span></code> and &#8216;2012-01-01&#8217; for <code class="docutils literal"><span class="pre">posted_at</span></code>
-in the clustering order. In particular, rows having a <code class="docutils literal"><span class="pre">post_at</span> <span class="pre">&lt;=</span> <span class="pre">'2012-01-01'</span></code> will be returned as long as their
-<code class="docutils literal"><span class="pre">blog_title</span> <span class="pre">&gt;</span> <span class="pre">'John''s</span> <span class="pre">Blog'</span></code>, which would not be the case for:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<p>will request all rows that sorts after the one having “John’s Blog” as <code class="docutils literal notranslate"><span class="pre">blog_tile</span></code> and ‘2012-01-01’ for <code class="docutils literal notranslate"><span class="pre">posted_at</span></code>
+in the clustering order. In particular, rows having a <code class="docutils literal notranslate"><span class="pre">post_at</span> <span class="pre">&lt;=</span> <span class="pre">'2012-01-01'</span></code> will be returned as long as their
+<code class="docutils literal notranslate"><span class="pre">blog_title</span> <span class="pre">&gt;</span> <span class="pre">'John''s</span> <span class="pre">Blog'</span></code>, which would not be the case for:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="n">blog_title</span> <span class="o">&gt;</span> <span class="s1">&#39;John&#39;&#39;s Blog&#39;</span>
    <span class="k">AND</span> <span class="n">posted_at</span> <span class="o">&gt;</span> <span class="s1">&#39;2012-01-01&#39;</span>
 </pre></div>
 </div>
-<p>The tuple notation may also be used for <code class="docutils literal"><span class="pre">IN</span></code> clauses on clustering columns:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
+<p>The tuple notation may also be used for <code class="docutils literal notranslate"><span class="pre">IN</span></code> clauses on clustering columns:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">posts</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;john doe&#39;</span>
    <span class="k">AND</span> <span class="p">(</span><span class="n">blog_title</span><span class="p">,</span> <span class="n">posted_at</span><span class="p">)</span> <span class="k">IN</span> <span class="p">((</span><span class="s1">&#39;John&#39;&#39;s Blog&#39;</span><span class="p">,</span> <span class="s1">&#39;2012-01-01&#39;</span><span class="p">),</span> <span class="p">(</span><span class="s1">&#39;Extreme Chess&#39;</span><span class="p">,</span> <span class="s1">&#39;2014-06-01&#39;</span><span class="p">))</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">CONTAINS</span></code> operator may only be used on collection columns (lists, sets, and maps). In the case of maps,
-<code class="docutils literal"><span class="pre">CONTAINS</span></code> applies to the map values. The <code class="docutils literal"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operator may only be used on map columns and applies to the
+<p>The <code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code> operator may only be used on collection columns (lists, sets, and maps). In the case of maps,
+<code class="docutils literal notranslate"><span class="pre">CONTAINS</span></code> applies to the map values. The <code class="docutils literal notranslate"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> operator may only be used on map columns and applies to the
 map keys.</p>
 </div>
 <div class="section" id="grouping-results">
 <span id="group-by-clause"></span><h3>Grouping results<a class="headerlink" href="#grouping-results" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option allows to condense into a single row all selected rows that share the same values for a set
+<p>The <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option allows to condense into a single row all selected rows that share the same values for a set
 of columns.</p>
-<p>Using the <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option, it is only possible to group rows at the partition key level or at a clustering column
-level. By consequence, the <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option only accept as arguments primary key column names in the primary key
+<p>Using the <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option, it is only possible to group rows at the partition key level or at a clustering column
+level. By consequence, the <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> option only accept as arguments primary key column names in the primary key
 order. If a primary key column is restricted by an equality restriction it is not required to be present in the
-<code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause.</p>
-<p>Aggregate functions will produce a separate value for each group. If no <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause is specified,
+<code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause.</p>
+<p>Aggregate functions will produce a separate value for each group. If no <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code> clause is specified,
 aggregates functions will produce a single value for all the rows.</p>
-<p>If a column is selected without an aggregate function, in a statement with a <code class="docutils literal"><span class="pre">GROUP</span> <span class="pre">BY</span></code>, the first value encounter
+<p>If a column is selected without an aggregate function, in a statement with a <code class="docutils literal notranslate"><span class="pre">GROUP</span> <span class="pre">BY</span></code>, the first value encounter
 in each group will be returned.</p>
 </div>
 <div class="section" id="ordering-results">
 <span id="ordering-clause"></span><h3>Ordering results<a class="headerlink" href="#ordering-results" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause allows to select the order of the returned results. It takes as argument a list of column names
-along with the order for the column (<code class="docutils literal"><span class="pre">ASC</span></code> for ascendant and <code class="docutils literal"><span class="pre">DESC</span></code> for descendant, omitting the order being
-equivalent to <code class="docutils literal"><span class="pre">ASC</span></code>). Currently the possible orderings are limited by the <a class="reference internal" href="ddl.html#clustering-order"><span class="std std-ref">clustering order</span></a>
+<p>The <code class="docutils literal notranslate"><span class="pre">ORDER</span> <span class="pre">BY</span></code> clause allows to select the order of the returned results. It takes as argument a list of column names
+along with the order for the column (<code class="docutils literal notranslate"><span class="pre">ASC</span></code> for ascendant and <code class="docutils literal notranslate"><span class="pre">DESC</span></code> for descendant, omitting the order being
+equivalent to <code class="docutils literal notranslate"><span class="pre">ASC</span></code>). Currently the possible orderings are limited by the <a class="reference internal" href="ddl.html#clustering-order"><span class="std std-ref">clustering order</span></a>
 defined on the table:</p>
 <ul class="simple">
-<li>if the table has been defined without any specific <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code>, then then allowed orderings are the order
+<li>if the table has been defined without any specific <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code>, then then allowed orderings are the order
 induced by the clustering columns and the reverse of that one.</li>
-<li>otherwise, the orderings allowed are the order of the <code class="docutils literal"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option and the reversed one.</li>
+<li>otherwise, the orderings allowed are the order of the <code class="docutils literal notranslate"><span class="pre">CLUSTERING</span> <span class="pre">ORDER</span></code> option and the reversed one.</li>
 </ul>
 </div>
 <div class="section" id="limiting-results">
 <span id="limit-clause"></span><h3>Limiting results<a class="headerlink" href="#limiting-results" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">LIMIT</span></code> option to a <code class="docutils literal"><span class="pre">SELECT</span></code> statement limits the number of rows returned by a query, while the <code class="docutils literal"><span class="pre">PER</span> <span class="pre">PARTITION</span>
+<p>The <code class="docutils literal notranslate"><span class="pre">LIMIT</span></code> option to a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement limits the number of rows returned by a query, while the <code class="docutils literal notranslate"><span class="pre">PER</span> <span class="pre">PARTITION</span>
 <span class="pre">LIMIT</span></code> option limits the number of rows returned for a given partition by the query. Note that both type of limit can
 used in the same statement.</p>
 </div>
 <div class="section" id="allowing-filtering">
 <span id="allow-filtering"></span><h3>Allowing filtering<a class="headerlink" href="#allowing-filtering" title="Permalink to this headline">¶</a></h3>
-<p>By default, CQL only allows select queries that don&#8217;t involve “filtering” server side, i.e. queries where we know that
+<p>By default, CQL only allows select queries that don’t involve “filtering” server side, i.e. queries where we know that
 all (live) record read will be returned (maybe partly) in the result set. The reasoning is that those “non filtering”
 queries have predictable performance in the sense that they will execute in a time that is proportional to the amount of
-data <strong>returned</strong> by the query (which can be controlled through <code class="docutils literal"><span class="pre">LIMIT</span></code>).</p>
-<p>The <code class="docutils literal"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> option allows to explicitly allow (some) queries that require filtering. Please note that a
-query using <code class="docutils literal"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> may thus have unpredictable performance (for the definition above), i.e. even a query
+data <strong>returned</strong> by the query (which can be controlled through <code class="docutils literal notranslate"><span class="pre">LIMIT</span></code>).</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> option allows to explicitly allow (some) queries that require filtering. Please note that a
+query using <code class="docutils literal notranslate"><span class="pre">ALLOW</span> <span class="pre">FILTERING</span></code> may thus have unpredictable performance (for the definition above), i.e. even a query
 that selects a handful of records <strong>may</strong> exhibit performance that depends on the total amount of data stored in the
 cluster.</p>
 <p>For instance, considering the following table holding user profiles with their year of birth (with a secondary index on
 it) and country of residence:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
     <span class="n">username</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">firstname</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">lastname</span> <span class="nb">text</span><span class="p">,</span>
@@ -400,7 +400,7 @@
 </pre></div>
 </div>
 <p>Then the following queries are valid:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span><span class="p">;</span>
 <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span><span class="p">;</span>
 </pre></div>
 </div>
@@ -410,33 +410,33 @@
 query may still depend on the number of node in the cluster, which indirectly depends on the amount of data stored.
 Nevertheless, the number of nodes will always be multiple number of magnitude lower than the number of user profile
 stored). Of course, both query may return very large result set in practice, but the amount of data returned can always
-be controlled by adding a <code class="docutils literal"><span class="pre">LIMIT</span></code>.</p>
+be controlled by adding a <code class="docutils literal notranslate"><span class="pre">LIMIT</span></code>.</p>
 <p>However, the following query will be rejected:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>because Cassandra cannot guarantee that it won&#8217;t have to scan large amount of data even if the result to those query is
+<p>because Cassandra cannot guarantee that it won’t have to scan large amount of data even if the result to those query is
 small. Typically, it will scan all the index entries for users born in 1981 even if only a handful are actually from
-France. However, if you “know what you are doing”, you can force the execution of this query by using <code class="docutils literal"><span class="pre">ALLOW</span>
+France. However, if you “know what you are doing”, you can force the execution of this query by using <code class="docutils literal notranslate"><span class="pre">ALLOW</span>
 <span class="pre">FILTERING</span></code> and so the following query is valid:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span> <span class="k">ALLOW</span> <span class="k">FILTERING</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">birth_year</span> <span class="o">=</span> <span class="mf">1981</span> <span class="k">AND</span> <span class="n">country</span> <span class="o">=</span> <span class="s1">&#39;FR&#39;</span> <span class="k">ALLOW</span> <span class="k">FILTERING</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 </div>
 <div class="section" id="insert">
 <span id="insert-statement"></span><h2>INSERT<a class="headerlink" href="#insert" title="Permalink to this headline">¶</a></h2>
-<p>Inserting data for a row is done using an <code class="docutils literal"><span class="pre">INSERT</span></code> statement:</p>
+<p>Inserting data for a row is done using an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-insert_statement">insert_statement</strong> ::=  INSERT INTO <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a> ( <a class="reference internal" href="#grammar-token-names_values"><code class="xref docutils literal"><span class="pre">names_values</span></code></a> | <a class="reference internal" href="#grammar-token-json_clause"><code class="xref docutils literal"><span class="pre">json_clause</span></code></a> )
+<strong id="grammar-token-insert-statement">insert_statement</strong> ::=  INSERT INTO <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a> ( <a class="reference internal" href="#grammar-token-names-values"><code class="xref docutils literal notranslate"><span class="pre">names_values</span></code></a> | <a class="reference internal" href="#grammar-token-json-clause"><code class="xref docutils literal notranslate"><span class="pre">json_clause</span></code></a> )
                       [ IF NOT EXISTS ]
-                      [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-<strong id="grammar-token-names_values">names_values    </strong> ::=  <a class="reference internal" href="#grammar-token-names"><code class="xref docutils literal"><span class="pre">names</span></code></a> VALUES <a class="reference internal" href="types.html#grammar-token-tuple_literal"><code class="xref docutils literal"><span class="pre">tuple_literal</span></code></a>
-<strong id="grammar-token-json_clause">json_clause     </strong> ::=  JSON <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> [ DEFAULT ( NULL | UNSET ) ]
-<strong id="grammar-token-names">names           </strong> ::=  '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> )* ')'
+                      [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+<strong id="grammar-token-names-values">names_values    </strong> ::=  <a class="reference internal" href="#grammar-token-names"><code class="xref docutils literal notranslate"><span class="pre">names</span></code></a> VALUES <a class="reference internal" href="types.html#grammar-token-tuple-literal"><code class="xref docutils literal notranslate"><span class="pre">tuple_literal</span></code></a>
+<strong id="grammar-token-json-clause">json_clause     </strong> ::=  JSON <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> [ DEFAULT ( NULL | UNSET ) ]
+<strong id="grammar-token-names">names           </strong> ::=  '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( ',' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> )* ')'
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="n">movie</span><span class="p">,</span> <span class="n">director</span><span class="p">,</span> <span class="n">main_actor</span><span class="p">,</span> <span class="n">year</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="n">movie</span><span class="p">,</span> <span class="n">director</span><span class="p">,</span> <span class="n">main_actor</span><span class="p">,</span> <span class="n">year</span><span class="p">)</span>
                 <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;Serenity&#39;</span><span class="p">,</span> <span class="s1">&#39;Joss Whedon&#39;</span><span class="p">,</span> <span class="s1">&#39;Nathan Fillion&#39;</span><span class="p">,</span> <span class="mf">2005</span><span class="p">)</span>
       <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">86400</span><span class="p">;</span>
 
@@ -445,39 +445,39 @@
 <span class="s1">                              &quot;year&quot;: 2005}&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">INSERT</span></code> statement writes one or more columns for a given row in a table. Note that since a row is identified by
-its <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, at least the columns composing it must be specified. The list of columns to insert to must be
-supplied when using the <code class="docutils literal"><span class="pre">VALUES</span></code> syntax. When using the <code class="docutils literal"><span class="pre">JSON</span></code> syntax, they are optional. See the
+<p>The <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statement writes one or more columns for a given row in a table. Note that since a row is identified by
+its <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>, at least the columns composing it must be specified. The list of columns to insert to must be
+supplied when using the <code class="docutils literal notranslate"><span class="pre">VALUES</span></code> syntax. When using the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> syntax, they are optional. See the
 section on <a class="reference internal" href="json.html#cql-json"><span class="std std-ref">JSON support</span></a> for more detail.</p>
-<p>Note that unlike in SQL, <code class="docutils literal"><span class="pre">INSERT</span></code> does not check the prior existence of the row by default: the row is created if none
+<p>Note that unlike in SQL, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> does not check the prior existence of the row by default: the row is created if none
 existed before, and updated otherwise. Furthermore, there is no mean to know which of creation or update happened.</p>
-<p>It is however possible to use the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition to only insert if the row does not exist prior to the
-insertion. But please note that using <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> will incur a non negligible performance cost (internally, Paxos
+<p>It is however possible to use the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> condition to only insert if the row does not exist prior to the
+insertion. But please note that using <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> will incur a non negligible performance cost (internally, Paxos
 will be used) so this should be used sparingly.</p>
-<p>All updates for an <code class="docutils literal"><span class="pre">INSERT</span></code> are applied atomically and in isolation.</p>
-<p>Please refer to the <a class="reference internal" href="#update-parameters"><span class="std std-ref">UPDATE</span></a> section for informations on the <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref std std-token docutils literal"><span class="pre">update_parameter</span></code></a>.</p>
-<p>Also note that <code class="docutils literal"><span class="pre">INSERT</span></code> does not support counters, while <code class="docutils literal"><span class="pre">UPDATE</span></code> does.</p>
+<p>All updates for an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> are applied atomically and in isolation.</p>
+<p>Please refer to the <a class="reference internal" href="#update-parameters"><span class="std std-ref">UPDATE</span></a> section for informations on the <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref std std-token docutils literal notranslate"><span class="pre">update_parameter</span></code></a>.</p>
+<p>Also note that <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> does not support counters, while <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> does.</p>
 </div>
 <div class="section" id="update">
 <span id="update-statement"></span><h2>UPDATE<a class="headerlink" href="#update" title="Permalink to this headline">¶</a></h2>
-<p>Updating a row is done using an <code class="docutils literal"><span class="pre">UPDATE</span></code> statement:</p>
+<p>Updating a row is done using an <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-update_statement">update_statement</strong> ::=  UPDATE <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                      [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-                      SET <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal"><span class="pre">assignment</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal"><span class="pre">assignment</span></code></a> )*
-                      WHERE <a class="reference internal" href="#grammar-token-where_clause"><code class="xref docutils literal"><span class="pre">where_clause</span></code></a>
-                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> )*) ]
-<strong id="grammar-token-update_parameter">update_parameter</strong> ::=  ( TIMESTAMP | TTL ) ( <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref docutils literal"><span class="pre">bind_marker</span></code></a> )
-<strong id="grammar-token-assignment">assignment      </strong> ::=  <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> '=' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ( '+' | '-' ) <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="types.html#grammar-token-list_literal"><code class="xref docutils literal"><span class="pre">list_literal</span></code></a> '+' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-<strong id="grammar-token-simple_selection">simple_selection</strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '[' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ']'
-                     | <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> '.' `field_name
-<strong id="grammar-token-condition">condition       </strong> ::=  <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>
+<strong id="grammar-token-update-statement">update_statement</strong> ::=  UPDATE <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                      [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+                      SET <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal notranslate"><span class="pre">assignment</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-assignment"><code class="xref docutils literal notranslate"><span class="pre">assignment</span></code></a> )*
+                      WHERE <a class="reference internal" href="#grammar-token-where-clause"><code class="xref docutils literal notranslate"><span class="pre">where_clause</span></code></a>
+                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> )*) ]
+<strong id="grammar-token-update-parameter">update_parameter</strong> ::=  ( TIMESTAMP | TTL ) ( <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref docutils literal notranslate"><span class="pre">integer</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref docutils literal notranslate"><span class="pre">bind_marker</span></code></a> )
+<strong id="grammar-token-assignment">assignment      </strong> ::=  <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> '=' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ( '+' | '-' ) <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '=' <a class="reference internal" href="types.html#grammar-token-list-literal"><code class="xref docutils literal notranslate"><span class="pre">list_literal</span></code></a> '+' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+<strong id="grammar-token-simple-selection">simple_selection</strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '[' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ']'
+                     | <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> '.' `field_name
+<strong id="grammar-token-condition">condition       </strong> ::=  <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> <a class="reference internal" href="#grammar-token-operator"><code class="xref docutils literal notranslate"><span class="pre">operator</span></code></a> <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">400</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">400</span>
    <span class="k">SET</span> <span class="n">director</span>   <span class="o">=</span> <span class="s1">&#39;Joss Whedon&#39;</span><span class="p">,</span>
        <span class="n">main_actor</span> <span class="o">=</span> <span class="s1">&#39;Nathan Fillion&#39;</span><span class="p">,</span>
        <span class="n">year</span>       <span class="o">=</span> <span class="mf">2005</span>
@@ -489,81 +489,81 @@
      <span class="k">AND</span> <span class="n">action</span> <span class="o">=</span> <span class="s1">&#39;click&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">UPDATE</span></code> statement writes one or more columns for a given row in a table. The <a class="reference internal" href="#grammar-token-where_clause"><code class="xref std std-token docutils literal"><span class="pre">where_clause</span></code></a> is used to
-select the row to update and must include all columns composing the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. Non primary key columns are then
-set using the <code class="docutils literal"><span class="pre">SET</span></code> keyword.</p>
-<p>Note that unlike in SQL, <code class="docutils literal"><span class="pre">UPDATE</span></code> does not check the prior existence of the row by default (except through <code class="docutils literal"><span class="pre">IF</span></code>, see
+<p>The <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement writes one or more columns for a given row in a table. The <a class="reference internal" href="#grammar-token-where-clause"><code class="xref std std-token docutils literal notranslate"><span class="pre">where_clause</span></code></a> is used to
+select the row to update and must include all columns composing the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. Non primary key columns are then
+set using the <code class="docutils literal notranslate"><span class="pre">SET</span></code> keyword.</p>
+<p>Note that unlike in SQL, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> does not check the prior existence of the row by default (except through <code class="docutils literal notranslate"><span class="pre">IF</span></code>, see
 below): the row is created if none existed before, and updated otherwise. Furthermore, there are no means to know
 whether a creation or update occurred.</p>
-<p>It is however possible to use the conditions on some columns through <code class="docutils literal"><span class="pre">IF</span></code>, in which case the row will not be updated
-unless the conditions are met. But, please note that using <code class="docutils literal"><span class="pre">IF</span></code> conditions will incur a non-negligible performance
+<p>It is however possible to use the conditions on some columns through <code class="docutils literal notranslate"><span class="pre">IF</span></code>, in which case the row will not be updated
+unless the conditions are met. But, please note that using <code class="docutils literal notranslate"><span class="pre">IF</span></code> conditions will incur a non-negligible performance
 cost (internally, Paxos will be used) so this should be used sparingly.</p>
-<p>In an <code class="docutils literal"><span class="pre">UPDATE</span></code> statement, all updates within the same partition key are applied atomically and in isolation.</p>
-<p>Regarding the <a class="reference internal" href="#grammar-token-assignment"><code class="xref std std-token docutils literal"><span class="pre">assignment</span></code></a>:</p>
+<p>In an <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statement, all updates within the same partition key are applied atomically and in isolation.</p>
+<p>Regarding the <a class="reference internal" href="#grammar-token-assignment"><code class="xref std std-token docutils literal notranslate"><span class="pre">assignment</span></code></a>:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">c</span> <span class="pre">=</span> <span class="pre">c</span> <span class="pre">+</span> <span class="pre">3</span></code> is used to increment/decrement counters. The column name after the &#8216;=&#8217; sign <strong>must</strong> be the same than
-the one before the &#8216;=&#8217; sign. Note that increment/decrement is only allowed on counters, and are the <em>only</em> update
+<li><code class="docutils literal notranslate"><span class="pre">c</span> <span class="pre">=</span> <span class="pre">c</span> <span class="pre">+</span> <span class="pre">3</span></code> is used to increment/decrement counters. The column name after the ‘=’ sign <strong>must</strong> be the same than
+the one before the ‘=’ sign. Note that increment/decrement is only allowed on counters, and are the <em>only</em> update
 operations allowed on counters. See the section on <a class="reference internal" href="types.html#counters"><span class="std std-ref">counters</span></a> for details.</li>
-<li><code class="docutils literal"><span class="pre">id</span> <span class="pre">=</span> <span class="pre">id</span> <span class="pre">+</span> <span class="pre">&lt;some-collection&gt;</span></code> and <code class="docutils literal"><span class="pre">id[value1]</span> <span class="pre">=</span> <span class="pre">value2</span></code> are for collections, see the <a class="reference internal" href="types.html#collections"><span class="std std-ref">relevant section</span></a> for details.</li>
-<li><code class="docutils literal"><span class="pre">id.field</span> <span class="pre">=</span> <span class="pre">3</span></code> is for setting the value of a field on a non-frozen user-defined types. see the <a class="reference internal" href="types.html#udts"><span class="std std-ref">relevant section</span></a> for details.</li>
+<li><code class="docutils literal notranslate"><span class="pre">id</span> <span class="pre">=</span> <span class="pre">id</span> <span class="pre">+</span> <span class="pre">&lt;some-collection&gt;</span></code> and <code class="docutils literal notranslate"><span class="pre">id[value1]</span> <span class="pre">=</span> <span class="pre">value2</span></code> are for collections, see the <a class="reference internal" href="types.html#collections"><span class="std std-ref">relevant section</span></a> for details.</li>
+<li><code class="docutils literal notranslate"><span class="pre">id.field</span> <span class="pre">=</span> <span class="pre">3</span></code> is for setting the value of a field on a non-frozen user-defined types. see the <a class="reference internal" href="types.html#udts"><span class="std std-ref">relevant section</span></a> for details.</li>
 </ul>
 <div class="section" id="update-parameters">
 <span id="id3"></span><h3>Update parameters<a class="headerlink" href="#update-parameters" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> (and <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">BATCH</span></code> for the <code class="docutils literal"><span class="pre">TIMESTAMP</span></code>) statements support the following
+<p>The <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> (and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> for the <code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code>) statements support the following
 parameters:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">TIMESTAMP</span></code>: sets the timestamp for the operation. If not specified, the coordinator will use the current time (in
+<li><code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code>: sets the timestamp for the operation. If not specified, the coordinator will use the current time (in
 microseconds) at the start of statement execution as the timestamp. This is usually a suitable default.</li>
-<li><code class="docutils literal"><span class="pre">TTL</span></code>: specifies an optional Time To Live (in seconds) for the inserted values. If set, the inserted values are
+<li><code class="docutils literal notranslate"><span class="pre">TTL</span></code>: specifies an optional Time To Live (in seconds) for the inserted values. If set, the inserted values are
 automatically removed from the database after the specified time. Note that the TTL concerns the inserted values, not
 the columns themselves. This means that any subsequent update of the column will also reset the TTL (to whatever TTL
 is specified in that update). By default, values never expire. A TTL of 0 is equivalent to no TTL. If the table has a
-default_time_to_live, a TTL of 0 will remove the TTL for the inserted or updated values. A TTL of <code class="docutils literal"><span class="pre">null</span></code> is equivalent
+default_time_to_live, a TTL of 0 will remove the TTL for the inserted or updated values. A TTL of <code class="docutils literal notranslate"><span class="pre">null</span></code> is equivalent
 to inserting with a TTL of 0.</li>
 </ul>
 </div>
 </div>
 <div class="section" id="delete">
 <span id="delete-statement"></span><h2>DELETE<a class="headerlink" href="#delete" title="Permalink to this headline">¶</a></h2>
-<p>Deleting rows or parts of rows uses the <code class="docutils literal"><span class="pre">DELETE</span></code> statement:</p>
+<p>Deleting rows or parts of rows uses the <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-delete_statement">delete_statement</strong> ::=  DELETE [ <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-simple_selection"><code class="xref docutils literal"><span class="pre">simple_selection</span></code></a> ) ]
-                      FROM <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                      [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-                      WHERE <a class="reference internal" href="#grammar-token-where_clause"><code class="xref docutils literal"><span class="pre">where_clause</span></code></a>
-                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal"><span class="pre">condition</span></code></a> )*) ]
+<strong id="grammar-token-delete-statement">delete_statement</strong> ::=  DELETE [ <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-simple-selection"><code class="xref docutils literal notranslate"><span class="pre">simple_selection</span></code></a> ) ]
+                      FROM <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                      [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+                      WHERE <a class="reference internal" href="#grammar-token-where-clause"><code class="xref docutils literal notranslate"><span class="pre">where_clause</span></code></a>
+                      [ IF ( EXISTS | <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> ( AND <a class="reference internal" href="#grammar-token-condition"><code class="xref docutils literal notranslate"><span class="pre">condition</span></code></a> )*) ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="k">FROM</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="nb">TIMESTAMP</span> <span class="mf">1240003134</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="k">FROM</span> <span class="n">NerdMovies</span> <span class="k">USING</span> <span class="nb">TIMESTAMP</span> <span class="mf">1240003134</span>
  <span class="k">WHERE</span> <span class="n">movie</span> <span class="o">=</span> <span class="s1">&#39;Serenity&#39;</span><span class="p">;</span>
 
 <span class="k">DELETE</span> <span class="n">phone</span> <span class="k">FROM</span> <span class="k">Users</span>
  <span class="k">WHERE</span> <span class="n">userid</span> <span class="k">IN</span> <span class="p">(</span><span class="m">C73DE1D3-AF08-40F3-B124-3FF3E5109F22</span><span class="p">,</span> <span class="m">B70DE1D0-9908-4AE3-BE34-5573E5B09F14</span><span class="p">);</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">DELETE</span></code> statement deletes columns and rows. If column names are provided directly after the <code class="docutils literal"><span class="pre">DELETE</span></code> keyword,
-only those columns are deleted from the row indicated by the <code class="docutils literal"><span class="pre">WHERE</span></code> clause. Otherwise, whole rows are removed.</p>
-<p>The <code class="docutils literal"><span class="pre">WHERE</span></code> clause specifies which rows are to be deleted. Multiple rows may be deleted with one statement by using an
-<code class="docutils literal"><span class="pre">IN</span></code> operator. A range of rows may be deleted using an inequality operator (such as <code class="docutils literal"><span class="pre">&gt;=</span></code>).</p>
-<p><code class="docutils literal"><span class="pre">DELETE</span></code> supports the <code class="docutils literal"><span class="pre">TIMESTAMP</span></code> option with the same semantics as in <a class="reference internal" href="#update-parameters"><span class="std std-ref">updates</span></a>.</p>
-<p>In a <code class="docutils literal"><span class="pre">DELETE</span></code> statement, all deletions within the same partition key are applied atomically and in isolation.</p>
-<p>A <code class="docutils literal"><span class="pre">DELETE</span></code> operation can be conditional through the use of an <code class="docutils literal"><span class="pre">IF</span></code> clause, similar to <code class="docutils literal"><span class="pre">UPDATE</span></code> and <code class="docutils literal"><span class="pre">INSERT</span></code>
-statements. However, as with <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> statements, this will incur a non-negligible performance cost
+<p>The <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statement deletes columns and rows. If column names are provided directly after the <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> keyword,
+only those columns are deleted from the row indicated by the <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause. Otherwise, whole rows are removed.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause specifies which rows are to be deleted. Multiple rows may be deleted with one statement by using an
+<code class="docutils literal notranslate"><span class="pre">IN</span></code> operator. A range of rows may be deleted using an inequality operator (such as <code class="docutils literal notranslate"><span class="pre">&gt;=</span></code>).</p>
+<p><code class="docutils literal notranslate"><span class="pre">DELETE</span></code> supports the <code class="docutils literal notranslate"><span class="pre">TIMESTAMP</span></code> option with the same semantics as in <a class="reference internal" href="#update-parameters"><span class="std std-ref">updates</span></a>.</p>
+<p>In a <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statement, all deletions within the same partition key are applied atomically and in isolation.</p>
+<p>A <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> operation can be conditional through the use of an <code class="docutils literal notranslate"><span class="pre">IF</span></code> clause, similar to <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> and <code class="docutils literal notranslate"><span class="pre">INSERT</span></code>
+statements. However, as with <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements, this will incur a non-negligible performance cost
 (internally, Paxos will be used) and so should be used sparingly.</p>
 </div>
 <div class="section" id="batch">
 <span id="batch-statement"></span><h2>BATCH<a class="headerlink" href="#batch" title="Permalink to this headline">¶</a></h2>
-<p>Multiple <code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code> and <code class="docutils literal"><span class="pre">DELETE</span></code> can be executed in a single statement by grouping them through a
-<code class="docutils literal"><span class="pre">BATCH</span></code> statement:</p>
+<p>Multiple <code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> can be executed in a single statement by grouping them through a
+<code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-batch_statement">batch_statement       </strong> ::=  BEGIN [ UNLOGGED | COUNTER ] BATCH
-                            [ USING <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update_parameter"><code class="xref docutils literal"><span class="pre">update_parameter</span></code></a> )* ]
-                            <a class="reference internal" href="#grammar-token-modification_statement"><code class="xref docutils literal"><span class="pre">modification_statement</span></code></a> ( ';' <a class="reference internal" href="#grammar-token-modification_statement"><code class="xref docutils literal"><span class="pre">modification_statement</span></code></a> )*
+<strong id="grammar-token-batch-statement">batch_statement       </strong> ::=  BEGIN [ UNLOGGED | COUNTER ] BATCH
+                            [ USING <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> ( AND <a class="reference internal" href="#grammar-token-update-parameter"><code class="xref docutils literal notranslate"><span class="pre">update_parameter</span></code></a> )* ]
+                            <a class="reference internal" href="#grammar-token-modification-statement"><code class="xref docutils literal notranslate"><span class="pre">modification_statement</span></code></a> ( ';' <a class="reference internal" href="#grammar-token-modification-statement"><code class="xref docutils literal notranslate"><span class="pre">modification_statement</span></code></a> )*
                             APPLY BATCH
-<strong id="grammar-token-modification_statement">modification_statement</strong> ::=  <a class="reference internal" href="#grammar-token-insert_statement"><code class="xref docutils literal"><span class="pre">insert_statement</span></code></a> | <a class="reference internal" href="#grammar-token-update_statement"><code class="xref docutils literal"><span class="pre">update_statement</span></code></a> | <a class="reference internal" href="#grammar-token-delete_statement"><code class="xref docutils literal"><span class="pre">delete_statement</span></code></a>
+<strong id="grammar-token-modification-statement">modification_statement</strong> ::=  <a class="reference internal" href="#grammar-token-insert-statement"><code class="xref docutils literal notranslate"><span class="pre">insert_statement</span></code></a> | <a class="reference internal" href="#grammar-token-update-statement"><code class="xref docutils literal notranslate"><span class="pre">update_statement</span></code></a> | <a class="reference internal" href="#grammar-token-delete-statement"><code class="xref docutils literal notranslate"><span class="pre">delete_statement</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">BEGIN</span> <span class="k">BATCH</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">BEGIN</span> <span class="k">BATCH</span>
    <span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">users</span> <span class="p">(</span><span class="n">userid</span><span class="p">,</span> <span class="k">password</span><span class="p">,</span> <span class="n">name</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;user2&#39;</span><span class="p">,</span> <span class="s1">&#39;ch@ngem3b&#39;</span><span class="p">,</span> <span class="s1">&#39;second user&#39;</span><span class="p">);</span>
    <span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="k">password</span> <span class="o">=</span> <span class="s1">&#39;ps22dhds&#39;</span> <span class="k">WHERE</span> <span class="n">userid</span> <span class="o">=</span> <span class="s1">&#39;user3&#39;</span><span class="p">;</span>
    <span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">users</span> <span class="p">(</span><span class="n">userid</span><span class="p">,</span> <span class="k">password</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;user4&#39;</span><span class="p">,</span> <span class="s1">&#39;ch@ngem3c&#39;</span><span class="p">);</span>
@@ -571,37 +571,37 @@
 <span class="k">APPLY</span> <span class="k">BATCH</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">BATCH</span></code> statement group multiple modification statements (insertions/updates and deletions) into a single
+<p>The <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statement group multiple modification statements (insertions/updates and deletions) into a single
 statement. It serves several purposes:</p>
 <ul class="simple">
 <li>It saves network round-trips between the client and the server (and sometimes between the server coordinator and the
 replicas) when batching multiple updates.</li>
-<li>All updates in a <code class="docutils literal"><span class="pre">BATCH</span></code> belonging to a given partition key are performed in isolation.</li>
+<li>All updates in a <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> belonging to a given partition key are performed in isolation.</li>
 <li>By default, all operations in the batch are performed as <em>logged</em>, to ensure all mutations eventually complete (or
 none will). See the notes on <a class="reference internal" href="#unlogged-batches"><span class="std std-ref">UNLOGGED batches</span></a> for more details.</li>
 </ul>
 <p>Note that:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">BATCH</span></code> statements may only contain <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">DELETE</span></code> statements (not other batches for instance).</li>
+<li><code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statements may only contain <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> statements (not other batches for instance).</li>
 <li>Batches are <em>not</em> a full analogue for SQL transactions.</li>
 <li>If a timestamp is not specified for each operation, then all operations will be applied with the same timestamp
-(either one generated automatically, or the timestamp provided at the batch level). Due to Cassandra&#8217;s conflict
+(either one generated automatically, or the timestamp provided at the batch level). Due to Cassandra’s conflict
 resolution procedure in the case of <a class="reference external" href="http://wiki.apache.org/cassandra/FAQ#clocktie">timestamp ties</a>, operations may
-be applied in an order that is different from the order they are listed in the <code class="docutils literal"><span class="pre">BATCH</span></code> statement. To force a
+be applied in an order that is different from the order they are listed in the <code class="docutils literal notranslate"><span class="pre">BATCH</span></code> statement. To force a
 particular operation ordering, you must specify per-operation timestamps.</li>
 <li>A LOGGED batch to a single partition will be converted to an UNLOGGED batch as an optimization.</li>
 </ul>
 <div class="section" id="unlogged-batches">
-<span id="id4"></span><h3><code class="docutils literal"><span class="pre">UNLOGGED</span></code> batches<a class="headerlink" href="#unlogged-batches" title="Permalink to this headline">¶</a></h3>
+<span id="id4"></span><h3><code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code> batches<a class="headerlink" href="#unlogged-batches" title="Permalink to this headline">¶</a></h3>
 <p>By default, Cassandra uses a batch log to ensure all operations in a batch eventually complete or none will (note
 however that operations are only isolated within a single partition).</p>
 <p>There is a performance penalty for batch atomicity when a batch spans multiple partitions. If you do not want to incur
-this penalty, you can tell Cassandra to skip the batchlog with the <code class="docutils literal"><span class="pre">UNLOGGED</span></code> option. If the <code class="docutils literal"><span class="pre">UNLOGGED</span></code> option is
+this penalty, you can tell Cassandra to skip the batchlog with the <code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code> option. If the <code class="docutils literal notranslate"><span class="pre">UNLOGGED</span></code> option is
 used, a failed batch might leave the patch only partly applied.</p>
 </div>
 <div class="section" id="counter-batches">
-<h3><code class="docutils literal"><span class="pre">COUNTER</span></code> batches<a class="headerlink" href="#counter-batches" title="Permalink to this headline">¶</a></h3>
-<p>Use the <code class="docutils literal"><span class="pre">COUNTER</span></code> option for batched counter updates. Unlike other
+<h3><code class="docutils literal notranslate"><span class="pre">COUNTER</span></code> batches<a class="headerlink" href="#counter-batches" title="Permalink to this headline">¶</a></h3>
+<p>Use the <code class="docutils literal notranslate"><span class="pre">COUNTER</span></code> option for batched counter updates. Unlike other
 updates in Cassandra, counter updates are not idempotent.</p>
 </div>
 </div>
diff --git a/content/doc/stable/cql/functions.html b/content/doc/stable/cql/functions.html
index 4d4c2a6..9a6b25e 100644
--- a/content/doc/stable/cql/functions.html
+++ b/content/doc/stable/cql/functions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="JSON Support" href="json.html"/> <link rel="prev" title="Security" href="security.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="JSON Support" href="json.html"/> <link rel="prev" title="Security" href="security.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -172,20 +172,20 @@
 <ul class="simple">
 <li>the <a class="reference internal" href="#scalar-functions"><span class="std std-ref">scalar functions</span></a>, which simply take a number of values and produce an output with it.</li>
 <li>the <a class="reference internal" href="#aggregate-functions"><span class="std std-ref">aggregate functions</span></a>, which are used to aggregate multiple rows results from a
-<code class="docutils literal"><span class="pre">SELECT</span></code> statement.</li>
+<code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</li>
 </ul>
-<p>In both cases, CQL provides a number of native &#8220;hard-coded&#8221; functions as well as the ability to create new user-defined
+<p>In both cases, CQL provides a number of native “hard-coded” functions as well as the ability to create new user-defined
 functions.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
 <p class="last">By default, the use of user-defined functions is disabled by default for security concerns (even when
-enabled, the execution of user-defined functions is sandboxed and a &#8220;rogue&#8221; function should not be allowed to do
-evil, but no sandbox is perfect so using user-defined functions is opt-in). See the <code class="docutils literal"><span class="pre">enable_user_defined_functions</span></code>
-in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to enable them.</p>
+enabled, the execution of user-defined functions is sandboxed and a “rogue” function should not be allowed to do
+evil, but no sandbox is perfect so using user-defined functions is opt-in). See the <code class="docutils literal notranslate"><span class="pre">enable_user_defined_functions</span></code>
+in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to enable them.</p>
 </div>
 <p>A function is identifier by its name:</p>
 <pre>
-<strong id="grammar-token-function_name">function_name</strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="ddl.html#grammar-token-name"><code class="xref docutils literal"><span class="pre">name</span></code></a>
+<strong id="grammar-token-function-name">function_name</strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="ddl.html#grammar-token-name"><code class="xref docutils literal notranslate"><span class="pre">name</span></code></a>
 </pre>
 <div class="section" id="scalar-functions">
 <span id="id1"></span><h2>Scalar functions<a class="headerlink" href="#scalar-functions" title="Permalink to this headline">¶</a></h2>
@@ -193,8 +193,8 @@
 <span id="id2"></span><h3>Native functions<a class="headerlink" href="#scalar-native-functions" title="Permalink to this headline">¶</a></h3>
 <div class="section" id="cast">
 <h4>Cast<a class="headerlink" href="#cast" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">cast</span></code> function can be used to converts one native datatype to another.</p>
-<p>The following table describes the conversions supported by the <code class="docutils literal"><span class="pre">cast</span></code> function. Cassandra will silently ignore any
+<p>The <code class="docutils literal notranslate"><span class="pre">cast</span></code> function can be used to converts one native datatype to another.</p>
+<p>The following table describes the conversions supported by the <code class="docutils literal notranslate"><span class="pre">cast</span></code> function. Cassandra will silently ignore any
 cast converting a datatype into its own datatype.</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -207,130 +207,130 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ascii</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ascii</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">bigint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">bigint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">boolean</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">boolean</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">counter</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>,
-<code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">counter</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>,
+<code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">decimal</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">decimal</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">double</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">double</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">float</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">float</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">inet</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">inet</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">int</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">int</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">smallint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">smallint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">time</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">time</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">date</span></code>, <code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code>, <code class="docutils literal"><span class="pre">date</span></code>, <code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code>, <code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">tinyint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">varint</span></code>,
-<code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">varint</span></code>,
+<code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">uuid</span></code></td>
-<td><code class="docutils literal"><span class="pre">text</span></code>, <code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">uuid</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">text</span></code>, <code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">varint</span></code></td>
-<td><code class="docutils literal"><span class="pre">tinyint</span></code>, <code class="docutils literal"><span class="pre">smallint</span></code>, <code class="docutils literal"><span class="pre">int</span></code>, <code class="docutils literal"><span class="pre">bigint</span></code>, <code class="docutils literal"><span class="pre">float</span></code>, <code class="docutils literal"><span class="pre">double</span></code>, <code class="docutils literal"><span class="pre">decimal</span></code>, <code class="docutils literal"><span class="pre">text</span></code>,
-<code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">varint</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code>, <code class="docutils literal notranslate"><span class="pre">smallint</span></code>, <code class="docutils literal notranslate"><span class="pre">int</span></code>, <code class="docutils literal notranslate"><span class="pre">bigint</span></code>, <code class="docutils literal notranslate"><span class="pre">float</span></code>, <code class="docutils literal notranslate"><span class="pre">double</span></code>, <code class="docutils literal notranslate"><span class="pre">decimal</span></code>, <code class="docutils literal notranslate"><span class="pre">text</span></code>,
+<code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 </tr>
 </tbody>
 </table>
-<p>The conversions rely strictly on Java&#8217;s semantics. For example, the double value 1 will be converted to the text value
-&#8216;1.0&#8217;. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">avg</span><span class="p">(</span><span class="k">cast</span><span class="p">(</span><span class="k">count</span> <span class="k">as</span> <span class="nb">double</span><span class="p">))</span> <span class="k">FROM</span> <span class="n">myTable</span>
+<p>The conversions rely strictly on Java’s semantics. For example, the double value 1 will be converted to the text value
+‘1.0’. For instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">avg</span><span class="p">(</span><span class="k">cast</span><span class="p">(</span><span class="k">count</span> <span class="k">as</span> <span class="nb">double</span><span class="p">))</span> <span class="k">FROM</span> <span class="n">myTable</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="token">
 <h4>Token<a class="headerlink" href="#token" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">token</span></code> function allows to compute the token for a given partition key. The exact signature of the token function
+<p>The <code class="docutils literal notranslate"><span class="pre">token</span></code> function allows to compute the token for a given partition key. The exact signature of the token function
 depends on the table concerned and of the partitioner used by the cluster.</p>
-<p>The type of the arguments of the <code class="docutils literal"><span class="pre">token</span></code> depend on the type of the partition key columns. The return type depend on
+<p>The type of the arguments of the <code class="docutils literal notranslate"><span class="pre">token</span></code> depend on the type of the partition key columns. The return type depend on
 the partitioner in use:</p>
 <ul class="simple">
-<li>For Murmur3Partitioner, the return type is <code class="docutils literal"><span class="pre">bigint</span></code>.</li>
-<li>For RandomPartitioner, the return type is <code class="docutils literal"><span class="pre">varint</span></code>.</li>
-<li>For ByteOrderedPartitioner, the return type is <code class="docutils literal"><span class="pre">blob</span></code>.</li>
+<li>For Murmur3Partitioner, the return type is <code class="docutils literal notranslate"><span class="pre">bigint</span></code>.</li>
+<li>For RandomPartitioner, the return type is <code class="docutils literal notranslate"><span class="pre">varint</span></code>.</li>
+<li>For ByteOrderedPartitioner, the return type is <code class="docutils literal notranslate"><span class="pre">blob</span></code>.</li>
 </ul>
 <p>For instance, in a cluster using the default Murmur3Partitioner, if a table is defined by:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
     <span class="n">userid</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">username</span> <span class="nb">text</span><span class="p">,</span>
 <span class="p">)</span>
 </pre></div>
 </div>
-<p>then the <code class="docutils literal"><span class="pre">token</span></code> function will take a single argument of type <code class="docutils literal"><span class="pre">text</span></code> (in that case, the partition key is <code class="docutils literal"><span class="pre">userid</span></code>
+<p>then the <code class="docutils literal notranslate"><span class="pre">token</span></code> function will take a single argument of type <code class="docutils literal notranslate"><span class="pre">text</span></code> (in that case, the partition key is <code class="docutils literal notranslate"><span class="pre">userid</span></code>
 (there is no clustering columns so the partition key is the same than the primary key)), and the return type will be
-<code class="docutils literal"><span class="pre">bigint</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">bigint</span></code>.</p>
 </div>
 <div class="section" id="uuid">
 <h4>Uuid<a class="headerlink" href="#uuid" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">uuid</span></code> function takes no parameters and generates a random type 4 uuid suitable for use in <code class="docutils literal"><span class="pre">INSERT</span></code> or
-<code class="docutils literal"><span class="pre">UPDATE</span></code> statements.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">uuid</span></code> function takes no parameters and generates a random type 4 uuid suitable for use in <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> or
+<code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements.</p>
 </div>
 <div class="section" id="timeuuid-functions">
 <span id="id3"></span><h4>Timeuuid functions<a class="headerlink" href="#timeuuid-functions" title="Permalink to this headline">¶</a></h4>
 <div class="section" id="now">
-<h5><code class="docutils literal"><span class="pre">now</span></code><a class="headerlink" href="#now" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">now</span></code> function takes no arguments and generates, on the coordinator node, a new unique timeuuid (at the time where
+<h5><code class="docutils literal notranslate"><span class="pre">now</span></code><a class="headerlink" href="#now" title="Permalink to this headline">¶</a></h5>
+<p>The <code class="docutils literal notranslate"><span class="pre">now</span></code> function takes no arguments and generates, on the coordinator node, a new unique timeuuid (at the time where
 the statement using it is executed). Note that this method is useful for insertion but is largely non-sensical in
-<code class="docutils literal"><span class="pre">WHERE</span></code> clauses. For instance, a query of the form:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span> <span class="k">WHERE</span> <span class="n">t</span> <span class="o">=</span> <span class="n">now</span><span class="p">()</span>
+<code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clauses. For instance, a query of the form:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span> <span class="k">WHERE</span> <span class="n">t</span> <span class="o">=</span> <span class="n">now</span><span class="p">()</span>
 </pre></div>
 </div>
-<p>will never return any result by design, since the value returned by <code class="docutils literal"><span class="pre">now()</span></code> is guaranteed to be unique.</p>
+<p>will never return any result by design, since the value returned by <code class="docutils literal notranslate"><span class="pre">now()</span></code> is guaranteed to be unique.</p>
 </div>
 <div class="section" id="mintimeuuid-and-maxtimeuuid">
-<h5><code class="docutils literal"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal"><span class="pre">maxTimeuuid</span></code><a class="headerlink" href="#mintimeuuid-and-maxtimeuuid" title="Permalink to this headline">¶</a></h5>
-<p>The <code class="docutils literal"><span class="pre">minTimeuuid</span></code> (resp. <code class="docutils literal"><span class="pre">maxTimeuuid</span></code>) function takes a <code class="docutils literal"><span class="pre">timestamp</span></code> value <code class="docutils literal"><span class="pre">t</span></code> (which can be <cite>either a timestamp
-or a date string &lt;timestamps&gt;</cite>) and return a <em>fake</em> <code class="docutils literal"><span class="pre">timeuuid</span></code> corresponding to the <em>smallest</em> (resp. <em>biggest</em>)
-possible <code class="docutils literal"><span class="pre">timeuuid</span></code> having for timestamp <code class="docutils literal"><span class="pre">t</span></code>. So for instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span>
+<h5><code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code><a class="headerlink" href="#mintimeuuid-and-maxtimeuuid" title="Permalink to this headline">¶</a></h5>
+<p>The <code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code> (resp. <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code>) function takes a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> value <code class="docutils literal notranslate"><span class="pre">t</span></code> (which can be <cite>either a timestamp
+or a date string &lt;timestamps&gt;</cite>) and return a <em>fake</em> <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> corresponding to the <em>smallest</em> (resp. <em>biggest</em>)
+possible <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> having for timestamp <code class="docutils literal notranslate"><span class="pre">t</span></code>. So for instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">myTable</span>
  <span class="k">WHERE</span> <span class="n">t</span> <span class="o">&gt;</span> <span class="n">maxTimeuuid</span><span class="p">(</span><span class="s1">&#39;2013-01-01 00:05+0000&#39;</span><span class="p">)</span>
    <span class="k">AND</span> <span class="n">t</span> <span class="o">&lt;</span> <span class="n">minTimeuuid</span><span class="p">(</span><span class="s1">&#39;2013-02-02 10:00+0000&#39;</span><span class="p">)</span>
 </pre></div>
 </div>
-<p>will select all rows where the <code class="docutils literal"><span class="pre">timeuuid</span></code> column <code class="docutils literal"><span class="pre">t</span></code> is strictly older than <code class="docutils literal"><span class="pre">'2013-01-01</span> <span class="pre">00:05+0000'</span></code> but strictly
-younger than <code class="docutils literal"><span class="pre">'2013-02-02</span> <span class="pre">10:00+0000'</span></code>. Please note that <code class="docutils literal"><span class="pre">t</span> <span class="pre">&gt;=</span> <span class="pre">maxTimeuuid('2013-01-01</span> <span class="pre">00:05+0000')</span></code> would still
-<em>not</em> select a <code class="docutils literal"><span class="pre">timeuuid</span></code> generated exactly at &#8216;2013-01-01 00:05+0000&#8217; and is essentially equivalent to <code class="docutils literal"><span class="pre">t</span> <span class="pre">&gt;</span>
+<p>will select all rows where the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> column <code class="docutils literal notranslate"><span class="pre">t</span></code> is strictly older than <code class="docutils literal notranslate"><span class="pre">'2013-01-01</span> <span class="pre">00:05+0000'</span></code> but strictly
+younger than <code class="docutils literal notranslate"><span class="pre">'2013-02-02</span> <span class="pre">10:00+0000'</span></code>. Please note that <code class="docutils literal notranslate"><span class="pre">t</span> <span class="pre">&gt;=</span> <span class="pre">maxTimeuuid('2013-01-01</span> <span class="pre">00:05+0000')</span></code> would still
+<em>not</em> select a <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> generated exactly at ‘2013-01-01 00:05+0000’ and is essentially equivalent to <code class="docutils literal notranslate"><span class="pre">t</span> <span class="pre">&gt;</span>
 <span class="pre">maxTimeuuid('2013-01-01</span> <span class="pre">00:05+0000')</span></code>.</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">We called the values generated by <code class="docutils literal"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal"><span class="pre">maxTimeuuid</span></code> <em>fake</em> UUID because they do no respect
+<p class="last">We called the values generated by <code class="docutils literal notranslate"><span class="pre">minTimeuuid</span></code> and <code class="docutils literal notranslate"><span class="pre">maxTimeuuid</span></code> <em>fake</em> UUID because they do no respect
 the Time-Based UUID generation process specified by the <a class="reference external" href="http://www.ietf.org/rfc/rfc4122.txt">RFC 4122</a>. In
 particular, the value returned by these 2 methods will not be unique. This means you should only use those methods
 for querying (as in the example above). Inserting the result of those methods is almost certainly <em>a bad idea</em>.</p>
@@ -339,7 +339,7 @@
 </div>
 <div class="section" id="time-conversion-functions">
 <h4>Time conversion functions<a class="headerlink" href="#time-conversion-functions" title="Permalink to this headline">¶</a></h4>
-<p>A number of functions are provided to “convert” a <code class="docutils literal"><span class="pre">timeuuid</span></code>, a <code class="docutils literal"><span class="pre">timestamp</span></code> or a <code class="docutils literal"><span class="pre">date</span></code> into another <code class="docutils literal"><span class="pre">native</span></code>
+<p>A number of functions are provided to “convert” a <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code>, a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> or a <code class="docutils literal notranslate"><span class="pre">date</span></code> into another <code class="docutils literal notranslate"><span class="pre">native</span></code>
 type.</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -354,52 +354,52 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toDate</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal"><span class="pre">date</span></code> type</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toDate</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">date</span></code> type</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">toDate</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal"><span class="pre">date</span></code> type</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">toDate</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">date</span></code> type</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal"><span class="pre">timestamp</span></code> type</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> type</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">toTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">date</span></code> argument into a <code class="docutils literal"><span class="pre">timestamp</span></code> type</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">toTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">date</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> type</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toUnixTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal"><span class="pre">bigInt</span></code> raw value</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toUnixTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timeuuid</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">bigInt</span></code> raw value</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">toUnixTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal"><span class="pre">bigInt</span></code> raw value</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">toUnixTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">bigInt</span></code> raw value</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">toUnixTimestamp</span></code></td>
-<td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td>Converts the <code class="docutils literal"><span class="pre">date</span></code> argument into a <code class="docutils literal"><span class="pre">bigInt</span></code> raw value</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">toUnixTimestamp</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td>Converts the <code class="docutils literal notranslate"><span class="pre">date</span></code> argument into a <code class="docutils literal notranslate"><span class="pre">bigInt</span></code> raw value</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">dateOf</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Similar to <code class="docutils literal"><span class="pre">toTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">dateOf</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Similar to <code class="docutils literal notranslate"><span class="pre">toTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">unixTimestampOf</span></code></td>
-<td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td>Similar to <code class="docutils literal"><span class="pre">toUnixTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">unixTimestampOf</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td>Similar to <code class="docutils literal notranslate"><span class="pre">toUnixTimestamp(timeuuid)</span></code> (DEPRECATED)</td>
 </tr>
 </tbody>
 </table>
 </div>
 <div class="section" id="blob-conversion-functions">
 <h4>Blob conversion functions<a class="headerlink" href="#blob-conversion-functions" title="Permalink to this headline">¶</a></h4>
-<p>A number of functions are provided to “convert” the native types into binary data (<code class="docutils literal"><span class="pre">blob</span></code>). For every
-<code class="docutils literal"><span class="pre">&lt;native-type&gt;</span></code> <code class="docutils literal"><span class="pre">type</span></code> supported by CQL (a notable exceptions is <code class="docutils literal"><span class="pre">blob</span></code>, for obvious reasons), the function
-<code class="docutils literal"><span class="pre">typeAsBlob</span></code> takes a argument of type <code class="docutils literal"><span class="pre">type</span></code> and return it as a <code class="docutils literal"><span class="pre">blob</span></code>. Conversely, the function <code class="docutils literal"><span class="pre">blobAsType</span></code>
-takes a 64-bit <code class="docutils literal"><span class="pre">blob</span></code> argument and convert it to a <code class="docutils literal"><span class="pre">bigint</span></code> value. And so for instance, <code class="docutils literal"><span class="pre">bigintAsBlob(3)</span></code> is
-<code class="docutils literal"><span class="pre">0x0000000000000003</span></code> and <code class="docutils literal"><span class="pre">blobAsBigint(0x0000000000000003)</span></code> is <code class="docutils literal"><span class="pre">3</span></code>.</p>
+<p>A number of functions are provided to “convert” the native types into binary data (<code class="docutils literal notranslate"><span class="pre">blob</span></code>). For every
+<code class="docutils literal notranslate"><span class="pre">&lt;native-type&gt;</span></code> <code class="docutils literal notranslate"><span class="pre">type</span></code> supported by CQL (a notable exceptions is <code class="docutils literal notranslate"><span class="pre">blob</span></code>, for obvious reasons), the function
+<code class="docutils literal notranslate"><span class="pre">typeAsBlob</span></code> takes a argument of type <code class="docutils literal notranslate"><span class="pre">type</span></code> and return it as a <code class="docutils literal notranslate"><span class="pre">blob</span></code>. Conversely, the function <code class="docutils literal notranslate"><span class="pre">blobAsType</span></code>
+takes a 64-bit <code class="docutils literal notranslate"><span class="pre">blob</span></code> argument and convert it to a <code class="docutils literal notranslate"><span class="pre">bigint</span></code> value. And so for instance, <code class="docutils literal notranslate"><span class="pre">bigintAsBlob(3)</span></code> is
+<code class="docutils literal notranslate"><span class="pre">0x0000000000000003</span></code> and <code class="docutils literal notranslate"><span class="pre">blobAsBigint(0x0000000000000003)</span></code> is <code class="docutils literal notranslate"><span class="pre">3</span></code>.</p>
 </div>
 </div>
 <div class="section" id="user-defined-functions">
@@ -409,7 +409,7 @@
 Scala) can be added by adding a JAR to the classpath.</p>
 <p>UDFs are part of the Cassandra schema. As such, they are automatically propagated to all nodes in the cluster.</p>
 <p>UDFs can be <em>overloaded</em> - i.e. multiple UDFs with different argument types but the same function name. Example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">sample</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">sample</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">sample</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">text</span> <span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
 </pre></div>
 </div>
@@ -421,11 +421,11 @@
 documentation of the Java Driver for details on handling tuple types and user-defined types.</p>
 <p>Arguments for functions can be literals or terms. Prepared statement placeholders can be used, too.</p>
 <p>Note that you can use the double-quoted string syntax to enclose the UDF source code. For example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">some_function</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">some_function</span> <span class="p">(</span> <span class="n">arg</span> <span class="nb">int</span> <span class="p">)</span>
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="nb">int</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
-    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">arg</span><span class="o">;</span> <span class="s">$$</span><span class="p">;</span>
+    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">arg</span><span class="p">;</span> <span class="s">$$</span><span class="p">;</span>
 
 <span class="k">SELECT</span> <span class="n">some_function</span><span class="p">(</span><span class="n">column</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">atable</span> <span class="mf">...</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="n">atable</span> <span class="k">SET</span> <span class="n">col</span> <span class="o">=</span> <span class="n">some_function</span><span class="p">(</span><span class="o">?</span><span class="p">)</span> <span class="mf">...</span><span class="p">;</span>
@@ -435,66 +435,66 @@
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="nb">text</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
-    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">udtarg</span><span class="o">.</span><span class="na">getString</span><span class="o">(</span><span class="s">&quot;txt&quot;</span><span class="o">);</span> <span class="s">$$</span><span class="p">;</span>
+    <span class="k">AS</span> <span class="s">$$</span> <span class="k">return</span> <span class="n">udtarg</span><span class="p">.</span><span class="na">getString</span><span class="p">(</span><span class="s">&quot;txt&quot;</span><span class="p">);</span> <span class="s">$$</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>User-defined functions can be used in <code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> statements.</p>
-<p>The implicitly available <code class="docutils literal"><span class="pre">udfContext</span></code> field (or binding for script UDFs) provides the necessary functionality to
+<p>User-defined functions can be used in <code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> statements.</p>
+<p>The implicitly available <code class="docutils literal notranslate"><span class="pre">udfContext</span></code> field (or binding for script UDFs) provides the necessary functionality to
 create new UDT and tuple values:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">custom_type</span> <span class="p">(</span><span class="n">txt</span> <span class="nb">text</span><span class="p">,</span> <span class="n">i</span> <span class="nb">int</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">custom_type</span> <span class="p">(</span><span class="n">txt</span> <span class="nb">text</span><span class="p">,</span> <span class="n">i</span> <span class="nb">int</span><span class="p">);</span>
 <span class="k">CREATE</span> <span class="k">FUNCTION</span> <span class="n">fct</span><span class="err">\</span><span class="n">_using</span><span class="err">\</span><span class="n">_udt</span> <span class="p">(</span> <span class="n">somearg</span> <span class="nb">int</span> <span class="p">)</span>
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="n">custom_type</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
     <span class="k">AS</span> <span class="s">$$</span>
-        <span class="n">UDTValue</span> <span class="n">udt</span> <span class="o">=</span> <span class="n">udfContext</span><span class="o">.</span><span class="na">newReturnUDTValue</span><span class="o">();</span>
-        <span class="n">udt</span><span class="o">.</span><span class="na">setString</span><span class="o">(</span><span class="s">&quot;txt&quot;</span><span class="o">,</span> <span class="s">&quot;some string&quot;</span><span class="o">);</span>
-        <span class="n">udt</span><span class="o">.</span><span class="na">setInt</span><span class="o">(</span><span class="s">&quot;i&quot;</span><span class="o">,</span> <span class="mi">42</span><span class="o">);</span>
-        <span class="k">return</span> <span class="n">udt</span><span class="o">;</span>
+        <span class="n">UDTValue</span> <span class="n">udt</span> <span class="o">=</span> <span class="n">udfContext</span><span class="p">.</span><span class="na">newReturnUDTValue</span><span class="p">();</span>
+        <span class="n">udt</span><span class="p">.</span><span class="na">setString</span><span class="p">(</span><span class="s">&quot;txt&quot;</span><span class="p">,</span> <span class="s">&quot;some string&quot;</span><span class="p">);</span>
+        <span class="n">udt</span><span class="p">.</span><span class="na">setInt</span><span class="p">(</span><span class="s">&quot;i&quot;</span><span class="p">,</span> <span class="mi">42</span><span class="p">);</span>
+        <span class="k">return</span> <span class="n">udt</span><span class="p">;</span>
     <span class="s">$$</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The definition of the <code class="docutils literal"><span class="pre">UDFContext</span></code> interface can be found in the Apache Cassandra source code for
-<code class="docutils literal"><span class="pre">org.apache.cassandra.cql3.functions.UDFContext</span></code>.</p>
-<div class="highlight-java"><div class="highlight"><pre><span></span><span class="kd">public</span> <span class="kd">interface</span> <span class="nc">UDFContext</span>
-<span class="o">{</span>
-    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="o">(</span><span class="n">String</span> <span class="n">argName</span><span class="o">);</span>
-    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="o">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="o">);</span>
-    <span class="n">UDTValue</span> <span class="nf">newReturnUDTValue</span><span class="o">();</span>
-    <span class="n">UDTValue</span> <span class="nf">newUDTValue</span><span class="o">(</span><span class="n">String</span> <span class="n">udtName</span><span class="o">);</span>
-    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="o">(</span><span class="n">String</span> <span class="n">argName</span><span class="o">);</span>
-    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="o">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="o">);</span>
-    <span class="n">TupleValue</span> <span class="nf">newReturnTupleValue</span><span class="o">();</span>
-    <span class="n">TupleValue</span> <span class="nf">newTupleValue</span><span class="o">(</span><span class="n">String</span> <span class="n">cqlDefinition</span><span class="o">);</span>
-<span class="o">}</span>
+<p>The definition of the <code class="docutils literal notranslate"><span class="pre">UDFContext</span></code> interface can be found in the Apache Cassandra source code for
+<code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.cql3.functions.UDFContext</span></code>.</p>
+<div class="highlight-java notranslate"><div class="highlight"><pre><span></span><span class="kd">public</span> <span class="kd">interface</span> <span class="nc">UDFContext</span>
+<span class="p">{</span>
+    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="p">(</span><span class="n">String</span> <span class="n">argName</span><span class="p">);</span>
+    <span class="n">UDTValue</span> <span class="nf">newArgUDTValue</span><span class="p">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="p">);</span>
+    <span class="n">UDTValue</span> <span class="nf">newReturnUDTValue</span><span class="p">();</span>
+    <span class="n">UDTValue</span> <span class="nf">newUDTValue</span><span class="p">(</span><span class="n">String</span> <span class="n">udtName</span><span class="p">);</span>
+    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="p">(</span><span class="n">String</span> <span class="n">argName</span><span class="p">);</span>
+    <span class="n">TupleValue</span> <span class="nf">newArgTupleValue</span><span class="p">(</span><span class="kt">int</span> <span class="n">argNum</span><span class="p">);</span>
+    <span class="n">TupleValue</span> <span class="nf">newReturnTupleValue</span><span class="p">();</span>
+    <span class="n">TupleValue</span> <span class="nf">newTupleValue</span><span class="p">(</span><span class="n">String</span> <span class="n">cqlDefinition</span><span class="p">);</span>
+<span class="p">}</span>
 </pre></div>
 </div>
 <p>Java UDFs already have some imports for common interfaces and classes defined. These imports are:</p>
-<div class="highlight-java"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">java.nio.ByteBuffer</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">java.util.List</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">java.util.Map</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">java.util.Set</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">org.apache.cassandra.cql3.functions.UDFContext</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TypeCodec</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TupleValue</span><span class="o">;</span>
-<span class="kn">import</span> <span class="nn">com.datastax.driver.core.UDTValue</span><span class="o">;</span>
+<div class="highlight-java notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">java.nio.ByteBuffer</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">java.util.List</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">java.util.Map</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">java.util.Set</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">org.apache.cassandra.cql3.functions.UDFContext</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TypeCodec</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">com.datastax.driver.core.TupleValue</span><span class="p">;</span>
+<span class="kn">import</span> <span class="nn">com.datastax.driver.core.UDTValue</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>Please note, that these convenience imports are not available for script UDFs.</p>
 <div class="section" id="create-function">
 <span id="create-function-statement"></span><h4>CREATE FUNCTION<a class="headerlink" href="#create-function" title="Permalink to this headline">¶</a></h4>
-<p>Creating a new user-defined function uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> statement:</p>
+<p>Creating a new user-defined function uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_function_statement">create_function_statement</strong> ::=  CREATE [ OR REPLACE ] FUNCTION [ IF NOT EXISTS]
-                                   <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments_declaration"><code class="xref docutils literal"><span class="pre">arguments_declaration</span></code></a> ')'
+<strong id="grammar-token-create-function-statement">create_function_statement</strong> ::=  CREATE [ OR REPLACE ] FUNCTION [ IF NOT EXISTS]
+                                   <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments-declaration"><code class="xref docutils literal notranslate"><span class="pre">arguments_declaration</span></code></a> ')'
                                    [ CALLED | RETURNS NULL ] ON NULL INPUT
-                                   RETURNS <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a>
-                                   LANGUAGE <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
-                                   AS <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
-<strong id="grammar-token-arguments_declaration">arguments_declaration    </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )*
+                                   RETURNS <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a>
+                                   LANGUAGE <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
+                                   AS <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
+<strong id="grammar-token-arguments-declaration">arguments_declaration    </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">somefunction</span><span class="p">(</span><span class="n">somearg</span> <span class="nb">int</span><span class="p">,</span> <span class="n">anotherarg</span> <span class="nb">text</span><span class="p">,</span> <span class="n">complexarg</span> <span class="k">frozen</span><span class="o">&lt;</span><span class="n">someUDT</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">listarg</span> <span class="k">list</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">somefunction</span><span class="p">(</span><span class="n">somearg</span> <span class="nb">int</span><span class="p">,</span> <span class="n">anotherarg</span> <span class="nb">text</span><span class="p">,</span> <span class="n">complexarg</span> <span class="k">frozen</span><span class="o">&lt;</span><span class="n">someUDT</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">listarg</span> <span class="k">list</span><span class="p">)</span>
     <span class="k">RETURNS</span> <span class="k">NULL</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="nb">text</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
@@ -511,19 +511,19 @@
     <span class="s">$$</span><span class="p">;</span>
 </pre></div>
 </div>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates a function or replaces an existing one with
-the same signature. A <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> without <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if a function with the same signature already
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates a function or replaces an existing one with
+the same signature. A <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> without <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if a function with the same signature already
 exists.</p>
-<p>If the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords are used, the function will
+<p>If the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords are used, the function will
 only be created if another function with the same signature does not
 exist.</p>
-<p><code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
-<p>Behavior on invocation with <code class="docutils literal"><span class="pre">null</span></code> values must be defined for each
+<p><code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
+<p>Behavior on invocation with <code class="docutils literal notranslate"><span class="pre">null</span></code> values must be defined for each
 function. There are two options:</p>
 <ol class="arabic simple">
-<li><code class="docutils literal"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always
-return <code class="docutils literal"><span class="pre">null</span></code> if any of the input arguments is <code class="docutils literal"><span class="pre">null</span></code>.</li>
-<li><code class="docutils literal"><span class="pre">CALLED</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always be
+<li><code class="docutils literal notranslate"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always
+return <code class="docutils literal notranslate"><span class="pre">null</span></code> if any of the input arguments is <code class="docutils literal notranslate"><span class="pre">null</span></code>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">CALLED</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> declares that the function will always be
 executed.</li>
 </ol>
 <div class="section" id="function-signature">
@@ -535,71 +535,71 @@
 </ol>
 <p>Note that keyspace names, function names and argument types are subject to the default naming conventions and
 case-sensitivity rules.</p>
-<p>Functions belong to a keyspace. If no keyspace is specified in <code class="docutils literal"><span class="pre">&lt;function-name&gt;</span></code>, the current keyspace is used (i.e.
-the keyspace specified using the <code class="docutils literal"><span class="pre">USE</span></code> statement). It is not possible to create a user-defined function in one of the
+<p>Functions belong to a keyspace. If no keyspace is specified in <code class="docutils literal notranslate"><span class="pre">&lt;function-name&gt;</span></code>, the current keyspace is used (i.e.
+the keyspace specified using the <code class="docutils literal notranslate"><span class="pre">USE</span></code> statement). It is not possible to create a user-defined function in one of the
 system keyspaces.</p>
 </div>
 </div>
 <div class="section" id="drop-function">
 <span id="drop-function-statement"></span><h4>DROP FUNCTION<a class="headerlink" href="#drop-function" title="Permalink to this headline">¶</a></h4>
-<p>Dropping a function uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> statement:</p>
+<p>Dropping a function uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_function_statement">drop_function_statement</strong> ::=  DROP FUNCTION [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref docutils literal"><span class="pre">arguments_signature</span></code></a> ')' ]
-<strong id="grammar-token-arguments_signature">arguments_signature    </strong> ::=  <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )*
+<strong id="grammar-token-drop-function-statement">drop_function_statement</strong> ::=  DROP FUNCTION [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref docutils literal notranslate"><span class="pre">arguments_signature</span></code></a> ')' ]
+<strong id="grammar-token-arguments-signature">arguments_signature    </strong> ::=  <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )*
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">myfunction</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">myfunction</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">mykeyspace</span><span class="mf">.</span><span class="n">afunction</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">afunction</span> <span class="p">(</span> <span class="nb">int</span> <span class="p">);</span>
 <span class="k">DROP</span> <span class="k">FUNCTION</span> <span class="n">afunction</span> <span class="p">(</span> <span class="nb">text</span> <span class="p">);</span>
 </pre></div>
 </div>
-<p>You must specify the argument types (<a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref std std-token docutils literal"><span class="pre">arguments_signature</span></code></a>) of the function to drop if there are multiple
+<p>You must specify the argument types (<a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref std std-token docutils literal notranslate"><span class="pre">arguments_signature</span></code></a>) of the function to drop if there are multiple
 functions with the same name but a different signature (overloaded functions).</p>
-<p><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops a function if it exists, but does not throw an error if
-it doesn&#8217;t</p>
+<p><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops a function if it exists, but does not throw an error if
+it doesn’t</p>
 </div>
 </div>
 </div>
 <div class="section" id="aggregate-functions">
 <span id="id4"></span><h2>Aggregate functions<a class="headerlink" href="#aggregate-functions" title="Permalink to this headline">¶</a></h2>
 <p>Aggregate functions work on a set of rows. They receive values for each row and returns one value for the whole set.</p>
-<p>If <code class="docutils literal"><span class="pre">normal</span></code> columns, <code class="docutils literal"><span class="pre">scalar</span> <span class="pre">functions</span></code>, <code class="docutils literal"><span class="pre">UDT</span></code> fields, <code class="docutils literal"><span class="pre">writetime</span></code> or <code class="docutils literal"><span class="pre">ttl</span></code> are selected together with
+<p>If <code class="docutils literal notranslate"><span class="pre">normal</span></code> columns, <code class="docutils literal notranslate"><span class="pre">scalar</span> <span class="pre">functions</span></code>, <code class="docutils literal notranslate"><span class="pre">UDT</span></code> fields, <code class="docutils literal notranslate"><span class="pre">writetime</span></code> or <code class="docutils literal notranslate"><span class="pre">ttl</span></code> are selected together with
 aggregate functions, the values returned for them will be the ones of the first row matching the query.</p>
 <div class="section" id="native-aggregates">
 <h3>Native aggregates<a class="headerlink" href="#native-aggregates" title="Permalink to this headline">¶</a></h3>
 <div class="section" id="count">
 <span id="count-function"></span><h4>Count<a class="headerlink" href="#count" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">count</span></code> function can be used to count the rows returned by a query. Example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="o">*</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<p>The <code class="docutils literal notranslate"><span class="pre">count</span></code> function can be used to count the rows returned by a query. Example:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="o">*</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 <span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="mf">1</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>It also can be used to count the non null value of a given column:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="n">scores</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="k">COUNT</span> <span class="p">(</span><span class="n">scores</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="max-and-min">
 <h4>Max and Min<a class="headerlink" href="#max-and-min" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">max</span></code> and <code class="docutils literal"><span class="pre">min</span></code> functions can be used to compute the maximum and the minimum value returned by a query for a
+<p>The <code class="docutils literal notranslate"><span class="pre">max</span></code> and <code class="docutils literal notranslate"><span class="pre">min</span></code> functions can be used to compute the maximum and the minimum value returned by a query for a
 given column. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">MIN</span> <span class="p">(</span><span class="n">players</span><span class="p">),</span> <span class="n">MAX</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">game</span> <span class="o">=</span> <span class="s1">&#39;quake&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">MIN</span> <span class="p">(</span><span class="n">players</span><span class="p">),</span> <span class="n">MAX</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">game</span> <span class="o">=</span> <span class="s1">&#39;quake&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="sum">
 <h4>Sum<a class="headerlink" href="#sum" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">sum</span></code> function can be used to sum up all the values returned by a query for a given column. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">SUM</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<p>The <code class="docutils literal notranslate"><span class="pre">sum</span></code> function can be used to sum up all the values returned by a query for a given column. For instance:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">SUM</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="avg">
 <h4>Avg<a class="headerlink" href="#avg" title="Permalink to this headline">¶</a></h4>
-<p>The <code class="docutils literal"><span class="pre">avg</span></code> function can be used to compute the average of all the values returned by a query for a given column. For
+<p>The <code class="docutils literal notranslate"><span class="pre">avg</span></code> function can be used to compute the average of all the values returned by a query for a given column. For
 instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">AVG</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">SELECT</span> <span class="n">AVG</span> <span class="p">(</span><span class="n">players</span><span class="p">)</span> <span class="k">FROM</span> <span class="n">plays</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
@@ -608,26 +608,26 @@
 <span id="user-defined-aggregates-functions"></span><h3>User-Defined Aggregates<a class="headerlink" href="#user-defined-aggregates" title="Permalink to this headline">¶</a></h3>
 <p>User-defined aggregates allow the creation of custom aggregate functions. Common examples of aggregate functions are
 <em>count</em>, <em>min</em>, and <em>max</em>.</p>
-<p>Each aggregate requires an <em>initial state</em> (<code class="docutils literal"><span class="pre">INITCOND</span></code>, which defaults to <code class="docutils literal"><span class="pre">null</span></code>) of type <code class="docutils literal"><span class="pre">STYPE</span></code>. The first
-argument of the state function must have type <code class="docutils literal"><span class="pre">STYPE</span></code>. The remaining arguments of the state function must match the
+<p>Each aggregate requires an <em>initial state</em> (<code class="docutils literal notranslate"><span class="pre">INITCOND</span></code>, which defaults to <code class="docutils literal notranslate"><span class="pre">null</span></code>) of type <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The first
+argument of the state function must have type <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The remaining arguments of the state function must match the
 types of the user-defined aggregate arguments. The state function is called once for each row, and the value returned by
-the state function becomes the new state. After all rows are processed, the optional <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is executed with last
+the state function becomes the new state. After all rows are processed, the optional <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is executed with last
 state value as its argument.</p>
-<p><code class="docutils literal"><span class="pre">STYPE</span></code> is mandatory in order to be able to distinguish possibly overloaded versions of the state and/or final
+<p><code class="docutils literal notranslate"><span class="pre">STYPE</span></code> is mandatory in order to be able to distinguish possibly overloaded versions of the state and/or final
 function (since the overload can appear after creation of the aggregate).</p>
-<p>User-defined aggregates can be used in <code class="docutils literal"><span class="pre">SELECT</span></code> statement.</p>
-<p>A complete working example for user-defined aggregates (assuming that a keyspace has been selected using the <code class="docutils literal"><span class="pre">USE</span></code>
+<p>User-defined aggregates can be used in <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</p>
+<p>A complete working example for user-defined aggregates (assuming that a keyspace has been selected using the <code class="docutils literal notranslate"><span class="pre">USE</span></code>
 statement):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">averageState</span><span class="p">(</span><span class="n">state</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span><span class="nb">bigint</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">val</span> <span class="nb">int</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">averageState</span><span class="p">(</span><span class="n">state</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span><span class="nb">bigint</span><span class="o">&gt;</span><span class="p">,</span> <span class="n">val</span> <span class="nb">int</span><span class="p">)</span>
     <span class="k">CALLED</span> <span class="k">ON</span> <span class="k">NULL</span> <span class="k">INPUT</span>
     <span class="k">RETURNS</span> <span class="k">tuple</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
     <span class="k">AS</span> <span class="s">$$</span>
-        <span class="k">if</span> <span class="o">(</span><span class="n">val</span> <span class="o">!=</span> <span class="kc">null</span><span class="o">)</span> <span class="o">{</span>
-            <span class="n">state</span><span class="o">.</span><span class="na">setInt</span><span class="o">(</span><span class="mi">0</span><span class="o">,</span> <span class="n">state</span><span class="o">.</span><span class="na">getInt</span><span class="o">(</span><span class="mi">0</span><span class="o">)+</span><span class="mi">1</span><span class="o">);</span>
-            <span class="n">state</span><span class="o">.</span><span class="na">setLong</span><span class="o">(</span><span class="mi">1</span><span class="o">,</span> <span class="n">state</span><span class="o">.</span><span class="na">getLong</span><span class="o">(</span><span class="mi">1</span><span class="o">)+</span><span class="n">val</span><span class="o">.</span><span class="na">intValue</span><span class="o">());</span>
-        <span class="o">}</span>
-        <span class="k">return</span> <span class="n">state</span><span class="o">;</span>
+        <span class="k">if</span> <span class="p">(</span><span class="n">val</span> <span class="o">!=</span> <span class="kc">null</span><span class="p">)</span> <span class="p">{</span>
+            <span class="n">state</span><span class="p">.</span><span class="na">setInt</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="n">state</span><span class="p">.</span><span class="na">getInt</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span><span class="o">+</span><span class="mi">1</span><span class="p">);</span>
+            <span class="n">state</span><span class="p">.</span><span class="na">setLong</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span> <span class="n">state</span><span class="p">.</span><span class="na">getLong</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span><span class="o">+</span><span class="n">val</span><span class="p">.</span><span class="na">intValue</span><span class="p">());</span>
+        <span class="p">}</span>
+        <span class="k">return</span> <span class="n">state</span><span class="p">;</span>
     <span class="s">$$</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">FUNCTION</span> <span class="n">averageFinal</span> <span class="p">(</span><span class="n">state</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span><span class="nb">bigint</span><span class="o">&gt;</span><span class="p">)</span>
@@ -635,11 +635,11 @@
     <span class="k">RETURNS</span> <span class="nb">double</span>
     <span class="k">LANGUAGE</span> <span class="n">java</span>
     <span class="k">AS</span> <span class="s">$$</span>
-        <span class="kt">double</span> <span class="n">r</span> <span class="o">=</span> <span class="mi">0</span><span class="o">;</span>
-        <span class="k">if</span> <span class="o">(</span><span class="n">state</span><span class="o">.</span><span class="na">getInt</span><span class="o">(</span><span class="mi">0</span><span class="o">)</span> <span class="o">==</span> <span class="mi">0</span><span class="o">)</span> <span class="k">return</span> <span class="kc">null</span><span class="o">;</span>
-        <span class="n">r</span> <span class="o">=</span> <span class="n">state</span><span class="o">.</span><span class="na">getLong</span><span class="o">(</span><span class="mi">1</span><span class="o">);</span>
-        <span class="n">r</span> <span class="o">/=</span> <span class="n">state</span><span class="o">.</span><span class="na">getInt</span><span class="o">(</span><span class="mi">0</span><span class="o">);</span>
-        <span class="k">return</span> <span class="n">Double</span><span class="o">.</span><span class="na">valueOf</span><span class="o">(</span><span class="n">r</span><span class="o">);</span>
+        <span class="kt">double</span> <span class="n">r</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
+        <span class="k">if</span> <span class="p">(</span><span class="n">state</span><span class="p">.</span><span class="na">getInt</span><span class="p">(</span><span class="mi">0</span><span class="p">)</span> <span class="o">==</span> <span class="mi">0</span><span class="p">)</span> <span class="k">return</span> <span class="kc">null</span><span class="p">;</span>
+        <span class="n">r</span> <span class="o">=</span> <span class="n">state</span><span class="p">.</span><span class="na">getLong</span><span class="p">(</span><span class="mi">1</span><span class="p">);</span>
+        <span class="n">r</span> <span class="o">/=</span> <span class="n">state</span><span class="p">.</span><span class="na">getInt</span><span class="p">(</span><span class="mi">0</span><span class="p">);</span>
+        <span class="k">return</span> <span class="n">Double</span><span class="p">.</span><span class="na">valueOf</span><span class="p">(</span><span class="n">r</span><span class="p">);</span>
     <span class="s">$$</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">OR</span> <span class="k">REPLACE</span> <span class="k">AGGREGATE</span> <span class="n">average</span><span class="p">(</span><span class="nb">int</span><span class="p">)</span>
@@ -663,52 +663,52 @@
 </div>
 <div class="section" id="create-aggregate">
 <span id="create-aggregate-statement"></span><h4>CREATE AGGREGATE<a class="headerlink" href="#create-aggregate" title="Permalink to this headline">¶</a></h4>
-<p>Creating (or replacing) a user-defined aggregate function uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> statement:</p>
+<p>Creating (or replacing) a user-defined aggregate function uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_aggregate_statement">create_aggregate_statement</strong> ::=  CREATE [ OR REPLACE ] AGGREGATE [ IF NOT EXISTS ]
-                                    <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref docutils literal"><span class="pre">arguments_signature</span></code></a> ')'
-                                    SFUNC <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a>
-                                    STYPE <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a>
-                                    [ FINALFUNC <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> ]
-                                    [ INITCOND <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ]
+<strong id="grammar-token-create-aggregate-statement">create_aggregate_statement</strong> ::=  CREATE [ OR REPLACE ] AGGREGATE [ IF NOT EXISTS ]
+                                    <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref docutils literal notranslate"><span class="pre">arguments_signature</span></code></a> ')'
+                                    SFUNC <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a>
+                                    STYPE <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a>
+                                    [ FINALFUNC <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> ]
+                                    [ INITCOND <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ]
 </pre>
 <p>See above for a complete example.</p>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates an aggregate or replaces an existing one
-with the same signature. A <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> without <code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if an aggregate with the same signature
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> keywords either creates an aggregate or replaces an existing one
+with the same signature. A <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> without <code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> fails if an aggregate with the same signature
 already exists.</p>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords either creates an aggregate if it does not already
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> keywords either creates an aggregate if it does not already
 exist.</p>
-<p><code class="docutils literal"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
-<p><code class="docutils literal"><span class="pre">STYPE</span></code> defines the type of the state value and must be specified.</p>
-<p>The optional <code class="docutils literal"><span class="pre">INITCOND</span></code> defines the initial state value for the aggregate. It defaults to <code class="docutils literal"><span class="pre">null</span></code>. A non-<code class="docutils literal"><span class="pre">null</span></code>
-<code class="docutils literal"><span class="pre">INITCOND</span></code> must be specified for state functions that are declared with <code class="docutils literal"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code>.</p>
-<p><code class="docutils literal"><span class="pre">SFUNC</span></code> references an existing function to be used as the state modifying function. The type of first argument of the
-state function must match <code class="docutils literal"><span class="pre">STYPE</span></code>. The remaining argument types of the state function must match the argument types of
-the aggregate function. State is not updated for state functions declared with <code class="docutils literal"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> and called
-with <code class="docutils literal"><span class="pre">null</span></code>.</p>
-<p>The optional <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is called just before the aggregate result is returned. It must take only one argument with
-type <code class="docutils literal"><span class="pre">STYPE</span></code>. The return type of the <code class="docutils literal"><span class="pre">FINALFUNC</span></code> may be a different type. A final function declared with <code class="docutils literal"><span class="pre">RETURNS</span>
-<span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> means that the aggregate&#8217;s return value will be <code class="docutils literal"><span class="pre">null</span></code>, if the last state is <code class="docutils literal"><span class="pre">null</span></code>.</p>
-<p>If no <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is defined, the overall return type of the aggregate function is <code class="docutils literal"><span class="pre">STYPE</span></code>. If a <code class="docutils literal"><span class="pre">FINALFUNC</span></code> is
+<p><code class="docutils literal notranslate"><span class="pre">OR</span> <span class="pre">REPLACE</span></code> and <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> cannot be used together.</p>
+<p><code class="docutils literal notranslate"><span class="pre">STYPE</span></code> defines the type of the state value and must be specified.</p>
+<p>The optional <code class="docutils literal notranslate"><span class="pre">INITCOND</span></code> defines the initial state value for the aggregate. It defaults to <code class="docutils literal notranslate"><span class="pre">null</span></code>. A non-<code class="docutils literal notranslate"><span class="pre">null</span></code>
+<code class="docutils literal notranslate"><span class="pre">INITCOND</span></code> must be specified for state functions that are declared with <code class="docutils literal notranslate"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code>.</p>
+<p><code class="docutils literal notranslate"><span class="pre">SFUNC</span></code> references an existing function to be used as the state modifying function. The type of first argument of the
+state function must match <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The remaining argument types of the state function must match the argument types of
+the aggregate function. State is not updated for state functions declared with <code class="docutils literal notranslate"><span class="pre">RETURNS</span> <span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> and called
+with <code class="docutils literal notranslate"><span class="pre">null</span></code>.</p>
+<p>The optional <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is called just before the aggregate result is returned. It must take only one argument with
+type <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. The return type of the <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> may be a different type. A final function declared with <code class="docutils literal notranslate"><span class="pre">RETURNS</span>
+<span class="pre">NULL</span> <span class="pre">ON</span> <span class="pre">NULL</span> <span class="pre">INPUT</span></code> means that the aggregate’s return value will be <code class="docutils literal notranslate"><span class="pre">null</span></code>, if the last state is <code class="docutils literal notranslate"><span class="pre">null</span></code>.</p>
+<p>If no <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is defined, the overall return type of the aggregate function is <code class="docutils literal notranslate"><span class="pre">STYPE</span></code>. If a <code class="docutils literal notranslate"><span class="pre">FINALFUNC</span></code> is
 defined, it is the return type of that function.</p>
 </div>
 <div class="section" id="drop-aggregate">
 <span id="drop-aggregate-statement"></span><h4>DROP AGGREGATE<a class="headerlink" href="#drop-aggregate" title="Permalink to this headline">¶</a></h4>
-<p>Dropping an user-defined aggregate function uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement:</p>
+<p>Dropping an user-defined aggregate function uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_aggregate_statement">drop_aggregate_statement</strong> ::=  DROP AGGREGATE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments_signature"><code class="xref docutils literal"><span class="pre">arguments_signature</span></code></a> ')' ]
+<strong id="grammar-token-drop-aggregate-statement">drop_aggregate_statement</strong> ::=  DROP AGGREGATE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> [ '(' <a class="reference internal" href="#grammar-token-arguments-signature"><code class="xref docutils literal notranslate"><span class="pre">arguments_signature</span></code></a> ')' ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">myAggregate</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">myAggregate</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">myKeyspace</span><span class="mf">.</span><span class="n">anAggregate</span><span class="p">;</span>
 <span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">someAggregate</span> <span class="p">(</span> <span class="nb">int</span> <span class="p">);</span>
 <span class="k">DROP</span> <span class="k">AGGREGATE</span> <span class="n">someAggregate</span> <span class="p">(</span> <span class="nb">text</span> <span class="p">);</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement removes an aggregate created using <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>. You must specify the argument
+<p>The <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> statement removes an aggregate created using <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>. You must specify the argument
 types of the aggregate to drop if there are multiple aggregates with the same name but a different signature (overloaded
 aggregates).</p>
-<p><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops an aggregate if it exists, and does nothing if a
+<p><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> with the optional <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> keywords drops an aggregate if it exists, and does nothing if a
 function with the signature does not exist.</p>
 </div>
 </div>
diff --git a/content/doc/stable/cql/index.html b/content/doc/stable/cql/index.html
index af00a6a..0b165f5 100644
--- a/content/doc/stable/cql/index.html
+++ b/content/doc/stable/cql/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Definitions" href="definitions.html"/> <link rel="prev" title="Data Modeling" href="../data_modeling/index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Definitions" href="definitions.html"/> <link rel="prev" title="Data Modeling" href="../data_modeling/index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/cql/indexes.html b/content/doc/stable/cql/indexes.html
index 1a65d65..e80688a 100644
--- a/content/doc/stable/cql/indexes.html
+++ b/content/doc/stable/cql/indexes.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Materialized Views" href="mvs.html"/> <link rel="prev" title="Data Manipulation" href="dml.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Materialized Views" href="mvs.html"/> <link rel="prev" title="Data Manipulation" href="dml.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,48 +171,48 @@
 <p>CQL supports creating secondary indexes on tables, allowing queries on the table to use those indexes. A secondary index
 is identified by a name defined by:</p>
 <pre>
-<strong id="grammar-token-index_name">index_name</strong> ::=  re('[a-zA-Z_0-9]+')
+<strong id="grammar-token-index-name">index_name</strong> ::=  re('[a-zA-Z_0-9]+')
 </pre>
 <div class="section" id="create-index">
 <span id="create-index-statement"></span><h2>CREATE INDEX<a class="headerlink" href="#create-index" title="Permalink to this headline">¶</a></h2>
-<p>Creating a secondary index on a table uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement:</p>
+<p>Creating a secondary index on a table uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_index_statement">create_index_statement</strong> ::=  CREATE [ CUSTOM ] INDEX [ IF NOT EXISTS ] [ <a class="reference internal" href="#grammar-token-index_name"><code class="xref docutils literal"><span class="pre">index_name</span></code></a> ]
-                                ON <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-index_identifier"><code class="xref docutils literal"><span class="pre">index_identifier</span></code></a> ')'
-                                [ USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> [ WITH OPTIONS = <a class="reference internal" href="types.html#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a> ] ]
-<strong id="grammar-token-index_identifier">index_identifier      </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a>
-                           | ( KEYS | VALUES | ENTRIES | FULL ) '(' <a class="reference internal" href="ddl.html#grammar-token-column_name"><code class="xref docutils literal"><span class="pre">column_name</span></code></a> ')'
+<strong id="grammar-token-create-index-statement">create_index_statement</strong> ::=  CREATE [ CUSTOM ] INDEX [ IF NOT EXISTS ] [ <a class="reference internal" href="#grammar-token-index-name"><code class="xref docutils literal notranslate"><span class="pre">index_name</span></code></a> ]
+                                ON <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a> '(' <a class="reference internal" href="#grammar-token-index-identifier"><code class="xref docutils literal notranslate"><span class="pre">index_identifier</span></code></a> ')'
+                                [ USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> [ WITH OPTIONS = <a class="reference internal" href="types.html#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a> ] ]
+<strong id="grammar-token-index-identifier">index_identifier      </strong> ::=  <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a>
+                           | ( KEYS | VALUES | ENTRIES | FULL ) '(' <a class="reference internal" href="ddl.html#grammar-token-column-name"><code class="xref docutils literal notranslate"><span class="pre">column_name</span></code></a> ')'
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">INDEX</span> <span class="n">userIndex</span> <span class="k">ON</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="k">user</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">INDEX</span> <span class="n">userIndex</span> <span class="k">ON</span> <span class="n">NerdMovies</span> <span class="p">(</span><span class="k">user</span><span class="p">);</span>
 <span class="k">CREATE</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="n">Mutants</span> <span class="p">(</span><span class="n">abilityId</span><span class="p">);</span>
 <span class="k">CREATE</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="k">users</span> <span class="p">(</span><span class="k">keys</span><span class="p">(</span><span class="n">favs</span><span class="p">));</span>
 <span class="k">CREATE</span> <span class="k">CUSTOM</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="k">users</span> <span class="p">(</span><span class="n">email</span><span class="p">)</span> <span class="k">USING</span> <span class="s1">&#39;path.to.the.IndexClass&#39;</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">CUSTOM</span> <span class="k">INDEX</span> <span class="k">ON</span> <span class="k">users</span> <span class="p">(</span><span class="n">email</span><span class="p">)</span> <span class="k">USING</span> <span class="s1">&#39;path.to.the.IndexClass&#39;</span> <span class="k">WITH</span> <span class="k">OPTIONS</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;storage&#39;</span><span class="p">:</span> <span class="s1">&#39;/mnt/ssd/indexes/&#39;</span><span class="p">};</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement is used to create a new (automatic) secondary index for a given (existing) column in a
-given table. A name for the index itself can be specified before the <code class="docutils literal"><span class="pre">ON</span></code> keyword, if desired. If data already exists
+<p>The <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">INDEX</span></code> statement is used to create a new (automatic) secondary index for a given (existing) column in a
+given table. A name for the index itself can be specified before the <code class="docutils literal notranslate"><span class="pre">ON</span></code> keyword, if desired. If data already exists
 for the column, it will be indexed asynchronously. After the index is created, new data for the column is indexed
 automatically at insertion time.</p>
-<p>Attempting to create an already existing index will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If it
+<p>Attempting to create an already existing index will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If it
 is used, the statement will be a no-op if the index already exists.</p>
 <div class="section" id="indexes-on-map-keys">
 <h3>Indexes on Map Keys<a class="headerlink" href="#indexes-on-map-keys" title="Permalink to this headline">¶</a></h3>
 <p>When creating an index on a <a class="reference internal" href="types.html#maps"><span class="std std-ref">maps</span></a>, you may index either the keys or the values. If the column identifier is
-placed within the <code class="docutils literal"><span class="pre">keys()</span></code> function, the index will be on the map keys, allowing you to use <code class="docutils literal"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> in
-<code class="docutils literal"><span class="pre">WHERE</span></code> clauses. Otherwise, the index will be on the map values.</p>
+placed within the <code class="docutils literal notranslate"><span class="pre">keys()</span></code> function, the index will be on the map keys, allowing you to use <code class="docutils literal notranslate"><span class="pre">CONTAINS</span> <span class="pre">KEY</span></code> in
+<code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clauses. Otherwise, the index will be on the map values.</p>
 </div>
 </div>
 <div class="section" id="drop-index">
 <span id="drop-index-statement"></span><h2>DROP INDEX<a class="headerlink" href="#drop-index" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a secondary index uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement:</p>
+<p>Dropping a secondary index uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_index_statement">drop_index_statement</strong> ::=  DROP INDEX [ IF EXISTS ] <a class="reference internal" href="#grammar-token-index_name"><code class="xref docutils literal"><span class="pre">index_name</span></code></a>
+<strong id="grammar-token-drop-index-statement">drop_index_statement</strong> ::=  DROP INDEX [ IF EXISTS ] <a class="reference internal" href="#grammar-token-index-name"><code class="xref docutils literal notranslate"><span class="pre">index_name</span></code></a>
 </pre>
-<p>The <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement is used to drop an existing secondary index. The argument of the statement is the index
+<p>The <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">INDEX</span></code> statement is used to drop an existing secondary index. The argument of the statement is the index
 name, which may optionally specify the keyspace of the index.</p>
-<p>If the index does not exists, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
+<p>If the index does not exists, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case the
 operation is a no-op.</p>
 </div>
 </div>
diff --git a/content/doc/stable/cql/json.html b/content/doc/stable/cql/json.html
index 3158a16..8ff47ee 100644
--- a/content/doc/stable/cql/json.html
+++ b/content/doc/stable/cql/json.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Triggers" href="triggers.html"/> <link rel="prev" title="Functions" href="functions.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Triggers" href="triggers.html"/> <link rel="prev" title="Functions" href="functions.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -176,39 +176,39 @@
 provides a convenient way to work with JSON documents.</p>
 <div class="section" id="select-json">
 <h2>SELECT JSON<a class="headerlink" href="#select-json" title="Permalink to this headline">¶</a></h2>
-<p>With <code class="docutils literal"><span class="pre">SELECT</span></code> statements, the <code class="docutils literal"><span class="pre">JSON</span></code> keyword can be used to return each row as a single <code class="docutils literal"><span class="pre">JSON</span></code> encoded map. The
-remainder of the <code class="docutils literal"><span class="pre">SELECT</span></code> statement behavior is the same.</p>
-<p>The result map keys are the same as the column names in a normal result set. For example, a statement like <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span>
-<span class="pre">a,</span> <span class="pre">ttl(b)</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map with keys <code class="docutils literal"><span class="pre">&quot;a&quot;</span></code> and <code class="docutils literal"><span class="pre">&quot;ttl(b)&quot;</span></code>. However, this is one notable exception:
-for symmetry with <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> behavior, case-sensitive column names with upper-case letters will be surrounded with
-double quotes. For example, <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span> <span class="pre">myColumn</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map key <code class="docutils literal"><span class="pre">&quot;\&quot;myColumn\&quot;&quot;</span></code> (note the
+<p>With <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements, the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> keyword can be used to return each row as a single <code class="docutils literal notranslate"><span class="pre">JSON</span></code> encoded map. The
+remainder of the <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement behavior is the same.</p>
+<p>The result map keys are the same as the column names in a normal result set. For example, a statement like <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span>
+<span class="pre">a,</span> <span class="pre">ttl(b)</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map with keys <code class="docutils literal notranslate"><span class="pre">&quot;a&quot;</span></code> and <code class="docutils literal notranslate"><span class="pre">&quot;ttl(b)&quot;</span></code>. However, this is one notable exception:
+for symmetry with <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> behavior, case-sensitive column names with upper-case letters will be surrounded with
+double quotes. For example, <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span> <span class="pre">myColumn</span> <span class="pre">FROM</span> <span class="pre">...</span></code> would result in a map key <code class="docutils literal notranslate"><span class="pre">&quot;\&quot;myColumn\&quot;&quot;</span></code> (note the
 escaped quotes).</p>
-<p>The map values will <code class="docutils literal"><span class="pre">JSON</span></code>-encoded representations (as described below) of the result set values.</p>
+<p>The map values will <code class="docutils literal notranslate"><span class="pre">JSON</span></code>-encoded representations (as described below) of the result set values.</p>
 </div>
 <div class="section" id="insert-json">
 <h2>INSERT JSON<a class="headerlink" href="#insert-json" title="Permalink to this headline">¶</a></h2>
-<p>With <code class="docutils literal"><span class="pre">INSERT</span></code> statements, the new <code class="docutils literal"><span class="pre">JSON</span></code> keyword can be used to enable inserting a <code class="docutils literal"><span class="pre">JSON</span></code> encoded map as a single
-row. The format of the <code class="docutils literal"><span class="pre">JSON</span></code> map should generally match that returned by a <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statement on the same
+<p>With <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statements, the new <code class="docutils literal notranslate"><span class="pre">JSON</span></code> keyword can be used to enable inserting a <code class="docutils literal notranslate"><span class="pre">JSON</span></code> encoded map as a single
+row. The format of the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> map should generally match that returned by a <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statement on the same
 table. In particular, case-sensitive column names should be surrounded with double quotes. For example, to insert into a
-table with two columns named &#8220;myKey&#8221; and &#8220;value&#8221;, you would do the following:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">mytable</span> <span class="k">JSON</span> <span class="s1">&#39;{ &quot;\&quot;myKey\&quot;&quot;: 0, &quot;value&quot;: 0}&#39;</span>
+table with two columns named “myKey” and “value”, you would do the following:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">mytable</span> <span class="k">JSON</span> <span class="s1">&#39;{ &quot;\&quot;myKey\&quot;&quot;: 0, &quot;value&quot;: 0}&#39;</span>
 </pre></div>
 </div>
-<p>By default (or if <code class="docutils literal"><span class="pre">DEFAULT</span> <span class="pre">NULL</span></code> is explicitly used), a column omitted from the <code class="docutils literal"><span class="pre">JSON</span></code> map will be set to <code class="docutils literal"><span class="pre">NULL</span></code>,
+<p>By default (or if <code class="docutils literal notranslate"><span class="pre">DEFAULT</span> <span class="pre">NULL</span></code> is explicitly used), a column omitted from the <code class="docutils literal notranslate"><span class="pre">JSON</span></code> map will be set to <code class="docutils literal notranslate"><span class="pre">NULL</span></code>,
 meaning that any pre-existing value for that column will be removed (resulting in a tombstone being created).
-Alternatively, if the <code class="docutils literal"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> directive is used after the value, omitted column values will be left unset,
+Alternatively, if the <code class="docutils literal notranslate"><span class="pre">DEFAULT</span> <span class="pre">UNSET</span></code> directive is used after the value, omitted column values will be left unset,
 meaning that pre-existing values for those column will be preserved.</p>
 </div>
 <div class="section" id="json-encoding-of-cassandra-data-types">
 <h2>JSON Encoding of Cassandra Data Types<a class="headerlink" href="#json-encoding-of-cassandra-data-types" title="Permalink to this headline">¶</a></h2>
-<p>Where possible, Cassandra will represent and accept data types in their native <code class="docutils literal"><span class="pre">JSON</span></code> representation. Cassandra will
+<p>Where possible, Cassandra will represent and accept data types in their native <code class="docutils literal notranslate"><span class="pre">JSON</span></code> representation. Cassandra will
 also accept string representations matching the CQL literal format for all single-field types. For example, floats,
 ints, UUIDs, and dates can be represented by CQL literal strings. However, compound types, such as collections, tuples,
-and user-defined types must be represented by native <code class="docutils literal"><span class="pre">JSON</span></code> collections (maps and lists) or a JSON-encoded string
+and user-defined types must be represented by native <code class="docutils literal notranslate"><span class="pre">JSON</span></code> collections (maps and lists) or a JSON-encoded string
 representation of the collection.</p>
-<p>The following table describes the encodings that Cassandra will accept in <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> values (and <code class="docutils literal"><span class="pre">fromJson()</span></code>
-arguments) as well as the format Cassandra will use when returning data for <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statements (and
-<code class="docutils literal"><span class="pre">fromJson()</span></code>):</p>
+<p>The following table describes the encodings that Cassandra will accept in <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code> values (and <code class="docutils literal notranslate"><span class="pre">fromJson()</span></code>
+arguments) as well as the format Cassandra will use when returning data for <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span></code> statements (and
+<code class="docutils literal notranslate"><span class="pre">fromJson()</span></code>):</p>
 <table border="1" class="docutils">
 <colgroup>
 <col width="13%" />
@@ -224,125 +224,125 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ascii</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ascii</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Uses JSON&#8217;s <code class="docutils literal"><span class="pre">\u</span></code> character escape</td>
+<td>Uses JSON’s <code class="docutils literal notranslate"><span class="pre">\u</span></code> character escape</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">bigint</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">bigint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 64 bit integer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">blob</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">blob</span></code></td>
 <td>string</td>
 <td>string</td>
 <td>String should be 0x followed by an even number of hex digits</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">boolean</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">boolean</span></code></td>
 <td>boolean, string</td>
 <td>boolean</td>
-<td>String must be &#8220;true&#8221; or &#8220;false&#8221;</td>
+<td>String must be “true” or “false”</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">date</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Date in format <code class="docutils literal"><span class="pre">YYYY-MM-DD</span></code>, timezone UTC</td>
+<td>Date in format <code class="docutils literal notranslate"><span class="pre">YYYY-MM-DD</span></code>, timezone UTC</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">decimal</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">decimal</span></code></td>
 <td>integer, float, string</td>
 <td>float</td>
 <td>May exceed 32 or 64-bit IEEE-754 floating point precision in
 client-side decoder</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">double</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">double</span></code></td>
 <td>integer, float, string</td>
 <td>float</td>
 <td>String must be valid integer or float</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">float</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">float</span></code></td>
 <td>integer, float, string</td>
 <td>float</td>
 <td>String must be valid integer or float</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">inet</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">inet</span></code></td>
 <td>string</td>
 <td>string</td>
 <td>IPv4 or IPv6 address</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">int</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">int</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 32 bit integer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">list</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">list</span></code></td>
 <td>list, string</td>
 <td>list</td>
-<td>Uses JSON&#8217;s native list representation</td>
+<td>Uses JSON’s native list representation</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">map</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">map</span></code></td>
 <td>map, string</td>
 <td>map</td>
-<td>Uses JSON&#8217;s native map representation</td>
+<td>Uses JSON’s native map representation</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">smallint</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">smallint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 16 bit integer</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">set</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">set</span></code></td>
 <td>list, string</td>
 <td>list</td>
-<td>Uses JSON&#8217;s native list representation</td>
+<td>Uses JSON’s native list representation</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">text</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">text</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Uses JSON&#8217;s <code class="docutils literal"><span class="pre">\u</span></code> character escape</td>
+<td>Uses JSON’s <code class="docutils literal notranslate"><span class="pre">\u</span></code> character escape</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">time</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">time</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Time of day in format <code class="docutils literal"><span class="pre">HH-MM-SS[.fffffffff]</span></code></td>
+<td>Time of day in format <code class="docutils literal notranslate"><span class="pre">HH-MM-SS[.fffffffff]</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
 <td>integer, string</td>
 <td>string</td>
 <td>A timestamp. Strings constant allows to input <a class="reference internal" href="types.html#timestamps"><span class="std std-ref">timestamps
-as dates</span></a>. Datestamps with format <code class="docutils literal"><span class="pre">YYYY-MM-DD</span>
+as dates</span></a>. Datestamps with format <code class="docutils literal notranslate"><span class="pre">YYYY-MM-DD</span>
 <span class="pre">HH:MM:SS.SSS</span></code> are returned.</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Type 1 UUID. See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal"><span class="pre">constant</span></code></a> for the UUID format</td>
+<td>Type 1 UUID. See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal notranslate"><span class="pre">constant</span></code></a> for the UUID format</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">tinyint</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>String must be valid 8 bit integer</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">tuple</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">tuple</span></code></td>
 <td>list, string</td>
 <td>list</td>
-<td>Uses JSON&#8217;s native list representation</td>
+<td>Uses JSON’s native list representation</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">UDT</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">UDT</span></code></td>
 <td>map, string</td>
 <td>map</td>
-<td>Uses JSON&#8217;s native map representation with field names as keys</td>
+<td>Uses JSON’s native map representation with field names as keys</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">uuid</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">uuid</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal"><span class="pre">constant</span></code></a> for the UUID format</td>
+<td>See <a class="reference internal" href="definitions.html#grammar-token-constant"><code class="xref std std-token docutils literal notranslate"><span class="pre">constant</span></code></a> for the UUID format</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">varchar</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
 <td>string</td>
 <td>string</td>
-<td>Uses JSON&#8217;s <code class="docutils literal"><span class="pre">\u</span></code> character escape</td>
+<td>Uses JSON’s <code class="docutils literal notranslate"><span class="pre">\u</span></code> character escape</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">varint</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">varint</span></code></td>
 <td>integer, string</td>
 <td>integer</td>
 <td>Variable length; may overflow 32 or 64 bit integers in
@@ -353,14 +353,14 @@
 </div>
 <div class="section" id="the-fromjson-function">
 <h2>The fromJson() Function<a class="headerlink" href="#the-fromjson-function" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">fromJson()</span></code> function may be used similarly to <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
-in the <code class="docutils literal"><span class="pre">VALUES</span></code> clause of an <code class="docutils literal"><span class="pre">INSERT</span></code> statement or as one of the column values in an <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code>, or
-<code class="docutils literal"><span class="pre">SELECT</span></code> statement. For example, it cannot be used in the selection clause of a <code class="docutils literal"><span class="pre">SELECT</span></code> statement.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">fromJson()</span></code> function may be used similarly to <code class="docutils literal notranslate"><span class="pre">INSERT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
+in the <code class="docutils literal notranslate"><span class="pre">VALUES</span></code> clause of an <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> statement or as one of the column values in an <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code>, or
+<code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement. For example, it cannot be used in the selection clause of a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</p>
 </div>
 <div class="section" id="the-tojson-function">
 <h2>The toJson() Function<a class="headerlink" href="#the-tojson-function" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">toJson()</span></code> function may be used similarly to <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
-in the selection clause of a <code class="docutils literal"><span class="pre">SELECT</span></code> statement.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">toJson()</span></code> function may be used similarly to <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">JSON</span></code>, but for a single column value. It may only be used
+in the selection clause of a <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement.</p>
 </div>
 </div>
 
diff --git a/content/doc/stable/cql/mvs.html b/content/doc/stable/cql/mvs.html
index 5319ea0..344180f 100644
--- a/content/doc/stable/cql/mvs.html
+++ b/content/doc/stable/cql/mvs.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Secondary Indexes" href="indexes.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Secondary Indexes" href="indexes.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,27 +171,27 @@
 <span id="id1"></span><h1>Materialized Views<a class="headerlink" href="#materialized-views" title="Permalink to this headline">¶</a></h1>
 <p>Materialized views names are defined by:</p>
 <pre>
-<strong id="grammar-token-view_name">view_name</strong> ::=  re('[a-zA-Z_0-9]+')
+<strong id="grammar-token-view-name">view_name</strong> ::=  re('[a-zA-Z_0-9]+')
 </pre>
 <div class="section" id="create-materialized-view">
 <span id="create-materialized-view-statement"></span><h2>CREATE MATERIALIZED VIEW<a class="headerlink" href="#create-materialized-view" title="Permalink to this headline">¶</a></h2>
-<p>You can create a materialized view on a table using a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
+<p>You can create a materialized view on a table using a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_materialized_view_statement">create_materialized_view_statement</strong> ::=  CREATE MATERIALIZED VIEW [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-view_name"><code class="xref docutils literal"><span class="pre">view_name</span></code></a> AS
-                                            <a class="reference internal" href="dml.html#grammar-token-select_statement"><code class="xref docutils literal"><span class="pre">select_statement</span></code></a>
-                                            PRIMARY KEY '(' <a class="reference internal" href="ddl.html#grammar-token-primary_key"><code class="xref docutils literal"><span class="pre">primary_key</span></code></a> ')'
-                                            WITH <a class="reference internal" href="ddl.html#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a>
+<strong id="grammar-token-create-materialized-view-statement">create_materialized_view_statement</strong> ::=  CREATE MATERIALIZED VIEW [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-view-name"><code class="xref docutils literal notranslate"><span class="pre">view_name</span></code></a> AS
+                                            <a class="reference internal" href="dml.html#grammar-token-select-statement"><code class="xref docutils literal notranslate"><span class="pre">select_statement</span></code></a>
+                                            PRIMARY KEY '(' <a class="reference internal" href="ddl.html#grammar-token-primary-key"><code class="xref docutils literal notranslate"><span class="pre">primary_key</span></code></a> ')'
+                                            WITH <a class="reference internal" href="ddl.html#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">monkeySpecies_by_population</span> <span class="k">AS</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">monkeySpecies_by_population</span> <span class="k">AS</span>
     <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">monkeySpecies</span>
     <span class="k">WHERE</span> <span class="n">population</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">species</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span>
     <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">population</span><span class="p">,</span> <span class="n">species</span><span class="p">)</span>
     <span class="k">WITH</span> <span class="n">comment</span><span class="o">=</span><span class="s1">&#39;Allow query by population instead of species&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement creates a new materialized view. Each such view is a set of <em>rows</em> which
-corresponds to rows which are present in the underlying, or base, table specified in the <code class="docutils literal"><span class="pre">SELECT</span></code> statement. A
+<p>The <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement creates a new materialized view. Each such view is a set of <em>rows</em> which
+corresponds to rows which are present in the underlying, or base, table specified in the <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statement. A
 materialized view cannot be directly updated, but updates to the base table will cause corresponding updates in the
 view.</p>
 <p>Creating a materialized view has 3 main parts:</p>
@@ -200,7 +200,7 @@
 <li>The <a class="reference internal" href="#mv-primary-key"><span class="std std-ref">primary key</span></a> definition for the view.</li>
 <li>The <a class="reference internal" href="#mv-options"><span class="std std-ref">options</span></a> for the view.</li>
 </ul>
-<p>Attempting to create an already existing materialized view will return an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is
+<p>Attempting to create an already existing materialized view will return an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is
 used. If it is used, the statement will be a no-op if the materialized view already exists.</p>
 <div class="section" id="mv-select-statement">
 <span id="mv-select"></span><h3>MV select statement<a class="headerlink" href="#mv-select-statement" title="Permalink to this headline">¶</a></h3>
@@ -208,15 +208,15 @@
 statement is limited in a number of ways:</p>
 <ul class="simple">
 <li>the <a class="reference internal" href="dml.html#selection-clause"><span class="std std-ref">selection</span></a> is limited to those that only select columns of the base table. In other
-words, you can&#8217;t use any function (aggregate or not), casting, term, etc. Aliases are also not supported. You can
+words, you can’t use any function (aggregate or not), casting, term, etc. Aliases are also not supported. You can
 however use <cite>*</cite> as a shortcut of selecting all columns. Further, <a class="reference internal" href="ddl.html#static-columns"><span class="std std-ref">static columns</span></a> cannot be
-included in a materialized view (which means <code class="docutils literal"><span class="pre">SELECT</span> <span class="pre">*</span></code> isn&#8217;t allowed if the base table has static columns).</li>
-<li>the <code class="docutils literal"><span class="pre">WHERE</span></code> clause have the following restrictions:<ul>
-<li>it cannot include any <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref std std-token docutils literal"><span class="pre">bind_marker</span></code></a>.</li>
-<li>the columns that are not part of the <em>base table</em> primary key can only be restricted by an <code class="docutils literal"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code>
+included in a materialized view (which means <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">*</span></code> isn’t allowed if the base table has static columns).</li>
+<li>the <code class="docutils literal notranslate"><span class="pre">WHERE</span></code> clause have the following restrictions:<ul>
+<li>it cannot include any <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref std std-token docutils literal notranslate"><span class="pre">bind_marker</span></code></a>.</li>
+<li>the columns that are not part of the <em>base table</em> primary key can only be restricted by an <code class="docutils literal notranslate"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code>
 restriction. No other restriction is allowed.</li>
 <li>as the columns that are part of the <em>view</em> primary key cannot be null, they must always be at least restricted by a
-<code class="docutils literal"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code> restriction (or any other restriction, but they must have one).</li>
+<code class="docutils literal notranslate"><span class="pre">IS</span> <span class="pre">NOT</span> <span class="pre">NULL</span></code> restriction (or any other restriction, but they must have one).</li>
 </ul>
 </li>
 <li>it cannot have neither an <a class="reference internal" href="dml.html#ordering-clause"><span class="std std-ref">ordering clause</span></a>, nor a <a class="reference internal" href="dml.html#limit-clause"><span class="std std-ref">limit</span></a>, nor <a class="reference internal" href="dml.html#allow-filtering"><span class="std std-ref">ALLOW
@@ -232,7 +232,7 @@
 <li>it can only contain a single column that is not a primary key column in the base table.</li>
 </ul>
 <p>So for instance, give the following base table definition:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">t</span> <span class="p">(</span>
     <span class="n">k</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c1</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">c2</span> <span class="nb">int</span><span class="p">,</span>
@@ -243,7 +243,7 @@
 </pre></div>
 </div>
 <p>then the following view definitions are allowed:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">mv1</span> <span class="k">AS</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">mv1</span> <span class="k">AS</span>
     <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">t</span> <span class="k">WHERE</span> <span class="n">k</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c1</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c2</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span>
     <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">c1</span><span class="p">,</span> <span class="n">k</span><span class="p">,</span> <span class="n">c2</span><span class="p">)</span>
 
@@ -253,7 +253,7 @@
 </pre></div>
 </div>
 <p>but the following ones are <strong>not</strong> allowed:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="c1">// Error: cannot include both v1 and v2 in the primary key as both are not in the base table primary key</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="c1">// Error: cannot include both v1 and v2 in the primary key as both are not in the base table primary key</span>
 <span class="k">CREATE</span> <span class="k">MATERIALIZED</span> <span class="k">VIEW</span> <span class="n">mv1</span> <span class="k">AS</span>
     <span class="k">SELECT</span> <span class="o">*</span> <span class="k">FROM</span> <span class="n">t</span> <span class="k">WHERE</span> <span class="n">k</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c1</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">c2</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span> <span class="k">AND</span> <span class="n">v1</span> <span class="k">IS</span> <span class="k">NOT</span> <span class="k">NULL</span>
     <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">v1</span><span class="p">,</span> <span class="n">v2</span><span class="p">,</span> <span class="n">k</span><span class="p">,</span> <span class="n">c1</span><span class="p">,</span> <span class="n">c2</span><span class="p">)</span>
@@ -273,19 +273,19 @@
 </div>
 <div class="section" id="alter-materialized-view">
 <span id="alter-materialized-view-statement"></span><h2>ALTER MATERIALIZED VIEW<a class="headerlink" href="#alter-materialized-view" title="Permalink to this headline">¶</a></h2>
-<p>After creation, you can alter the options of a materialized view using the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
+<p>After creation, you can alter the options of a materialized view using the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_materialized_view_statement">alter_materialized_view_statement</strong> ::=  ALTER MATERIALIZED VIEW <a class="reference internal" href="#grammar-token-view_name"><code class="xref docutils literal"><span class="pre">view_name</span></code></a> WITH <a class="reference internal" href="ddl.html#grammar-token-table_options"><code class="xref docutils literal"><span class="pre">table_options</span></code></a>
+<strong id="grammar-token-alter-materialized-view-statement">alter_materialized_view_statement</strong> ::=  ALTER MATERIALIZED VIEW <a class="reference internal" href="#grammar-token-view-name"><code class="xref docutils literal notranslate"><span class="pre">view_name</span></code></a> WITH <a class="reference internal" href="ddl.html#grammar-token-table-options"><code class="xref docutils literal notranslate"><span class="pre">table_options</span></code></a>
 </pre>
 <p>The options that can be updated are the same than at creation time and thus the <a class="reference internal" href="ddl.html#create-table-options"><span class="std std-ref">same than for tables</span></a>.</p>
 </div>
 <div class="section" id="drop-materialized-view">
 <span id="drop-materialized-view-statement"></span><h2>DROP MATERIALIZED VIEW<a class="headerlink" href="#drop-materialized-view" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a materialized view users the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
+<p>Dropping a materialized view users the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">MATERIALIZED</span> <span class="pre">VIEW</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_materialized_view_statement">drop_materialized_view_statement</strong> ::=  DROP MATERIALIZED VIEW [ IF EXISTS ] <a class="reference internal" href="#grammar-token-view_name"><code class="xref docutils literal"><span class="pre">view_name</span></code></a>;
+<strong id="grammar-token-drop-materialized-view-statement">drop_materialized_view_statement</strong> ::=  DROP MATERIALIZED VIEW [ IF EXISTS ] <a class="reference internal" href="#grammar-token-view-name"><code class="xref docutils literal notranslate"><span class="pre">view_name</span></code></a>;
 </pre>
-<p>If the materialized view does not exists, the statement will return an error, unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case
+<p>If the materialized view does not exists, the statement will return an error, unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used in which case
 the operation is a no-op.</p>
 </div>
 </div>
diff --git a/content/doc/stable/cql/security.html b/content/doc/stable/cql/security.html
index a608c54..99c6e17 100644
--- a/content/doc/stable/cql/security.html
+++ b/content/doc/stable/cql/security.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Functions" href="functions.html"/> <link rel="prev" title="Materialized Views" href="mvs.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Functions" href="functions.html"/> <link rel="prev" title="Materialized Views" href="mvs.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -173,50 +173,50 @@
 <span id="cql-roles"></span><h2>Database Roles<a class="headerlink" href="#database-roles" title="Permalink to this headline">¶</a></h2>
 <p>CQL uses database roles to represent users and group of users. Syntactically, a role is defined by:</p>
 <pre>
-<strong id="grammar-token-role_name">role_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+<strong id="grammar-token-role-name">role_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> | <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
 <div class="section" id="create-role">
 <span id="create-role-statement"></span><h3>CREATE ROLE<a class="headerlink" href="#create-role" title="Permalink to this headline">¶</a></h3>
-<p>Creating a role uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Creating a role uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_role_statement">create_role_statement</strong> ::=  CREATE ROLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
-                               [ WITH <a class="reference internal" href="#grammar-token-role_options"><code class="xref docutils literal"><span class="pre">role_options</span></code></a> ]
-<strong id="grammar-token-role_options">role_options         </strong> ::=  <a class="reference internal" href="#grammar-token-role_option"><code class="xref docutils literal"><span class="pre">role_option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-role_option"><code class="xref docutils literal"><span class="pre">role_option</span></code></a> )*
-<strong id="grammar-token-role_option">role_option          </strong> ::=  PASSWORD '=' <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
-                          | LOGIN '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal"><span class="pre">boolean</span></code></a>
-                          | SUPERUSER '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal"><span class="pre">boolean</span></code></a>
-                          | OPTIONS '=' <a class="reference internal" href="types.html#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a>
+<strong id="grammar-token-create-role-statement">create_role_statement</strong> ::=  CREATE ROLE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
+                               [ WITH <a class="reference internal" href="#grammar-token-role-options"><code class="xref docutils literal notranslate"><span class="pre">role_options</span></code></a> ]
+<strong id="grammar-token-role-options">role_options         </strong> ::=  <a class="reference internal" href="#grammar-token-role-option"><code class="xref docutils literal notranslate"><span class="pre">role_option</span></code></a> ( AND <a class="reference internal" href="#grammar-token-role-option"><code class="xref docutils literal notranslate"><span class="pre">role_option</span></code></a> )*
+<strong id="grammar-token-role-option">role_option          </strong> ::=  PASSWORD '=' <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
+                          | LOGIN '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal notranslate"><span class="pre">boolean</span></code></a>
+                          | SUPERUSER '=' <a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref docutils literal notranslate"><span class="pre">boolean</span></code></a>
+                          | OPTIONS '=' <a class="reference internal" href="types.html#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">new_role</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">new_role</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_b&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">carlos</span> <span class="k">WITH</span> <span class="k">OPTIONS</span> <span class="o">=</span> <span class="p">{</span> <span class="s1">&#39;custom_option1&#39;</span> <span class="p">:</span> <span class="s1">&#39;option1_value&#39;</span><span class="p">,</span> <span class="s1">&#39;custom_option2&#39;</span> <span class="p">:</span> <span class="mf">99</span> <span class="p">};</span>
 </pre></div>
 </div>
-<p>By default roles do not possess <code class="docutils literal"><span class="pre">LOGIN</span></code> privileges or <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status.</p>
+<p>By default roles do not possess <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privileges or <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status.</p>
 <p><a class="reference internal" href="#cql-permissions"><span class="std std-ref">Permissions</span></a> on database resources are granted to roles; types of resources include keyspaces,
 tables, functions and roles themselves. Roles may be granted to other roles to create hierarchical permissions
-structures; in these hierarchies, permissions and <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status are inherited, but the <code class="docutils literal"><span class="pre">LOGIN</span></code> privilege is
+structures; in these hierarchies, permissions and <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status are inherited, but the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privilege is
 not.</p>
-<p>If a role has the <code class="docutils literal"><span class="pre">LOGIN</span></code> privilege, clients may identify as that role when connecting. For the duration of that
+<p>If a role has the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privilege, clients may identify as that role when connecting. For the duration of that
 connection, the client will acquire any roles and privileges granted to that role.</p>
-<p>Only a client with with the <code class="docutils literal"><span class="pre">CREATE</span></code> permission on the database roles resource may issue <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> requests (see
-the <a class="reference internal" href="#cql-permissions"><span class="std std-ref">relevant section</span></a> below), unless the client is a <code class="docutils literal"><span class="pre">SUPERUSER</span></code>. Role management in Cassandra
+<p>Only a client with with the <code class="docutils literal notranslate"><span class="pre">CREATE</span></code> permission on the database roles resource may issue <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> requests (see
+the <a class="reference internal" href="#cql-permissions"><span class="std std-ref">relevant section</span></a> below), unless the client is a <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code>. Role management in Cassandra
 is pluggable and custom implementations may support only a subset of the listed options.</p>
 <p>Role names should be quoted if they contain non-alphanumeric characters.</p>
 <div class="section" id="setting-credentials-for-internal-authentication">
 <span id="id1"></span><h4>Setting credentials for internal authentication<a class="headerlink" href="#setting-credentials-for-internal-authentication" title="Permalink to this headline">¶</a></h4>
-<p>Use the <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code> clause to set a password for internal authentication, enclosing the password in single
+<p>Use the <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code> clause to set a password for internal authentication, enclosing the password in single
 quotation marks.</p>
-<p>If internal authentication has not been set up or the role does not have <code class="docutils literal"><span class="pre">LOGIN</span></code> privileges, the <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code>
+<p>If internal authentication has not been set up or the role does not have <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privileges, the <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">PASSWORD</span></code>
 clause is not necessary.</p>
 </div>
 <div class="section" id="creating-a-role-conditionally">
 <h4>Creating a role conditionally<a class="headerlink" href="#creating-a-role-conditionally" title="Permalink to this headline">¶</a></h4>
-<p>Attempting to create an existing role results in an invalid query condition unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used.
+<p>Attempting to create an existing role results in an invalid query condition unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used.
 If the option is used and the role exists, the statement is a no-op:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">other_role</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">other_role</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="k">IF</span> <span class="k">NOT</span> <span class="k">EXISTS</span> <span class="n">other_role</span><span class="p">;</span>
 </pre></div>
 </div>
@@ -224,49 +224,49 @@
 </div>
 <div class="section" id="alter-role">
 <span id="alter-role-statement"></span><h3>ALTER ROLE<a class="headerlink" href="#alter-role" title="Permalink to this headline">¶</a></h3>
-<p>Altering a role options uses the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Altering a role options uses the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_role_statement">alter_role_statement</strong> ::=  ALTER ROLE <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-role_options"><code class="xref docutils literal"><span class="pre">role_options</span></code></a>
+<strong id="grammar-token-alter-role-statement">alter_role_statement</strong> ::=  ALTER ROLE <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> WITH <a class="reference internal" href="#grammar-token-role-options"><code class="xref docutils literal notranslate"><span class="pre">role_options</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">ROLE</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;PASSWORD_B&#39;</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">ROLE</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;PASSWORD_B&#39;</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Conditions on executing <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statements:</p>
+<p>Conditions on executing <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> statements:</p>
 <ul class="simple">
-<li>A client must have <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status to alter the <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status of another role</li>
-<li>A client cannot alter the <code class="docutils literal"><span class="pre">SUPERUSER</span></code> status of any role it currently holds</li>
-<li>A client can only modify certain properties of the role with which it identified at login (e.g. <code class="docutils literal"><span class="pre">PASSWORD</span></code>)</li>
-<li>To modify properties of a role, the client must be granted <code class="docutils literal"><span class="pre">ALTER</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on that role</li>
+<li>A client must have <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status to alter the <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status of another role</li>
+<li>A client cannot alter the <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> status of any role it currently holds</li>
+<li>A client can only modify certain properties of the role with which it identified at login (e.g. <code class="docutils literal notranslate"><span class="pre">PASSWORD</span></code>)</li>
+<li>To modify properties of a role, the client must be granted <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on that role</li>
 </ul>
 </div>
 <div class="section" id="drop-role">
 <span id="drop-role-statement"></span><h3>DROP ROLE<a class="headerlink" href="#drop-role" title="Permalink to this headline">¶</a></h3>
-<p>Dropping a role uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Dropping a role uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_role_statement">drop_role_statement</strong> ::=  DROP ROLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-drop-role-statement">drop_role_statement</strong> ::=  DROP ROLE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
-<p><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> requires the client to have <code class="docutils literal"><span class="pre">DROP</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on the role in question. In
-addition, client may not <code class="docutils literal"><span class="pre">DROP</span></code> the role with which it identified at login. Finally, only a client with <code class="docutils literal"><span class="pre">SUPERUSER</span></code>
-status may <code class="docutils literal"><span class="pre">DROP</span></code> another <code class="docutils literal"><span class="pre">SUPERUSER</span></code> role.</p>
-<p>Attempting to drop a role which does not exist results in an invalid query condition unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> option is
+<p><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> requires the client to have <code class="docutils literal notranslate"><span class="pre">DROP</span></code> <a class="reference internal" href="#cql-permissions"><span class="std std-ref">permission</span></a> on the role in question. In
+addition, client may not <code class="docutils literal notranslate"><span class="pre">DROP</span></code> the role with which it identified at login. Finally, only a client with <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code>
+status may <code class="docutils literal notranslate"><span class="pre">DROP</span></code> another <code class="docutils literal notranslate"><span class="pre">SUPERUSER</span></code> role.</p>
+<p>Attempting to drop a role which does not exist results in an invalid query condition unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> option is
 used. If the option is used and the role does not exist the statement is a no-op.</p>
 </div>
 <div class="section" id="grant-role">
 <span id="grant-role-statement"></span><h3>GRANT ROLE<a class="headerlink" href="#grant-role" title="Permalink to this headline">¶</a></h3>
-<p>Granting a role to another uses the <code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Granting a role to another uses the <code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-grant_role_statement">grant_role_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> TO <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-grant-role-statement">grant_role_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> TO <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">report_writer</span> <span class="k">TO</span> <span class="n">alice</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">report_writer</span> <span class="k">TO</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This statement grants the <code class="docutils literal"><span class="pre">report_writer</span></code> role to <code class="docutils literal"><span class="pre">alice</span></code>. Any permissions granted to <code class="docutils literal"><span class="pre">report_writer</span></code> are also
-acquired by <code class="docutils literal"><span class="pre">alice</span></code>.</p>
+<p>This statement grants the <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role to <code class="docutils literal notranslate"><span class="pre">alice</span></code>. Any permissions granted to <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> are also
+acquired by <code class="docutils literal notranslate"><span class="pre">alice</span></code>.</p>
 <p>Roles are modelled as a directed acyclic graph, so circular grants are not permitted. The following examples result in
 error conditions:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">role_a</span> <span class="k">TO</span> <span class="n">role_b</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="n">role_a</span> <span class="k">TO</span> <span class="n">role_b</span><span class="p">;</span>
 <span class="k">GRANT</span> <span class="n">role_b</span> <span class="k">TO</span> <span class="n">role_a</span><span class="p">;</span>
 
 <span class="k">GRANT</span> <span class="n">role_a</span> <span class="k">TO</span> <span class="n">role_b</span><span class="p">;</span>
@@ -277,105 +277,105 @@
 </div>
 <div class="section" id="revoke-role">
 <span id="revoke-role-statement"></span><h3>REVOKE ROLE<a class="headerlink" href="#revoke-role" title="Permalink to this headline">¶</a></h3>
-<p>Revoking a role uses the <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> statement:</p>
+<p>Revoking a role uses the <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-revoke_role_statement">revoke_role_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> FROM <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-revoke-role-statement">revoke_role_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> FROM <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="n">report_writer</span> <span class="k">FROM</span> <span class="n">alice</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="n">report_writer</span> <span class="k">FROM</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This statement revokes the <code class="docutils literal"><span class="pre">report_writer</span></code> role from <code class="docutils literal"><span class="pre">alice</span></code>. Any permissions that <code class="docutils literal"><span class="pre">alice</span></code> has acquired via the
-<code class="docutils literal"><span class="pre">report_writer</span></code> role are also revoked.</p>
+<p>This statement revokes the <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role from <code class="docutils literal notranslate"><span class="pre">alice</span></code>. Any permissions that <code class="docutils literal notranslate"><span class="pre">alice</span></code> has acquired via the
+<code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role are also revoked.</p>
 </div>
 <div class="section" id="list-roles">
 <span id="list-roles-statement"></span><h3>LIST ROLES<a class="headerlink" href="#list-roles" title="Permalink to this headline">¶</a></h3>
-<p>All the known roles (in the system or granted to specific role) can be listed using the <code class="docutils literal"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> statement:</p>
+<p>All the known roles (in the system or granted to specific role) can be listed using the <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-list_roles_statement">list_roles_statement</strong> ::=  LIST ROLES [ OF <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> ] [ NORECURSIVE ]
+<strong id="grammar-token-list-roles-statement">list_roles_statement</strong> ::=  LIST ROLES [ OF <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> ] [ NORECURSIVE ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>returns all known roles in the system, this requires <code class="docutils literal"><span class="pre">DESCRIBE</span></code> permission on the database roles resource. And:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
+<p>returns all known roles in the system, this requires <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code> permission on the database roles resource. And:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>enumerates all roles granted to <code class="docutils literal"><span class="pre">alice</span></code>, including those transitively acquired. But:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">bob</span> <span class="k">NORECURSIVE</span>
+<p>enumerates all roles granted to <code class="docutils literal notranslate"><span class="pre">alice</span></code>, including those transitively acquired. But:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span> <span class="k">OF</span> <span class="n">bob</span> <span class="k">NORECURSIVE</span>
 </pre></div>
 </div>
-<p>lists all roles directly granted to <code class="docutils literal"><span class="pre">bob</span></code> without including any of the transitively acquired ones.</p>
+<p>lists all roles directly granted to <code class="docutils literal notranslate"><span class="pre">bob</span></code> without including any of the transitively acquired ones.</p>
 </div>
 </div>
 <div class="section" id="users">
 <h2>Users<a class="headerlink" href="#users" title="Permalink to this headline">¶</a></h2>
 <p>Prior to the introduction of roles in Cassandra 2.2, authentication and authorization were based around the concept of a
-<code class="docutils literal"><span class="pre">USER</span></code>. For backward compatibility, the legacy syntax has been preserved with <code class="docutils literal"><span class="pre">USER</span></code> centric statements becoming
-synonyms for the <code class="docutils literal"><span class="pre">ROLE</span></code> based equivalents. In other words, creating/updating a user is just a different syntax for
+<code class="docutils literal notranslate"><span class="pre">USER</span></code>. For backward compatibility, the legacy syntax has been preserved with <code class="docutils literal notranslate"><span class="pre">USER</span></code> centric statements becoming
+synonyms for the <code class="docutils literal notranslate"><span class="pre">ROLE</span></code> based equivalents. In other words, creating/updating a user is just a different syntax for
 creating/updating a role.</p>
 <div class="section" id="create-user">
 <span id="create-user-statement"></span><h3>CREATE USER<a class="headerlink" href="#create-user" title="Permalink to this headline">¶</a></h3>
-<p>Creating a user uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">USER</span></code> statement:</p>
+<p>Creating a user uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">USER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_user_statement">create_user_statement</strong> ::=  CREATE USER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user_option"><code class="xref docutils literal"><span class="pre">user_option</span></code></a> ]
-<strong id="grammar-token-user_option">user_option          </strong> ::=  SUPERUSER | NOSUPERUSER
+<strong id="grammar-token-create-user-statement">create_user_statement</strong> ::=  CREATE USER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user-option"><code class="xref docutils literal notranslate"><span class="pre">user_option</span></code></a> ]
+<strong id="grammar-token-user-option">user_option          </strong> ::=  SUPERUSER | NOSUPERUSER
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">bob</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_b&#39;</span> <span class="k">NOSUPERUSER</span><span class="p">;</span>
 </pre></div>
 </div>
-<p><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">USER</span></code> is equivalent to <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> where the <code class="docutils literal"><span class="pre">LOGIN</span></code> option is <code class="docutils literal"><span class="pre">true</span></code>. So, the following pairs of
+<p><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">USER</span></code> is equivalent to <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> where the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> option is <code class="docutils literal notranslate"><span class="pre">true</span></code>. So, the following pairs of
 statements are equivalent:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 
-<span class="k">CREATE</span> <span class="k">USER</span> <span class="k">IF</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
-<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="k">IF</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">USER</span> <span class="k">IF</span> <span class="k">NOT</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">SUPERUSER</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="k">IF</span> <span class="k">NOT</span> <span class="k">EXISTS</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">NOSUPERUSER</span><span class="p">;</span>
 <span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span> <span class="k">AND</span> <span class="k">SUPERUSER</span> <span class="o">=</span> <span class="n">false</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">NOSUPERUSER</span><span class="p">;</span>
-<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">WITH</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 
 <span class="k">CREATE</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;password_a&#39;</span><span class="p">;</span>
-<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">WITH</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
+<span class="k">CREATE</span> <span class="k">ROLE</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="o">=</span> <span class="s1">&#39;password_a&#39;</span> <span class="k">AND</span> <span class="k">LOGIN</span> <span class="o">=</span> <span class="n">true</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="alter-user">
 <span id="alter-user-statement"></span><h3>ALTER USER<a class="headerlink" href="#alter-user" title="Permalink to this headline">¶</a></h3>
-<p>Altering the options of a user uses the <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">USER</span></code> statement:</p>
+<p>Altering the options of a user uses the <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">USER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_user_statement">alter_user_statement</strong> ::=  ALTER USER <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user_option"><code class="xref docutils literal"><span class="pre">user_option</span></code></a> ]
+<strong id="grammar-token-alter-user-statement">alter_user_statement</strong> ::=  ALTER USER <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> [ WITH PASSWORD <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a> ] [ <a class="reference internal" href="#grammar-token-user-option"><code class="xref docutils literal notranslate"><span class="pre">user_option</span></code></a> ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;PASSWORD_A&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">USER</span> <span class="n">alice</span> <span class="k">WITH</span> <span class="k">PASSWORD</span> <span class="s1">&#39;PASSWORD_A&#39;</span><span class="p">;</span>
 <span class="k">ALTER</span> <span class="k">USER</span> <span class="n">bob</span> <span class="k">SUPERUSER</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
 <div class="section" id="drop-user">
 <span id="drop-user-statement"></span><h3>DROP USER<a class="headerlink" href="#drop-user" title="Permalink to this headline">¶</a></h3>
-<p>Dropping a user uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">USER</span></code> statement:</p>
+<p>Dropping a user uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">USER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_user_statement">drop_user_statement</strong> ::=  DROP USER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-drop-user-statement">drop_user_statement</strong> ::=  DROP USER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 </div>
 <div class="section" id="list-users">
 <span id="list-users-statement"></span><h3>LIST USERS<a class="headerlink" href="#list-users" title="Permalink to this headline">¶</a></h3>
-<p>Existing users can be listed using the <code class="docutils literal"><span class="pre">LIST</span> <span class="pre">USERS</span></code> statement:</p>
+<p>Existing users can be listed using the <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">USERS</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-list_users_statement">list_users_statement</strong> ::=  LIST USERS
+<strong id="grammar-token-list-users-statement">list_users_statement</strong> ::=  LIST USERS
 </pre>
 <p>Note that this statement is equivalent to:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ROLES</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>but only roles with the <code class="docutils literal"><span class="pre">LOGIN</span></code> privilege are included in the output.</p>
+<p>but only roles with the <code class="docutils literal notranslate"><span class="pre">LOGIN</span></code> privilege are included in the output.</p>
 </div>
 </div>
 <div class="section" id="data-control">
@@ -385,33 +385,33 @@
 <p>Permissions on resources are granted to roles; there are several different types of resources in Cassandra and each type
 is modelled hierarchically:</p>
 <ul class="simple">
-<li>The hierarchy of Data resources, Keyspaces and Tables has the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code> -&gt; <code class="docutils literal"><span class="pre">KEYSPACE</span></code> -&gt;
-<code class="docutils literal"><span class="pre">TABLE</span></code>.</li>
-<li>Function resources have the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> -&gt; <code class="docutils literal"><span class="pre">KEYSPACE</span></code> -&gt; <code class="docutils literal"><span class="pre">FUNCTION</span></code></li>
-<li>Resources representing roles have the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code> -&gt; <code class="docutils literal"><span class="pre">ROLE</span></code></li>
-<li>Resources representing JMX ObjectNames, which map to sets of MBeans/MXBeans, have the structure <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code> -&gt;
-<code class="docutils literal"><span class="pre">MBEAN</span></code></li>
+<li>The hierarchy of Data resources, Keyspaces and Tables has the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code> -&gt;
+<code class="docutils literal notranslate"><span class="pre">TABLE</span></code>.</li>
+<li>Function resources have the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></li>
+<li>Resources representing roles have the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">ROLE</span></code></li>
+<li>Resources representing JMX ObjectNames, which map to sets of MBeans/MXBeans, have the structure <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code> -&gt;
+<code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></li>
 </ul>
 <p>Permissions can be granted at any level of these hierarchies and they flow downwards. So granting a permission on a
 resource higher up the chain automatically grants that same permission on all resources lower down. For example,
-granting <code class="docutils literal"><span class="pre">SELECT</span></code> on a <code class="docutils literal"><span class="pre">KEYSPACE</span></code> automatically grants it on all <code class="docutils literal"><span class="pre">TABLES</span></code> in that <code class="docutils literal"><span class="pre">KEYSPACE</span></code>. Likewise, granting
-a permission on <code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> grants it on every defined function, regardless of which keyspace it is scoped in. It
+granting <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on a <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code> automatically grants it on all <code class="docutils literal notranslate"><span class="pre">TABLES</span></code> in that <code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code>. Likewise, granting
+a permission on <code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code> grants it on every defined function, regardless of which keyspace it is scoped in. It
 is also possible to grant permissions on all functions scoped to a particular keyspace.</p>
 <p>Modifications to permissions are visible to existing client sessions; that is, connections need not be re-established
 following permissions changes.</p>
 <p>The full set of available permissions is:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">CREATE</span></code></li>
-<li><code class="docutils literal"><span class="pre">ALTER</span></code></li>
-<li><code class="docutils literal"><span class="pre">DROP</span></code></li>
-<li><code class="docutils literal"><span class="pre">SELECT</span></code></li>
-<li><code class="docutils literal"><span class="pre">MODIFY</span></code></li>
-<li><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></li>
-<li><code class="docutils literal"><span class="pre">DESCRIBE</span></code></li>
-<li><code class="docutils literal"><span class="pre">EXECUTE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">DROP</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></li>
 </ul>
-<p>Not all permissions are applicable to every type of resource. For instance, <code class="docutils literal"><span class="pre">EXECUTE</span></code> is only relevant in the context
-of functions or mbeans; granting <code class="docutils literal"><span class="pre">EXECUTE</span></code> on a resource representing a table is nonsensical. Attempting to <code class="docutils literal"><span class="pre">GRANT</span></code>
+<p>Not all permissions are applicable to every type of resource. For instance, <code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code> is only relevant in the context
+of functions or mbeans; granting <code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code> on a resource representing a table is nonsensical. Attempting to <code class="docutils literal notranslate"><span class="pre">GRANT</span></code>
 a permission on resource to which it cannot be applied results in an error response. The following illustrates which
 permissions can be granted on which types of resource, and which statements are enabled by that permission.</p>
 <table border="1" class="docutils">
@@ -427,230 +427,230 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in any keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> in any keyspace and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in any
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> in any keyspace and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in any
 keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">CREATE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">CREATE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in any keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing any existing</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing any existing</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing in
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing in
 specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code>: replacing existing</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> on any role</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code> on any role</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ALTER</span></code></td>
-<td><code class="docutils literal"><span class="pre">ROLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ALTER</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ROLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">ROLE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in any keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">KEYSPACE</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TABLE</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in any keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in any keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code> and <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">AGGREGATE</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">FUNCTION</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> on any role</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code> on any role</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DROP</span></code></td>
-<td><code class="docutils literal"><span class="pre">ROLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">DROP</span> <span class="pre">ROLE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DROP</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ROLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">ROLE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code> on any table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on any table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code> on any table in specified keyspace</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on any table in specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code> on specified table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code> on specified table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
 <td>Call getter methods on any mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Call getter methods on any mbean matching a wildcard pattern</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">SELECT</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
 <td>Call getter methods on named mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> on any table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> on any table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> on any table in
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> on any table in
 specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code> and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> on specified table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> on specified table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
 <td>Call setter methods on any mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Call setter methods on any mbean matching a wildcard pattern</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">MODIFY</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">MODIFY</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
 <td>Call setter methods on named mbean</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">KEYSPACES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table in
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any table in
 specified keyspace</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">TABLE</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified table</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">TABLE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified table</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any function</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any function</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> in specified keyspace</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> in specified keyspace</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified function</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on specified function</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean matching
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on any mbean matching
 a wildcard pattern</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on named mbean</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> on named mbean</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on any role</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on any role</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">AUTHORIZE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on specified roles</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">AUTHORIZE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ROLE</span></code> and <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">ROLE</span></code> on specified roles</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
-<td><code class="docutils literal"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> on all roles or only roles granted to another,
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">ROLES</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">ROLES</span></code> on all roles or only roles granted to another,
 specified role</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
-<td>Retrieve metadata about any mbean from the platform&#8217;s MBeanServer</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<td>Retrieve metadata about any mbean from the platform’s MBeanServer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Retrieve metadata about any mbean matching a wildcard patter from the
-platform&#8217;s MBeanServer</td>
+platform’s MBeanServer</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">DESCRIBE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
-<td>Retrieve metadata about a named mbean from the platform&#8217;s MBeanServer</td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
+<td>Retrieve metadata about a named mbean from the platform’s MBeanServer</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> using any function, and use of
-any function in <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> using any function, and use of
+any function in <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> using any function in specified
-keyspace and use of any function in keyspace in <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">FUNCTIONS</span> <span class="pre">IN</span> <span class="pre">KEYSPACE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> using any function in specified
+keyspace and use of any function in keyspace in <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">FUNCTION</span></code></td>
-<td><code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> using specified function and use
-of the function in <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">FUNCTION</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> using specified function and use
+of the function in <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">ALL</span> <span class="pre">MBEANS</span></code></td>
 <td>Execute operations on any mbean</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEANS</span></code></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEANS</span></code></td>
 <td>Execute operations on any mbean matching a wildcard pattern</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">EXECUTE</span></code></td>
-<td><code class="docutils literal"><span class="pre">MBEAN</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">EXECUTE</span></code></td>
+<td><code class="docutils literal notranslate"><span class="pre">MBEAN</span></code></td>
 <td>Execute operations on named mbean</td>
 </tr>
 </tbody>
@@ -658,66 +658,66 @@
 </div>
 <div class="section" id="grant-permission">
 <span id="grant-permission-statement"></span><h3>GRANT PERMISSION<a class="headerlink" href="#grant-permission" title="Permalink to this headline">¶</a></h3>
-<p>Granting a permission uses the <code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> statement:</p>
+<p>Granting a permission uses the <code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">PERMISSION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-grant_permission_statement">grant_permission_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal"><span class="pre">resource</span></code></a> TO <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
-<strong id="grammar-token-permissions">permissions               </strong> ::=  ALL [ PERMISSIONS ] | <a class="reference internal" href="#grammar-token-permission"><code class="xref docutils literal"><span class="pre">permission</span></code></a> [ PERMISSION ]
+<strong id="grammar-token-grant-permission-statement">grant_permission_statement</strong> ::=  GRANT <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal notranslate"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal notranslate"><span class="pre">resource</span></code></a> TO <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-permissions">permissions               </strong> ::=  ALL [ PERMISSIONS ] | <a class="reference internal" href="#grammar-token-permission"><code class="xref docutils literal notranslate"><span class="pre">permission</span></code></a> [ PERMISSION ]
 <strong id="grammar-token-permission">permission                </strong> ::=  CREATE | ALTER | DROP | SELECT | MODIFY | AUTHORIZE | DESCRIBE | EXECUTE
 <strong id="grammar-token-resource">resource                  </strong> ::=  ALL KEYSPACES
-                               | KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a>
-                               | [ TABLE ] <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+                               | KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a>
+                               | [ TABLE ] <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
                                | ALL ROLES
-                               | ROLE <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
-                               | ALL FUNCTIONS [ IN KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> ]
-                               | FUNCTION <a class="reference internal" href="functions.html#grammar-token-function_name"><code class="xref docutils literal"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )* ] ')'
+                               | ROLE <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
+                               | ALL FUNCTIONS [ IN KEYSPACE <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> ]
+                               | FUNCTION <a class="reference internal" href="functions.html#grammar-token-function-name"><code class="xref docutils literal notranslate"><span class="pre">function_name</span></code></a> '(' [ <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="types.html#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )* ] ')'
                                | ALL MBEANS
-                               | ( MBEAN | MBEANS ) <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+                               | ( MBEAN | MBEANS ) <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">TO</span> <span class="n">data_reader</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">TO</span> <span class="n">data_reader</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This gives any user with the role <code class="docutils literal"><span class="pre">data_reader</span></code> permission to execute <code class="docutils literal"><span class="pre">SELECT</span></code> statements on any table across all
+<p>This gives any user with the role <code class="docutils literal notranslate"><span class="pre">data_reader</span></code> permission to execute <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> statements on any table across all
 keyspaces:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">MODIFY</span> <span class="k">ON</span> <span class="k">KEYSPACE</span> <span class="n">keyspace1</span> <span class="k">TO</span> <span class="n">data_writer</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">MODIFY</span> <span class="k">ON</span> <span class="k">KEYSPACE</span> <span class="n">keyspace1</span> <span class="k">TO</span> <span class="n">data_writer</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This give any user with the role <code class="docutils literal"><span class="pre">data_writer</span></code> permission to perform <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code>, <code class="docutils literal"><span class="pre">DELETE</span></code>
-and <code class="docutils literal"><span class="pre">TRUNCATE</span></code> queries on all tables in the <code class="docutils literal"><span class="pre">keyspace1</span></code> keyspace:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DROP</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">TO</span> <span class="n">schema_owner</span><span class="p">;</span>
+<p>This give any user with the role <code class="docutils literal notranslate"><span class="pre">data_writer</span></code> permission to perform <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, <code class="docutils literal notranslate"><span class="pre">DELETE</span></code>
+and <code class="docutils literal notranslate"><span class="pre">TRUNCATE</span></code> queries on all tables in the <code class="docutils literal notranslate"><span class="pre">keyspace1</span></code> keyspace:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DROP</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">TO</span> <span class="n">schema_owner</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This gives any user with the <code class="docutils literal"><span class="pre">schema_owner</span></code> role permissions to <code class="docutils literal"><span class="pre">DROP</span></code> <code class="docutils literal"><span class="pre">keyspace1.table1</span></code>:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">EXECUTE</span> <span class="k">ON</span> <span class="k">FUNCTION</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">user_function</span><span class="p">(</span> <span class="nb">int</span> <span class="p">)</span> <span class="k">TO</span> <span class="n">report_writer</span><span class="p">;</span>
+<p>This gives any user with the <code class="docutils literal notranslate"><span class="pre">schema_owner</span></code> role permissions to <code class="docutils literal notranslate"><span class="pre">DROP</span></code> <code class="docutils literal notranslate"><span class="pre">keyspace1.table1</span></code>:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">EXECUTE</span> <span class="k">ON</span> <span class="k">FUNCTION</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">user_function</span><span class="p">(</span> <span class="nb">int</span> <span class="p">)</span> <span class="k">TO</span> <span class="n">report_writer</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This grants any user with the <code class="docutils literal"><span class="pre">report_writer</span></code> role permission to execute <code class="docutils literal"><span class="pre">SELECT</span></code>, <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code> queries
-which use the function <code class="docutils literal"><span class="pre">keyspace1.user_function(</span> <span class="pre">int</span> <span class="pre">)</span></code>:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DESCRIBE</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">ROLES</span> <span class="k">TO</span> <span class="n">role_admin</span><span class="p">;</span>
+<p>This grants any user with the <code class="docutils literal notranslate"><span class="pre">report_writer</span></code> role permission to execute <code class="docutils literal notranslate"><span class="pre">SELECT</span></code>, <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> queries
+which use the function <code class="docutils literal notranslate"><span class="pre">keyspace1.user_function(</span> <span class="pre">int</span> <span class="pre">)</span></code>:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">GRANT</span> <span class="k">DESCRIBE</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">ROLES</span> <span class="k">TO</span> <span class="n">role_admin</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>This grants any user with the <code class="docutils literal"><span class="pre">role_admin</span></code> role permission to view any and all roles in the system with a <code class="docutils literal"><span class="pre">LIST</span>
+<p>This grants any user with the <code class="docutils literal notranslate"><span class="pre">role_admin</span></code> role permission to view any and all roles in the system with a <code class="docutils literal notranslate"><span class="pre">LIST</span>
 <span class="pre">ROLES</span></code> statement</p>
 <div class="section" id="grant-all">
 <span id="id2"></span><h4>GRANT ALL<a class="headerlink" href="#grant-all" title="Permalink to this headline">¶</a></h4>
-<p>When the <code class="docutils literal"><span class="pre">GRANT</span> <span class="pre">ALL</span></code> form is used, the appropriate set of permissions is determined automatically based on the target
+<p>When the <code class="docutils literal notranslate"><span class="pre">GRANT</span> <span class="pre">ALL</span></code> form is used, the appropriate set of permissions is determined automatically based on the target
 resource.</p>
 </div>
 <div class="section" id="automatic-granting">
 <h4>Automatic Granting<a class="headerlink" href="#automatic-granting" title="Permalink to this headline">¶</a></h4>
-<p>When a resource is created, via a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code>, <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code>, <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code>, <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> or
-<code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement, the creator (the role the database user who issues the statement is identified as), is
+<p>When a resource is created, via a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">KEYSPACE</span></code>, <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code>, <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">FUNCTION</span></code>, <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">AGGREGATE</span></code> or
+<code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">ROLE</span></code> statement, the creator (the role the database user who issues the statement is identified as), is
 automatically granted all applicable permissions on the new resource.</p>
 </div>
 </div>
 <div class="section" id="revoke-permission">
 <span id="revoke-permission-statement"></span><h3>REVOKE PERMISSION<a class="headerlink" href="#revoke-permission" title="Permalink to this headline">¶</a></h3>
-<p>Revoking a permission from a role uses the <code class="docutils literal"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> statement:</p>
+<p>Revoking a permission from a role uses the <code class="docutils literal notranslate"><span class="pre">REVOKE</span> <span class="pre">PERMISSION</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-revoke_permission_statement">revoke_permission_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal"><span class="pre">resource</span></code></a> FROM <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a>
+<strong id="grammar-token-revoke-permission-statement">revoke_permission_statement</strong> ::=  REVOKE <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal notranslate"><span class="pre">permissions</span></code></a> ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal notranslate"><span class="pre">resource</span></code></a> FROM <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">FROM</span> <span class="n">data_reader</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">REVOKE</span> <span class="k">SELECT</span> <span class="k">ON</span> <span class="k">ALL</span> <span class="k">KEYSPACES</span> <span class="k">FROM</span> <span class="n">data_reader</span><span class="p">;</span>
 <span class="k">REVOKE</span> <span class="k">MODIFY</span> <span class="k">ON</span> <span class="k">KEYSPACE</span> <span class="n">keyspace1</span> <span class="k">FROM</span> <span class="n">data_writer</span><span class="p">;</span>
 <span class="k">REVOKE</span> <span class="k">DROP</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">FROM</span> <span class="n">schema_owner</span><span class="p">;</span>
 <span class="k">REVOKE</span> <span class="k">EXECUTE</span> <span class="k">ON</span> <span class="k">FUNCTION</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">user_function</span><span class="p">(</span> <span class="nb">int</span> <span class="p">)</span> <span class="k">FROM</span> <span class="n">report_writer</span><span class="p">;</span>
@@ -727,27 +727,27 @@
 </div>
 <div class="section" id="list-permissions">
 <span id="list-permissions-statement"></span><h3>LIST PERMISSIONS<a class="headerlink" href="#list-permissions" title="Permalink to this headline">¶</a></h3>
-<p>Listing granted permissions uses the <code class="docutils literal"><span class="pre">LIST</span> <span class="pre">PERMISSIONS</span></code> statement:</p>
+<p>Listing granted permissions uses the <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">PERMISSIONS</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-list_permissions_statement">list_permissions_statement</strong> ::=  LIST <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal"><span class="pre">permissions</span></code></a> [ ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal"><span class="pre">resource</span></code></a> ] [ OF <a class="reference internal" href="#grammar-token-role_name"><code class="xref docutils literal"><span class="pre">role_name</span></code></a> [ NORECURSIVE ] ]
+<strong id="grammar-token-list-permissions-statement">list_permissions_statement</strong> ::=  LIST <a class="reference internal" href="#grammar-token-permissions"><code class="xref docutils literal notranslate"><span class="pre">permissions</span></code></a> [ ON <a class="reference internal" href="#grammar-token-resource"><code class="xref docutils literal notranslate"><span class="pre">resource</span></code></a> ] [ OF <a class="reference internal" href="#grammar-token-role-name"><code class="xref docutils literal notranslate"><span class="pre">role_name</span></code></a> [ NORECURSIVE ] ]
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">alice</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Show all permissions granted to <code class="docutils literal"><span class="pre">alice</span></code>, including those acquired transitively from any other roles:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">OF</span> <span class="n">bob</span><span class="p">;</span>
+<p>Show all permissions granted to <code class="docutils literal notranslate"><span class="pre">alice</span></code>, including those acquired transitively from any other roles:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">ALL</span> <span class="k">PERMISSIONS</span> <span class="k">ON</span> <span class="n">keyspace1</span><span class="mf">.</span><span class="n">table1</span> <span class="k">OF</span> <span class="n">bob</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Show all permissions on <code class="docutils literal"><span class="pre">keyspace1.table1</span></code> granted to <code class="docutils literal"><span class="pre">bob</span></code>, including those acquired transitively from any other
-roles. This also includes any permissions higher up the resource hierarchy which can be applied to <code class="docutils literal"><span class="pre">keyspace1.table1</span></code>.
-For example, should <code class="docutils literal"><span class="pre">bob</span></code> have <code class="docutils literal"><span class="pre">ALTER</span></code> permission on <code class="docutils literal"><span class="pre">keyspace1</span></code>, that would be included in the results of this
-query. Adding the <code class="docutils literal"><span class="pre">NORECURSIVE</span></code> switch restricts the results to only those permissions which were directly granted to
-<code class="docutils literal"><span class="pre">bob</span></code> or one of <code class="docutils literal"><span class="pre">bob</span></code>&#8216;s roles:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">SELECT</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">carlos</span><span class="p">;</span>
+<p>Show all permissions on <code class="docutils literal notranslate"><span class="pre">keyspace1.table1</span></code> granted to <code class="docutils literal notranslate"><span class="pre">bob</span></code>, including those acquired transitively from any other
+roles. This also includes any permissions higher up the resource hierarchy which can be applied to <code class="docutils literal notranslate"><span class="pre">keyspace1.table1</span></code>.
+For example, should <code class="docutils literal notranslate"><span class="pre">bob</span></code> have <code class="docutils literal notranslate"><span class="pre">ALTER</span></code> permission on <code class="docutils literal notranslate"><span class="pre">keyspace1</span></code>, that would be included in the results of this
+query. Adding the <code class="docutils literal notranslate"><span class="pre">NORECURSIVE</span></code> switch restricts the results to only those permissions which were directly granted to
+<code class="docutils literal notranslate"><span class="pre">bob</span></code> or one of <code class="docutils literal notranslate"><span class="pre">bob</span></code>’s roles:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">LIST</span> <span class="k">SELECT</span> <span class="k">PERMISSIONS</span> <span class="k">OF</span> <span class="n">carlos</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Show any permissions granted to <code class="docutils literal"><span class="pre">carlos</span></code> or any of <code class="docutils literal"><span class="pre">carlos</span></code>&#8216;s roles, limited to <code class="docutils literal"><span class="pre">SELECT</span></code> permissions on any
+<p>Show any permissions granted to <code class="docutils literal notranslate"><span class="pre">carlos</span></code> or any of <code class="docutils literal notranslate"><span class="pre">carlos</span></code>’s roles, limited to <code class="docutils literal notranslate"><span class="pre">SELECT</span></code> permissions on any
 resource.</p>
 </div>
 </div>
diff --git a/content/doc/stable/cql/triggers.html b/content/doc/stable/cql/triggers.html
index e014b14..7740b64 100644
--- a/content/doc/stable/cql/triggers.html
+++ b/content/doc/stable/cql/triggers.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Appendices" href="appendices.html"/> <link rel="prev" title="JSON Support" href="json.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Appendices" href="appendices.html"/> <link rel="prev" title="JSON Support" href="json.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -170,33 +170,33 @@
 <span id="cql-triggers"></span><h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this headline">¶</a></h1>
 <p>Triggers are identified by a name defined by:</p>
 <pre>
-<strong id="grammar-token-trigger_name">trigger_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-trigger-name">trigger_name</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <div class="section" id="create-trigger">
 <span id="create-trigger-statement"></span><h2>CREATE TRIGGER<a class="headerlink" href="#create-trigger" title="Permalink to this headline">¶</a></h2>
-<p>Creating a new trigger uses the <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TRIGGER</span></code> statement:</p>
+<p>Creating a new trigger uses the <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TRIGGER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-create_trigger_statement">create_trigger_statement</strong> ::=  CREATE TRIGGER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-trigger_name"><code class="xref docutils literal"><span class="pre">trigger_name</span></code></a>
-                                  ON <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
-                                  USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+<strong id="grammar-token-create-trigger-statement">create_trigger_statement</strong> ::=  CREATE TRIGGER [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-trigger-name"><code class="xref docutils literal notranslate"><span class="pre">trigger_name</span></code></a>
+                                  ON <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
+                                  USING <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span> <span class="k">USING</span> <span class="s1">&#39;org.apache.cassandra.triggers.InvertedIndex&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span> <span class="k">USING</span> <span class="s1">&#39;org.apache.cassandra.triggers.InvertedIndex&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 <p>The actual logic that makes up the trigger can be written in any Java (JVM) language and exists outside the database.
-You place the trigger code in a <code class="docutils literal"><span class="pre">lib/triggers</span></code> subdirectory of the Cassandra installation directory, it loads during
+You place the trigger code in a <code class="docutils literal notranslate"><span class="pre">lib/triggers</span></code> subdirectory of the Cassandra installation directory, it loads during
 cluster startup, and exists on every node that participates in a cluster. The trigger defined on a table fires before a
 requested DML statement occurs, which ensures the atomicity of the transaction.</p>
 </div>
 <div class="section" id="drop-trigger">
 <span id="drop-trigger-statement"></span><h2>DROP TRIGGER<a class="headerlink" href="#drop-trigger" title="Permalink to this headline">¶</a></h2>
-<p>Dropping a trigger uses the <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TRIGGER</span></code> statement:</p>
+<p>Dropping a trigger uses the <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TRIGGER</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_trigger_statement">drop_trigger_statement</strong> ::=  DROP TRIGGER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-trigger_name"><code class="xref docutils literal"><span class="pre">trigger_name</span></code></a> ON <a class="reference internal" href="ddl.html#grammar-token-table_name"><code class="xref docutils literal"><span class="pre">table_name</span></code></a>
+<strong id="grammar-token-drop-trigger-statement">drop_trigger_statement</strong> ::=  DROP TRIGGER [ IF EXISTS ] <a class="reference internal" href="#grammar-token-trigger-name"><code class="xref docutils literal notranslate"><span class="pre">trigger_name</span></code></a> ON <a class="reference internal" href="ddl.html#grammar-token-table-name"><code class="xref docutils literal notranslate"><span class="pre">table_name</span></code></a>
 </pre>
 <p>For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DROP</span> <span class="k">TRIGGER</span> <span class="n">myTrigger</span> <span class="k">ON</span> <span class="n">myTable</span><span class="p">;</span>
 </pre></div>
 </div>
 </div>
diff --git a/content/doc/stable/cql/types.html b/content/doc/stable/cql/types.html
index d1baf9e..1d1084d 100644
--- a/content/doc/stable/cql/types.html
+++ b/content/doc/stable/cql/types.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Definition" href="ddl.html"/> <link rel="prev" title="Definitions" href="definitions.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="The Cassandra Query Language (CQL)" href="index.html"/> <link rel="next" title="Data Definition" href="ddl.html"/> <link rel="prev" title="Definitions" href="definitions.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -179,13 +179,13 @@
 <a class="reference internal" href="#collections"><span class="std std-ref">collection types</span></a>, <a class="reference internal" href="#udts"><span class="std std-ref">user-defined types</span></a>, <a class="reference internal" href="#tuples"><span class="std std-ref">tuple types</span></a> and <a class="reference internal" href="#custom-types"><span class="std std-ref">custom
 types</span></a>:</p>
 <pre>
-<strong id="grammar-token-cql_type">cql_type</strong> ::=  <a class="reference internal" href="#grammar-token-native_type"><code class="xref docutils literal"><span class="pre">native_type</span></code></a> | <a class="reference internal" href="#grammar-token-collection_type"><code class="xref docutils literal"><span class="pre">collection_type</span></code></a> | <a class="reference internal" href="#grammar-token-user_defined_type"><code class="xref docutils literal"><span class="pre">user_defined_type</span></code></a> | <a class="reference internal" href="#grammar-token-tuple_type"><code class="xref docutils literal"><span class="pre">tuple_type</span></code></a> | <a class="reference internal" href="#grammar-token-custom_type"><code class="xref docutils literal"><span class="pre">custom_type</span></code></a>
+<strong id="grammar-token-cql-type">cql_type</strong> ::=  <a class="reference internal" href="#grammar-token-native-type"><code class="xref docutils literal notranslate"><span class="pre">native_type</span></code></a> | <a class="reference internal" href="#grammar-token-collection-type"><code class="xref docutils literal notranslate"><span class="pre">collection_type</span></code></a> | <a class="reference internal" href="#grammar-token-user-defined-type"><code class="xref docutils literal notranslate"><span class="pre">user_defined_type</span></code></a> | <a class="reference internal" href="#grammar-token-tuple-type"><code class="xref docutils literal notranslate"><span class="pre">tuple_type</span></code></a> | <a class="reference internal" href="#grammar-token-custom-type"><code class="xref docutils literal notranslate"><span class="pre">custom_type</span></code></a>
 </pre>
 <div class="section" id="native-types">
 <span id="id2"></span><h2>Native Types<a class="headerlink" href="#native-types" title="Permalink to this headline">¶</a></h2>
 <p>The native types supported by CQL are:</p>
 <pre>
-<strong id="grammar-token-native_type">native_type</strong> ::=  ASCII
+<strong id="grammar-token-native-type">native_type</strong> ::=  ASCII
                  | BIGINT
                  | BLOB
                  | BOOLEAN
@@ -221,112 +221,112 @@
 </tr>
 </thead>
 <tbody valign="top">
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">ascii</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">ascii</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>ASCII character string</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">bigint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">bigint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>64-bit signed long</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">blob</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal"><span class="pre">blob</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">blob</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal notranslate"><span class="pre">blob</span></code></a></td>
 <td>Arbitrary bytes (no validation)</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">boolean</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref std std-token docutils literal"><span class="pre">boolean</span></code></a></td>
-<td>Either <code class="docutils literal"><span class="pre">true</span></code> or <code class="docutils literal"><span class="pre">false</span></code></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">boolean</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-boolean"><code class="xref std std-token docutils literal notranslate"><span class="pre">boolean</span></code></a></td>
+<td>Either <code class="docutils literal notranslate"><span class="pre">true</span></code> or <code class="docutils literal notranslate"><span class="pre">false</span></code></td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">counter</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">counter</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>Counter column (64-bit signed value). See <a class="reference internal" href="#counters"><span class="std std-ref">Counters</span></a> for details</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">date</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">date</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>A date (with no corresponding time value). See <a class="reference internal" href="#dates"><span class="std std-ref">Working with dates</span></a> below for details</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">decimal</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal"><span class="pre">float</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">decimal</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal notranslate"><span class="pre">float</span></code></a></td>
 <td>Variable-precision decimal</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">double</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>
-<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal"><span class="pre">float</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">double</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>
+<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal notranslate"><span class="pre">float</span></code></a></td>
 <td>64-bit IEEE-754 floating point</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">duration</span></code></td>
-<td><code class="xref std std-token docutils literal"><span class="pre">duration</span></code>,</td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">duration</span></code></td>
+<td><code class="xref std std-token docutils literal notranslate"><span class="pre">duration</span></code>,</td>
 <td>A duration with nanosecond precision. See <a class="reference internal" href="#durations"><span class="std std-ref">Working with durations</span></a> below for details</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">float</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal"><span class="pre">float</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">float</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-float"><code class="xref std std-token docutils literal notranslate"><span class="pre">float</span></code></a></td>
 <td>32-bit IEEE-754 floating point</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">inet</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">inet</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>An IP address, either IPv4 (4 bytes long) or IPv6 (16 bytes long). Note that
-there is no <code class="docutils literal"><span class="pre">inet</span></code> constant, IP address should be input as strings</td>
+there is no <code class="docutils literal notranslate"><span class="pre">inet</span></code> constant, IP address should be input as strings</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">int</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">int</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>32-bit signed int</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">smallint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">smallint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>16-bit signed int</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">text</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">text</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>UTF8 encoded string</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">time</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">time</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>A time (with no corresponding date value) with nanosecond precision. See
 <a class="reference internal" href="#times"><span class="std std-ref">Working with times</span></a> below for details</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">timestamp</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>,
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">timestamp</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>,
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>A timestamp (date and time) with millisecond precision. See <a class="reference internal" href="#timestamps"><span class="std std-ref">Working with timestamps</span></a>
 below for details</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">timeuuid</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal"><span class="pre">uuid</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">timeuuid</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal notranslate"><span class="pre">uuid</span></code></a></td>
 <td>Version 1 <a class="reference external" href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a>, generally used as a “conflict-free” timestamp. Also see
 <a class="reference internal" href="functions.html#timeuuid-functions"><span class="std std-ref">Timeuuid functions</span></a></td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">tinyint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">tinyint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>8-bit signed int</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">uuid</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal"><span class="pre">uuid</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">uuid</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-uuid"><code class="xref std std-token docutils literal notranslate"><span class="pre">uuid</span></code></a></td>
 <td>A <a class="reference external" href="https://en.wikipedia.org/wiki/Universally_unique_identifier">UUID</a> (of any version)</td>
 </tr>
-<tr class="row-odd"><td><code class="docutils literal"><span class="pre">varchar</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a></td>
+<tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">varchar</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a></td>
 <td>UTF8 encoded string</td>
 </tr>
-<tr class="row-even"><td><code class="docutils literal"><span class="pre">varint</span></code></td>
-<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a></td>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">varint</span></code></td>
+<td><a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a></td>
 <td>Arbitrary-precision integer</td>
 </tr>
 </tbody>
 </table>
 <div class="section" id="counters">
 <span id="id3"></span><h3>Counters<a class="headerlink" href="#counters" title="Permalink to this headline">¶</a></h3>
-<p>The <code class="docutils literal"><span class="pre">counter</span></code> type is used to define <em>counter columns</em>. A counter column is a column whose value is a 64-bit signed
+<p>The <code class="docutils literal notranslate"><span class="pre">counter</span></code> type is used to define <em>counter columns</em>. A counter column is a column whose value is a 64-bit signed
 integer and on which 2 operations are supported: incrementing and decrementing (see the <a class="reference internal" href="dml.html#update-statement"><span class="std std-ref">UPDATE statement</span></a> for syntax). Note that the value of a counter cannot be set: a counter does not exist until first
 incremented/decremented, and that first increment/decrement is made as if the prior value was 0.</p>
 <p id="counter-limitations">Counters have a number of important limitations:</p>
 <ul class="simple">
-<li>They cannot be used for columns part of the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> of a table.</li>
+<li>They cannot be used for columns part of the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> of a table.</li>
 <li>A table that contains a counter can only contain counters. In other words, either all the columns of a table outside
-the <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> have the <code class="docutils literal"><span class="pre">counter</span></code> type, or none of them have it.</li>
+the <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code> have the <code class="docutils literal notranslate"><span class="pre">counter</span></code> type, or none of them have it.</li>
 <li>Counters do not support <span class="xref std std-ref">expiration</span>.</li>
 <li>The deletion of counters is supported, but is only guaranteed to work the first time you delete a counter. In other
 words, you should not re-update a counter that you have deleted (if you do, proper behavior is not guaranteed).</li>
@@ -339,53 +339,53 @@
 </div>
 <div class="section" id="working-with-timestamps">
 <span id="timestamps"></span><h2>Working with timestamps<a class="headerlink" href="#working-with-timestamps" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">timestamp</span></code> type are encoded as 64-bit signed integers representing a number of milliseconds since the
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> type are encoded as 64-bit signed integers representing a number of milliseconds since the
 standard base time known as <a class="reference external" href="https://en.wikipedia.org/wiki/Unix_time">the epoch</a>: January 1 1970 at 00:00:00 GMT.</p>
-<p>Timestamps can be input in CQL either using their value as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a>, or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a> that
+<p>Timestamps can be input in CQL either using their value as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a>, or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a> that
 represents an <a class="reference external" href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a> date. For instance, all of the values below are
-valid <code class="docutils literal"><span class="pre">timestamp</span></code> values for  Mar 2, 2011, at 04:05:00 AM, GMT:</p>
+valid <code class="docutils literal notranslate"><span class="pre">timestamp</span></code> values for  Mar 2, 2011, at 04:05:00 AM, GMT:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">1299038700000</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00.000+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03T04:05+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03T04:05:00+0000'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'2011-02-03T04:05:00.000+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">1299038700000</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00.000+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03T04:05+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03T04:05:00+0000'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'2011-02-03T04:05:00.000+0000'</span></code></li>
 </ul>
-<p>The <code class="docutils literal"><span class="pre">+0000</span></code> above is an RFC 822 4-digit time zone specification; <code class="docutils literal"><span class="pre">+0000</span></code> refers to GMT. US Pacific Standard Time is
-<code class="docutils literal"><span class="pre">-0800</span></code>. The time zone may be omitted if desired (<code class="docutils literal"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00'</span></code>), and if so, the date will be interpreted
+<p>The <code class="docutils literal notranslate"><span class="pre">+0000</span></code> above is an RFC 822 4-digit time zone specification; <code class="docutils literal notranslate"><span class="pre">+0000</span></code> refers to GMT. US Pacific Standard Time is
+<code class="docutils literal notranslate"><span class="pre">-0800</span></code>. The time zone may be omitted if desired (<code class="docutils literal notranslate"><span class="pre">'2011-02-03</span> <span class="pre">04:05:00'</span></code>), and if so, the date will be interpreted
 as being in the time zone under which the coordinating Cassandra node is configured. There are however difficulties
 inherent in relying on the time zone configuration being as expected, so it is recommended that the time zone always be
 specified for timestamps when feasible.</p>
-<p>The time of day may also be omitted (<code class="docutils literal"><span class="pre">'2011-02-03'</span></code> or <code class="docutils literal"><span class="pre">'2011-02-03+0000'</span></code>), in which case the time of day will
+<p>The time of day may also be omitted (<code class="docutils literal notranslate"><span class="pre">'2011-02-03'</span></code> or <code class="docutils literal notranslate"><span class="pre">'2011-02-03+0000'</span></code>), in which case the time of day will
 default to 00:00:00 in the specified or default time zone. However, if only the date part is relevant, consider using
 the <a class="reference internal" href="#dates"><span class="std std-ref">date</span></a> type.</p>
 </div>
 <div class="section" id="working-with-dates">
 <span id="dates"></span><h2>Working with dates<a class="headerlink" href="#working-with-dates" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">date</span></code> type are encoded as 32-bit unsigned integers representing a number of days with “the epoch” at
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">date</span></code> type are encoded as 32-bit unsigned integers representing a number of days with “the epoch” at
 the center of the range (2^31). Epoch is January 1st, 1970</p>
-<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a date can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a> or using a date
-<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a>. In the later case, the format should be <code class="docutils literal"><span class="pre">yyyy-mm-dd</span></code> (so <code class="docutils literal"><span class="pre">'2011-02-03'</span></code> for instance).</p>
+<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a date can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a> or using a date
+<a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a>. In the later case, the format should be <code class="docutils literal notranslate"><span class="pre">yyyy-mm-dd</span></code> (so <code class="docutils literal notranslate"><span class="pre">'2011-02-03'</span></code> for instance).</p>
 </div>
 <div class="section" id="working-with-times">
 <span id="times"></span><h2>Working with times<a class="headerlink" href="#working-with-times" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">time</span></code> type are encoded as 64-bit signed integers representing the number of nanoseconds since midnight.</p>
-<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a time can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal"><span class="pre">integer</span></code></a> or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a>
-representing the time. In the later case, the format should be <code class="docutils literal"><span class="pre">hh:mm:ss[.fffffffff]</span></code> (where the sub-second precision
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">time</span></code> type are encoded as 64-bit signed integers representing the number of nanoseconds since midnight.</p>
+<p>As for <a class="reference internal" href="#timestamps"><span class="std std-ref">timestamp</span></a>, a time can be input either as an <a class="reference internal" href="definitions.html#grammar-token-integer"><code class="xref std std-token docutils literal notranslate"><span class="pre">integer</span></code></a> or using a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a>
+representing the time. In the later case, the format should be <code class="docutils literal notranslate"><span class="pre">hh:mm:ss[.fffffffff]</span></code> (where the sub-second precision
 is optional and if provided, can be less than the nanosecond). So for instance, the following are valid inputs for a
 time:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">'08:12:54'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'08:12:54.123'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'08:12:54.123456'</span></code></li>
-<li><code class="docutils literal"><span class="pre">'08:12:54.123456789'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54.123'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54.123456'</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">'08:12:54.123456789'</span></code></li>
 </ul>
 </div>
 <div class="section" id="working-with-durations">
 <span id="durations"></span><h2>Working with durations<a class="headerlink" href="#working-with-durations" title="Permalink to this headline">¶</a></h2>
-<p>Values of the <code class="docutils literal"><span class="pre">duration</span></code> type are encoded as 3 signed integer of variable lengths. The first integer represents the
+<p>Values of the <code class="docutils literal notranslate"><span class="pre">duration</span></code> type are encoded as 3 signed integer of variable lengths. The first integer represents the
 number of months, the second the number of days and the third the number of nanoseconds. This is due to the fact that
 the number of days in a month can change, and a day can have 23 or 25 hours depending on the daylight saving.
 Internally, the number of months and days are decoded as 32 bits integers whereas the number of nanoseconds is decoded
@@ -393,38 +393,38 @@
 <p>A duration can be input as:</p>
 <blockquote>
 <div><ol class="arabic">
-<li><p class="first"><code class="docutils literal"><span class="pre">(quantity</span> <span class="pre">unit)+</span></code> like <code class="docutils literal"><span class="pre">12h30m</span></code> where the unit can be:</p>
+<li><p class="first"><code class="docutils literal notranslate"><span class="pre">(quantity</span> <span class="pre">unit)+</span></code> like <code class="docutils literal notranslate"><span class="pre">12h30m</span></code> where the unit can be:</p>
 <blockquote>
 <div><ul class="simple">
-<li><code class="docutils literal"><span class="pre">y</span></code>: years (12 months)</li>
-<li><code class="docutils literal"><span class="pre">mo</span></code>: months (1 month)</li>
-<li><code class="docutils literal"><span class="pre">w</span></code>: weeks (7 days)</li>
-<li><code class="docutils literal"><span class="pre">d</span></code>: days (1 day)</li>
-<li><code class="docutils literal"><span class="pre">h</span></code>: hours (3,600,000,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">m</span></code>: minutes (60,000,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">s</span></code>: seconds (1,000,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">ms</span></code>: milliseconds (1,000,000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">us</span></code> or <code class="docutils literal"><span class="pre">µs</span></code> : microseconds (1000 nanoseconds)</li>
-<li><code class="docutils literal"><span class="pre">ns</span></code>: nanoseconds (1 nanosecond)</li>
+<li><code class="docutils literal notranslate"><span class="pre">y</span></code>: years (12 months)</li>
+<li><code class="docutils literal notranslate"><span class="pre">mo</span></code>: months (1 month)</li>
+<li><code class="docutils literal notranslate"><span class="pre">w</span></code>: weeks (7 days)</li>
+<li><code class="docutils literal notranslate"><span class="pre">d</span></code>: days (1 day)</li>
+<li><code class="docutils literal notranslate"><span class="pre">h</span></code>: hours (3,600,000,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">m</span></code>: minutes (60,000,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">s</span></code>: seconds (1,000,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">ms</span></code>: milliseconds (1,000,000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">us</span></code> or <code class="docutils literal notranslate"><span class="pre">µs</span></code> : microseconds (1000 nanoseconds)</li>
+<li><code class="docutils literal notranslate"><span class="pre">ns</span></code>: nanoseconds (1 nanosecond)</li>
 </ul>
 </div></blockquote>
 </li>
-<li><p class="first">ISO 8601 format:  <code class="docutils literal"><span class="pre">P[n]Y[n]M[n]DT[n]H[n]M[n]S</span> <span class="pre">or</span> <span class="pre">P[n]W</span></code></p>
+<li><p class="first">ISO 8601 format:  <code class="docutils literal notranslate"><span class="pre">P[n]Y[n]M[n]DT[n]H[n]M[n]S</span> <span class="pre">or</span> <span class="pre">P[n]W</span></code></p>
 </li>
-<li><p class="first">ISO 8601 alternative format: <code class="docutils literal"><span class="pre">P[YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]</span></code></p>
+<li><p class="first">ISO 8601 alternative format: <code class="docutils literal notranslate"><span class="pre">P[YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]</span></code></p>
 </li>
 </ol>
 </div></blockquote>
 <p>For example:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;Christopher Froome&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="mf">89</span><span class="n">h4m48s</span><span class="p">);</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;Christopher Froome&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="mf">89</span><span class="n">h4m48s</span><span class="p">);</span>
 <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;BARDET Romain&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="n">PT89H8M53S</span><span class="p">);</span>
 <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">RiderResults</span> <span class="p">(</span><span class="n">rider</span><span class="p">,</span> <span class="n">race</span><span class="p">,</span> <span class="n">result</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;QUINTANA Nairo&#39;</span><span class="p">,</span> <span class="s1">&#39;Tour de France&#39;</span><span class="p">,</span> <span class="n">P0000</span><span class="o">-</span><span class="mf">00</span><span class="o">-</span><span class="mf">00</span><span class="n">T89</span><span class="p">:</span><span class="mf">09</span><span class="p">:</span><span class="mf">09</span><span class="p">);</span>
 </pre></div>
 </div>
-<p id="duration-limitation">Duration columns cannot be used in a table&#8217;s <code class="docutils literal"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. This limitation is due to the fact that
-durations cannot be ordered. It is effectively not possible to know if <code class="docutils literal"><span class="pre">1mo</span></code> is greater than <code class="docutils literal"><span class="pre">29d</span></code> without a date
+<p id="duration-limitation">Duration columns cannot be used in a table’s <code class="docutils literal notranslate"><span class="pre">PRIMARY</span> <span class="pre">KEY</span></code>. This limitation is due to the fact that
+durations cannot be ordered. It is effectively not possible to know if <code class="docutils literal notranslate"><span class="pre">1mo</span></code> is greater than <code class="docutils literal notranslate"><span class="pre">29d</span></code> without a date
 context.</p>
-<p>A <code class="docutils literal"><span class="pre">1d</span></code> duration is not equals to a <code class="docutils literal"><span class="pre">24h</span></code> one as the duration type has been created to be able to support daylight
+<p>A <code class="docutils literal notranslate"><span class="pre">1d</span></code> duration is not equals to a <code class="docutils literal notranslate"><span class="pre">24h</span></code> one as the duration type has been created to be able to support daylight
 saving.</p>
 </div>
 <div class="section" id="collections">
@@ -432,23 +432,23 @@
 <p>CQL supports 3 kind of collections: <a class="reference internal" href="#maps"><span class="std std-ref">Maps</span></a>, <a class="reference internal" href="#sets"><span class="std std-ref">Sets</span></a> and <a class="reference internal" href="#lists"><span class="std std-ref">Lists</span></a>. The types of those collections is defined
 by:</p>
 <pre>
-<strong id="grammar-token-collection_type">collection_type</strong> ::=  MAP '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ',' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> '&gt;'
-                     | SET '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> '&gt;'
-                     | LIST '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> '&gt;'
+<strong id="grammar-token-collection-type">collection_type</strong> ::=  MAP '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ',' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> '&gt;'
+                     | SET '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> '&gt;'
+                     | LIST '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> '&gt;'
 </pre>
 <p>and their values can be inputd using collection literals:</p>
 <pre>
-<strong id="grammar-token-collection_literal">collection_literal</strong> ::=  <a class="reference internal" href="#grammar-token-map_literal"><code class="xref docutils literal"><span class="pre">map_literal</span></code></a> | <a class="reference internal" href="#grammar-token-set_literal"><code class="xref docutils literal"><span class="pre">set_literal</span></code></a> | <a class="reference internal" href="#grammar-token-list_literal"><code class="xref docutils literal"><span class="pre">list_literal</span></code></a>
-<strong id="grammar-token-map_literal">map_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> : <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] '}'
-<strong id="grammar-token-set_literal">set_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] '}'
-<strong id="grammar-token-list_literal">list_literal      </strong> ::=  '[' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a>)* ] ']'
+<strong id="grammar-token-collection-literal">collection_literal</strong> ::=  <a class="reference internal" href="#grammar-token-map-literal"><code class="xref docutils literal notranslate"><span class="pre">map_literal</span></code></a> | <a class="reference internal" href="#grammar-token-set-literal"><code class="xref docutils literal notranslate"><span class="pre">set_literal</span></code></a> | <a class="reference internal" href="#grammar-token-list-literal"><code class="xref docutils literal notranslate"><span class="pre">list_literal</span></code></a>
+<strong id="grammar-token-map-literal">map_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> : <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] '}'
+<strong id="grammar-token-set-literal">set_literal       </strong> ::=  '{' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] '}'
+<strong id="grammar-token-list-literal">list_literal      </strong> ::=  '[' [ <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> (',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a>)* ] ']'
 </pre>
-<p>Note however that neither <a class="reference internal" href="definitions.html#grammar-token-bind_marker"><code class="xref std std-token docutils literal"><span class="pre">bind_marker</span></code></a> nor <code class="docutils literal"><span class="pre">NULL</span></code> are supported inside collection literals.</p>
+<p>Note however that neither <a class="reference internal" href="definitions.html#grammar-token-bind-marker"><code class="xref std std-token docutils literal notranslate"><span class="pre">bind_marker</span></code></a> nor <code class="docutils literal notranslate"><span class="pre">NULL</span></code> are supported inside collection literals.</p>
 <div class="section" id="noteworthy-characteristics">
 <h3>Noteworthy characteristics<a class="headerlink" href="#noteworthy-characteristics" title="Permalink to this headline">¶</a></h3>
 <p>Collections are meant for storing/denormalizing relatively small amount of data. They work well for things like “the
 phone numbers of a given user”, “labels applied to an email”, etc. But when items are expected to grow unbounded (“all
-messages sent by a user”, “events registered by a sensor”...), then collections are not appropriate and a specific table
+messages sent by a user”, “events registered by a sensor”…), then collections are not appropriate and a specific table
 (with clustering columns) should be used. Concretely, (non-frozen) collections have the following noteworthy
 characteristics and limitations:</p>
 <ul class="simple">
@@ -464,9 +464,9 @@
 </div>
 <div class="section" id="maps">
 <span id="id5"></span><h3>Maps<a class="headerlink" href="#maps" title="Permalink to this headline">¶</a></h3>
-<p>A <code class="docutils literal"><span class="pre">map</span></code> is a (sorted) set of key-value pairs, where keys are unique and the map is sorted by its keys. You can define
+<p>A <code class="docutils literal notranslate"><span class="pre">map</span></code> is a (sorted) set of key-value pairs, where keys are unique and the map is sorted by its keys. You can define
 and insert a map with:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="k">users</span> <span class="p">(</span>
     <span class="n">id</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">name</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">favs</span> <span class="k">map</span><span class="o">&lt;</span><span class="nb">text</span><span class="p">,</span> <span class="nb">text</span><span class="o">&gt;</span> <span class="c1">// A map of text keys, and text values</span>
@@ -482,30 +482,30 @@
 <p>Further, maps support:</p>
 <ul>
 <li><p class="first">Updating or inserting one or more elements:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;Ed Poe&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;Ed Poe&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span> <span class="o">=</span> <span class="n">favs</span> <span class="o">+</span> <span class="p">{</span> <span class="s1">&#39;movie&#39;</span> <span class="p">:</span> <span class="s1">&#39;Cassablanca&#39;</span><span class="p">,</span> <span class="s1">&#39;band&#39;</span> <span class="p">:</span> <span class="s1">&#39;ZZ Top&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
-<li><p class="first">Removing one or more element (if an element doesn&#8217;t exist, removing it is a no-op but no error is thrown):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
+<li><p class="first">Removing one or more element (if an element doesn’t exist, removing it is a no-op but no error is thrown):</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;author&#39;</span><span class="p">]</span> <span class="k">FROM</span> <span class="k">users</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="k">users</span> <span class="k">SET</span> <span class="n">favs</span> <span class="o">=</span> <span class="n">favs</span> <span class="o">-</span> <span class="p">{</span> <span class="s1">&#39;movie&#39;</span><span class="p">,</span> <span class="s1">&#39;band&#39;</span><span class="p">}</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>Note that for removing multiple elements in a <code class="docutils literal"><span class="pre">map</span></code>, you remove from it a <code class="docutils literal"><span class="pre">set</span></code> of keys.</p>
+<p>Note that for removing multiple elements in a <code class="docutils literal notranslate"><span class="pre">map</span></code>, you remove from it a <code class="docutils literal notranslate"><span class="pre">set</span></code> of keys.</p>
 </li>
 </ul>
-<p>Lastly, TTLs are allowed for both <code class="docutils literal"><span class="pre">INSERT</span></code> and <code class="docutils literal"><span class="pre">UPDATE</span></code>, but in both case the TTL set only apply to the newly
+<p>Lastly, TTLs are allowed for both <code class="docutils literal notranslate"><span class="pre">INSERT</span></code> and <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code>, but in both case the TTL set only apply to the newly
 inserted/updated elements. In other words:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">10</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;color&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;green&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="k">users</span> <span class="k">USING</span> <span class="k">TTL</span> <span class="mf">10</span> <span class="k">SET</span> <span class="n">favs</span><span class="p">[</span><span class="s1">&#39;color&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;green&#39;</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;jsmith&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
-<p>will only apply the TTL to the <code class="docutils literal"><span class="pre">{</span> <span class="pre">'color'</span> <span class="pre">:</span> <span class="pre">'green'</span> <span class="pre">}</span></code> record, the rest of the map remaining unaffected.</p>
+<p>will only apply the TTL to the <code class="docutils literal notranslate"><span class="pre">{</span> <span class="pre">'color'</span> <span class="pre">:</span> <span class="pre">'green'</span> <span class="pre">}</span></code> record, the rest of the map remaining unaffected.</p>
 </div>
 <div class="section" id="sets">
 <span id="id6"></span><h3>Sets<a class="headerlink" href="#sets" title="Permalink to this headline">¶</a></h3>
-<p>A <code class="docutils literal"><span class="pre">set</span></code> is a (sorted) collection of unique values. You can define and insert a map with:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">images</span> <span class="p">(</span>
+<p>A <code class="docutils literal notranslate"><span class="pre">set</span></code> is a (sorted) collection of unique values. You can define and insert a map with:</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">images</span> <span class="p">(</span>
     <span class="n">name</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">owner</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">tags</span> <span class="k">set</span><span class="o">&lt;</span><span class="nb">text</span><span class="o">&gt;</span> <span class="c1">// A set of text values</span>
@@ -521,12 +521,12 @@
 <p>Further, sets support:</p>
 <ul>
 <li><p class="first">Adding one or multiple elements (as this is a set, inserting an already existing element is a no-op):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">+</span> <span class="p">{</span> <span class="s1">&#39;gray&#39;</span><span class="p">,</span> <span class="s1">&#39;cuddly&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">+</span> <span class="p">{</span> <span class="s1">&#39;gray&#39;</span><span class="p">,</span> <span class="s1">&#39;cuddly&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
-<li><p class="first">Removing one or multiple elements (if an element doesn&#8217;t exist, removing it is a no-op but no error is thrown):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">-</span> <span class="p">{</span> <span class="s1">&#39;cat&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
+<li><p class="first">Removing one or multiple elements (if an element doesn’t exist, removing it is a no-op but no error is thrown):</p>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">images</span> <span class="k">SET</span> <span class="n">tags</span> <span class="o">=</span> <span class="n">tags</span> <span class="o">-</span> <span class="p">{</span> <span class="s1">&#39;cat&#39;</span> <span class="p">}</span> <span class="k">WHERE</span> <span class="n">name</span> <span class="o">=</span> <span class="s1">&#39;cat.jpg&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
@@ -541,9 +541,9 @@
 performance considerations that you should take into account before using them. In general, if you can use a
 <a class="reference internal" href="#sets"><span class="std std-ref">set</span></a> instead of list, always prefer a set.</p>
 </div>
-<p>A <code class="docutils literal"><span class="pre">list</span></code> is a (sorted) collection of non-unique values where elements are ordered by there position in the list. You
+<p>A <code class="docutils literal notranslate"><span class="pre">list</span></code> is a (sorted) collection of non-unique values where elements are ordered by there position in the list. You
 can define and insert a list with:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">plays</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">plays</span> <span class="p">(</span>
     <span class="n">id</span> <span class="nb">text</span> <span class="k">PRIMARY</span> <span class="k">KEY</span><span class="p">,</span>
     <span class="n">game</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">players</span> <span class="nb">int</span><span class="p">,</span>
@@ -560,27 +560,27 @@
 <p>Further, lists support:</p>
 <ul>
 <li><p class="first">Appending and prepending values to a list:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">players</span> <span class="o">=</span> <span class="mf">5</span><span class="p">,</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">+</span> <span class="p">[</span> <span class="mf">14</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">players</span> <span class="o">=</span> <span class="mf">5</span><span class="p">,</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">+</span> <span class="p">[</span> <span class="mf">14</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 <span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">players</span> <span class="o">=</span> <span class="mf">6</span><span class="p">,</span> <span class="n">scores</span> <span class="o">=</span> <span class="p">[</span> <span class="mf">3</span> <span class="p">]</span> <span class="o">+</span> <span class="n">scores</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
 <li><p class="first">Setting the value at a particular position in the list. This imply that the list has a pre-existing element for that
 position or an error will be thrown that the list is too small:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="o">=</span> <span class="mf">7</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="o">=</span> <span class="mf">7</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
 <li><p class="first">Removing an element by its position in the list. This imply that the list has a pre-existing element for that position
 or an error will be thrown that the list is too small. Further, as the operation removes an element from the list, the
 list size will be diminished by 1, shifting the position of all the elements following the one deleted:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">DELETE</span> <span class="n">scores</span><span class="p">[</span><span class="mf">1</span><span class="p">]</span> <span class="k">FROM</span> <span class="n">plays</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
-<li><p class="first">Deleting <em>all</em> the occurrences of particular values in the list (if a particular element doesn&#8217;t occur at all in the
+<li><p class="first">Deleting <em>all</em> the occurrences of particular values in the list (if a particular element doesn’t occur at all in the
 list, it is simply ignored and no error is thrown):</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">-</span> <span class="p">[</span> <span class="mf">12</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">UPDATE</span> <span class="n">plays</span> <span class="k">SET</span> <span class="n">scores</span> <span class="o">=</span> <span class="n">scores</span> <span class="o">-</span> <span class="p">[</span> <span class="mf">12</span><span class="p">,</span> <span class="mf">21</span> <span class="p">]</span> <span class="k">WHERE</span> <span class="n">id</span> <span class="o">=</span> <span class="s1">&#39;123-afde&#39;</span><span class="p">;</span>
 </pre></div>
 </div>
 </li>
@@ -603,23 +603,23 @@
 <div class="section" id="user-defined-types">
 <span id="udts"></span><h2>User-Defined Types<a class="headerlink" href="#user-defined-types" title="Permalink to this headline">¶</a></h2>
 <p>CQL support the definition of user-defined types (UDT for short). Such a type can be created, modified and removed using
-the <a class="reference internal" href="#grammar-token-create_type_statement"><code class="xref std std-token docutils literal"><span class="pre">create_type_statement</span></code></a>, <a class="reference internal" href="#grammar-token-alter_type_statement"><code class="xref std std-token docutils literal"><span class="pre">alter_type_statement</span></code></a> and <a class="reference internal" href="#grammar-token-drop_type_statement"><code class="xref std std-token docutils literal"><span class="pre">drop_type_statement</span></code></a> described below. But
+the <a class="reference internal" href="#grammar-token-create-type-statement"><code class="xref std std-token docutils literal notranslate"><span class="pre">create_type_statement</span></code></a>, <a class="reference internal" href="#grammar-token-alter-type-statement"><code class="xref std std-token docutils literal notranslate"><span class="pre">alter_type_statement</span></code></a> and <a class="reference internal" href="#grammar-token-drop-type-statement"><code class="xref std std-token docutils literal notranslate"><span class="pre">drop_type_statement</span></code></a> described below. But
 once created, a UDT is simply referred to by its name:</p>
 <pre>
-<strong id="grammar-token-user_defined_type">user_defined_type</strong> ::=  <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a>
-<strong id="grammar-token-udt_name">udt_name         </strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace_name"><code class="xref docutils literal"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a>
+<strong id="grammar-token-user-defined-type">user_defined_type</strong> ::=  <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a>
+<strong id="grammar-token-udt-name">udt_name         </strong> ::=  [ <a class="reference internal" href="ddl.html#grammar-token-keyspace-name"><code class="xref docutils literal notranslate"><span class="pre">keyspace_name</span></code></a> '.' ] <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a>
 </pre>
 <div class="section" id="creating-a-udt">
 <h3>Creating a UDT<a class="headerlink" href="#creating-a-udt" title="Permalink to this headline">¶</a></h3>
-<p>Creating a new user-defined type is done using a <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TYPE</span></code> statement defined by:</p>
+<p>Creating a new user-defined type is done using a <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TYPE</span></code> statement defined by:</p>
 <pre>
-<strong id="grammar-token-create_type_statement">create_type_statement</strong> ::=  CREATE TYPE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a>
-                               '(' <a class="reference internal" href="#grammar-token-field_definition"><code class="xref docutils literal"><span class="pre">field_definition</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-field_definition"><code class="xref docutils literal"><span class="pre">field_definition</span></code></a> )* ')'
-<strong id="grammar-token-field_definition">field_definition     </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a>
+<strong id="grammar-token-create-type-statement">create_type_statement</strong> ::=  CREATE TYPE [ IF NOT EXISTS ] <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a>
+                               '(' <a class="reference internal" href="#grammar-token-field-definition"><code class="xref docutils literal notranslate"><span class="pre">field_definition</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-field-definition"><code class="xref docutils literal notranslate"><span class="pre">field_definition</span></code></a> )* ')'
+<strong id="grammar-token-field-definition">field_definition     </strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a>
 </pre>
 <p>A UDT has a name (used to declared columns of that type) and is a set of named and typed fields. Fields name can be any
 type, including collections or other UDT. For instance:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">phone</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TYPE</span> <span class="n">phone</span> <span class="p">(</span>
     <span class="n">country_code</span> <span class="nb">int</span><span class="p">,</span>
     <span class="n">number</span> <span class="nb">text</span><span class="p">,</span>
 <span class="p">)</span>
@@ -639,12 +639,12 @@
 </div>
 <p>Note that:</p>
 <ul class="simple">
-<li>Attempting to create an already existing type will result in an error unless the <code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
+<li>Attempting to create an already existing type will result in an error unless the <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> option is used. If
 it is used, the statement will be a no-op if the type already exists.</li>
 <li>A type is intrinsically bound to the keyspace in which it is created, and can only be used in that keyspace. At
 creation, if the type name is prefixed by a keyspace name, it is created in that keyspace. Otherwise, it is created in
 the current keyspace.</li>
-<li>As of Cassandra 3.11.3, UDT have to be frozen in most cases, hence the <code class="docutils literal"><span class="pre">frozen&lt;address&gt;</span></code> in the table definition
+<li>As of Cassandra 3.11.7, UDT have to be frozen in most cases, hence the <code class="docutils literal notranslate"><span class="pre">frozen&lt;address&gt;</span></code> in the table definition
 above. Please see the section on <span class="xref std std-ref">frozen</span> for more details.</li>
 </ul>
 </div>
@@ -652,11 +652,11 @@
 <h3>UDT literals<a class="headerlink" href="#udt-literals" title="Permalink to this headline">¶</a></h3>
 <p>Once a used-defined type has been created, value can be input using a UDT literal:</p>
 <pre>
-<strong id="grammar-token-udt_literal">udt_literal</strong> ::=  '{' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> )* '}'
+<strong id="grammar-token-udt-literal">udt_literal</strong> ::=  '{' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ':' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> )* '}'
 </pre>
 <p>In other words, a UDT literal is like a <a class="reference internal" href="#maps"><span class="std std-ref">map</span></a> literal but its keys are the names of the fields of the type.
 For instance, one could insert into the table define in the previous section using:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">user</span> <span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">addresses</span><span class="p">)</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">INSERT</span> <span class="k">INTO</span> <span class="k">user</span> <span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">addresses</span><span class="p">)</span>
           <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;z3 Pr3z1den7&#39;</span><span class="p">,</span> <span class="p">{</span>
               <span class="s1">&#39;home&#39;</span> <span class="p">:</span> <span class="p">{</span>
                   <span class="n">street</span><span class="p">:</span> <span class="s1">&#39;1600 Pennsylvania Ave NW&#39;</span><span class="p">,</span>
@@ -675,32 +675,32 @@
 </pre></div>
 </div>
 <p>To be valid, a UDT literal should only include fields defined by the type it is a literal of, but it can omit some field
-(in which case those will be <code class="docutils literal"><span class="pre">null</span></code>).</p>
+(in which case those will be <code class="docutils literal notranslate"><span class="pre">null</span></code>).</p>
 </div>
 <div class="section" id="altering-a-udt">
 <h3>Altering a UDT<a class="headerlink" href="#altering-a-udt" title="Permalink to this headline">¶</a></h3>
-<p>An existing user-defined type can be modified using an <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> statement:</p>
+<p>An existing user-defined type can be modified using an <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-alter_type_statement">alter_type_statement   </strong> ::=  ALTER TYPE <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a> <a class="reference internal" href="#grammar-token-alter_type_modification"><code class="xref docutils literal"><span class="pre">alter_type_modification</span></code></a>
-<strong id="grammar-token-alter_type_modification">alter_type_modification</strong> ::=  ADD <a class="reference internal" href="#grammar-token-field_definition"><code class="xref docutils literal"><span class="pre">field_definition</span></code></a>
-                             | RENAME <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal"><span class="pre">identifier</span></code></a> )*
+<strong id="grammar-token-alter-type-statement">alter_type_statement   </strong> ::=  ALTER TYPE <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a> <a class="reference internal" href="#grammar-token-alter-type-modification"><code class="xref docutils literal notranslate"><span class="pre">alter_type_modification</span></code></a>
+<strong id="grammar-token-alter-type-modification">alter_type_modification</strong> ::=  ADD <a class="reference internal" href="#grammar-token-field-definition"><code class="xref docutils literal notranslate"><span class="pre">field_definition</span></code></a>
+                             | RENAME <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> ( <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> TO <a class="reference internal" href="definitions.html#grammar-token-identifier"><code class="xref docutils literal notranslate"><span class="pre">identifier</span></code></a> )*
 </pre>
 <p>You can:</p>
 <ul class="simple">
-<li>add a new field to the type (<code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">ADD</span> <span class="pre">country</span> <span class="pre">text</span></code>). That new field will be <code class="docutils literal"><span class="pre">null</span></code> for any values
+<li>add a new field to the type (<code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">ADD</span> <span class="pre">country</span> <span class="pre">text</span></code>). That new field will be <code class="docutils literal notranslate"><span class="pre">null</span></code> for any values
 of the type created before the addition.</li>
-<li>rename the fields of the type (<code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">RENAME</span> <span class="pre">zip</span> <span class="pre">TO</span> <span class="pre">zipcode</span></code>).</li>
+<li>rename the fields of the type (<code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TYPE</span> <span class="pre">address</span> <span class="pre">RENAME</span> <span class="pre">zip</span> <span class="pre">TO</span> <span class="pre">zipcode</span></code>).</li>
 </ul>
 </div>
 <div class="section" id="dropping-a-udt">
 <h3>Dropping a UDT<a class="headerlink" href="#dropping-a-udt" title="Permalink to this headline">¶</a></h3>
-<p>You can drop an existing user-defined type using a <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TYPE</span></code> statement:</p>
+<p>You can drop an existing user-defined type using a <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">TYPE</span></code> statement:</p>
 <pre>
-<strong id="grammar-token-drop_type_statement">drop_type_statement</strong> ::=  DROP TYPE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-udt_name"><code class="xref docutils literal"><span class="pre">udt_name</span></code></a>
+<strong id="grammar-token-drop-type-statement">drop_type_statement</strong> ::=  DROP TYPE [ IF EXISTS ] <a class="reference internal" href="#grammar-token-udt-name"><code class="xref docutils literal notranslate"><span class="pre">udt_name</span></code></a>
 </pre>
 <p>Dropping a type results in the immediate, irreversible removal of that type. However, attempting to drop a type that is
 still in use by another type, table or function will result in an error.</p>
-<p>If the type dropped does not exist, an error will be returned unless <code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used, in which case the operation
+<p>If the type dropped does not exist, an error will be returned unless <code class="docutils literal notranslate"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> is used, in which case the operation
 is a no-op.</p>
 </div>
 </div>
@@ -709,11 +709,11 @@
 <p>CQL also support tuples and tuple types (where the elements can be of different types). Functionally, tuples can be
 though as anonymous UDT with anonymous fields. Tuple types and tuple literals are defined by:</p>
 <pre>
-<strong id="grammar-token-tuple_type">tuple_type   </strong> ::=  TUPLE '&lt;' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-cql_type"><code class="xref docutils literal"><span class="pre">cql_type</span></code></a> )* '&gt;'
-<strong id="grammar-token-tuple_literal">tuple_literal</strong> ::=  '(' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal"><span class="pre">term</span></code></a> )* ')'
+<strong id="grammar-token-tuple-type">tuple_type   </strong> ::=  TUPLE '&lt;' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> ( ',' <a class="reference internal" href="#grammar-token-cql-type"><code class="xref docutils literal notranslate"><span class="pre">cql_type</span></code></a> )* '&gt;'
+<strong id="grammar-token-tuple-literal">tuple_literal</strong> ::=  '(' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> ( ',' <a class="reference internal" href="definitions.html#grammar-token-term"><code class="xref docutils literal notranslate"><span class="pre">term</span></code></a> )* ')'
 </pre>
 <p>and can be used thusly:</p>
-<div class="highlight-cql"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">durations</span> <span class="p">(</span>
+<div class="highlight-cql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">durations</span> <span class="p">(</span>
     <span class="n">event</span> <span class="nb">text</span><span class="p">,</span>
     <span class="n">duration</span> <span class="k">tuple</span><span class="o">&lt;</span><span class="nb">int</span><span class="p">,</span> <span class="nb">text</span><span class="o">&gt;</span><span class="p">,</span>
 <span class="p">)</span>
@@ -721,7 +721,7 @@
 <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">durations</span> <span class="p">(</span><span class="n">event</span><span class="p">,</span> <span class="n">duration</span><span class="p">)</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">&#39;ev1&#39;</span><span class="p">,</span> <span class="p">(</span><span class="mf">3</span><span class="p">,</span> <span class="s1">&#39;hours&#39;</span><span class="p">));</span>
 </pre></div>
 </div>
-<p>Unlike other &#8220;composed&#8221; types (collections and UDT), a tuple is always <span class="xref std std-ref">frozen</span> (without the need of the
+<p>Unlike other “composed” types (collections and UDT), a tuple is always <span class="xref std std-ref">frozen</span> (without the need of the
 <cite>frozen</cite> keyword) and it is not possible to update only some elements of a tuple (without updating the whole tuple).
 Also, a tuple literal should always have the same number of value than declared in the type it is a tuple of (some of
 those values can be null but they need to be explicitly declared as so).</p>
@@ -736,13 +736,13 @@
 </div>
 <p>A custom type is defined by:</p>
 <pre>
-<strong id="grammar-token-custom_type">custom_type</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal"><span class="pre">string</span></code></a>
+<strong id="grammar-token-custom-type">custom_type</strong> ::=  <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref docutils literal notranslate"><span class="pre">string</span></code></a>
 </pre>
-<p>A custom type is a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal"><span class="pre">string</span></code></a> that contains the name of Java class that extends the server side <code class="docutils literal"><span class="pre">AbstractType</span></code>
-class and that can be loaded by Cassandra (it should thus be in the <code class="docutils literal"><span class="pre">CLASSPATH</span></code> of every node running Cassandra). That
+<p>A custom type is a <a class="reference internal" href="definitions.html#grammar-token-string"><code class="xref std std-token docutils literal notranslate"><span class="pre">string</span></code></a> that contains the name of Java class that extends the server side <code class="docutils literal notranslate"><span class="pre">AbstractType</span></code>
+class and that can be loaded by Cassandra (it should thus be in the <code class="docutils literal notranslate"><span class="pre">CLASSPATH</span></code> of every node running Cassandra). That
 class will define what values are valid for the type and how the time sorts when used for a clustering column. For any
-other purpose, a value of a custom type is the same than that of a <code class="docutils literal"><span class="pre">blob</span></code>, and can in particular be input using the
-<a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal"><span class="pre">blob</span></code></a> literal syntax.</p>
+other purpose, a value of a custom type is the same than that of a <code class="docutils literal notranslate"><span class="pre">blob</span></code>, and can in particular be input using the
+<a class="reference internal" href="definitions.html#grammar-token-blob"><code class="xref std std-token docutils literal notranslate"><span class="pre">blob</span></code></a> literal syntax.</p>
 </div>
 </div>
 
diff --git a/content/doc/stable/data_modeling/index.html b/content/doc/stable/data_modeling/index.html
index c8aa9a5..bacfd14 100644
--- a/content/doc/stable/data_modeling/index.html
+++ b/content/doc/stable/data_modeling/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="The Cassandra Query Language (CQL)" href="../cql/index.html"/> <link rel="prev" title="Guarantees" href="../architecture/guarantees.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="The Cassandra Query Language (CQL)" href="../cql/index.html"/> <link rel="prev" title="Guarantees" href="../architecture/guarantees.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/development/code_style.html b/content/doc/stable/development/code_style.html
index 609a189..0dfbf97 100644
--- a/content/doc/stable/development/code_style.html
+++ b/content/doc/stable/development/code_style.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Review Checklist" href="how_to_review.html"/> <link rel="prev" title="Contributing Code Changes" href="patches.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Review Checklist" href="how_to_review.html"/> <link rel="prev" title="Contributing Code Changes" href="patches.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,7 +171,7 @@
 <h2>General Code Conventions<a class="headerlink" href="#general-code-conventions" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>The Cassandra project follows <a class="reference external" href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Sun&#8217;s Java coding conventions</a> with an important exception: <code class="docutils literal"><span class="pre">{</span></code> and <code class="docutils literal"><span class="pre">}</span></code> are always placed on a new line</li>
+<li>The Cassandra project follows <a class="reference external" href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Sun’s Java coding conventions</a> with an important exception: <code class="docutils literal notranslate"><span class="pre">{</span></code> and <code class="docutils literal notranslate"><span class="pre">}</span></code> are always placed on a new line</li>
 </ul>
 </div></blockquote>
 </div>
@@ -179,10 +179,10 @@
 <h2>Exception handling<a class="headerlink" href="#exception-handling" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>Never ever write <code class="docutils literal"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{}</span></code> or <code class="docutils literal"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{</span> <span class="pre">logger.error()</span> <span class="pre">}</span></code> merely to satisfy Java&#8217;s compile-time exception checking. Always propagate the exception up or throw <code class="docutils literal"><span class="pre">RuntimeException</span></code> (or, if it &#8220;can&#8217;t happen,&#8221; <code class="docutils literal"><span class="pre">AssertionError</span></code>). This makes the exceptions visible to automated tests.</li>
-<li>Avoid propagating up checked exceptions that no caller handles. Rethrow as <code class="docutils literal"><span class="pre">RuntimeException</span></code> (or <code class="docutils literal"><span class="pre">IOError</span></code>, if that is more applicable).</li>
-<li>Similarly, logger.warn() is often a cop-out: is this an error or not? If it is don&#8217;t hide it behind a warn; if it isn&#8217;t, no need for the warning.</li>
-<li>If you genuinely know an exception indicates an expected condition, it&#8217;s okay to ignore it BUT this must be explicitly explained in a comment.</li>
+<li>Never ever write <code class="docutils literal notranslate"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{}</span></code> or <code class="docutils literal notranslate"><span class="pre">catch</span> <span class="pre">(...)</span> <span class="pre">{</span> <span class="pre">logger.error()</span> <span class="pre">}</span></code> merely to satisfy Java’s compile-time exception checking. Always propagate the exception up or throw <code class="docutils literal notranslate"><span class="pre">RuntimeException</span></code> (or, if it “can’t happen,” <code class="docutils literal notranslate"><span class="pre">AssertionError</span></code>). This makes the exceptions visible to automated tests.</li>
+<li>Avoid propagating up checked exceptions that no caller handles. Rethrow as <code class="docutils literal notranslate"><span class="pre">RuntimeException</span></code> (or <code class="docutils literal notranslate"><span class="pre">IOError</span></code>, if that is more applicable).</li>
+<li>Similarly, logger.warn() is often a cop-out: is this an error or not? If it is don’t hide it behind a warn; if it isn’t, no need for the warning.</li>
+<li>If you genuinely know an exception indicates an expected condition, it’s okay to ignore it BUT this must be explicitly explained in a comment.</li>
 </ul>
 </div></blockquote>
 </div>
@@ -190,11 +190,11 @@
 <h2>Boilerplate<a class="headerlink" href="#boilerplate" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>Avoid redundant <code class="docutils literal"><span class="pre">&#64;Override</span></code> annotations when implementing abstract or interface methods.</li>
+<li>Avoid redundant <code class="docutils literal notranslate"><span class="pre">&#64;Override</span></code> annotations when implementing abstract or interface methods.</li>
 <li>Do not implement equals or hashcode methods unless they are actually needed.</li>
-<li>Prefer public final fields to private fields with getters. (But prefer encapsulating behavior in &#8220;real&#8221; methods to either.)</li>
+<li>Prefer public final fields to private fields with getters. (But prefer encapsulating behavior in “real” methods to either.)</li>
 <li>Prefer requiring initialization in the constructor to setters.</li>
-<li>Avoid redundant <code class="docutils literal"><span class="pre">this</span></code> references to member fields or methods.</li>
+<li>Avoid redundant <code class="docutils literal notranslate"><span class="pre">this</span></code> references to member fields or methods.</li>
 <li>Do not extract interfaces (or abstract classes) unless you actually need multiple implementations of it.</li>
 <li>Always include braces for nested levels of conditionals and loops. Only avoid braces for single level.</li>
 </ul>
@@ -204,10 +204,10 @@
 <h2>Multiline statements<a class="headerlink" href="#multiline-statements" title="Permalink to this headline">¶</a></h2>
 <blockquote>
 <div><ul class="simple">
-<li>Try to keep lines under 120 characters, but use good judgement &#8211; it&#8217;s better to exceed 120 by a little, than split a line that has no natural splitting points.</li>
+<li>Try to keep lines under 120 characters, but use good judgement – it’s better to exceed 120 by a little, than split a line that has no natural splitting points.</li>
 <li>When splitting inside a method call, use one line per parameter and align them, like this:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>SSTableWriter writer = new SSTableWriter(cfs.getTempSSTablePath(),
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>SSTableWriter writer = new SSTableWriter(cfs.getTempSSTablePath(),
                                          columnFamilies.size(),
                                          StorageService.getPartitioner());
 </pre></div>
@@ -215,7 +215,7 @@
 <ul class="simple">
 <li>When splitting a ternary, use one line per clause, carry the operator, and align like this:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>var = bar == null
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>var = bar == null
     ? doFoo()
     : doBar();
 </pre></div>
@@ -227,14 +227,14 @@
 <blockquote>
 <div><ul class="simple">
 <li>Please make sure to use 4 spaces instead of the tab character for all your indentation.</li>
-<li>Many lines in many files have a bunch of trailing whitespace... Please either clean these up in a separate patch, or leave them alone, so that reviewers now and anyone reading code history later doesn&#8217;t have to pay attention to whitespace diffs.</li>
+<li>Many lines in many files have a bunch of trailing whitespace… Please either clean these up in a separate patch, or leave them alone, so that reviewers now and anyone reading code history later doesn’t have to pay attention to whitespace diffs.</li>
 </ul>
 </div></blockquote>
 </div>
 <div class="section" id="imports">
 <h2>Imports<a class="headerlink" href="#imports" title="Permalink to this headline">¶</a></h2>
 <p>Please observe the following order for your imports:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>java
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>java
 [blank line]
 com.google.common
 org.apache.commons
diff --git a/content/doc/stable/development/how_to_commit.html b/content/doc/stable/development/how_to_commit.html
index ba0438d..ce92684 100644
--- a/content/doc/stable/development/how_to_commit.html
+++ b/content/doc/stable/development/how_to_commit.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Frequently Asked Questions" href="../faq/index.html"/> <link rel="prev" title="Review Checklist" href="how_to_review.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Frequently Asked Questions" href="../faq/index.html"/> <link rel="prev" title="Review Checklist" href="how_to_review.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -164,26 +164,26 @@
 <dl class="docutils">
 <dt>On cassandra-3.0:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">am</span> <span class="pre">-3</span> <span class="pre">12345-3.0.patch</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix  it ourselves, in place)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">am</span> <span class="pre">-3</span> <span class="pre">12345-3.0.patch</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix  it ourselves, in place)</li>
 </ol>
 </dd>
 <dt>On cassandra-3.3:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-3.3.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-3.3.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On trunk:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-trunk.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">12345-trunk.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On any branch:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
 </ol>
 </dd>
 </dl>
@@ -191,36 +191,36 @@
 <dl class="docutils">
 <dt>On cassandra-3.0:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">cherry-pick</span> <span class="pre">&lt;sha-of-3.0-commit&gt;</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix it ourselves, in place)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">cherry-pick</span> <span class="pre">&lt;sha-of-3.0-commit&gt;</span></code> (if we have a problem b/c of CHANGES.txt not merging anymore, we fix it ourselves, in place)</li>
 </ol>
 </dd>
 <dt>On cassandra-3.3:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-3.3-commit&gt;</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-3.3-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.0</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-3.3-commit&gt;</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-3.3-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On trunk:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-trunk-commit&gt;</span></code></li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-trunk-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">merge</span> <span class="pre">cassandra-3.3</span> <span class="pre">-s</span> <span class="pre">ours</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">format-patch</span> <span class="pre">-1</span> <span class="pre">&lt;sha-of-trunk-commit&gt;</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">apply</span> <span class="pre">-3</span> <span class="pre">&lt;sha-of-trunk-commit&gt;.patch</span></code> (likely to have an issue with CHANGES.txt here: fix it ourselves, then git add CHANGES.txt)</li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">commit</span> <span class="pre">—amend</span></code></li>
 </ol>
 </dd>
 <dt>On any branch:</dt>
 <dd><ol class="first last arabic simple">
-<li><code class="docutils literal"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">push</span> <span class="pre">origin</span> <span class="pre">cassandra-3.0</span> <span class="pre">cassandra-3.3</span> <span class="pre">trunk</span> <span class="pre">—atomic</span></code></li>
 </ol>
 </dd>
 </dl>
 <div class="admonition tip">
 <p class="first admonition-title">Tip</p>
 <p>Notes on git flags:
-<code class="docutils literal"><span class="pre">-3</span></code> flag to am and apply will instruct git to perform a 3-way merge for you. If a conflict is detected, you can either resolve it manually or invoke git mergetool - for both am and apply.</p>
-<p class="last"><code class="docutils literal"><span class="pre">—atomic</span></code> flag to git push does the obvious thing: pushes all or nothing. Without the flag, the command is equivalent to running git push once per each branch. This is nifty in case a race condition happens - you won’t push half the branches, blocking other committers’ progress while you are resolving the issue.</p>
+<code class="docutils literal notranslate"><span class="pre">-3</span></code> flag to am and apply will instruct git to perform a 3-way merge for you. If a conflict is detected, you can either resolve it manually or invoke git mergetool - for both am and apply.</p>
+<p class="last"><code class="docutils literal notranslate"><span class="pre">—atomic</span></code> flag to git push does the obvious thing: pushes all or nothing. Without the flag, the command is equivalent to running git push once per each branch. This is nifty in case a race condition happens - you won’t push half the branches, blocking other committers’ progress while you are resolving the issue.</p>
 </div>
 <div class="admonition tip">
 <p class="first admonition-title">Tip</p>
diff --git a/content/doc/stable/development/how_to_review.html b/content/doc/stable/development/how_to_review.html
index ac1677f..7e71b3f 100644
--- a/content/doc/stable/development/how_to_review.html
+++ b/content/doc/stable/development/how_to_review.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="How-to Commit" href="how_to_commit.html"/> <link rel="prev" title="Code Style" href="code_style.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="How-to Commit" href="how_to_commit.html"/> <link rel="prev" title="Code Style" href="code_style.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -184,14 +184,14 @@
 <p><strong>Documentation</strong></p>
 <blockquote>
 <div><ul class="simple">
-<li>Do comments exist and describe the intent of the code (the &#8220;why&#8221;, not the &#8220;how&#8221;)?</li>
+<li>Do comments exist and describe the intent of the code (the “why”, not the “how”)?</li>
 <li>Are javadocs added where appropriate?</li>
 <li>Is any unusual behavior or edge-case handling described?</li>
 <li>Are data structures and units of measurement explained?</li>
 <li>Is there any incomplete code? If so, should it be removed or flagged with a suitable marker like ‘TODO’?</li>
 <li>Does the code self-document via clear naming, abstractions, and flow control?</li>
 <li>Have NEWS.txt, the cql3 docs, and the native protocol spec been updated if needed?</li>
-<li>Is the ticket tagged with &#8220;client-impacting&#8221; and &#8220;doc-impacting&#8221;, where appropriate?</li>
+<li>Is the ticket tagged with “client-impacting” and “doc-impacting”, where appropriate?</li>
 <li>Has lib/licences been updated for third-party libs? Are they Apache License compatible?</li>
 <li>Is the Component on the JIRA ticket set appropriately?</li>
 </ul>
diff --git a/content/doc/stable/development/ide.html b/content/doc/stable/development/ide.html
index e125909..8660907 100644
--- a/content/doc/stable/development/ide.html
+++ b/content/doc/stable/development/ide.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Testing" href="testing.html"/> <link rel="prev" title="Cassandra Development" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Testing" href="testing.html"/> <link rel="prev" title="Cassandra Development" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -167,16 +167,16 @@
 <h2>Building From Source<a class="headerlink" href="#building-from-source" title="Permalink to this headline">¶</a></h2>
 <p>Getting started with Cassandra and IntelliJ IDEA or Eclipse is simple, once you manage to build Cassandra from source using <a class="reference external" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Java 8</a>, <a class="reference external" href="https://git-scm.com/">Git</a> and <a class="reference external" href="http://ant.apache.org/">Ant</a>.</p>
 <p>The source code for Cassandra is shared through the central Apache Git repository and organized by different branches. You can access the code for the current development branch through git as follows:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">clone</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">git</span><span class="o">-</span><span class="n">wip</span><span class="o">-</span><span class="n">us</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">cassandra</span><span class="o">.</span><span class="n">git</span> <span class="n">cassandra</span><span class="o">-</span><span class="n">trunk</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">clone</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">git</span><span class="o">-</span><span class="n">wip</span><span class="o">-</span><span class="n">us</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">cassandra</span><span class="o">.</span><span class="n">git</span> <span class="n">cassandra</span><span class="o">-</span><span class="n">trunk</span>
 </pre></div>
 </div>
 <p>Other branches will point to different versions of Cassandra. Switching to a different branch requires checking out the branch by its name:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">checkout</span> <span class="n">cassandra</span><span class="o">-</span><span class="mf">3.0</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">git</span> <span class="n">checkout</span> <span class="n">cassandra</span><span class="o">-</span><span class="mf">3.0</span>
 </pre></div>
 </div>
-<p>You can get a list of available branches with <code class="docutils literal"><span class="pre">git</span> <span class="pre">branch</span></code>.</p>
+<p>You can get a list of available branches with <code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">branch</span></code>.</p>
 <p>Finally build Cassandra using ant:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">ant</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">ant</span>
 </pre></div>
 </div>
 <p>This may take a significant amount of time depending on whether artifacts have to be downloaded and the number of classes that need to be compiled.</p>
@@ -194,19 +194,19 @@
 <p><a class="reference external" href="https://www.jetbrains.com/idea/">IntelliJ IDEA</a> by JetBrains is one of the most popular IDEs for Cassandra and Java development in general. The Community Edition is provided as a free download with all features needed to get started developing Cassandra.</p>
 <div class="section" id="setup-cassandra-as-a-project-c-2-1-and-newer">
 <h3>Setup Cassandra as a Project (C* 2.1 and newer)<a class="headerlink" href="#setup-cassandra-as-a-project-c-2-1-and-newer" title="Permalink to this headline">¶</a></h3>
-<p>Since 2.1.5, there is a new ant target: <code class="docutils literal"><span class="pre">generate-idea-files</span></code>. Please see our <a class="reference external" href="https://wiki.apache.org/cassandra/RunningCassandraInIDEA">wiki</a> for instructions for older Cassandra versions.</p>
+<p>Since 2.1.5, there is a new ant target: <code class="docutils literal notranslate"><span class="pre">generate-idea-files</span></code>. Please see our <a class="reference external" href="https://wiki.apache.org/cassandra/RunningCassandraInIDEA">wiki</a> for instructions for older Cassandra versions.</p>
 <p>Please clone and build Cassandra as described above and execute the following steps:</p>
 <ol class="arabic simple">
 <li>Once Cassandra is built, generate the IDEA files using ant:</li>
 </ol>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">ant</span> <span class="n">generate</span><span class="o">-</span><span class="n">idea</span><span class="o">-</span><span class="n">files</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">ant</span> <span class="n">generate</span><span class="o">-</span><span class="n">idea</span><span class="o">-</span><span class="n">files</span>
 </pre></div>
 </div>
 <ol class="arabic simple" start="2">
 <li>Start IDEA</li>
-<li>Open the IDEA project from the checked out Cassandra directory using the menu item Open in IDEA&#8217;s File menu</li>
+<li>Open the IDEA project from the checked out Cassandra directory using the menu item Open in IDEA’s File menu</li>
 </ol>
-<p>The project generated by the ant task <code class="docutils literal"><span class="pre">generate-idea-files</span></code> contains nearly everything you need to debug Cassandra and execute unit tests.</p>
+<p>The project generated by the ant task <code class="docutils literal notranslate"><span class="pre">generate-idea-files</span></code> contains nearly everything you need to debug Cassandra and execute unit tests.</p>
 <blockquote>
 <div><ul class="simple">
 <li>Run/debug defaults for JUnit</li>
@@ -220,7 +220,7 @@
 </div>
 <div class="section" id="setting-up-cassandra-in-eclipse">
 <h2>Setting up Cassandra in Eclipse<a class="headerlink" href="#setting-up-cassandra-in-eclipse" title="Permalink to this headline">¶</a></h2>
-<p>Eclipse is a popular open source IDE that can be used for Cassandra development. Various Eclipse environments are available from the <a class="reference external" href="https://www.eclipse.org/downloads/eclipse-packages/">download page</a>. The following guide was created with &#8220;Eclipse IDE for Java Developers&#8221;.</p>
+<p>Eclipse is a popular open source IDE that can be used for Cassandra development. Various Eclipse environments are available from the <a class="reference external" href="https://www.eclipse.org/downloads/eclipse-packages/">download page</a>. The following guide was created with “Eclipse IDE for Java Developers”.</p>
 <p>These instructions were tested on Ubuntu 16.04 with Eclipse Neon (4.6) using Cassandra 2.1, 2.2 and 3.x.</p>
 <div class="section" id="project-settings">
 <h3>Project Settings<a class="headerlink" href="#project-settings" title="Permalink to this headline">¶</a></h3>
@@ -228,56 +228,56 @@
 <blockquote>
 <div><ul class="simple">
 <li>Clone and build Cassandra as described above.</li>
-<li>Run <code class="docutils literal"><span class="pre">ant</span> <span class="pre">generate-eclipse-files</span></code> to create the Eclipse settings.</li>
+<li>Run <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">generate-eclipse-files</span></code> to create the Eclipse settings.</li>
 <li>Start Eclipse.</li>
-<li>Select <code class="docutils literal"><span class="pre">File-&gt;Import-&gt;Existing</span> <span class="pre">Projects</span> <span class="pre">into</span> <span class="pre">Workspace-&gt;Select</span> <span class="pre">git</span> <span class="pre">directory</span></code>.</li>
-<li>Make sure &#8220;cassandra-trunk&#8221; is recognized and selected as a project (assuming you checked the code out into the folder cassandra-trunk as described above).</li>
-<li>Confirm &#8220;Finish&#8221; to have your project imported.</li>
+<li>Select <code class="docutils literal notranslate"><span class="pre">File-&gt;Import-&gt;Existing</span> <span class="pre">Projects</span> <span class="pre">into</span> <span class="pre">Workspace-&gt;Select</span> <span class="pre">git</span> <span class="pre">directory</span></code>.</li>
+<li>Make sure “cassandra-trunk” is recognized and selected as a project (assuming you checked the code out into the folder cassandra-trunk as described above).</li>
+<li>Confirm “Finish” to have your project imported.</li>
 </ul>
 </div></blockquote>
-<p>You should now be able to find the project as part of the &#8220;Package Explorer&#8221; or &#8220;Project Explorer&#8221; without having Eclipse complain about any errors after building the project automatically.</p>
+<p>You should now be able to find the project as part of the “Package Explorer” or “Project Explorer” without having Eclipse complain about any errors after building the project automatically.</p>
 </div>
 <div class="section" id="unit-tests">
 <h3>Unit Tests<a class="headerlink" href="#unit-tests" title="Permalink to this headline">¶</a></h3>
-<p>Unit tests can be run from Eclipse by simply right-clicking the class file or method and selecting <code class="docutils literal"><span class="pre">Run</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>. Tests can be debugged this way as well by defining breakpoints (double-click line number) and selecting <code class="docutils literal"><span class="pre">Debug</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>.</p>
+<p>Unit tests can be run from Eclipse by simply right-clicking the class file or method and selecting <code class="docutils literal notranslate"><span class="pre">Run</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>. Tests can be debugged this way as well by defining breakpoints (double-click line number) and selecting <code class="docutils literal notranslate"><span class="pre">Debug</span> <span class="pre">As-&gt;JUnit</span> <span class="pre">Test</span></code>.</p>
 <p>Alternatively all unit tests can be run from the command line as described in <a class="reference internal" href="testing.html"><span class="doc">Testing</span></a></p>
 </div>
 <div class="section" id="debugging-cassandra-using-eclipse">
 <h3>Debugging Cassandra Using Eclipse<a class="headerlink" href="#debugging-cassandra-using-eclipse" title="Permalink to this headline">¶</a></h3>
-<p>There are two ways how to start and debug a local Cassandra instance with Eclipse. You can either start Cassandra just as you normally would by using the <code class="docutils literal"><span class="pre">./bin/cassandra</span></code> script and connect to the JVM through <a class="reference external" href="https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/introclientissues005.html">remotely</a> from Eclipse or start Cassandra from Eclipse right away.</p>
+<p>There are two ways how to start and debug a local Cassandra instance with Eclipse. You can either start Cassandra just as you normally would by using the <code class="docutils literal notranslate"><span class="pre">./bin/cassandra</span></code> script and connect to the JVM through <a class="reference external" href="https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/introclientissues005.html">remotely</a> from Eclipse or start Cassandra from Eclipse right away.</p>
 <div class="section" id="starting-cassandra-from-command-line">
 <h4>Starting Cassandra From Command Line<a class="headerlink" href="#starting-cassandra-from-command-line" title="Permalink to this headline">¶</a></h4>
 <blockquote>
 <div><ul class="simple">
 <li>Set environment variable to define remote debugging options for the JVM:
-<code class="docutils literal"><span class="pre">export</span> <span class="pre">JVM_EXTRA_OPTS=&quot;-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414&quot;</span></code></li>
-<li>Start Cassandra by executing the <code class="docutils literal"><span class="pre">./bin/cassandra</span></code></li>
+<code class="docutils literal notranslate"><span class="pre">export</span> <span class="pre">JVM_EXTRA_OPTS=&quot;-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414&quot;</span></code></li>
+<li>Start Cassandra by executing the <code class="docutils literal notranslate"><span class="pre">./bin/cassandra</span></code></li>
 </ul>
 </div></blockquote>
 <p>Afterwards you should be able to connect to the running Cassandra process through the following steps:</p>
-<p>From the menu, select <code class="docutils literal"><span class="pre">Run-&gt;Debug</span> <span class="pre">Configurations..</span></code></p>
+<p>From the menu, select <code class="docutils literal notranslate"><span class="pre">Run-&gt;Debug</span> <span class="pre">Configurations..</span></code></p>
 <img alt="../_images/eclipse_debug0.png" src="../_images/eclipse_debug0.png" />
 <p>Create new remote application</p>
 <img alt="../_images/eclipse_debug1.png" src="../_images/eclipse_debug1.png" />
 <p>Configure connection settings by specifying a name and port 1414</p>
 <img alt="../_images/eclipse_debug2.png" src="../_images/eclipse_debug2.png" />
-<p>Afterwards confirm &#8220;Debug&#8221; to connect to the JVM and start debugging Cassandra!</p>
+<p>Afterwards confirm “Debug” to connect to the JVM and start debugging Cassandra!</p>
 </div>
 <div class="section" id="starting-cassandra-from-eclipse">
 <h4>Starting Cassandra From Eclipse<a class="headerlink" href="#starting-cassandra-from-eclipse" title="Permalink to this headline">¶</a></h4>
-<p>Cassandra can also be started directly from Eclipse if you don&#8217;t want to use the command line.</p>
-<p>From the menu, select <code class="docutils literal"><span class="pre">Run-&gt;Run</span> <span class="pre">Configurations..</span></code></p>
+<p>Cassandra can also be started directly from Eclipse if you don’t want to use the command line.</p>
+<p>From the menu, select <code class="docutils literal notranslate"><span class="pre">Run-&gt;Run</span> <span class="pre">Configurations..</span></code></p>
 <img alt="../_images/eclipse_debug3.png" src="../_images/eclipse_debug3.png" />
 <p>Create new application</p>
 <img alt="../_images/eclipse_debug4.png" src="../_images/eclipse_debug4.png" />
-<p>Specify name, project and main class <code class="docutils literal"><span class="pre">org.apache.cassandra.service.CassandraDaemon</span></code></p>
+<p>Specify name, project and main class <code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.service.CassandraDaemon</span></code></p>
 <img alt="../_images/eclipse_debug5.png" src="../_images/eclipse_debug5.png" />
 <p>Configure additional JVM specific parameters that will start Cassandra with some of the settings created by the regular startup script. Change heap related values as needed.</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="o">-</span><span class="n">Xms1024M</span> <span class="o">-</span><span class="n">Xmx1024M</span> <span class="o">-</span><span class="n">Xmn220M</span> <span class="o">-</span><span class="n">Xss256k</span> <span class="o">-</span><span class="n">ea</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseThreadPriorities</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="n">ThreadPriorityPolicy</span><span class="o">=</span><span class="mi">42</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseParNewGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseConcMarkSweepGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">CMSParallelRemarkEnabled</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseCondCardMark</span> <span class="o">-</span><span class="n">javaagent</span><span class="p">:</span><span class="o">./</span><span class="n">lib</span><span class="o">/</span><span class="n">jamm</span><span class="o">-</span><span class="mf">0.3</span><span class="o">.</span><span class="mf">0.</span><span class="n">jar</span> <span class="o">-</span><span class="n">Djava</span><span class="o">.</span><span class="n">net</span><span class="o">.</span><span class="n">preferIPv4Stack</span><span class="o">=</span><span class="n">true</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="o">-</span><span class="n">Xms1024M</span> <span class="o">-</span><span class="n">Xmx1024M</span> <span class="o">-</span><span class="n">Xmn220M</span> <span class="o">-</span><span class="n">Xss256k</span> <span class="o">-</span><span class="n">ea</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseThreadPriorities</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="n">ThreadPriorityPolicy</span><span class="o">=</span><span class="mi">42</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseParNewGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseConcMarkSweepGC</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">CMSParallelRemarkEnabled</span> <span class="o">-</span><span class="n">XX</span><span class="p">:</span><span class="o">+</span><span class="n">UseCondCardMark</span> <span class="o">-</span><span class="n">javaagent</span><span class="p">:</span><span class="o">./</span><span class="n">lib</span><span class="o">/</span><span class="n">jamm</span><span class="o">-</span><span class="mf">0.3</span><span class="o">.</span><span class="mf">0.</span><span class="n">jar</span> <span class="o">-</span><span class="n">Djava</span><span class="o">.</span><span class="n">net</span><span class="o">.</span><span class="n">preferIPv4Stack</span><span class="o">=</span><span class="n">true</span>
 </pre></div>
 </div>
 <img alt="../_images/eclipse_debug6.png" src="../_images/eclipse_debug6.png" />
-<p>Now just confirm &#8220;Debug&#8221; and you should see the output of Cassandra starting up in the Eclipse console and should be able to set breakpoints and start debugging!</p>
+<p>Now just confirm “Debug” and you should see the output of Cassandra starting up in the Eclipse console and should be able to set breakpoints and start debugging!</p>
 </div>
 </div>
 </div>
diff --git a/content/doc/stable/development/index.html b/content/doc/stable/development/index.html
index 54d404a..b111710 100644
--- a/content/doc/stable/development/index.html
+++ b/content/doc/stable/development/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Building and IDE Integration" href="ide.html"/> <link rel="prev" title="Troubleshooting" href="../troubleshooting/index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Building and IDE Integration" href="ide.html"/> <link rel="prev" title="Troubleshooting" href="../troubleshooting/index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/development/patches.html b/content/doc/stable/development/patches.html
index 8471cdb..89a48af 100644
--- a/content/doc/stable/development/patches.html
+++ b/content/doc/stable/development/patches.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Code Style" href="code_style.html"/> <link rel="prev" title="Testing" href="testing.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Code Style" href="code_style.html"/> <link rel="prev" title="Testing" href="testing.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -165,7 +165,7 @@
 <h1>Contributing Code Changes<a class="headerlink" href="#contributing-code-changes" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="choosing-what-to-work-on">
 <h2>Choosing What to Work on<a class="headerlink" href="#choosing-what-to-work-on" title="Permalink to this headline">¶</a></h2>
-<p>Submitted patches can include bug fixes, changes to the Java code base, improvements for tooling (both Java or Python), documentation, testing or any other changes that requires changing the code base. Although the process of contributing code is always the same, the amount of work and time it takes to get a patch accepted also depends on the kind of issue you&#8217;re addressing.</p>
+<p>Submitted patches can include bug fixes, changes to the Java code base, improvements for tooling (both Java or Python), documentation, testing or any other changes that requires changing the code base. Although the process of contributing code is always the same, the amount of work and time it takes to get a patch accepted also depends on the kind of issue you’re addressing.</p>
 <dl class="docutils">
 <dt>As a general rule of thumb:</dt>
 <dd><ul class="first last simple">
@@ -183,12 +183,12 @@
 </div>
 <div class="section" id="before-you-start-coding">
 <h2>Before You Start Coding<a class="headerlink" href="#before-you-start-coding" title="Permalink to this headline">¶</a></h2>
-<p>Although contributions are highly appreciated, we do not guarantee that each contribution will become a part of Cassandra. Therefor it&#8217;s generally a good idea to first get some feedback on the things you plan to work on, especially about any new features or major changes to the code base. You can reach out to other developers on the mailing list or IRC channel listed on our <a class="reference external" href="http://cassandra.apache.org/community/">community page</a>.</p>
+<p>Although contributions are highly appreciated, we do not guarantee that each contribution will become a part of Cassandra. Therefor it’s generally a good idea to first get some feedback on the things you plan to work on, especially about any new features or major changes to the code base. You can reach out to other developers on the mailing list or IRC channel listed on our <a class="reference external" href="http://cassandra.apache.org/community/">community page</a>.</p>
 <dl class="docutils">
 <dt>You should also</dt>
 <dd><ul class="first last simple">
 <li>Avoid redundant work by searching for already reported issues in <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA">JIRA</a></li>
-<li>Create a new issue early in the process describing what you&#8217;re working on - not just after finishing your patch</li>
+<li>Create a new issue early in the process describing what you’re working on - not just after finishing your patch</li>
 <li>Link related JIRA issues with your own ticket to provide a better context</li>
 <li>Update your ticket from time to time by giving feedback on your progress and link a GitHub WIP branch with your current code</li>
 <li>Ping people who you actively like to ask for advice on JIRA by <a class="reference external" href="https://confluence.atlassian.com/conf54/confluence-user-s-guide/sharing-content/using-mentions">mentioning users</a></li>
@@ -232,14 +232,14 @@
 </tr>
 </tbody>
 </table>
-<p>Corresponding branches in git are easy to recognize as they are named <code class="docutils literal"><span class="pre">cassandra-&lt;release&gt;</span></code> (e.g. <code class="docutils literal"><span class="pre">cassandra-3.0</span></code>). The <code class="docutils literal"><span class="pre">trunk</span></code> branch is an exception, as it contains the most recent commits from all other branches and is used for creating new branches for future tick-tock releases.</p>
+<p>Corresponding branches in git are easy to recognize as they are named <code class="docutils literal notranslate"><span class="pre">cassandra-&lt;release&gt;</span></code> (e.g. <code class="docutils literal notranslate"><span class="pre">cassandra-3.0</span></code>). The <code class="docutils literal notranslate"><span class="pre">trunk</span></code> branch is an exception, as it contains the most recent commits from all other branches and is used for creating new branches for future tick-tock releases.</p>
 <div class="section" id="tick-tock-releases">
 <h4>Tick-Tock Releases<a class="headerlink" href="#tick-tock-releases" title="Permalink to this headline">¶</a></h4>
 <p>New releases created as part of the <a class="reference external" href="http://www.planetcassandra.org/blog/cassandra-2-2-3-0-and-beyond/">tick-tock release process</a> will either focus on stability (odd version numbers) or introduce new features (even version numbers). Any code for new Cassandra features you should be based on the latest, unreleased 3.x branch with even version number or based on trunk.</p>
 </div>
 <div class="section" id="bug-fixes">
 <h4>Bug Fixes<a class="headerlink" href="#bug-fixes" title="Permalink to this headline">¶</a></h4>
-<p>Creating patches for bug fixes is a bit more complicated as this will depend on how many different versions of Cassandra are affected. In each case, the order for merging such changes will be <code class="docutils literal"><span class="pre">cassandra-2.1</span></code> -&gt; <code class="docutils literal"><span class="pre">cassandra-2.2</span></code> -&gt; <code class="docutils literal"><span class="pre">cassandra-3.0</span></code> -&gt; <code class="docutils literal"><span class="pre">cassandra-3.x</span></code> -&gt; <code class="docutils literal"><span class="pre">trunk</span></code>. But don&#8217;t worry, merging from 2.1 would be the worst case for bugs that affect all currently supported versions, which isn&#8217;t very common. As a contributor, you&#8217;re also not expected to provide a single patch for each version. What you need to do however is:</p>
+<p>Creating patches for bug fixes is a bit more complicated as this will depend on how many different versions of Cassandra are affected. In each case, the order for merging such changes will be <code class="docutils literal notranslate"><span class="pre">cassandra-2.1</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">cassandra-2.2</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">cassandra-3.0</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">cassandra-3.x</span></code> -&gt; <code class="docutils literal notranslate"><span class="pre">trunk</span></code>. But don’t worry, merging from 2.1 would be the worst case for bugs that affect all currently supported versions, which isn’t very common. As a contributor, you’re also not expected to provide a single patch for each version. What you need to do however is:</p>
 <blockquote>
 <div><ul class="simple">
 <li>Be clear about which versions you could verify to be affected by the bug</li>
@@ -254,12 +254,12 @@
 </div>
 <div class="section" id="creating-a-patch">
 <h2>Creating a Patch<a class="headerlink" href="#creating-a-patch" title="Permalink to this headline">¶</a></h2>
-<p>So you&#8217;ve finished coding and the great moment arrives: it&#8217;s time to submit your patch!</p>
+<p>So you’ve finished coding and the great moment arrives: it’s time to submit your patch!</p>
 <blockquote>
 <div><ol class="arabic simple">
-<li>Create a branch for your changes if you haven&#8217;t done already. Many contributors name their branches based on ticket number and Cassandra version, e.g. <code class="docutils literal"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre">-b</span> <span class="pre">12345-3.0</span></code></li>
-<li>Verify that you follow Cassandra&#8217;s <a class="reference internal" href="code_style.html"><span class="doc">Code Style</span></a></li>
-<li>Make sure all tests (including yours) pass using ant as described in <a class="reference internal" href="testing.html"><span class="doc">Testing</span></a>. If you suspect a test failure is unrelated to your change, it may be useful to check the test&#8217;s status by searching the issue tracker or looking at <a class="reference external" href="https://cassci.datastax.com/">CI</a> results for the relevant upstream version.  Note that the full test suites take many hours to complete, so it is common to only run specific relevant tests locally before uploading a patch.  Once a patch has been uploaded, the reviewer or committer can help setup CI jobs to run the full test suites.</li>
+<li>Create a branch for your changes if you haven’t done already. Many contributors name their branches based on ticket number and Cassandra version, e.g. <code class="docutils literal notranslate"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre">-b</span> <span class="pre">12345-3.0</span></code></li>
+<li>Verify that you follow Cassandra’s <a class="reference internal" href="code_style.html"><span class="doc">Code Style</span></a></li>
+<li>Make sure all tests (including yours) pass using ant as described in <a class="reference internal" href="testing.html"><span class="doc">Testing</span></a>. If you suspect a test failure is unrelated to your change, it may be useful to check the test’s status by searching the issue tracker or looking at <a class="reference external" href="https://cassci.datastax.com/">CI</a> results for the relevant upstream version.  Note that the full test suites take many hours to complete, so it is common to only run specific relevant tests locally before uploading a patch.  Once a patch has been uploaded, the reviewer or committer can help setup CI jobs to run the full test suites.</li>
 <li>Consider going through the <a class="reference internal" href="how_to_review.html"><span class="doc">Review Checklist</span></a> for your code. This will help you to understand how others will consider your change for inclusion.</li>
 <li>Don’t make the committer squash commits for you in the root branch either. Multiple commits are fine - and often preferable - during review stage, especially for incremental review, but once +1d, do either:</li>
 </ol>
@@ -270,26 +270,26 @@
 </ol>
 </div></blockquote>
 <ol class="arabic simple" start="6">
-<li>Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch ending with the following statement on the last line: <code class="docutils literal"><span class="pre">patch</span> <span class="pre">by</span> <span class="pre">X;</span> <span class="pre">reviewed</span> <span class="pre">by</span> <span class="pre">Y</span> <span class="pre">for</span> <span class="pre">CASSANDRA-ZZZZZ</span></code></li>
-<li>When you&#8217;re happy with the result, create a patch:</li>
+<li>Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch ending with the following statement on the last line: <code class="docutils literal notranslate"><span class="pre">patch</span> <span class="pre">by</span> <span class="pre">X;</span> <span class="pre">reviewed</span> <span class="pre">by</span> <span class="pre">Y</span> <span class="pre">for</span> <span class="pre">CASSANDRA-ZZZZZ</span></code></li>
+<li>When you’re happy with the result, create a patch:</li>
 </ol>
 <blockquote>
-<div><div class="highlight-none"><div class="highlight"><pre><span></span>git add &lt;any new or modified file&gt;
+<div><div class="highlight-none notranslate"><div class="highlight"><pre><span></span>git add &lt;any new or modified file&gt;
 git commit -m &#39;&lt;message&gt;&#39;
 git format-patch HEAD~1
 mv &lt;patch-file&gt; &lt;ticket-branchname.txt&gt; (e.g. 12345-trunk.txt, 12345-3.0.txt)
 </pre></div>
 </div>
 <p>Alternatively, many contributors prefer to make their branch available on GitHub. In this case, fork the Cassandra repository on GitHub and push your branch:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>git push --set-upstream origin 12345-3.0
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>git push --set-upstream origin 12345-3.0
 </pre></div>
 </div>
 </div></blockquote>
 <ol class="arabic simple" start="8">
 <li>To make life easier for your reviewer/committer, you may want to make sure your patch applies cleanly to later branches and create additional patches/branches for later Cassandra versions to which your original patch does not apply cleanly. That said, this is not critical, and you will receive feedback on your patch regardless.</li>
-<li>Attach the newly generated patch to the ticket/add a link to your branch and click &#8220;Submit Patch&#8221; at the top of the ticket. This will move the ticket into &#8220;Patch Available&#8221; status, indicating that your submission is ready for review.</li>
+<li>Attach the newly generated patch to the ticket/add a link to your branch and click “Submit Patch” at the top of the ticket. This will move the ticket into “Patch Available” status, indicating that your submission is ready for review.</li>
 <li>Wait for other developers or committers to review it and hopefully +1 the ticket (see <a class="reference internal" href="how_to_review.html"><span class="doc">Review Checklist</span></a>). If your change does not receive a +1, do not be discouraged. If possible, the reviewer will give suggestions to improve your patch or explain why it is not suitable.</li>
-<li>If the reviewer has given feedback to improve the patch, make the necessary changes and move the ticket into &#8220;Patch Available&#8221; once again.</li>
+<li>If the reviewer has given feedback to improve the patch, make the necessary changes and move the ticket into “Patch Available” once again.</li>
 </ol>
 </div></blockquote>
 <p>Once the review process is complete, you will receive a +1. Wait for a committer to commit it. Do not delete your branches immediately after they’ve been committed - keep them on GitHub for a while. Alternatively, attach a patch to JIRA for historical record. It’s not that uncommon for a committer to mess up a merge. In case of that happening, access to the original code is required, or else you’ll have to redo some of the work.</p>
diff --git a/content/doc/stable/development/testing.html b/content/doc/stable/development/testing.html
index 6028bfe..99b40b5 100644
--- a/content/doc/stable/development/testing.html
+++ b/content/doc/stable/development/testing.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Contributing Code Changes" href="patches.html"/> <link rel="prev" title="Building and IDE Integration" href="ide.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Development" href="index.html"/> <link rel="next" title="Contributing Code Changes" href="patches.html"/> <link rel="prev" title="Building and IDE Integration" href="ide.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -163,43 +163,43 @@
           
   <div class="section" id="testing">
 <h1>Testing<a class="headerlink" href="#testing" title="Permalink to this headline">¶</a></h1>
-<p>Creating tests is one of the most important and also most difficult parts of developing Cassandra. There are different ways to test your code depending on what you&#8217;re working on.</p>
+<p>Creating tests is one of the most important and also most difficult parts of developing Cassandra. There are different ways to test your code depending on what you’re working on.</p>
 <div class="section" id="unit-testing">
 <h2>Unit Testing<a class="headerlink" href="#unit-testing" title="Permalink to this headline">¶</a></h2>
-<p>The most simple way to test code in Cassandra is probably by writing a unit test. Cassandra uses JUnit as a testing framework and test cases can be found in the <code class="docutils literal"><span class="pre">test/unit</span></code> directory. Ideally you’d be able to create a unit test for your implementation that would exclusively cover the class you created (the unit under test). Unfortunately this is not always possible and Cassandra doesn’t have a very mock friendly code base. Often you’ll find yourself in a situation where you have to make use of an embedded Cassandra instance that you’ll be able to interact with in your test. If you want to make use of CQL in your test, you can simply extend CQLTester and use some of the convenient helper methods such as in the following example.</p>
-<div class="highlight-java"><div class="highlight"><pre><span></span><span class="nd">@Test</span>
-<span class="kd">public</span> <span class="kt">void</span> <span class="nf">testBatchAndList</span><span class="o">()</span> <span class="kd">throws</span> <span class="n">Throwable</span>
-<span class="o">{</span>
-   <span class="n">createTable</span><span class="o">(</span><span class="s">&quot;CREATE TABLE %s (k int PRIMARY KEY, l list&lt;int&gt;)&quot;</span><span class="o">);</span>
-   <span class="n">execute</span><span class="o">(</span><span class="s">&quot;BEGIN BATCH &quot;</span> <span class="o">+</span>
+<p>The most simple way to test code in Cassandra is probably by writing a unit test. Cassandra uses JUnit as a testing framework and test cases can be found in the <code class="docutils literal notranslate"><span class="pre">test/unit</span></code> directory. Ideally you’d be able to create a unit test for your implementation that would exclusively cover the class you created (the unit under test). Unfortunately this is not always possible and Cassandra doesn’t have a very mock friendly code base. Often you’ll find yourself in a situation where you have to make use of an embedded Cassandra instance that you’ll be able to interact with in your test. If you want to make use of CQL in your test, you can simply extend CQLTester and use some of the convenient helper methods such as in the following example.</p>
+<div class="highlight-java notranslate"><div class="highlight"><pre><span></span><span class="nd">@Test</span>
+<span class="kd">public</span> <span class="kt">void</span> <span class="nf">testBatchAndList</span><span class="p">()</span> <span class="kd">throws</span> <span class="n">Throwable</span>
+<span class="p">{</span>
+   <span class="n">createTable</span><span class="p">(</span><span class="s">&quot;CREATE TABLE %s (k int PRIMARY KEY, l list&lt;int&gt;)&quot;</span><span class="p">);</span>
+   <span class="n">execute</span><span class="p">(</span><span class="s">&quot;BEGIN BATCH &quot;</span> <span class="o">+</span>
            <span class="s">&quot;UPDATE %1$s SET l = l +[ 1 ] WHERE k = 0; &quot;</span> <span class="o">+</span>
            <span class="s">&quot;UPDATE %1$s SET l = l + [ 2 ] WHERE k = 0; &quot;</span> <span class="o">+</span>
            <span class="s">&quot;UPDATE %1$s SET l = l + [ 3 ] WHERE k = 0; &quot;</span> <span class="o">+</span>
-           <span class="s">&quot;APPLY BATCH&quot;</span><span class="o">);</span>
+           <span class="s">&quot;APPLY BATCH&quot;</span><span class="p">);</span>
 
-   <span class="n">assertRows</span><span class="o">(</span><span class="n">execute</span><span class="o">(</span><span class="s">&quot;SELECT l FROM %s WHERE k = 0&quot;</span><span class="o">),</span>
-              <span class="n">row</span><span class="o">(</span><span class="n">list</span><span class="o">(</span><span class="mi">1</span><span class="o">,</span> <span class="mi">2</span><span class="o">,</span> <span class="mi">3</span><span class="o">)));</span>
-<span class="o">}</span>
+   <span class="n">assertRows</span><span class="p">(</span><span class="n">execute</span><span class="p">(</span><span class="s">&quot;SELECT l FROM %s WHERE k = 0&quot;</span><span class="p">),</span>
+              <span class="n">row</span><span class="p">(</span><span class="n">list</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">3</span><span class="p">)));</span>
+<span class="p">}</span>
 </pre></div>
 </div>
-<p>Unit tests can be run from the command line using the <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test</span></code> command, <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test</span> <span class="pre">-Dtest.name=&lt;simple_classname&gt;</span></code> to execute a test suite or <code class="docutils literal"><span class="pre">ant</span> <span class="pre">testsome</span> <span class="pre">-Dtest.name=&lt;FQCN&gt;</span> <span class="pre">-Dtest.methods=&lt;testmethod1&gt;[,testmethod2]</span></code> for individual tests.  For example, to run all test methods in the <code class="docutils literal"><span class="pre">org.apache.cassandra.cql3.SimpleQueryTest</span></code> class, you would run:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ant test -Dtest.name=SimpleQueryTest
+<p>Unit tests can be run from the command line using the <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test</span></code> command, <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test</span> <span class="pre">-Dtest.name=&lt;simple_classname&gt;</span></code> to execute a test suite or <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">testsome</span> <span class="pre">-Dtest.name=&lt;FQCN&gt;</span> <span class="pre">-Dtest.methods=&lt;testmethod1&gt;[,testmethod2]</span></code> for individual tests.  For example, to run all test methods in the <code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.cql3.SimpleQueryTest</span></code> class, you would run:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ant test -Dtest.name=SimpleQueryTest
 </pre></div>
 </div>
-<p>To run only the <code class="docutils literal"><span class="pre">testStaticCompactTables()</span></code> test method from that class, you would run:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ant testsome -Dtest.name=org.apache.cassandra.cql3.SimpleQueryTest -Dtest.methods=testStaticCompactTables
+<p>To run only the <code class="docutils literal notranslate"><span class="pre">testStaticCompactTables()</span></code> test method from that class, you would run:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ant testsome -Dtest.name=org.apache.cassandra.cql3.SimpleQueryTest -Dtest.methods=testStaticCompactTables
 </pre></div>
 </div>
 <div class="section" id="long-running-tests">
 <h3>Long running tests<a class="headerlink" href="#long-running-tests" title="Permalink to this headline">¶</a></h3>
-<p>Test that consume a significant amount of time during execution can be found in the <code class="docutils literal"><span class="pre">test/long</span></code> directory and executed as a regular JUnit test or standalone program. Except for the execution time, there’s nothing really special about them. However, ant will execute tests under <code class="docutils literal"><span class="pre">test/long</span></code> only when using the <code class="docutils literal"><span class="pre">ant</span> <span class="pre">long-test</span></code> target.</p>
+<p>Test that consume a significant amount of time during execution can be found in the <code class="docutils literal notranslate"><span class="pre">test/long</span></code> directory and executed as a regular JUnit test or standalone program. Except for the execution time, there’s nothing really special about them. However, ant will execute tests under <code class="docutils literal notranslate"><span class="pre">test/long</span></code> only when using the <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">long-test</span></code> target.</p>
 </div>
 </div>
 <div class="section" id="dtests">
 <h2>DTests<a class="headerlink" href="#dtests" title="Permalink to this headline">¶</a></h2>
-<p>One way of doing integration or system testing at larger scale is by using <a class="reference external" href="https://github.com/riptano/cassandra-dtest">dtest</a>, which stands for “Cassandra Distributed Tests”. The idea is to automatically setup Cassandra clusters using various configurations and simulate certain use cases you want to test. This is done using Python scripts and <code class="docutils literal"><span class="pre">ccmlib</span></code> from the <a class="reference external" href="https://github.com/pcmanus/ccm">ccm</a> project. Dtests will setup clusters using this library just as you do running ad-hoc <code class="docutils literal"><span class="pre">ccm</span></code> commands on your local machine. Afterwards dtests will use the <a class="reference external" href="http://datastax.github.io/python-driver/installation.html">Python driver</a> to interact with the nodes, manipulate the file system, analyze logs or mess with individual nodes.</p>
+<p>One way of doing integration or system testing at larger scale is by using <a class="reference external" href="https://github.com/riptano/cassandra-dtest">dtest</a>, which stands for “Cassandra Distributed Tests”. The idea is to automatically setup Cassandra clusters using various configurations and simulate certain use cases you want to test. This is done using Python scripts and <code class="docutils literal notranslate"><span class="pre">ccmlib</span></code> from the <a class="reference external" href="https://github.com/pcmanus/ccm">ccm</a> project. Dtests will setup clusters using this library just as you do running ad-hoc <code class="docutils literal notranslate"><span class="pre">ccm</span></code> commands on your local machine. Afterwards dtests will use the <a class="reference external" href="http://datastax.github.io/python-driver/installation.html">Python driver</a> to interact with the nodes, manipulate the file system, analyze logs or mess with individual nodes.</p>
 <p>Using dtests helps us to prevent regression bugs by continually executing tests on the <a class="reference external" href="http://cassci.datastax.com/">CI server</a> against new patches. For frequent contributors, this Jenkins is set up to build branches from their GitHub repositories. It is likely that your reviewer will use this Jenkins instance to run tests for your patch. Read more on the motivation behind the CI server <a class="reference external" href="http://www.datastax.com/dev/blog/cassandra-testing-improvements-for-developer-convenience-and-confidence">here</a>.</p>
-<p>The best way to learn how to write dtests is probably by reading the introduction &#8220;<a class="reference external" href="http://www.datastax.com/dev/blog/how-to-write-a-dtest">How to Write a Dtest</a>&#8221; and by looking at existing, recently updated tests in the project. New tests must follow certain <a class="reference external" href="https://github.com/riptano/cassandra-dtest/blob/master/CONTRIBUTING.md">style conventions</a> that are being checked before accepting contributions. In contrast to Cassandra, dtest issues and pull-requests are managed on github, therefor you should make sure to link any created dtests in your Cassandra ticket and also refer to the ticket number in your dtest PR.</p>
+<p>The best way to learn how to write dtests is probably by reading the introduction “<a class="reference external" href="http://www.datastax.com/dev/blog/how-to-write-a-dtest">How to Write a Dtest</a>” and by looking at existing, recently updated tests in the project. New tests must follow certain <a class="reference external" href="https://github.com/riptano/cassandra-dtest/blob/master/CONTRIBUTING.md">style conventions</a> that are being checked before accepting contributions. In contrast to Cassandra, dtest issues and pull-requests are managed on github, therefor you should make sure to link any created dtests in your Cassandra ticket and also refer to the ticket number in your dtest PR.</p>
 <p>Creating a good dtest can be tough, but it should not prevent you from submitting patches! Please ask in the corresponding JIRA ticket how to write a good dtest for the patch. In most cases a reviewer or committer will able to support you, and in some cases they may offer to write a dtest for you.</p>
 </div>
 <div class="section" id="performance-testing">
@@ -215,7 +215,7 @@
 </div>
 <div class="section" id="circleci">
 <h3>CircleCI<a class="headerlink" href="#circleci" title="Permalink to this headline">¶</a></h3>
-<p>Cassandra ships with a default <a class="reference external" href="https://circleci.com">CircleCI</a> configuration, to enable running tests on your branches, you need to go the CircleCI website, click &#8220;Login&#8221; and log in with your github account. Then you need to give CircleCI permission to watch your repositories. Once you have done that, you can optionally configure CircleCI to run tests in parallel - click &#8220;Projects&#8221;, then your github account and then click the settings for the project. If you leave the parallelism at 1 for Cassandra, only <code class="docutils literal"><span class="pre">ant</span> <span class="pre">eclipse-warnings</span></code> and <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test</span></code> will be run. If you up the parallelism to 4, it also runs <code class="docutils literal"><span class="pre">ant</span> <span class="pre">long-test</span></code>, <code class="docutils literal"><span class="pre">ant</span> <span class="pre">test-compression</span></code> and <code class="docutils literal"><span class="pre">ant</span> <span class="pre">stress-test</span></code></p>
+<p>Cassandra ships with a default <a class="reference external" href="https://circleci.com">CircleCI</a> configuration, to enable running tests on your branches, you need to go the CircleCI website, click “Login” and log in with your github account. Then you need to give CircleCI permission to watch your repositories. Once you have done that, you can optionally configure CircleCI to run tests in parallel - click “Projects”, then your github account and then click the settings for the project. If you leave the parallelism at 1 for Cassandra, only <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">eclipse-warnings</span></code> and <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test</span></code> will be run. If you up the parallelism to 4, it also runs <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">long-test</span></code>, <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">test-compression</span></code> and <code class="docutils literal notranslate"><span class="pre">ant</span> <span class="pre">stress-test</span></code></p>
 </div>
 </div>
 </div>
diff --git a/content/doc/stable/faq/index.html b/content/doc/stable/faq/index.html
index 923021e..074d387 100644
--- a/content/doc/stable/faq/index.html
+++ b/content/doc/stable/faq/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Reporting Bugs and Contributing" href="../bugs.html"/> <link rel="prev" title="How-to Commit" href="../development/how_to_commit.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Reporting Bugs and Contributing" href="../bugs.html"/> <link rel="prev" title="How-to Commit" href="../development/how_to_commit.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -132,25 +132,25 @@
 <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 current"><a class="current reference internal" href="#">Frequently Asked Questions</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses">Why can&#8217;t I set <code class="docutils literal"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses">Why can’t I set <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-ports-does-cassandra-use">What ports does Cassandra use?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-happens-to-existing-data-in-my-cluster-when-i-add-new-nodes">What happens to existing data in my cluster when I add new nodes?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#i-delete-data-from-cassandra-but-disk-usage-stays-the-same-what-gives">I delete data from Cassandra, but disk usage stays the same. What gives?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring">Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#can-i-change-the-replication-factor-a-a-keyspace-on-a-live-cluster">Can I change the replication factor (a a keyspace) on a live cluster?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#can-i-store-large-blobs-in-cassandra">Can I Store (large) BLOBs in Cassandra?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives">Nodetool says &#8220;Connection refused to host: 127.0.1.1&#8221; for any remote host. What gives?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives">Nodetool says “Connection refused to host: 127.0.1.1” for any remote host. What gives?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#will-batching-my-operations-speed-up-my-bulk-load">Will batching my operations speed up my bulk load?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#on-rhel-nodes-are-unable-to-join-the-ring">On RHEL nodes are unable to join the ring</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#how-do-i-unsubscribe-from-the-email-list">How do I unsubscribe from the email list?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#why-does-top-report-that-cassandra-is-using-a-lot-more-memory-than-the-java-heap-max">Why does top report that Cassandra is using a lot more memory than the Java heap max?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-are-seeds">What are seeds?</a></li>
 <li class="toctree-l2"><a class="reference internal" href="#does-single-seed-mean-single-point-of-failure">Does single seed mean single point of failure?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-call-jmx-method-x-on-jconsole">Why can&#8217;t I call jmx method X on jconsole?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#why-do-i-see-messages-dropped-in-the-logs">Why do I see &#8221;... messages dropped ...&#8221; in the logs?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed">Cassandra dies with <code class="docutils literal"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code></a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-can-t-i-call-jmx-method-x-on-jconsole">Why can’t I call jmx method X on jconsole?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-do-i-see-messages-dropped-in-the-logs">Why do I see “… messages dropped …” in the logs?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed">Cassandra dies with <code class="docutils literal notranslate"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code></a></li>
 <li class="toctree-l2"><a class="reference internal" href="#what-happens-if-two-updates-are-made-with-the-same-timestamp">What happens if two updates are made with the same timestamp?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error">Why bootstrapping a new node fails with a &#8220;Stream failed&#8221; error?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error">Why bootstrapping a new node fails with a “Stream failed” error?</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../bugs.html">Reporting Bugs and Contributing</a></li>
@@ -170,32 +170,32 @@
   <div class="section" id="frequently-asked-questions">
 <h1>Frequently Asked Questions<a class="headerlink" href="#frequently-asked-questions" title="Permalink to this headline">¶</a></h1>
 <ul class="simple">
-<li><a class="reference internal" href="#why-cant-list-all"><span class="std std-ref">Why can&#8217;t I set listen_address to listen on 0.0.0.0 (all my addresses)?</span></a></li>
+<li><a class="reference internal" href="#why-cant-list-all"><span class="std std-ref">Why can’t I set listen_address to listen on 0.0.0.0 (all my addresses)?</span></a></li>
 <li><a class="reference internal" href="#what-ports"><span class="std std-ref">What ports does Cassandra use?</span></a></li>
 <li><a class="reference internal" href="#what-happens-on-joins"><span class="std std-ref">What happens to existing data in my cluster when I add new nodes?</span></a></li>
 <li><a class="reference internal" href="#asynch-deletes"><span class="std std-ref">I delete data from Cassandra, but disk usage stays the same. What gives?</span></a></li>
 <li><a class="reference internal" href="#one-entry-ring"><span class="std std-ref">Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?</span></a></li>
 <li><a class="reference internal" href="#can-large-blob"><span class="std std-ref">Can I Store (large) BLOBs in Cassandra?</span></a></li>
-<li><a class="reference internal" href="#nodetool-connection-refused"><span class="std std-ref">Nodetool says &#8220;Connection refused to host: 127.0.1.1&#8221; for any remote host. What gives?</span></a></li>
+<li><a class="reference internal" href="#nodetool-connection-refused"><span class="std std-ref">Nodetool says “Connection refused to host: 127.0.1.1” for any remote host. What gives?</span></a></li>
 <li><a class="reference internal" href="#to-batch-or-not-to-batch"><span class="std std-ref">Will batching my operations speed up my bulk load?</span></a></li>
 <li><a class="reference internal" href="#selinux"><span class="std std-ref">On RHEL nodes are unable to join the ring</span></a></li>
 <li><a class="reference internal" href="#how-to-unsubscribe"><span class="std std-ref">How do I unsubscribe from the email list?</span></a></li>
 <li><a class="reference internal" href="#cassandra-eats-all-my-memory"><span class="std std-ref">Why does top report that Cassandra is using a lot more memory than the Java heap max?</span></a></li>
 <li><a class="reference internal" href="#what-are-seeds"><span class="std std-ref">What are seeds?</span></a></li>
 <li><a class="reference internal" href="#are-seeds-spof"><span class="std std-ref">Does single seed mean single point of failure?</span></a></li>
-<li><a class="reference internal" href="#why-message-dropped"><span class="std std-ref">Why do I see &#8221;... messages dropped ...&#8221; in the logs?</span></a></li>
+<li><a class="reference internal" href="#why-message-dropped"><span class="std std-ref">Why do I see “… messages dropped …” in the logs?</span></a></li>
 <li><a class="reference internal" href="#oom-map-failed"><span class="std std-ref">Cassandra dies with java.lang.OutOfMemoryError: Map failed</span></a></li>
 <li><a class="reference internal" href="#what-on-same-timestamp-update"><span class="std std-ref">What happens if two updates are made with the same timestamp?</span></a></li>
-<li><a class="reference internal" href="#why-bootstrapping-stream-error"><span class="std std-ref">Why bootstrapping a new node fails with a &#8220;Stream failed&#8221; error?</span></a></li>
+<li><a class="reference internal" href="#why-bootstrapping-stream-error"><span class="std std-ref">Why bootstrapping a new node fails with a “Stream failed” error?</span></a></li>
 </ul>
 <div class="section" id="why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses">
-<span id="why-cant-list-all"></span><h2>Why can&#8217;t I set <code class="docutils literal"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?<a class="headerlink" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra is a gossip-based distributed system and <code class="docutils literal"><span class="pre">listen_address</span></code> is the address a node tells other nodes to reach
-it at. Telling other nodes &#8220;contact me on any of my addresses&#8221; is a bad idea; if different nodes in the cluster pick
+<span id="why-cant-list-all"></span><h2>Why can’t I set <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> to listen on 0.0.0.0 (all my addresses)?<a class="headerlink" href="#why-can-t-i-set-listen-address-to-listen-on-0-0-0-0-all-my-addresses" title="Permalink to this headline">¶</a></h2>
+<p>Cassandra is a gossip-based distributed system and <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> is the address a node tells other nodes to reach
+it at. Telling other nodes “contact me on any of my addresses” is a bad idea; if different nodes in the cluster pick
 different addresses for you, Bad Things happen.</p>
-<p>If you don&#8217;t want to manually specify an IP to <code class="docutils literal"><span class="pre">listen_address</span></code> for each node in your cluster (understandable!), leave
-it blank and Cassandra will use <code class="docutils literal"><span class="pre">InetAddress.getLocalHost()</span></code> to pick an address. Then it&#8217;s up to you or your ops team
-to make things resolve correctly (<code class="docutils literal"><span class="pre">/etc/hosts/</span></code>, dns, etc).</p>
+<p>If you don’t want to manually specify an IP to <code class="docutils literal notranslate"><span class="pre">listen_address</span></code> for each node in your cluster (understandable!), leave
+it blank and Cassandra will use <code class="docutils literal notranslate"><span class="pre">InetAddress.getLocalHost()</span></code> to pick an address. Then it’s up to you or your ops team
+to make things resolve correctly (<code class="docutils literal notranslate"><span class="pre">/etc/hosts/</span></code>, dns, etc).</p>
 <p>One exception to this process is JMX, which by default binds to 0.0.0.0 (Java bug 6425769).</p>
 <p>See <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-256">CASSANDRA-256</a> and <a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-43">CASSANDRA-43</a> for more gory details.</p>
 </div>
@@ -203,7 +203,7 @@
 <span id="what-ports"></span><h2>What ports does Cassandra use?<a class="headerlink" href="#what-ports-does-cassandra-use" title="Permalink to this headline">¶</a></h2>
 <p>By default, Cassandra uses 7000 for cluster communication (7001 if SSL is enabled),  9042 for native protocol clients,
 and 7199 for JMX (and 9160 for the deprecated Thrift interface). The internode communication and native protocol ports
-are configurable in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>. The JMX port is configurable in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> (through JVM
+are configurable in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>. The JMX port is configurable in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> (through JVM
 options). All ports are TCP.</p>
 </div>
 <div class="section" id="what-happens-to-existing-data-in-my-cluster-when-i-add-new-nodes">
@@ -213,14 +213,14 @@
 </div>
 <div class="section" id="i-delete-data-from-cassandra-but-disk-usage-stays-the-same-what-gives">
 <span id="asynch-deletes"></span><h2>I delete data from Cassandra, but disk usage stays the same. What gives?<a class="headerlink" href="#i-delete-data-from-cassandra-but-disk-usage-stays-the-same-what-gives" title="Permalink to this headline">¶</a></h2>
-<p>Data you write to Cassandra gets persisted to SSTables. Since SSTables are immutable, the data can&#8217;t actually be removed
-when you perform a delete, instead, a marker (also called a &#8220;tombstone&#8221;) is written to indicate the value&#8217;s new status.
+<p>Data you write to Cassandra gets persisted to SSTables. Since SSTables are immutable, the data can’t actually be removed
+when you perform a delete, instead, a marker (also called a “tombstone”) is written to indicate the value’s new status.
 Never fear though, on the first compaction that occurs between the data and the tombstone, the data will be expunged
 completely and the corresponding disk space recovered. See <a class="reference internal" href="../operating/compaction.html#compaction"><span class="std std-ref">Compaction</span></a> for more detail.</p>
 </div>
 <div class="section" id="why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring">
 <span id="one-entry-ring"></span><h2>Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?<a class="headerlink" href="#why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring" title="Permalink to this headline">¶</a></h2>
-<p>This happens when you have the same token assigned to each node. Don&#8217;t do that.</p>
+<p>This happens when you have the same token assigned to each node. Don’t do that.</p>
 <p>Most often this bites people who deploy by installing Cassandra on a VM (especially when using the Debian package, which
 auto-starts Cassandra after installation, thus generating and saving a token), then cloning that VM to other nodes.</p>
 <p>The easiest fix is to wipe the data and commitlog directories, thus making sure that each node will generate a random
@@ -231,35 +231,35 @@
 <p>Yes, but it will require running repair (or cleanup) to change the replica count of existing data:</p>
 <ul class="simple">
 <li><a class="reference internal" href="../cql/ddl.html#alter-keyspace-statement"><span class="std std-ref">Alter</span></a> the replication factor for desired keyspace (using cqlsh for instance).</li>
-<li>If you&#8217;re reducing the replication factor, run <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the cluster to remove surplus replicated data.
+<li>If you’re reducing the replication factor, run <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the cluster to remove surplus replicated data.
 Cleanup runs on a per-node basis.</li>
-<li>If you&#8217;re increasing the replication factor, run <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">repair</span></code> to ensure data is replicated according to the new
+<li>If you’re increasing the replication factor, run <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">repair</span></code> to ensure data is replicated according to the new
 configuration. Repair runs on a per-replica set basis. This is an intensive process that may result in adverse cluster
-performance. It&#8217;s highly recommended to do rolling repairs, as an attempt to repair the entire cluster at once will
+performance. It’s highly recommended to do rolling repairs, as an attempt to repair the entire cluster at once will
 most likely swamp it.</li>
 </ul>
 </div>
 <div class="section" id="can-i-store-large-blobs-in-cassandra">
 <span id="can-large-blob"></span><h2>Can I Store (large) BLOBs in Cassandra?<a class="headerlink" href="#can-i-store-large-blobs-in-cassandra" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra isn&#8217;t optimized for large file or BLOB storage and a single <code class="docutils literal"><span class="pre">blob</span></code> value is always read and send to the
+<p>Cassandra isn’t optimized for large file or BLOB storage and a single <code class="docutils literal notranslate"><span class="pre">blob</span></code> value is always read and send to the
 client entirely. As such, storing small blobs (less than single digit MB) should not be a problem, but it is advised to
 manually split large blobs into smaller chunks.</p>
 <p>Please note in particular that by default, any value greater than 16MB will be rejected by Cassandra due the
-<code class="docutils literal"><span class="pre">max_mutation_size_in_kb</span></code> configuration of the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a> file (which default to half of
-<code class="docutils literal"><span class="pre">commitlog_segment_size_in_mb</span></code>, which itself default to 32MB).</p>
+<code class="docutils literal notranslate"><span class="pre">max_mutation_size_in_kb</span></code> configuration of the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a> file (which default to half of
+<code class="docutils literal notranslate"><span class="pre">commitlog_segment_size_in_mb</span></code>, which itself default to 32MB).</p>
 </div>
 <div class="section" id="nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives">
-<span id="nodetool-connection-refused"></span><h2>Nodetool says &#8220;Connection refused to host: 127.0.1.1&#8221; for any remote host. What gives?<a class="headerlink" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives" title="Permalink to this headline">¶</a></h2>
+<span id="nodetool-connection-refused"></span><h2>Nodetool says “Connection refused to host: 127.0.1.1” for any remote host. What gives?<a class="headerlink" href="#nodetool-says-connection-refused-to-host-127-0-1-1-for-any-remote-host-what-gives" title="Permalink to this headline">¶</a></h2>
 <p>Nodetool relies on JMX, which in turn relies on RMI, which in turn sets up its own listeners and connectors as needed on
 each end of the exchange. Normally all of this happens behind the scenes transparently, but incorrect name resolution
 for either the host connecting, or the one being connected to, can result in crossed wires and confusing exceptions.</p>
-<p>If you are not using DNS, then make sure that your <code class="docutils literal"><span class="pre">/etc/hosts</span></code> files are accurate on both ends. If that fails, try
-setting the <code class="docutils literal"><span class="pre">-Djava.rmi.server.hostname=&lt;public</span> <span class="pre">name&gt;</span></code> JVM option near the bottom of <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> to an
+<p>If you are not using DNS, then make sure that your <code class="docutils literal notranslate"><span class="pre">/etc/hosts</span></code> files are accurate on both ends. If that fails, try
+setting the <code class="docutils literal notranslate"><span class="pre">-Djava.rmi.server.hostname=&lt;public</span> <span class="pre">name&gt;</span></code> JVM option near the bottom of <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> to an
 interface that you can reach from the remote machine.</p>
 </div>
 <div class="section" id="will-batching-my-operations-speed-up-my-bulk-load">
 <span id="to-batch-or-not-to-batch"></span><h2>Will batching my operations speed up my bulk load?<a class="headerlink" href="#will-batching-my-operations-speed-up-my-bulk-load" title="Permalink to this headline">¶</a></h2>
-<p>No. Using batches to load data will generally just add &#8220;spikes&#8221; of latency. Use asynchronous INSERTs instead, or use
+<p>No. Using batches to load data will generally just add “spikes” of latency. Use asynchronous INSERTs instead, or use
 true <a class="reference internal" href="../operating/bulk_loading.html#bulk-loading"><span class="std std-ref">Bulk Loading</span></a>.</p>
 <p>An exception is batching updates to a single partition, which can be a Good Thing (as long as the size of a single batch
 stay reasonable). But never ever blindly batch everything!</p>
@@ -270,22 +270,22 @@
 </div>
 <div class="section" id="how-do-i-unsubscribe-from-the-email-list">
 <span id="how-to-unsubscribe"></span><h2>How do I unsubscribe from the email list?<a class="headerlink" href="#how-do-i-unsubscribe-from-the-email-list" title="Permalink to this headline">¶</a></h2>
-<p>Send an email to <code class="docutils literal"><span class="pre">user-unsubscribe&#64;cassandra.apache.org</span></code>.</p>
+<p>Send an email to <code class="docutils literal notranslate"><span class="pre">user-unsubscribe&#64;cassandra.apache.org</span></code>.</p>
 </div>
 <div class="section" id="why-does-top-report-that-cassandra-is-using-a-lot-more-memory-than-the-java-heap-max">
 <span id="cassandra-eats-all-my-memory"></span><h2>Why does top report that Cassandra is using a lot more memory than the Java heap max?<a class="headerlink" href="#why-does-top-report-that-cassandra-is-using-a-lot-more-memory-than-the-java-heap-max" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra uses <a class="reference external" href="https://en.wikipedia.org/wiki/Memory-mapped_file">Memory Mapped Files</a> (mmap) internally. That is, we
-use the operating system&#8217;s virtual memory system to map a number of on-disk files into the Cassandra process&#8217; address
-space. This will &#8220;use&#8221; virtual memory; i.e. address space, and will be reported by tools like top accordingly, but on 64
+use the operating system’s virtual memory system to map a number of on-disk files into the Cassandra process’ address
+space. This will “use” virtual memory; i.e. address space, and will be reported by tools like top accordingly, but on 64
 bit systems virtual address space is effectively unlimited so you should not worry about that.</p>
-<p>What matters from the perspective of &#8220;memory use&#8221; in the sense as it is normally meant, is the amount of data allocated
-on brk() or mmap&#8217;d /dev/zero, which represent real memory used. The key issue is that for a mmap&#8217;d file, there is never
+<p>What matters from the perspective of “memory use” in the sense as it is normally meant, is the amount of data allocated
+on brk() or mmap’d /dev/zero, which represent real memory used. The key issue is that for a mmap’d file, there is never
 a need to retain the data resident in physical memory. Thus, whatever you do keep resident in physical memory is
 essentially just there as a cache, in the same way as normal I/O will cause the kernel page cache to retain data that
 you read/write.</p>
 <p>The difference between normal I/O and mmap() is that in the mmap() case the memory is actually mapped to the process,
 thus affecting the virtual size as reported by top. The main argument for using mmap() instead of standard I/O is the
-fact that reading entails just touching memory - in the case of the memory being resident, you just read it - you don&#8217;t
+fact that reading entails just touching memory - in the case of the memory being resident, you just read it - you don’t
 even take a page fault (so no overhead in entering the kernel and doing a semi-context switch). This is covered in more
 detail <a class="reference external" href="http://www.varnish-cache.org/trac/wiki/ArchitectNotes">here</a>.</p>
 </div>
@@ -297,7 +297,7 @@
 Gossip network. With seeds, each node can detect status changes of other nodes quickly.</p>
 <p>Seeds are also referred by new nodes on bootstrap to learn other nodes in ring. When you add a new node to ring, you
 need to specify at least one live seed to contact. Once a node join the ring, it learns about the other nodes, so it
-doesn&#8217;t need seed on subsequent boot.</p>
+doesn’t need seed on subsequent boot.</p>
 <p>You can make a seed a node at any time. There is nothing special about seed nodes. If you list the node in seed list it
 is a seed</p>
 <p>Seeds do not auto bootstrap (i.e. if a node has itself in its seed list it will not automatically transfer data to itself)
@@ -315,16 +315,16 @@
 recommended to configure multiple seeds in production system.</p>
 </div>
 <div class="section" id="why-can-t-i-call-jmx-method-x-on-jconsole">
-<span id="cant-call-jmx-method"></span><h2>Why can&#8217;t I call jmx method X on jconsole?<a class="headerlink" href="#why-can-t-i-call-jmx-method-x-on-jconsole" title="Permalink to this headline">¶</a></h2>
-<p>Some of JMX operations use array argument and as jconsole doesn&#8217;t support array argument, those operations can&#8217;t be
+<span id="cant-call-jmx-method"></span><h2>Why can’t I call jmx method X on jconsole?<a class="headerlink" href="#why-can-t-i-call-jmx-method-x-on-jconsole" title="Permalink to this headline">¶</a></h2>
+<p>Some of JMX operations use array argument and as jconsole doesn’t support array argument, those operations can’t be
 called with jconsole (the buttons are inactive for them). You need to write a JMX client to call such operations or need
 array-capable JMX monitoring tool.</p>
 </div>
 <div class="section" id="why-do-i-see-messages-dropped-in-the-logs">
-<span id="why-message-dropped"></span><h2>Why do I see &#8221;... messages dropped ...&#8221; in the logs?<a class="headerlink" href="#why-do-i-see-messages-dropped-in-the-logs" title="Permalink to this headline">¶</a></h2>
-<p>This is a symptom of load shedding &#8211; Cassandra defending itself against more requests than it can handle.</p>
+<span id="why-message-dropped"></span><h2>Why do I see “… messages dropped …” in the logs?<a class="headerlink" href="#why-do-i-see-messages-dropped-in-the-logs" title="Permalink to this headline">¶</a></h2>
+<p>This is a symptom of load shedding – Cassandra defending itself against more requests than it can handle.</p>
 <p>Internode messages which are received by a node, but do not get not to be processed within their proper timeout (see
-<code class="docutils literal"><span class="pre">read_request_timeout</span></code>, <code class="docutils literal"><span class="pre">write_request_timeout</span></code>, ... in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>), are dropped rather than
+<code class="docutils literal notranslate"><span class="pre">read_request_timeout</span></code>, <code class="docutils literal notranslate"><span class="pre">write_request_timeout</span></code>, … in the <a class="reference internal" href="../configuration/cassandra_config_file.html#cassandra-yaml"><span class="std std-ref">Cassandra Configuration File</span></a>), are dropped rather than
 processed (since the as the coordinator node will no longer be waiting for a response).</p>
 <p>For writes, this means that the mutation was not applied to all replicas it was sent to. The inconsistency will be
 repaired by read repair, hints or a manual repair. The write operation may also have timeouted as a result.</p>
@@ -333,10 +333,10 @@
 overloaded node or cluster.</p>
 </div>
 <div class="section" id="cassandra-dies-with-java-lang-outofmemoryerror-map-failed">
-<span id="oom-map-failed"></span><h2>Cassandra dies with <code class="docutils literal"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code><a class="headerlink" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed" title="Permalink to this headline">¶</a></h2>
-<p>If Cassandra is dying <strong>specifically</strong> with the &#8220;Map failed&#8221; message, it means the OS is denying java the ability to
-lock more memory. In linux, this typically means memlock is limited. Check <code class="docutils literal"><span class="pre">/proc/&lt;pid</span> <span class="pre">of</span> <span class="pre">cassandra&gt;/limits</span></code> to verify
-this and raise it (eg, via ulimit in bash). You may also need to increase <code class="docutils literal"><span class="pre">vm.max_map_count.</span></code> Note that the debian
+<span id="oom-map-failed"></span><h2>Cassandra dies with <code class="docutils literal notranslate"><span class="pre">java.lang.OutOfMemoryError:</span> <span class="pre">Map</span> <span class="pre">failed</span></code><a class="headerlink" href="#cassandra-dies-with-java-lang-outofmemoryerror-map-failed" title="Permalink to this headline">¶</a></h2>
+<p>If Cassandra is dying <strong>specifically</strong> with the “Map failed” message, it means the OS is denying java the ability to
+lock more memory. In linux, this typically means memlock is limited. Check <code class="docutils literal notranslate"><span class="pre">/proc/&lt;pid</span> <span class="pre">of</span> <span class="pre">cassandra&gt;/limits</span></code> to verify
+this and raise it (eg, via ulimit in bash). You may also need to increase <code class="docutils literal notranslate"><span class="pre">vm.max_map_count.</span></code> Note that the debian
 package handles this for you automatically.</p>
 </div>
 <div class="section" id="what-happens-if-two-updates-are-made-with-the-same-timestamp">
@@ -348,7 +348,7 @@
 value is selected.</p>
 </div>
 <div class="section" id="why-bootstrapping-a-new-node-fails-with-a-stream-failed-error">
-<span id="why-bootstrapping-stream-error"></span><h2>Why bootstrapping a new node fails with a &#8220;Stream failed&#8221; error?<a class="headerlink" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error" title="Permalink to this headline">¶</a></h2>
+<span id="why-bootstrapping-stream-error"></span><h2>Why bootstrapping a new node fails with a “Stream failed” error?<a class="headerlink" href="#why-bootstrapping-a-new-node-fails-with-a-stream-failed-error" title="Permalink to this headline">¶</a></h2>
 <p>Two main possibilities:</p>
 <ol class="arabic simple">
 <li>the GC may be creating long pauses disrupting the streaming process</li>
@@ -356,11 +356,11 @@
 </ol>
 <p>In the first case, regular GC tuning advices apply. In the second case, you need to set TCP keepalive to a lower value
 (default is very high on Linux). Try to just run the following:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span>$ sudo /sbin/sysctl -w net.ipv4.tcp_keepalive_time=60 net.ipv4.tcp_keepalive_intvl=60 net.ipv4.tcp_keepalive_probes=5
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ sudo /sbin/sysctl -w net.ipv4.tcp_keepalive_time=60 net.ipv4.tcp_keepalive_intvl=60 net.ipv4.tcp_keepalive_probes=5
 </pre></div>
 </div>
-<p>To make those settings permanent, add them to your <code class="docutils literal"><span class="pre">/etc/sysctl.conf</span></code> file.</p>
-<p>Note: <a class="reference external" href="https://cloud.google.com/compute/">GCE</a>&#8216;s firewall will always interrupt TCP connections that are inactive for
+<p>To make those settings permanent, add them to your <code class="docutils literal notranslate"><span class="pre">/etc/sysctl.conf</span></code> file.</p>
+<p>Note: <a class="reference external" href="https://cloud.google.com/compute/">GCE</a>’s firewall will always interrupt TCP connections that are inactive for
 more than 10 min. Running the above command is highly recommended in that environment.</p>
 </div>
 </div>
diff --git a/content/doc/stable/genindex.html b/content/doc/stable/genindex.html
index 963568c..10a40b5 100644
--- a/content/doc/stable/genindex.html
+++ b/content/doc/stable/genindex.html
@@ -9,7 +9,7 @@
 
 doc-title: "Index"
 doc-header-links: '
-  <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/>
+  <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/>
 '
 doc-search-path: "search.html"
 
diff --git a/content/doc/stable/getting_started/configuring.html b/content/doc/stable/getting_started/configuring.html
index 2eaf154..93c0f15 100644
--- a/content/doc/stable/getting_started/configuring.html
+++ b/content/doc/stable/getting_started/configuring.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Inserting and querying" href="querying.html"/> <link rel="prev" title="Installing Cassandra" href="installing.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Inserting and querying" href="querying.html"/> <link rel="prev" title="Installing Cassandra" href="installing.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -162,24 +162,24 @@
           
   <div class="section" id="configuring-cassandra">
 <h1>Configuring Cassandra<a class="headerlink" href="#configuring-cassandra" title="Permalink to this headline">¶</a></h1>
-<p>For running Cassandra on a single node, the steps above are enough, you don&#8217;t really need to change any configuration.
+<p>For running Cassandra on a single node, the steps above are enough, you don’t really need to change any configuration.
 However, when you deploy a cluster of nodes, or use clients that are not on the same host, then there are some
 parameters that must be changed.</p>
-<p>The Cassandra configuration files can be found in the <code class="docutils literal"><span class="pre">conf</span></code> directory of tarballs. For packages, the configuration
-files will be located in <code class="docutils literal"><span class="pre">/etc/cassandra</span></code>.</p>
+<p>The Cassandra configuration files can be found in the <code class="docutils literal notranslate"><span class="pre">conf</span></code> directory of tarballs. For packages, the configuration
+files will be located in <code class="docutils literal notranslate"><span class="pre">/etc/cassandra</span></code>.</p>
 <div class="section" id="main-runtime-properties">
 <h2>Main runtime properties<a class="headerlink" href="#main-runtime-properties" title="Permalink to this headline">¶</a></h2>
-<p>Most of configuration in Cassandra is done via yaml properties that can be set in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>. At a minimum you
+<p>Most of configuration in Cassandra is done via yaml properties that can be set in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>. At a minimum you
 should consider setting the following properties:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">cluster_name</span></code>: the name of your cluster.</li>
-<li><code class="docutils literal"><span class="pre">seeds</span></code>: a comma separated list of the IP addresses of your cluster seeds.</li>
-<li><code class="docutils literal"><span class="pre">storage_port</span></code>: you don&#8217;t necessarily need to change this but make sure that there are no firewalls blocking this
+<li><code class="docutils literal notranslate"><span class="pre">cluster_name</span></code>: the name of your cluster.</li>
+<li><code class="docutils literal notranslate"><span class="pre">seeds</span></code>: a comma separated list of the IP addresses of your cluster seeds.</li>
+<li><code class="docutils literal notranslate"><span class="pre">storage_port</span></code>: you don’t necessarily need to change this but make sure that there are no firewalls blocking this
 port.</li>
-<li><code class="docutils literal"><span class="pre">listen_address</span></code>: the IP address of your node, this is what allows other nodes to communicate with this node so it
-is important that you change it. Alternatively, you can set <code class="docutils literal"><span class="pre">listen_interface</span></code> to tell Cassandra which interface to
+<li><code class="docutils literal notranslate"><span class="pre">listen_address</span></code>: the IP address of your node, this is what allows other nodes to communicate with this node so it
+is important that you change it. Alternatively, you can set <code class="docutils literal notranslate"><span class="pre">listen_interface</span></code> to tell Cassandra which interface to
 use, and consecutively which address to use. Set only one, not both.</li>
-<li><code class="docutils literal"><span class="pre">native_transport_port</span></code>: as for storage_port, make sure this port is not blocked by firewalls as clients will
+<li><code class="docutils literal notranslate"><span class="pre">native_transport_port</span></code>: as for storage_port, make sure this port is not blocked by firewalls as clients will
 communicate with Cassandra on this port.</li>
 </ul>
 </div>
@@ -187,22 +187,22 @@
 <h2>Changing the location of directories<a class="headerlink" href="#changing-the-location-of-directories" title="Permalink to this headline">¶</a></h2>
 <p>The following yaml properties control the location of directories:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">data_file_directories</span></code>: one or more directories where data files are located.</li>
-<li><code class="docutils literal"><span class="pre">commitlog_directory</span></code>: the directory where commitlog files are located.</li>
-<li><code class="docutils literal"><span class="pre">saved_caches_directory</span></code>: the directory where saved caches are located.</li>
-<li><code class="docutils literal"><span class="pre">hints_directory</span></code>: the directory where hints are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code>: one or more directories where data files are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code>: the directory where commitlog files are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">saved_caches_directory</span></code>: the directory where saved caches are located.</li>
+<li><code class="docutils literal notranslate"><span class="pre">hints_directory</span></code>: the directory where hints are located.</li>
 </ul>
 <p>For performance reasons, if you have multiple disks, consider putting commitlog and data files on different disks.</p>
 </div>
 <div class="section" id="environment-variables">
 <h2>Environment variables<a class="headerlink" href="#environment-variables" title="Permalink to this headline">¶</a></h2>
-<p>JVM-level settings such as heap size can be set in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code>.  You can add any additional JVM command line
-argument to the <code class="docutils literal"><span class="pre">JVM_OPTS</span></code> environment variable; when Cassandra starts these arguments will be passed to the JVM.</p>
+<p>JVM-level settings such as heap size can be set in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code>.  You can add any additional JVM command line
+argument to the <code class="docutils literal notranslate"><span class="pre">JVM_OPTS</span></code> environment variable; when Cassandra starts these arguments will be passed to the JVM.</p>
 </div>
 <div class="section" id="logging">
 <h2>Logging<a class="headerlink" href="#logging" title="Permalink to this headline">¶</a></h2>
-<p>The logger in use is logback. You can change logging properties by editing <code class="docutils literal"><span class="pre">logback.xml</span></code>. By default it will log at
-INFO level into a file called <code class="docutils literal"><span class="pre">system.log</span></code> and at debug level into a file called <code class="docutils literal"><span class="pre">debug.log</span></code>. When running in the
+<p>The logger in use is logback. You can change logging properties by editing <code class="docutils literal notranslate"><span class="pre">logback.xml</span></code>. By default it will log at
+INFO level into a file called <code class="docutils literal notranslate"><span class="pre">system.log</span></code> and at debug level into a file called <code class="docutils literal notranslate"><span class="pre">debug.log</span></code>. When running in the
 foreground, it will also log at INFO level to the console.</p>
 </div>
 </div>
diff --git a/content/doc/stable/getting_started/drivers.html b/content/doc/stable/getting_started/drivers.html
index 1ec6f5b..7dd94e2 100644
--- a/content/doc/stable/getting_started/drivers.html
+++ b/content/doc/stable/getting_started/drivers.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Architecture" href="../architecture/index.html"/> <link rel="prev" title="Inserting and querying" href="querying.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Architecture" href="../architecture/index.html"/> <link rel="prev" title="Inserting and querying" href="querying.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/getting_started/index.html b/content/doc/stable/getting_started/index.html
index 1b0fc64..f2baf0c 100644
--- a/content/doc/stable/getting_started/index.html
+++ b/content/doc/stable/getting_started/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Installing Cassandra" href="installing.html"/> <link rel="prev" title="Welcome to Apache Cassandra’s documentation!" href="../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Installing Cassandra" href="installing.html"/> <link rel="prev" title="Welcome to Apache Cassandra’s documentation!" href="../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/getting_started/installing.html b/content/doc/stable/getting_started/installing.html
index 76b7fe1..c75d591 100644
--- a/content/doc/stable/getting_started/installing.html
+++ b/content/doc/stable/getting_started/installing.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="configuring.html"/> <link rel="prev" title="Getting Started" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Configuring Cassandra" href="configuring.html"/> <link rel="prev" title="Getting Started" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -165,9 +165,9 @@
 <h2>Prerequisites<a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>The latest version of Java 8, either the <a class="reference external" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Oracle Java Standard Edition 8</a> or <a class="reference external" href="http://openjdk.java.net/">OpenJDK 8</a>. To
-verify that you have the correct version of java installed, type <code class="docutils literal"><span class="pre">java</span> <span class="pre">-version</span></code>.</li>
+verify that you have the correct version of java installed, type <code class="docutils literal notranslate"><span class="pre">java</span> <span class="pre">-version</span></code>.</li>
 <li>For using cqlsh, the latest version of <a class="reference external" href="https://www.python.org/downloads/">Python 2.7</a>. To verify that you have
-the correct version of Python installed, type <code class="docutils literal"><span class="pre">python</span> <span class="pre">--version</span></code>.</li>
+the correct version of Python installed, type <code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">--version</span></code>.</li>
 </ul>
 </div>
 <div class="section" id="installation-from-binary-tarball-files">
@@ -176,71 +176,71 @@
 <li>Download the latest stable release from the <a class="reference external" href="http://cassandra.apache.org/download/">Apache Cassandra downloads website</a>.</li>
 <li>Untar the file somewhere, for example:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>tar -xvf apache-cassandra-3.6-bin.tar.gz cassandra
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tar -xvf apache-cassandra-3.6-bin.tar.gz cassandra
 </pre></div>
 </div>
-<p>The files will be extracted into <code class="docutils literal"><span class="pre">apache-cassandra-3.6</span></code>, you need to substitute 3.6 with the release number that you
+<p>The files will be extracted into <code class="docutils literal notranslate"><span class="pre">apache-cassandra-3.6</span></code>, you need to substitute 3.6 with the release number that you
 have downloaded.</p>
 <ul class="simple">
-<li>Optionally add <code class="docutils literal"><span class="pre">apache-cassandra-3.6\bin</span></code> to your path.</li>
-<li>Start Cassandra in the foreground by invoking <code class="docutils literal"><span class="pre">bin/cassandra</span> <span class="pre">-f</span></code> from the command line. Press &#8220;Control-C&#8221; to stop
-Cassandra. Start Cassandra in the background by invoking <code class="docutils literal"><span class="pre">bin/cassandra</span></code> from the command line. Invoke <code class="docutils literal"><span class="pre">kill</span> <span class="pre">pid</span></code>
-or <code class="docutils literal"><span class="pre">pkill</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code> to stop Cassandra, where pid is the Cassandra process id, which you can find for
-example by invoking <code class="docutils literal"><span class="pre">pgrep</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code>.</li>
-<li>Verify that Cassandra is running by invoking <code class="docutils literal"><span class="pre">bin/nodetool</span> <span class="pre">status</span></code> from the command line.</li>
-<li>Configuration files are located in the <code class="docutils literal"><span class="pre">conf</span></code> sub-directory.</li>
-<li>Since Cassandra 2.1, log and data directories are located in the <code class="docutils literal"><span class="pre">logs</span></code> and <code class="docutils literal"><span class="pre">data</span></code> sub-directories respectively.
-Older versions defaulted to <code class="docutils literal"><span class="pre">/var/log/cassandra</span></code> and <code class="docutils literal"><span class="pre">/var/lib/cassandra</span></code>. Due to this, it is necessary to either
-start Cassandra with root privileges or change <code class="docutils literal"><span class="pre">conf/cassandra.yaml</span></code> to use directories owned by the current user,
+<li>Optionally add <code class="docutils literal notranslate"><span class="pre">apache-cassandra-3.6\bin</span></code> to your path.</li>
+<li>Start Cassandra in the foreground by invoking <code class="docutils literal notranslate"><span class="pre">bin/cassandra</span> <span class="pre">-f</span></code> from the command line. Press “Control-C” to stop
+Cassandra. Start Cassandra in the background by invoking <code class="docutils literal notranslate"><span class="pre">bin/cassandra</span></code> from the command line. Invoke <code class="docutils literal notranslate"><span class="pre">kill</span> <span class="pre">pid</span></code>
+or <code class="docutils literal notranslate"><span class="pre">pkill</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code> to stop Cassandra, where pid is the Cassandra process id, which you can find for
+example by invoking <code class="docutils literal notranslate"><span class="pre">pgrep</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code>.</li>
+<li>Verify that Cassandra is running by invoking <code class="docutils literal notranslate"><span class="pre">bin/nodetool</span> <span class="pre">status</span></code> from the command line.</li>
+<li>Configuration files are located in the <code class="docutils literal notranslate"><span class="pre">conf</span></code> sub-directory.</li>
+<li>Since Cassandra 2.1, log and data directories are located in the <code class="docutils literal notranslate"><span class="pre">logs</span></code> and <code class="docutils literal notranslate"><span class="pre">data</span></code> sub-directories respectively.
+Older versions defaulted to <code class="docutils literal notranslate"><span class="pre">/var/log/cassandra</span></code> and <code class="docutils literal notranslate"><span class="pre">/var/lib/cassandra</span></code>. Due to this, it is necessary to either
+start Cassandra with root privileges or change <code class="docutils literal notranslate"><span class="pre">conf/cassandra.yaml</span></code> to use directories owned by the current user,
 as explained below in the section on changing the location of directories.</li>
 </ul>
 </div>
 <div class="section" id="installation-from-debian-packages">
 <h2>Installation from Debian packages<a class="headerlink" href="#installation-from-debian-packages" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Add the Apache repository of Cassandra to <code class="docutils literal"><span class="pre">/etc/apt/sources.list.d/cassandra.sources.list</span></code>, for example for version
+<li>Add the Apache repository of Cassandra to <code class="docutils literal notranslate"><span class="pre">/etc/apt/sources.list.d/cassandra.sources.list</span></code>, for example for version
 3.6:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>echo &quot;deb http://www.apache.org/dist/cassandra/debian 36x main&quot; | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>echo &quot;deb https://downloads.apache.org/cassandra/debian 36x main&quot; | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
 </pre></div>
 </div>
 <ul class="simple">
 <li>Add the Apache Cassandra repository keys:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>curl https://downloads.apache.org/cassandra/KEYS | sudo apt-key add -
 </pre></div>
 </div>
 <ul class="simple">
 <li>Update the repositories:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>sudo apt-get update
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-get update
 </pre></div>
 </div>
 <ul class="simple">
 <li>If you encounter this error:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>GPG error: http://www.apache.org 36x InRelease: The following signatures couldn&#39;t be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GPG error: http://www.apache.org 36x InRelease: The following signatures couldn&#39;t be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA
 </pre></div>
 </div>
 <p>Then add the public key A278B781FE4B2BDA as follows:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-key A278B781FE4B2BDA
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-key A278B781FE4B2BDA
 </pre></div>
 </div>
-<p>and repeat <code class="docutils literal"><span class="pre">sudo</span> <span class="pre">apt-get</span> <span class="pre">update</span></code>. The actual key may be different, you get it from the error message itself. For a
-full list of Apache contributors public keys, you can refer to <a class="reference external" href="https://www.apache.org/dist/cassandra/KEYS">this link</a>.</p>
+<p>and repeat <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">apt-get</span> <span class="pre">update</span></code>. The actual key may be different, you get it from the error message itself. For a
+full list of Apache contributors public keys, you can refer to <a class="reference external" href="https://downloads.apache.org/cassandra/KEYS">this link</a>.</p>
 <ul class="simple">
 <li>Install Cassandra:</li>
 </ul>
-<div class="highlight-none"><div class="highlight"><pre><span></span>sudo apt-get install cassandra
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-get install cassandra
 </pre></div>
 </div>
 <ul class="simple">
-<li>You can start Cassandra with <code class="docutils literal"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">start</span></code> and stop it with <code class="docutils literal"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">stop</span></code>.
+<li>You can start Cassandra with <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">start</span></code> and stop it with <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">stop</span></code>.
 However, normally the service will start automatically. For this reason be sure to stop it if you need to make any
 configuration changes.</li>
-<li>Verify that Cassandra is running by invoking <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">status</span></code> from the command line.</li>
-<li>The default location of configuration files is <code class="docutils literal"><span class="pre">/etc/cassandra</span></code>.</li>
-<li>The default location of log and data directories is <code class="docutils literal"><span class="pre">/var/log/cassandra/</span></code> and <code class="docutils literal"><span class="pre">/var/lib/cassandra</span></code>.</li>
+<li>Verify that Cassandra is running by invoking <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">status</span></code> from the command line.</li>
+<li>The default location of configuration files is <code class="docutils literal notranslate"><span class="pre">/etc/cassandra</span></code>.</li>
+<li>The default location of log and data directories is <code class="docutils literal notranslate"><span class="pre">/var/log/cassandra/</span></code> and <code class="docutils literal notranslate"><span class="pre">/var/lib/cassandra</span></code>.</li>
 </ul>
 </div>
 </div>
diff --git a/content/doc/stable/getting_started/querying.html b/content/doc/stable/getting_started/querying.html
index 212cda5..9e2bcc6 100644
--- a/content/doc/stable/getting_started/querying.html
+++ b/content/doc/stable/getting_started/querying.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Client drivers" href="drivers.html"/> <link rel="prev" title="Configuring Cassandra" href="configuring.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Getting Started" href="index.html"/> <link rel="next" title="Client drivers" href="drivers.html"/> <link rel="prev" title="Configuring Cassandra" href="configuring.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -171,7 +171,7 @@
 <p>cqlsh is a command line shell for interacting with Cassandra through CQL. It is shipped with every Cassandra package,
 and can be found in the bin/ directory alongside the cassandra executable. It connects to the single node specified on
 the command line. For example:</p>
-<div class="highlight-default"><div class="highlight"><pre><span></span>$ bin/cqlsh localhost
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ bin/cqlsh localhost
 Connected to Test Cluster at localhost:9042.
 [cqlsh 5.0.1 | Cassandra 3.8 | CQL spec 3.4.2 | Native protocol v4]
 Use HELP for help.
diff --git a/content/doc/stable/index.html b/content/doc/stable/index.html
index 95ff832..d382e84 100644
--- a/content/doc/stable/index.html
+++ b/content/doc/stable/index.html
@@ -95,7 +95,7 @@
 
     <div class="content">
   <div class="container">
-    <h2>Apache Cassandra Documentation v3.11.3</h2>
+    <h2>Apache Cassandra Documentation v3.11.7</h2>
   
 <div id="wipwarning">This documentation is currently a work-in-progress and contains a number of TODO sections.
     <a href="bugs.html">Contributions</a> are welcome.</div>
diff --git a/content/doc/stable/objects.inv b/content/doc/stable/objects.inv
index 69eee5c..5d83d29 100644
--- a/content/doc/stable/objects.inv
+++ b/content/doc/stable/objects.inv
Binary files differ
diff --git a/content/doc/stable/operating/backups.html b/content/doc/stable/operating/backups.html
index 97c44ab..d2837d4 100644
--- a/content/doc/stable/operating/backups.html
+++ b/content/doc/stable/operating/backups.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bulk Loading" href="bulk_loading.html"/> <link rel="prev" title="Change Data Capture" href="cdc.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bulk Loading" href="bulk_loading.html"/> <link rel="prev" title="Change Data Capture" href="cdc.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/operating/bloom_filters.html b/content/doc/stable/operating/bloom_filters.html
index 37aabbe..8db4be9 100644
--- a/content/doc/stable/operating/bloom_filters.html
+++ b/content/doc/stable/operating/bloom_filters.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compression" href="compression.html"/> <link rel="prev" title="Compaction" href="compaction.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compression" href="compression.html"/> <link rel="prev" title="Compaction" href="compaction.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -175,36 +175,36 @@
 data definitely does not exist in the given file, or - The data probably exists in the given file.</p>
 <p>While bloom filters can not guarantee that the data exists in a given SSTable, bloom filters can be made more accurate
 by allowing them to consume more RAM. Operators have the opportunity to tune this behavior per table by adjusting the
-the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to a float between 0 and 1.</p>
-<p>The default value for <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> is 0.1 for tables using LeveledCompactionStrategy and 0.01 for all
+the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to a float between 0 and 1.</p>
+<p>The default value for <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> is 0.1 for tables using LeveledCompactionStrategy and 0.01 for all
 other cases.</p>
 <p>Bloom filters are stored in RAM, but are stored offheap, so operators should not consider bloom filters when selecting
-the maximum heap size.  As accuracy improves (as the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> gets closer to 0), memory usage
-increases non-linearly - the bloom filter for <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.01</span></code> will require about three times as much
-memory as the same table with <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.1</span></code>.</p>
-<p>Typical values for <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> are usually between 0.01 (1%) to 0.1 (10%) false-positive chance, where
+the maximum heap size.  As accuracy improves (as the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> gets closer to 0), memory usage
+increases non-linearly - the bloom filter for <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.01</span></code> will require about three times as much
+memory as the same table with <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span> <span class="pre">=</span> <span class="pre">0.1</span></code>.</p>
+<p>Typical values for <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> are usually between 0.01 (1%) to 0.1 (10%) false-positive chance, where
 Cassandra may scan an SSTable for a row, only to find that it does not exist on the disk. The parameter should be tuned
 by use case:</p>
 <ul class="simple">
-<li>Users with more RAM and slower disks may benefit from setting the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to a numerically lower
+<li>Users with more RAM and slower disks may benefit from setting the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to a numerically lower
 number (such as 0.01) to avoid excess IO operations</li>
-<li>Users with less RAM, more dense nodes, or very fast disks may tolerate a higher <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> in order to
+<li>Users with less RAM, more dense nodes, or very fast disks may tolerate a higher <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> in order to
 save RAM at the expense of excess IO operations</li>
 <li>In workloads that rarely read, or that only perform reads by scanning the entire data set (such as analytics
-workloads), setting the <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to a much higher number is acceptable.</li>
+workloads), setting the <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to a much higher number is acceptable.</li>
 </ul>
 <div class="section" id="changing">
 <h2>Changing<a class="headerlink" href="#changing" title="Permalink to this headline">¶</a></h2>
-<p>The bloom filter false positive chance is visible in the <code class="docutils literal"><span class="pre">DESCRIBE</span> <span class="pre">TABLE</span></code> output as the field
-<code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code>. Operators can change the value with an <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH bloom_filter_fp_chance=0.01
+<p>The bloom filter false positive chance is visible in the <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span> <span class="pre">TABLE</span></code> output as the field
+<code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code>. Operators can change the value with an <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH bloom_filter_fp_chance=0.01
 </pre></div>
 </div>
 <p>Operators should be aware, however, that this change is not immediate: the bloom filter is calculated when the file is
-written, and persisted on disk as the Filter component of the SSTable. Upon issuing an <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement, new
-files on disk will be written with the new <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code>, but existing sstables will not be modified until
-they are compacted - if an operator needs a change to <code class="docutils literal"><span class="pre">bloom_filter_fp_chance</span></code> to take effect, they can trigger an
-SSTable rewrite using <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the sstables on
+written, and persisted on disk as the Filter component of the SSTable. Upon issuing an <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> statement, new
+files on disk will be written with the new <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code>, but existing sstables will not be modified until
+they are compacted - if an operator needs a change to <code class="docutils literal notranslate"><span class="pre">bloom_filter_fp_chance</span></code> to take effect, they can trigger an
+SSTable rewrite using <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the sstables on
 disk, regenerating the bloom filters in the progress.</p>
 </div>
 </div>
diff --git a/content/doc/stable/operating/bulk_loading.html b/content/doc/stable/operating/bulk_loading.html
index c35e3f6..e7b1f3f 100644
--- a/content/doc/stable/operating/bulk_loading.html
+++ b/content/doc/stable/operating/bulk_loading.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Monitoring" href="metrics.html"/> <link rel="prev" title="Backups" href="backups.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Monitoring" href="metrics.html"/> <link rel="prev" title="Backups" href="backups.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/operating/cdc.html b/content/doc/stable/operating/cdc.html
index e802966..e481218 100644
--- a/content/doc/stable/operating/cdc.html
+++ b/content/doc/stable/operating/cdc.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Backups" href="backups.html"/> <link rel="prev" title="Compression" href="compression.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Backups" href="backups.html"/> <link rel="prev" title="Compression" href="compression.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -177,8 +177,8 @@
 <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>
 <p>Change data capture (CDC) provides a mechanism to flag specific tables for archival as well as rejecting writes to those
 tables once a configurable size-on-disk for the combined flushed and unflushed CDC-log is reached. An operator can
-enable CDC on a table by setting the table property <code class="docutils literal"><span class="pre">cdc=true</span></code> (either when <a class="reference internal" href="../cql/ddl.html#create-table-statement"><span class="std std-ref">creating the table</span></a> or <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">altering it</span></a>), after which any CommitLogSegments containing
-data for a CDC-enabled table are moved to the directory specified in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> on segment discard. A threshold
+enable CDC on a table by setting the table property <code class="docutils literal notranslate"><span class="pre">cdc=true</span></code> (either when <a class="reference internal" href="../cql/ddl.html#create-table-statement"><span class="std std-ref">creating the table</span></a> or <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">altering it</span></a>), after which any CommitLogSegments containing
+data for a CDC-enabled table are moved to the directory specified in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> on segment discard. A threshold
 of total disk space allowed is specified in the yaml at which time newly allocated CommitLogSegments will not allow CDC
 data until a consumer parses and removes data from the destination archival directory.</p>
 </div>
@@ -187,7 +187,7 @@
 <div class="section" id="enabling-or-disable-cdc-on-a-table">
 <h3>Enabling or disable CDC on a table<a class="headerlink" href="#enabling-or-disable-cdc-on-a-table" title="Permalink to this headline">¶</a></h3>
 <p>CDC is enable or disable through the <cite>cdc</cite> table property, for instance:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CREATE TABLE foo (a int, b text, PRIMARY KEY(a)) WITH cdc=true;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CREATE TABLE foo (a int, b text, PRIMARY KEY(a)) WITH cdc=true;
 
 ALTER TABLE foo WITH cdc=true;
 
@@ -199,15 +199,15 @@
 <h3>cassandra.yaml parameters<a class="headerlink" href="#cassandra-yaml-parameters" title="Permalink to this headline">¶</a></h3>
 <p>The following <cite>cassandra.yaml</cite> are available for CDC:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">cdc_enabled</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_enabled</span></code> (default: false)</dt>
 <dd>Enable or disable CDC operations node-wide.</dd>
-<dt><code class="docutils literal"><span class="pre">cdc_raw_directory</span></code> (default: <code class="docutils literal"><span class="pre">$CASSANDRA_HOME/data/cdc_raw</span></code>)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code> (default: <code class="docutils literal notranslate"><span class="pre">$CASSANDRA_HOME/data/cdc_raw</span></code>)</dt>
 <dd>Destination for CommitLogSegments to be moved after all corresponding memtables are flushed.</dd>
-<dt><code class="docutils literal"><span class="pre">cdc_free_space_in_mb</span></code>: (default: min of 4096 and 1/8th volume space)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_free_space_in_mb</span></code>: (default: min of 4096 and 1/8th volume space)</dt>
 <dd>Calculated as sum of all active CommitLogSegments that permit CDC + all flushed CDC segments in
-<code class="docutils literal"><span class="pre">cdc_raw_directory</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">cdc_free_space_check_interval_ms</span></code> (default: 250)</dt>
-<dd>When at capacity, we limit the frequency with which we re-calculate the space taken up by <code class="docutils literal"><span class="pre">cdc_raw_directory</span></code> to
+<code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">cdc_free_space_check_interval_ms</span></code> (default: 250)</dt>
+<dd>When at capacity, we limit the frequency with which we re-calculate the space taken up by <code class="docutils literal notranslate"><span class="pre">cdc_raw_directory</span></code> to
 prevent burning CPU cycles unnecessarily. Default is to check 4 times per second.</dd>
 </dl>
 </div>
@@ -223,7 +223,7 @@
 <h2>Warnings<a class="headerlink" href="#warnings" title="Permalink to this headline">¶</a></h2>
 <p><strong>Do not enable CDC without some kind of consumption process in-place.</strong></p>
 <p>The initial implementation of Change Data Capture does not include a parser (see <a class="reference internal" href="#reading-commitlogsegments"><span class="std std-ref">Reading CommitLogSegments</span></a> above)
-so, if CDC is enabled on a node and then on a table, the <code class="docutils literal"><span class="pre">cdc_free_space_in_mb</span></code> will fill up and then writes to
+so, if CDC is enabled on a node and then on a table, the <code class="docutils literal notranslate"><span class="pre">cdc_free_space_in_mb</span></code> will fill up and then writes to
 CDC-enabled tables will be rejected unless some consumption process is in place.</p>
 </div>
 <div class="section" id="further-reading">
diff --git a/content/doc/stable/operating/compaction.html b/content/doc/stable/operating/compaction.html
index 48781e5..0774cb5 100644
--- a/content/doc/stable/operating/compaction.html
+++ b/content/doc/stable/operating/compaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bloom Filters" href="bloom_filters.html"/> <link rel="prev" title="Hints" href="hints.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Bloom Filters" href="bloom_filters.html"/> <link rel="prev" title="Hints" href="hints.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -209,7 +209,7 @@
 <dd>after repair the ranges that were actually repaired are split out of the sstables that existed when repair started.</dd>
 <dt>Sub range compaction</dt>
 <dd>It is possible to only compact a given sub range - this could be useful if you know a token that has been
-misbehaving - either gathering many updates or many deletes. (<code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">compact</span> <span class="pre">-st</span> <span class="pre">x</span> <span class="pre">-et</span> <span class="pre">y</span></code>) will pick
+misbehaving - either gathering many updates or many deletes. (<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">compact</span> <span class="pre">-st</span> <span class="pre">x</span> <span class="pre">-et</span> <span class="pre">y</span></code>) will pick
 all sstables containing the range between x and y and issue a compaction for those sstables. For STCS this will
 most likely include all sstables but with LCS it can issue the compaction for a subset of the sstables. With LCS
 the resulting sstable will end up in L0.</dd>
@@ -218,7 +218,7 @@
 <div class="section" id="when-is-a-minor-compaction-triggered">
 <h2>When is a minor compaction triggered?<a class="headerlink" href="#when-is-a-minor-compaction-triggered" title="Permalink to this headline">¶</a></h2>
 <p>#  When an sstable is added to the node through flushing/streaming etc.
-#  When autocompaction is enabled after being disabled (<code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">enableautocompaction</span></code>)
+#  When autocompaction is enabled after being disabled (<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">enableautocompaction</span></code>)
 #  When compaction adds new sstables.
 #  A check for new minor compactions every 5 minutes.</p>
 </div>
@@ -240,17 +240,17 @@
 <div class="section" id="deletes-without-tombstones">
 <h3>Deletes without tombstones<a class="headerlink" href="#deletes-without-tombstones" title="Permalink to this headline">¶</a></h3>
 <p>Imagine a three node cluster which has the value [A] replicated to every node.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A], [A], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
 </pre></div>
 </div>
 <p>If one of the nodes fails and and our delete operation only removes existing values we can end up with a cluster that
 looks like:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[], [], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[], [], [A]
 </pre></div>
 </div>
 <p>Then a repair operation would replace the value of [A] back onto the two
 nodes which are missing the value.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A], [A], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
 </pre></div>
 </div>
 <p>This would cause our data to be resurrected even though it had been
@@ -259,51 +259,51 @@
 <div class="section" id="deletes-with-tombstones">
 <h3>Deletes with Tombstones<a class="headerlink" href="#deletes-with-tombstones" title="Permalink to this headline">¶</a></h3>
 <p>Starting again with a three node cluster which has the value [A] replicated to every node.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A], [A], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
 </pre></div>
 </div>
 <p>If instead of removing data we add a tombstone record, our single node failure situation will look like this.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A]
 </pre></div>
 </div>
 <p>Now when we issue a repair the Tombstone will be copied to the replica, rather than the deleted data being
 resurrected.:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A, Tombstone[A]]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A, Tombstone[A]]
 </pre></div>
 </div>
 <p>Our repair operation will correctly put the state of the system to what we expect with the record [A] marked as deleted
 on all nodes. This does mean we will end up accruing Tombstones which will permanently accumulate disk space. To avoid
-keeping tombstones forever we have a parameter known as <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> for every table in Cassandra.</p>
+keeping tombstones forever we have a parameter known as <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> for every table in Cassandra.</p>
 </div>
 <div class="section" id="the-gc-grace-seconds-parameter-and-tombstone-removal">
 <h3>The gc_grace_seconds parameter and Tombstone Removal<a class="headerlink" href="#the-gc-grace-seconds-parameter-and-tombstone-removal" title="Permalink to this headline">¶</a></h3>
-<p>The table level <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> parameter controls how long Cassandra will retain tombstones through compaction
+<p>The table level <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> parameter controls how long Cassandra will retain tombstones through compaction
 events before finally removing them. This duration should directly reflect the amount of time a user expects to allow
-before recovering a failed node. After <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> has expired the tombstone may be removed (meaning there will
+before recovering a failed node. After <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> has expired the tombstone may be removed (meaning there will
 no longer be any record that a certain piece of data was deleted), but as a tombstone can live in one sstable and the
 data it covers in another, a compaction must also include both sstable for a tombstone to be removed. More precisely, to
 be able to drop an actual tombstone the following needs to be true;</p>
 <ul class="simple">
-<li>The tombstone must be older than <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code></li>
+<li>The tombstone must be older than <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code></li>
 <li>If partition X contains the tombstone, the sstable containing the partition plus all sstables containing data older
-than the tombstone containing X must be included in the same compaction. We don&#8217;t need to care if the partition is in
+than the tombstone containing X must be included in the same compaction. We don’t need to care if the partition is in
 an sstable if we can guarantee that all data in that sstable is newer than the tombstone. If the tombstone is older
 than the data it cannot shadow that data.</li>
-<li>If the option <code class="docutils literal"><span class="pre">only_purge_repaired_tombstones</span></code> is enabled, tombstones are only removed if the data has also been
+<li>If the option <code class="docutils literal notranslate"><span class="pre">only_purge_repaired_tombstones</span></code> is enabled, tombstones are only removed if the data has also been
 repaired.</li>
 </ul>
-<p>If a node remains down or disconnected for longer than <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> it&#8217;s deleted data will be repaired back to
-the other nodes and re-appear in the cluster. This is basically the same as in the &#8220;Deletes without Tombstones&#8221; section.
-Note that tombstones will not be removed until a compaction event even if <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> has elapsed.</p>
-<p>The default value for <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code> is 864000 which is equivalent to 10 days. This can be set when creating or
-altering a table using <code class="docutils literal"><span class="pre">WITH</span> <span class="pre">gc_grace_seconds</span></code>.</p>
+<p>If a node remains down or disconnected for longer than <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> it’s deleted data will be repaired back to
+the other nodes and re-appear in the cluster. This is basically the same as in the “Deletes without Tombstones” section.
+Note that tombstones will not be removed until a compaction event even if <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> has elapsed.</p>
+<p>The default value for <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> is 864000 which is equivalent to 10 days. This can be set when creating or
+altering a table using <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">gc_grace_seconds</span></code>.</p>
 </div>
 </div>
 <div class="section" id="ttl">
 <h2>TTL<a class="headerlink" href="#ttl" title="Permalink to this headline">¶</a></h2>
 <p>Data in Cassandra can have an additional property called time to live - this is used to automatically drop data that has
 expired once the time is reached. Once the TTL has expired the data is converted to a tombstone which stays around for
-at least <code class="docutils literal"><span class="pre">gc_grace_seconds</span></code>. Note that if you mix data with TTL and data without TTL (or just different length of the
+at least <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code>. Note that if you mix data with TTL and data without TTL (or just different length of the
 TTL) Cassandra will have a hard time dropping the tombstones created since the partition might span many sstables and
 not all are compacted at once.</p>
 </div>
@@ -312,9 +312,9 @@
 <p>If an sstable contains only tombstones and it is guaranteed that that sstable is not shadowing data in any other sstable
 compaction can drop that sstable. If you see sstables with only tombstones (note that TTL:ed data is considered
 tombstones once the time to live has expired) but it is not being dropped by compaction, it is likely that other
-sstables contain older data. There is a tool called <code class="docutils literal"><span class="pre">sstableexpiredblockers</span></code> that will list which sstables are
+sstables contain older data. There is a tool called <code class="docutils literal notranslate"><span class="pre">sstableexpiredblockers</span></code> that will list which sstables are
 droppable and which are blocking them from being dropped. This is especially useful for time series compaction with
-<code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> (and the deprecated <code class="docutils literal"><span class="pre">DateTieredCompactionStrategy</span></code>).</p>
+<code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> (and the deprecated <code class="docutils literal notranslate"><span class="pre">DateTieredCompactionStrategy</span></code>).</p>
 </div>
 <div class="section" id="repaired-unrepaired-data">
 <h2>Repaired/unrepaired data<a class="headerlink" href="#repaired-unrepaired-data" title="Permalink to this headline">¶</a></h2>
@@ -349,34 +349,34 @@
 sstables with very many tombstones and run single sstable compaction on that sstable in hope of being able to drop
 tombstones in that sstable. Before starting this it is also checked how likely it is that any tombstones will actually
 will be able to be dropped how much this sstable overlaps with other sstables. To avoid most of these checks the
-compaction option <code class="docutils literal"><span class="pre">unchecked_tombstone_compaction</span></code> can be enabled.</p>
+compaction option <code class="docutils literal notranslate"><span class="pre">unchecked_tombstone_compaction</span></code> can be enabled.</p>
 </div>
 <div class="section" id="common-options">
 <span id="compaction-options"></span><h2>Common options<a class="headerlink" href="#common-options" title="Permalink to this headline">¶</a></h2>
 <p>There is a number of common options for all the compaction strategies;</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">enabled</span></code> (default: true)</dt>
-<dd>Whether minor compactions should run. Note that you can have &#8216;enabled&#8217;: true as a compaction option and then do
-&#8216;nodetool enableautocompaction&#8217; to start running compactions.</dd>
-<dt><code class="docutils literal"><span class="pre">tombstone_threshold</span></code> (default: 0.2)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">enabled</span></code> (default: true)</dt>
+<dd>Whether minor compactions should run. Note that you can have ‘enabled’: true as a compaction option and then do
+‘nodetool enableautocompaction’ to start running compactions.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">tombstone_threshold</span></code> (default: 0.2)</dt>
 <dd>How much of the sstable should be tombstones for us to consider doing a single sstable compaction of that sstable.</dd>
-<dt><code class="docutils literal"><span class="pre">tombstone_compaction_interval</span></code> (default: 86400s (1 day))</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">tombstone_compaction_interval</span></code> (default: 86400s (1 day))</dt>
 <dd>Since it might not be possible to drop any tombstones when doing a single sstable compaction we need to make sure
 that one sstable is not constantly getting recompacted - this option states how often we should try for a given
 sstable.</dd>
-<dt><code class="docutils literal"><span class="pre">log_all</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">log_all</span></code> (default: false)</dt>
 <dd>New detailed compaction logging, see <a class="reference internal" href="#detailed-compaction-logging"><span class="std std-ref">below</span></a>.</dd>
-<dt><code class="docutils literal"><span class="pre">unchecked_tombstone_compaction</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">unchecked_tombstone_compaction</span></code> (default: false)</dt>
 <dd>The single sstable compaction has quite strict checks for whether it should be started, this option disables those
 checks and for some usecases this might be needed.  Note that this does not change anything for the actual
 compaction, tombstones are only dropped if it is safe to do so - it might just rewrite an sstable without being able
 to drop any tombstones.</dd>
-<dt><code class="docutils literal"><span class="pre">only_purge_repaired_tombstone</span></code> (default: false)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">only_purge_repaired_tombstone</span></code> (default: false)</dt>
 <dd>Option to enable the extra safety of making sure that tombstones are only dropped if the data has been repaired.</dd>
-<dt><code class="docutils literal"><span class="pre">min_threshold</span></code> (default: 4)</dt>
-<dd>Lower limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">max_threshold</span></code> (default: 32)</dt>
-<dd>Upper limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">min_threshold</span></code> (default: 4)</dt>
+<dd>Lower limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">max_threshold</span></code> (default: 32)</dt>
+<dd>Upper limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
 </dl>
 <p>Further, see the section on each strategy for specific additional options.</p>
 </div>
@@ -384,18 +384,18 @@
 <h2>Compaction nodetool commands<a class="headerlink" href="#compaction-nodetool-commands" title="Permalink to this headline">¶</a></h2>
 <p>The <a class="reference internal" href="../tools/nodetool.html#nodetool"><span class="std std-ref">nodetool</span></a> utility provides a number of commands related to compaction:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">enableautocompaction</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">enableautocompaction</span></code></dt>
 <dd>Enable compaction.</dd>
-<dt><code class="docutils literal"><span class="pre">disableautocompaction</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">disableautocompaction</span></code></dt>
 <dd>Disable compaction.</dd>
-<dt><code class="docutils literal"><span class="pre">setcompactionthroughput</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">setcompactionthroughput</span></code></dt>
 <dd>How fast compaction should run at most - defaults to 16MB/s, but note that it is likely not possible to reach this
 throughput.</dd>
-<dt><code class="docutils literal"><span class="pre">compactionstats</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compactionstats</span></code></dt>
 <dd>Statistics about current and pending compactions.</dd>
-<dt><code class="docutils literal"><span class="pre">compactionhistory</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compactionhistory</span></code></dt>
 <dd>List details about the last compactions.</dd>
-<dt><code class="docutils literal"><span class="pre">setcompactionthreshold</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">setcompactionthreshold</span></code></dt>
 <dd>Set the min/max sstable count for when to trigger compaction, defaults to 4/32.</dd>
 </dl>
 </div>
@@ -403,13 +403,13 @@
 <h2>Switching the compaction strategy and options using JMX<a class="headerlink" href="#switching-the-compaction-strategy-and-options-using-jmx" title="Permalink to this headline">¶</a></h2>
 <p>It is possible to switch compaction strategies and its options on just a single node using JMX, this is a great way to
 experiment with settings without affecting the whole cluster. The mbean is:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>org.apache.cassandra.db:type=ColumnFamilies,keyspace=&lt;keyspace_name&gt;,columnfamily=&lt;table_name&gt;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>org.apache.cassandra.db:type=ColumnFamilies,keyspace=&lt;keyspace_name&gt;,columnfamily=&lt;table_name&gt;
 </pre></div>
 </div>
-<p>and the attribute to change is <code class="docutils literal"><span class="pre">CompactionParameters</span></code> or <code class="docutils literal"><span class="pre">CompactionParametersJson</span></code> if you use jconsole or jmc. The
+<p>and the attribute to change is <code class="docutils literal notranslate"><span class="pre">CompactionParameters</span></code> or <code class="docutils literal notranslate"><span class="pre">CompactionParametersJson</span></code> if you use jconsole or jmc. The
 syntax for the json version is the same as you would use in an <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">ALTER TABLE</span></a> statement -
 for example:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>{ &#39;class&#39;: &#39;LeveledCompactionStrategy&#39;, &#39;sstable_size_in_mb&#39;: 123, &#39;fanout_size&#39;: 10}
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{ &#39;class&#39;: &#39;LeveledCompactionStrategy&#39;, &#39;sstable_size_in_mb&#39;: 123, &#39;fanout_size&#39;: 10}
 </pre></div>
 </div>
 <p>The setting is kept until someone executes an <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">ALTER TABLE</span></a> that touches the compaction
@@ -417,34 +417,34 @@
 </div>
 <div class="section" id="more-detailed-compaction-logging">
 <span id="detailed-compaction-logging"></span><h2>More detailed compaction logging<a class="headerlink" href="#more-detailed-compaction-logging" title="Permalink to this headline">¶</a></h2>
-<p>Enable with the compaction option <code class="docutils literal"><span class="pre">log_all</span></code> and a more detailed compaction log file will be produced in your log
+<p>Enable with the compaction option <code class="docutils literal notranslate"><span class="pre">log_all</span></code> and a more detailed compaction log file will be produced in your log
 directory.</p>
 </div>
 <div class="section" id="size-tiered-compaction-strategy">
 <span id="stcs"></span><h2>Size Tiered Compaction Strategy<a class="headerlink" href="#size-tiered-compaction-strategy" title="Permalink to this headline">¶</a></h2>
-<p>The basic idea of <code class="docutils literal"><span class="pre">SizeTieredCompactionStrategy</span></code> (STCS) is to merge sstables of approximately the same size. All
+<p>The basic idea of <code class="docutils literal notranslate"><span class="pre">SizeTieredCompactionStrategy</span></code> (STCS) is to merge sstables of approximately the same size. All
 sstables are put in different buckets depending on their size. An sstable is added to the bucket if size of the sstable
-is within <code class="docutils literal"><span class="pre">bucket_low</span></code> and <code class="docutils literal"><span class="pre">bucket_high</span></code> of the current average size of the sstables already in the bucket. This
+is within <code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> and <code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> of the current average size of the sstables already in the bucket. This
 will create several buckets and the most interesting of those buckets will be compacted. The most interesting one is
-decided by figuring out which bucket&#8217;s sstables takes the most reads.</p>
+decided by figuring out which bucket’s sstables takes the most reads.</p>
 <div class="section" id="major-compaction">
 <h3>Major compaction<a class="headerlink" href="#major-compaction" title="Permalink to this headline">¶</a></h3>
 <p>When running a major compaction with STCS you will end up with two sstables per data directory (one for repaired data
 and one for unrepaired data). There is also an option (-s) to do a major compaction that splits the output into several
-sstables. The sizes of the sstables are approximately 50%, 25%, 12.5%... of the total size.</p>
+sstables. The sizes of the sstables are approximately 50%, 25%, 12.5%… of the total size.</p>
 </div>
 <div class="section" id="stcs-options">
 <span id="id2"></span><h3>STCS options<a class="headerlink" href="#stcs-options" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">min_sstable_size</span></code> (default: 50MB)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">min_sstable_size</span></code> (default: 50MB)</dt>
 <dd>Sstables smaller than this are put in the same bucket.</dd>
-<dt><code class="docutils literal"><span class="pre">bucket_low</span></code> (default: 0.5)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> (default: 0.5)</dt>
 <dd>How much smaller than the average size of a bucket a sstable should be before not being included in the bucket. That
-is, if <code class="docutils literal"><span class="pre">bucket_low</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span> <span class="pre">&lt;</span> <span class="pre">sstable_size</span></code> (and the <code class="docutils literal"><span class="pre">bucket_high</span></code> condition holds, see below), then
+is, if <code class="docutils literal notranslate"><span class="pre">bucket_low</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span> <span class="pre">&lt;</span> <span class="pre">sstable_size</span></code> (and the <code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> condition holds, see below), then
 the sstable is added to the bucket.</dd>
-<dt><code class="docutils literal"><span class="pre">bucket_high</span></code> (default: 1.5)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> (default: 1.5)</dt>
 <dd>How much bigger than the average size of a bucket a sstable should be before not being included in the bucket. That
-is, if <code class="docutils literal"><span class="pre">sstable_size</span> <span class="pre">&lt;</span> <span class="pre">bucket_high</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span></code> (and the <code class="docutils literal"><span class="pre">bucket_low</span></code> condition holds, see above), then
+is, if <code class="docutils literal notranslate"><span class="pre">sstable_size</span> <span class="pre">&lt;</span> <span class="pre">bucket_high</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span></code> (and the <code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> condition holds, see above), then
 the sstable is added to the bucket.</dd>
 </dl>
 </div>
@@ -456,7 +456,7 @@
 </div>
 <div class="section" id="leveled-compaction-strategy">
 <span id="lcs"></span><h2>Leveled Compaction Strategy<a class="headerlink" href="#leveled-compaction-strategy" title="Permalink to this headline">¶</a></h2>
-<p>The idea of <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code> (LCS) is that all sstables are put into different levels where we guarantee
+<p>The idea of <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code> (LCS) is that all sstables are put into different levels where we guarantee
 that no overlapping sstables are in the same level. By overlapping we mean that the first/last token of a single sstable
 are never overlapping with other sstables. This means that for a SELECT we will only have to look for the partition key
 in a single sstable per level. Each level is 10x the size of the previous one and each sstable is 160MB by default. L0
@@ -466,9 +466,9 @@
 we need to guarantee that we pick all overlapping sstables in L4 and make sure that no currently ongoing compactions
 will create overlap if we start that compaction. We can start many parallel compactions in a level if we guarantee that
 we wont create overlap. For L0 -&gt; L1 compactions we almost always need to include all L1 sstables since most L0 sstables
-cover the full range. We also can&#8217;t compact all L0 sstables with all L1 sstables in a single compaction since that can
+cover the full range. We also can’t compact all L0 sstables with all L1 sstables in a single compaction since that can
 use too much memory.</p>
-<p>When deciding which level to compact LCS checks the higher levels first (with LCS, a &#8220;higher&#8221; level is one with a higher
+<p>When deciding which level to compact LCS checks the higher levels first (with LCS, a “higher” level is one with a higher
 number, L0 being the lowest one) and if the level is behind a compaction will be started in that level.</p>
 <div class="section" id="id3">
 <h3>Major compaction<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
@@ -502,38 +502,38 @@
 <div class="section" id="lcs-options">
 <span id="id4"></span><h3>LCS options<a class="headerlink" href="#lcs-options" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">sstable_size_in_mb</span></code> (default: 160MB)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">sstable_size_in_mb</span></code> (default: 160MB)</dt>
 <dd>The target compressed (if using compression) sstable size - the sstables can end up being larger if there are very
 large partitions on the node.</dd>
-<dt><code class="docutils literal"><span class="pre">fanout_size</span></code> (default: 10)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">fanout_size</span></code> (default: 10)</dt>
 <dd>The target size of levels increases by this fanout_size multiplier. You can reduce the space amplification by tuning
 this option.</dd>
 </dl>
-<p>LCS also support the <code class="docutils literal"><span class="pre">cassandra.disable_stcs_in_l0</span></code> startup option (<code class="docutils literal"><span class="pre">-Dcassandra.disable_stcs_in_l0=true</span></code>) to avoid
+<p>LCS also support the <code class="docutils literal notranslate"><span class="pre">cassandra.disable_stcs_in_l0</span></code> startup option (<code class="docutils literal notranslate"><span class="pre">-Dcassandra.disable_stcs_in_l0=true</span></code>) to avoid
 doing STCS in L0.</p>
 </div>
 </div>
 <div class="section" id="time-window-compactionstrategy">
 <span id="twcs"></span><h2>Time Window CompactionStrategy<a class="headerlink" href="#time-window-compactionstrategy" title="Permalink to this headline">¶</a></h2>
-<p><code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> (TWCS) is designed specifically for workloads where it&#8217;s beneficial to have data on
+<p><code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> (TWCS) is designed specifically for workloads where it’s beneficial to have data on
 disk grouped by the timestamp of the data, a common goal when the workload is time-series in nature or when all data is
 written with a TTL. In an expiring/TTL workload, the contents of an entire SSTable likely expire at approximately the
 same time, allowing them to be dropped completely, and space reclaimed much more reliably than when using
-<code class="docutils literal"><span class="pre">SizeTieredCompactionStrategy</span></code> or <code class="docutils literal"><span class="pre">LeveledCompactionStrategy</span></code>. The basic concept is that
-<code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> will create 1 sstable per file for a given window, where a window is simply calculated
+<code class="docutils literal notranslate"><span class="pre">SizeTieredCompactionStrategy</span></code> or <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>. The basic concept is that
+<code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> will create 1 sstable per file for a given window, where a window is simply calculated
 as the combination of two primary options:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">compaction_window_unit</span></code> (default: DAYS)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> (default: DAYS)</dt>
 <dd>A Java TimeUnit (MINUTES, HOURS, or DAYS).</dd>
-<dt><code class="docutils literal"><span class="pre">compaction_window_size</span></code> (default: 1)</dt>
+<dt><code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> (default: 1)</dt>
 <dd>The number of units that make up a window.</dd>
 </dl>
 <p>Taken together, the operator can specify windows of virtually any size, and <cite>TimeWindowCompactionStrategy</cite> will work to
 create a single sstable for writes within that window. For efficiency during writing, the newest window will be
 compacted using <cite>SizeTieredCompactionStrategy</cite>.</p>
-<p>Ideally, operators should select a <code class="docutils literal"><span class="pre">compaction_window_unit</span></code> and <code class="docutils literal"><span class="pre">compaction_window_size</span></code> pair that produces
+<p>Ideally, operators should select a <code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> and <code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> pair that produces
 approximately 20-30 windows - if writing with a 90 day TTL, for example, a 3 Day window would be a reasonable choice
-(<code class="docutils literal"><span class="pre">'compaction_window_unit':'DAYS','compaction_window_size':3</span></code>).</p>
+(<code class="docutils literal notranslate"><span class="pre">'compaction_window_unit':'DAYS','compaction_window_size':3</span></code>).</p>
 <div class="section" id="timewindowcompactionstrategy-operational-concerns">
 <h3>TimeWindowCompactionStrategy Operational Concerns<a class="headerlink" href="#timewindowcompactionstrategy-operational-concerns" title="Permalink to this headline">¶</a></h3>
 <p>The primary motivation for TWCS is to separate data on disk by timestamp and to allow fully expired SSTables to drop
@@ -542,20 +542,20 @@
 <ul class="simple">
 <li>If the user mixes old data and new data in the traditional write path, the data will be comingled in the memtables
 and flushed into the same SSTable, where it will remain comingled.</li>
-<li>If the user&#8217;s read requests for old data cause read repairs that pull old data into the current memtable, that data
+<li>If the user’s read requests for old data cause read repairs that pull old data into the current memtable, that data
 will be comingled and flushed into the same SSTable.</li>
 </ul>
 <p>While TWCS tries to minimize the impact of comingled data, users should attempt to avoid this behavior.  Specifically,
-users should avoid queries that explicitly set the timestamp via CQL <code class="docutils literal"><span class="pre">USING</span> <span class="pre">TIMESTAMP</span></code>. Additionally, users should run
+users should avoid queries that explicitly set the timestamp via CQL <code class="docutils literal notranslate"><span class="pre">USING</span> <span class="pre">TIMESTAMP</span></code>. Additionally, users should run
 frequent repairs (which streams data in such a way that it does not become comingled), and disable background read
-repair by setting the table&#8217;s <code class="docutils literal"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal"><span class="pre">dclocal_read_repair_chance</span></code> to 0.</p>
+repair by setting the table’s <code class="docutils literal notranslate"><span class="pre">read_repair_chance</span></code> and <code class="docutils literal notranslate"><span class="pre">dclocal_read_repair_chance</span></code> to 0.</p>
 </div>
 <div class="section" id="changing-timewindowcompactionstrategy-options">
 <h3>Changing TimeWindowCompactionStrategy Options<a class="headerlink" href="#changing-timewindowcompactionstrategy-options" title="Permalink to this headline">¶</a></h3>
-<p>Operators wishing to enable <code class="docutils literal"><span class="pre">TimeWindowCompactionStrategy</span></code> on existing data should consider running a major compaction
+<p>Operators wishing to enable <code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> on existing data should consider running a major compaction
 first, placing all existing data into a single (old) window. Subsequent newer writes will then create typical SSTables
 as expected.</p>
-<p>Operators wishing to change <code class="docutils literal"><span class="pre">compaction_window_unit</span></code> or <code class="docutils literal"><span class="pre">compaction_window_size</span></code> can do so, but may trigger
+<p>Operators wishing to change <code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> or <code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> can do so, but may trigger
 additional compactions as adjacent windows are joined together. If the window size is decrease d (for example, from 24
 hours to 12 hours), then the existing SSTables will not be modified - TWCS can not split existing SSTables into multiple
 windows.</p>
diff --git a/content/doc/stable/operating/compression.html b/content/doc/stable/operating/compression.html
index 6b1e6ab..2351f1c 100644
--- a/content/doc/stable/operating/compression.html
+++ b/content/doc/stable/operating/compression.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Change Data Capture" href="cdc.html"/> <link rel="prev" title="Bloom Filters" href="bloom_filters.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Change Data Capture" href="cdc.html"/> <link rel="prev" title="Bloom Filters" href="bloom_filters.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -173,7 +173,7 @@
   <div class="section" id="compression">
 <h1>Compression<a class="headerlink" href="#compression" title="Permalink to this headline">¶</a></h1>
 <p>Cassandra offers operators the ability to configure compression on a per-table basis. Compression reduces the size of
-data on disk by compressing the SSTable in user-configurable compression <code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code>. Because Cassandra
+data on disk by compressing the SSTable in user-configurable compression <code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code>. Because Cassandra
 SSTables are immutable, the CPU cost of compressing is only necessary when the SSTable is written - subsequent updates
 to data will land in different SSTables, so Cassandra will not need to decompress, overwrite, and recompress data when
 UPDATE commands are issued. On reads, Cassandra will locate the relevant compressed chunks on disk, decompress the full
@@ -181,37 +181,37 @@
 on).</p>
 <div class="section" id="configuring-compression">
 <h2>Configuring Compression<a class="headerlink" href="#configuring-compression" title="Permalink to this headline">¶</a></h2>
-<p>Compression is configured on a per-table basis as an optional argument to <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> or <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>. By
+<p>Compression is configured on a per-table basis as an optional argument to <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> or <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>. By
 default, three options are relevant:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">class</span></code> specifies the compression class - Cassandra provides three classes (<code class="docutils literal"><span class="pre">LZ4Compressor</span></code>,
-<code class="docutils literal"><span class="pre">SnappyCompressor</span></code>, and <code class="docutils literal"><span class="pre">DeflateCompressor</span></code> ). The default is <code class="docutils literal"><span class="pre">LZ4Compressor</span></code>.</li>
-<li><code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code> specifies the number of kilobytes of data per compression chunk. The default is 64KB.</li>
-<li><code class="docutils literal"><span class="pre">crc_check_chance</span></code> determines how likely Cassandra is to verify the checksum on each compression chunk during
+<li><code class="docutils literal notranslate"><span class="pre">class</span></code> specifies the compression class - Cassandra provides three classes (<code class="docutils literal notranslate"><span class="pre">LZ4Compressor</span></code>,
+<code class="docutils literal notranslate"><span class="pre">SnappyCompressor</span></code>, and <code class="docutils literal notranslate"><span class="pre">DeflateCompressor</span></code> ). The default is <code class="docutils literal notranslate"><span class="pre">LZ4Compressor</span></code>.</li>
+<li><code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code> specifies the number of kilobytes of data per compression chunk. The default is 64KB.</li>
+<li><code class="docutils literal notranslate"><span class="pre">crc_check_chance</span></code> determines how likely Cassandra is to verify the checksum on each compression chunk during
 reads. The default is 1.0.</li>
 </ul>
 <p>Users can set compression using the following syntax:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CREATE TABLE keyspace.table (id int PRIMARY KEY) WITH compression = {&#39;class&#39;: &#39;LZ4Compressor&#39;};
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CREATE TABLE keyspace.table (id int PRIMARY KEY) WITH compression = {&#39;class&#39;: &#39;LZ4Compressor&#39;};
 </pre></div>
 </div>
 <p>Or</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;class&#39;: &#39;SnappyCompressor&#39;, &#39;chunk_length_in_kb&#39;: 128, &#39;crc_check_chance&#39;: 0.5};
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;class&#39;: &#39;SnappyCompressor&#39;, &#39;chunk_length_in_kb&#39;: 128, &#39;crc_check_chance&#39;: 0.5};
 </pre></div>
 </div>
-<p>Once enabled, compression can be disabled with <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> setting <code class="docutils literal"><span class="pre">enabled</span></code> to <code class="docutils literal"><span class="pre">false</span></code>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;enabled&#39;:&#39;false&#39;};
+<p>Once enabled, compression can be disabled with <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code> setting <code class="docutils literal notranslate"><span class="pre">enabled</span></code> to <code class="docutils literal notranslate"><span class="pre">false</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER TABLE keyspace.table WITH compression = {&#39;enabled&#39;:&#39;false&#39;};
 </pre></div>
 </div>
 <p>Operators should be aware, however, that changing compression is not immediate. The data is compressed when the SSTable
 is written, and as SSTables are immutable, the compression will not be modified until the table is compacted. Upon
-issuing a change to the compression options via <code class="docutils literal"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>, the existing SSTables will not be modified until they
+issuing a change to the compression options via <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>, the existing SSTables will not be modified until they
 are compacted - if an operator needs compression changes to take effect immediately, the operator can trigger an SSTable
-rewrite using <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the SSTables on disk,
+rewrite using <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">scrub</span></code> or <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">upgradesstables</span> <span class="pre">-a</span></code>, both of which will rebuild the SSTables on disk,
 re-compressing the data in the process.</p>
 </div>
 <div class="section" id="benefits-and-uses">
 <h2>Benefits and Uses<a class="headerlink" href="#benefits-and-uses" title="Permalink to this headline">¶</a></h2>
-<p>Compression&#8217;s primary benefit is that it reduces the amount of data written to disk. Not only does the reduced size save
+<p>Compression’s primary benefit is that it reduces the amount of data written to disk. Not only does the reduced size save
 in storage requirements, it often increases read and write throughput, as the CPU overhead of compressing data is faster
 than the time it would take to read or write the larger volume of uncompressed data from disk.</p>
 <p>Compression is most useful in tables comprised of many rows, where the rows are similar in nature. Tables containing
@@ -221,18 +221,18 @@
 <h2>Operational Impact<a class="headerlink" href="#operational-impact" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
 <li>Compression metadata is stored off-heap and scales with data on disk.  This often requires 1-3GB of off-heap RAM per
-terabyte of data on disk, though the exact usage varies with <code class="docutils literal"><span class="pre">chunk_length_in_kb</span></code> and compression ratios.</li>
+terabyte of data on disk, though the exact usage varies with <code class="docutils literal notranslate"><span class="pre">chunk_length_in_kb</span></code> and compression ratios.</li>
 <li>Streaming operations involve compressing and decompressing data on compressed tables - in some code paths (such as
 non-vnode bootstrap), the CPU overhead of compression can be a limiting factor.</li>
 <li>The compression path checksums data to ensure correctness - while the traditional Cassandra read path does not have a
-way to ensure correctness of data on disk, compressed tables allow the user to set <code class="docutils literal"><span class="pre">crc_check_chance</span></code> (a float from
+way to ensure correctness of data on disk, compressed tables allow the user to set <code class="docutils literal notranslate"><span class="pre">crc_check_chance</span></code> (a float from
 0.0 to 1.0) to allow Cassandra to probabilistically validate chunks on read to verify bits on disk are not corrupt.</li>
 </ul>
 </div>
 <div class="section" id="advanced-use">
 <h2>Advanced Use<a class="headerlink" href="#advanced-use" title="Permalink to this headline">¶</a></h2>
 <p>Advanced users can provide their own compression class by implementing the interface at
-<code class="docutils literal"><span class="pre">org.apache.cassandra.io.compress.ICompressor</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.io.compress.ICompressor</span></code>.</p>
 </div>
 </div>
 
diff --git a/content/doc/stable/operating/hardware.html b/content/doc/stable/operating/hardware.html
index 5f25093..f7868c4 100644
--- a/content/doc/stable/operating/hardware.html
+++ b/content/doc/stable/operating/hardware.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Cassandra Tools" href="../tools/index.html"/> <link rel="prev" title="Security" href="security.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Cassandra Tools" href="../tools/index.html"/> <link rel="prev" title="Security" href="security.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -185,9 +185,9 @@
 </div>
 <div class="section" id="memory">
 <h2>Memory<a class="headerlink" href="#memory" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra runs within a Java VM, which will pre-allocate a fixed size heap (java&#8217;s Xmx system parameter). In addition to
+<p>Cassandra runs within a Java VM, which will pre-allocate a fixed size heap (java’s Xmx system parameter). In addition to
 the heap, Cassandra will use significant amounts of RAM offheap for compression metadata, bloom filters, row, key, and
-counter caches, and an in process page cache. Finally, Cassandra will take advantage of the operating system&#8217;s page
+counter caches, and an in process page cache. Finally, Cassandra will take advantage of the operating system’s page
 cache, storing recently accessed portions files in RAM for rapid re-use.</p>
 <p>For optimal performance, operators should benchmark and tune their clusters based on their individual workload. However,
 basic guidelines suggest:</p>
@@ -208,17 +208,17 @@
 satisfy client look-ups. SSTables are also periodically merged and rewritten in a process called compaction.  The data
 held in the commitlog directory is data that has not been permanently saved to the SSTable data directories - it will be
 periodically purged once it is flushed to the SSTable data files.</p>
-<p>Cassandra performs very well on both spinning hard drives and solid state disks. In both cases, Cassandra&#8217;s sorted
+<p>Cassandra performs very well on both spinning hard drives and solid state disks. In both cases, Cassandra’s sorted
 immutable SSTables allow for linear reads, few seeks, and few overwrites, maximizing throughput for HDDs and lifespan of
-SSDs by avoiding write amplification. However, when using spinning disks, it&#8217;s important that the commitlog
-(<code class="docutils literal"><span class="pre">commitlog_directory</span></code>) be on one physical disk (not simply a partition, but a physical disk), and the data files
-(<code class="docutils literal"><span class="pre">data_file_directories</span></code>) be set to a separate physical disk. By separating the commitlog from the data directory,
+SSDs by avoiding write amplification. However, when using spinning disks, it’s important that the commitlog
+(<code class="docutils literal notranslate"><span class="pre">commitlog_directory</span></code>) be on one physical disk (not simply a partition, but a physical disk), and the data files
+(<code class="docutils literal notranslate"><span class="pre">data_file_directories</span></code>) be set to a separate physical disk. By separating the commitlog from the data directory,
 writes can benefit from sequential appends to the commitlog without having to seek around the platter as reads request
 data from various SSTables on disk.</p>
 <p>In most cases, Cassandra is designed to provide redundancy via multiple independent, inexpensive servers. For this
 reason, using NFS or a SAN for data directories is an antipattern and should typically be avoided.  Similarly, servers
 with multiple disks are often better served by using RAID0 or JBOD than RAID1 or RAID5 - replication provided by
-Cassandra obsoletes the need for replication at the disk layer, so it&#8217;s typically recommended that operators take
+Cassandra obsoletes the need for replication at the disk layer, so it’s typically recommended that operators take
 advantage of the additional throughput of RAID0 rather than protecting against failures with RAID1 or RAID5.</p>
 </div>
 <div class="section" id="common-cloud-choices">
diff --git a/content/doc/stable/operating/hints.html b/content/doc/stable/operating/hints.html
index 587faac..cef3dc2 100644
--- a/content/doc/stable/operating/hints.html
+++ b/content/doc/stable/operating/hints.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compaction" href="compaction.html"/> <link rel="prev" title="Read repair" href="read_repair.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Compaction" href="compaction.html"/> <link rel="prev" title="Read repair" href="read_repair.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/operating/index.html b/content/doc/stable/operating/index.html
index 533caf1..4e028b4 100644
--- a/content/doc/stable/operating/index.html
+++ b/content/doc/stable/operating/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Snitch" href="snitch.html"/> <link rel="prev" title="Cassandra Configuration File" href="../configuration/cassandra_config_file.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Snitch" href="snitch.html"/> <link rel="prev" title="Cassandra Configuration File" href="../configuration/cassandra_config_file.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/operating/metrics.html b/content/doc/stable/operating/metrics.html
index f734db7..97c9de4 100644
--- a/content/doc/stable/operating/metrics.html
+++ b/content/doc/stable/operating/metrics.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Bulk Loading" href="bulk_loading.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Security" href="security.html"/> <link rel="prev" title="Bulk Loading" href="bulk_loading.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -189,28 +189,28 @@
 <h1>Monitoring<a class="headerlink" href="#monitoring" title="Permalink to this headline">¶</a></h1>
 <p>Metrics in Cassandra are managed using the <a class="reference external" href="http://metrics.dropwizard.io">Dropwizard Metrics</a> library. These metrics
 can be queried via JMX or pushed to external monitoring systems using a number of <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/getting-started/#other-reporting">built in</a> and <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/manual/third-party/">third party</a> reporter plugins.</p>
-<p>Metrics are collected for a single node. It&#8217;s up to the operator to use an external monitoring system to aggregate them.</p>
+<p>Metrics are collected for a single node. It’s up to the operator to use an external monitoring system to aggregate them.</p>
 <div class="section" id="metric-types">
 <h2>Metric Types<a class="headerlink" href="#metric-types" title="Permalink to this headline">¶</a></h2>
 <p>All metrics reported by cassandra fit into one of the following types.</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">Gauge</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Gauge</span></code></dt>
 <dd>An instantaneous measurement of a value.</dd>
-<dt><code class="docutils literal"><span class="pre">Counter</span></code></dt>
-<dd>A gauge for an <code class="docutils literal"><span class="pre">AtomicLong</span></code> instance. Typically this is consumed by monitoring the change since the last call to
+<dt><code class="docutils literal notranslate"><span class="pre">Counter</span></code></dt>
+<dd>A gauge for an <code class="docutils literal notranslate"><span class="pre">AtomicLong</span></code> instance. Typically this is consumed by monitoring the change since the last call to
 see if there is a large increase compared to the norm.</dd>
-<dt><code class="docutils literal"><span class="pre">Histogram</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Histogram</span></code></dt>
 <dd><p class="first">Measures the statistical distribution of values in a stream of data.</p>
 <p class="last">In addition to minimum, maximum, mean, etc., it also measures median, 75th, 90th, 95th, 98th, 99th, and 99.9th
 percentiles.</p>
 </dd>
-<dt><code class="docutils literal"><span class="pre">Timer</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">Timer</span></code></dt>
 <dd>Measures both the rate that a particular piece of code is called and the histogram of its duration.</dd>
-<dt><code class="docutils literal"><span class="pre">Latency</span></code></dt>
-<dd>Special type that tracks latency (in microseconds) with a <code class="docutils literal"><span class="pre">Timer</span></code> plus a <code class="docutils literal"><span class="pre">Counter</span></code> that tracks the total latency
+<dt><code class="docutils literal notranslate"><span class="pre">Latency</span></code></dt>
+<dd>Special type that tracks latency (in microseconds) with a <code class="docutils literal notranslate"><span class="pre">Timer</span></code> plus a <code class="docutils literal notranslate"><span class="pre">Counter</span></code> that tracks the total latency
 accrued since starting. The former is useful if you track the change in total latency since the last check. Each
-metric name of this type will have &#8216;Latency&#8217; and &#8216;TotalLatency&#8217; appended to it.</dd>
-<dt><code class="docutils literal"><span class="pre">Meter</span></code></dt>
+metric name of this type will have ‘Latency’ and ‘TotalLatency’ appended to it.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">Meter</span></code></dt>
 <dd>A meter metric which measures mean throughput and one-, five-, and fifteen-minute exponentially-weighted moving
 average throughputs.</dd>
 </dl>
@@ -218,17 +218,17 @@
 <div class="section" id="table-metrics">
 <h2>Table Metrics<a class="headerlink" href="#table-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Each table in Cassandra has metrics responsible for tracking its state and performance.</p>
-<p>The metric names are all appended with the specific <code class="docutils literal"><span class="pre">Keyspace</span></code> and <code class="docutils literal"><span class="pre">Table</span></code> name.</p>
+<p>The metric names are all appended with the specific <code class="docutils literal notranslate"><span class="pre">Keyspace</span></code> and <code class="docutils literal notranslate"><span class="pre">Table</span></code> name.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Table.&lt;MetricName&gt;.&lt;Keyspace&gt;.&lt;Table&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Table.&lt;MetricName&gt;.&lt;Keyspace&gt;.&lt;Table&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Table</span> <span class="pre">keyspace=&lt;Keyspace&gt;</span> <span class="pre">scope=&lt;Table&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Table</span> <span class="pre">keyspace=&lt;Keyspace&gt;</span> <span class="pre">scope=&lt;Table&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">There is a special table called &#8216;<code class="docutils literal"><span class="pre">all</span></code>&#8216; without a keyspace. This represents the aggregation of metrics across
+<p class="last">There is a special table called ‘<code class="docutils literal notranslate"><span class="pre">all</span></code>’ without a keyspace. This represents the aggregation of metrics across
 <strong>all</strong> tables and keyspaces on the node.</p>
 </div>
 <table border="1" class="docutils">
@@ -342,7 +342,7 @@
 </tr>
 <tr class="row-even"><td>TotalDiskSpaceUsed</td>
 <td>Counter</td>
-<td>Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC&#8217;d.</td>
+<td>Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC’d.</td>
 </tr>
 <tr class="row-odd"><td>MinPartitionSize</td>
 <td>Gauge&lt;Long&gt;</td>
@@ -358,11 +358,11 @@
 </tr>
 <tr class="row-even"><td>BloomFilterFalsePositives</td>
 <td>Gauge&lt;Long&gt;</td>
-<td>Number of false positives on table&#8217;s bloom filter.</td>
+<td>Number of false positives on table’s bloom filter.</td>
 </tr>
 <tr class="row-odd"><td>BloomFilterFalseRatio</td>
 <td>Gauge&lt;Double&gt;</td>
-<td>False positive ratio of table&#8217;s bloom filter.</td>
+<td>False positive ratio of table’s bloom filter.</td>
 </tr>
 <tr class="row-even"><td>BloomFilterDiskSpaceUsed</td>
 <td>Gauge&lt;Long&gt;</td>
@@ -454,28 +454,28 @@
 <div class="section" id="keyspace-metrics">
 <h2>Keyspace Metrics<a class="headerlink" href="#keyspace-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Each keyspace in Cassandra has metrics responsible for tracking its state and performance.</p>
-<p>These metrics are the same as the <code class="docutils literal"><span class="pre">Table</span> <span class="pre">Metrics</span></code> above, only they are aggregated at the Keyspace level.</p>
+<p>These metrics are the same as the <code class="docutils literal notranslate"><span class="pre">Table</span> <span class="pre">Metrics</span></code> above, only they are aggregated at the Keyspace level.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.keyspace.&lt;MetricName&gt;.&lt;Keyspace&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.keyspace.&lt;MetricName&gt;.&lt;Keyspace&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Keyspace</span> <span class="pre">scope=&lt;Keyspace&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Keyspace</span> <span class="pre">scope=&lt;Keyspace&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 </div>
 <div class="section" id="threadpool-metrics">
 <h2>ThreadPool Metrics<a class="headerlink" href="#threadpool-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra splits work of a particular type into its own thread pool.  This provides back-pressure and asynchrony for
-requests on a node.  It&#8217;s important to monitor the state of these thread pools since they can tell you how saturated a
+requests on a node.  It’s important to monitor the state of these thread pools since they can tell you how saturated a
 node is.</p>
-<p>The metric names are all appended with the specific <code class="docutils literal"><span class="pre">ThreadPool</span></code> name.  The thread pools are also categorized under a
+<p>The metric names are all appended with the specific <code class="docutils literal notranslate"><span class="pre">ThreadPool</span></code> name.  The thread pools are also categorized under a
 specific type.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.ThreadPools.&lt;MetricName&gt;.&lt;Path&gt;.&lt;ThreadPoolName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.ThreadPools.&lt;MetricName&gt;.&lt;Path&gt;.&lt;ThreadPoolName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=ThreadPools</span> <span class="pre">scope=&lt;ThreadPoolName&gt;</span> <span class="pre">type=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=ThreadPools</span> <span class="pre">scope=&lt;ThreadPoolName&gt;</span> <span class="pre">type=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -628,13 +628,13 @@
 <div class="section" id="client-request-metrics">
 <h2>Client Request Metrics<a class="headerlink" href="#client-request-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Client requests have their own set of metrics that encapsulate the work happening at coordinator level.</p>
-<p>Different types of client requests are broken down by <code class="docutils literal"><span class="pre">RequestType</span></code>.</p>
+<p>Different types of client requests are broken down by <code class="docutils literal notranslate"><span class="pre">RequestType</span></code>.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.ClientRequest.&lt;MetricName&gt;.&lt;RequestType&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.ClientRequest.&lt;MetricName&gt;.&lt;RequestType&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=ClientRequest</span> <span class="pre">scope=&lt;RequestType&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=ClientRequest</span> <span class="pre">scope=&lt;RequestType&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table class="docutils field-list" frame="void" rules="none">
 <col class="field-name" />
@@ -905,13 +905,13 @@
 </div>
 <div class="section" id="cache-metrics">
 <h2>Cache Metrics<a class="headerlink" href="#cache-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Cassandra caches have metrics to track the effectivness of the caches. Though the <code class="docutils literal"><span class="pre">Table</span> <span class="pre">Metrics</span></code> might be more useful.</p>
+<p>Cassandra caches have metrics to track the effectivness of the caches. Though the <code class="docutils literal notranslate"><span class="pre">Table</span> <span class="pre">Metrics</span></code> might be more useful.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Cache.&lt;MetricName&gt;.&lt;CacheName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Cache.&lt;MetricName&gt;.&lt;CacheName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Cache</span> <span class="pre">scope=&lt;CacheName&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Cache</span> <span class="pre">scope=&lt;CacheName&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1009,9 +1009,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.CQL.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.CQL.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=CQL</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=CQL</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1052,13 +1052,13 @@
 <div class="section" id="droppedmessage-metrics">
 <h2>DroppedMessage Metrics<a class="headerlink" href="#droppedmessage-metrics" title="Permalink to this headline">¶</a></h2>
 <p>Metrics specific to tracking dropped messages for different types of requests.
-Dropped writes are stored and retried by <code class="docutils literal"><span class="pre">Hinted</span> <span class="pre">Handoff</span></code></p>
+Dropped writes are stored and retried by <code class="docutils literal notranslate"><span class="pre">Hinted</span> <span class="pre">Handoff</span></code></p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.DroppedMessages.&lt;MetricName&gt;.&lt;Type&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.DroppedMessages.&lt;MetricName&gt;.&lt;Type&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=DroppedMetrics</span> <span class="pre">scope=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=DroppedMetrics</span> <span class="pre">scope=&lt;Type&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1137,14 +1137,14 @@
 </div>
 <div class="section" id="streaming-metrics">
 <h2>Streaming Metrics<a class="headerlink" href="#streaming-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics reported during <code class="docutils literal"><span class="pre">Streaming</span></code> operations, such as repair, bootstrap, rebuild.</p>
+<p>Metrics reported during <code class="docutils literal notranslate"><span class="pre">Streaming</span></code> operations, such as repair, bootstrap, rebuild.</p>
 <p>These metrics are specific to a peer endpoint, with the source node being the node you are pulling the metrics from.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Streaming.&lt;MetricName&gt;.&lt;PeerIP&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Streaming.&lt;MetricName&gt;.&lt;PeerIP&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Streaming</span> <span class="pre">scope=&lt;PeerIP&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Streaming</span> <span class="pre">scope=&lt;PeerIP&gt;</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1172,13 +1172,13 @@
 </div>
 <div class="section" id="compaction-metrics">
 <h2>Compaction Metrics<a class="headerlink" href="#compaction-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics specific to <code class="docutils literal"><span class="pre">Compaction</span></code> work.</p>
+<p>Metrics specific to <code class="docutils literal notranslate"><span class="pre">Compaction</span></code> work.</p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Compaction.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Compaction.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Compaction</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Compaction</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1211,20 +1211,20 @@
 </tr>
 <tr class="row-even"><td>PendingTasksByTableName</td>
 <td>Gauge&lt;Map&lt;String, Map&lt;String, Integer&gt;&gt;&gt;</td>
-<td>Estimated number of compactions remaining to perform, grouped by keyspace and then table name. This info is also kept in <code class="docutils literal"><span class="pre">Table</span> <span class="pre">Metrics</span></code>.</td>
+<td>Estimated number of compactions remaining to perform, grouped by keyspace and then table name. This info is also kept in <code class="docutils literal notranslate"><span class="pre">Table</span> <span class="pre">Metrics</span></code>.</td>
 </tr>
 </tbody>
 </table>
 </div>
 <div class="section" id="commitlog-metrics">
 <h2>CommitLog Metrics<a class="headerlink" href="#commitlog-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics specific to the <code class="docutils literal"><span class="pre">CommitLog</span></code></p>
+<p>Metrics specific to the <code class="docutils literal notranslate"><span class="pre">CommitLog</span></code></p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.CommitLog.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.CommitLog.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=CommitLog</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=CommitLog</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1245,7 +1245,7 @@
 </tr>
 <tr class="row-odd"><td>PendingTasks</td>
 <td>Gauge&lt;Long&gt;</td>
-<td>Number of commit log messages written but yet to be fsync&#8217;d.</td>
+<td>Number of commit log messages written but yet to be fsync’d.</td>
 </tr>
 <tr class="row-even"><td>TotalCommitLogSize</td>
 <td>Gauge&lt;Long&gt;</td>
@@ -1268,9 +1268,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Storage.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Storage.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Storage</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Storage</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1306,14 +1306,14 @@
 </div>
 <div class="section" id="hintedhandoff-metrics">
 <h2>HintedHandoff Metrics<a class="headerlink" href="#hintedhandoff-metrics" title="Permalink to this headline">¶</a></h2>
-<p>Metrics specific to Hinted Handoff.  There are also some metrics related to hints tracked in <code class="docutils literal"><span class="pre">Storage</span> <span class="pre">Metrics</span></code></p>
+<p>Metrics specific to Hinted Handoff.  There are also some metrics related to hints tracked in <code class="docutils literal notranslate"><span class="pre">Storage</span> <span class="pre">Metrics</span></code></p>
 <p>These metrics include the peer endpoint <strong>in the metric name</strong></p>
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.HintedHandOffManager.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.HintedHandOffManager.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=HintedHandOffManager</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=HintedHandOffManager</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1345,9 +1345,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Index.&lt;MetricName&gt;.RowIndexEntry</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Index.&lt;MetricName&gt;.RowIndexEntry</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Index</span> <span class="pre">scope=RowIndexEntry</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Index</span> <span class="pre">scope=RowIndexEntry</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1384,9 +1384,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.BufferPool.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.BufferPool.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=BufferPool</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=BufferPool</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1418,9 +1418,9 @@
 <p>Reported name format:</p>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics.Client.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics.Client.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">org.apache.cassandra.metrics:type=Client</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.metrics:type=Client</span> <span class="pre">name=&lt;MetricName&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1453,9 +1453,9 @@
 <h3>BufferPool<a class="headerlink" href="#bufferpool" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.buffers.&lt;direct|mapped&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.buffers.&lt;direct|mapped&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.nio:type=BufferPool</span> <span class="pre">name=&lt;direct|mapped&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.nio:type=BufferPool</span> <span class="pre">name=&lt;direct|mapped&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1489,9 +1489,9 @@
 <h3>FileDescriptorRatio<a class="headerlink" href="#filedescriptorratio" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.fd.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.fd.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=OperatingSystem</span> <span class="pre">name=&lt;OpenFileDescriptorCount|MaxFileDescriptorCount&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=OperatingSystem</span> <span class="pre">name=&lt;OpenFileDescriptorCount|MaxFileDescriptorCount&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1517,9 +1517,9 @@
 <h3>GarbageCollector<a class="headerlink" href="#garbagecollector" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.gc.&lt;gc_type&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.gc.&lt;gc_type&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=GarbageCollector</span> <span class="pre">name=&lt;gc_type&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=GarbageCollector</span> <span class="pre">name=&lt;gc_type&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1549,9 +1549,9 @@
 <h3>Memory<a class="headerlink" href="#memory" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.memory.&lt;heap/non-heap/total&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.memory.&lt;heap/non-heap/total&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=Memory</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=Memory</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1587,9 +1587,9 @@
 <h3>MemoryPool<a class="headerlink" href="#memorypool" title="Permalink to this headline">¶</a></h3>
 <dl class="docutils">
 <dt><strong>Metric Name</strong></dt>
-<dd><code class="docutils literal"><span class="pre">jvm.memory.pools.&lt;memory_pool&gt;.&lt;MetricName&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">jvm.memory.pools.&lt;memory_pool&gt;.&lt;MetricName&gt;</span></code></dd>
 <dt><strong>JMX MBean</strong></dt>
-<dd><code class="docutils literal"><span class="pre">java.lang:type=MemoryPool</span> <span class="pre">name=&lt;memory_pool&gt;</span></code></dd>
+<dd><code class="docutils literal notranslate"><span class="pre">java.lang:type=MemoryPool</span> <span class="pre">name=&lt;memory_pool&gt;</span></code></dd>
 </dl>
 <table border="1" class="docutils">
 <colgroup>
@@ -1625,14 +1625,14 @@
 <div class="section" id="jmx">
 <h2>JMX<a class="headerlink" href="#jmx" title="Permalink to this headline">¶</a></h2>
 <p>Any JMX based client can access metrics from cassandra.</p>
-<p>If you wish to access JMX metrics over http it&#8217;s possible to download <a class="reference external" href="http://mx4j.sourceforge.net/">Mx4jTool</a> and
-place <code class="docutils literal"><span class="pre">mx4j-tools.jar</span></code> into the classpath.  On startup you will see in the log:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>HttpAdaptor version 3.0.2 started on port 8081
+<p>If you wish to access JMX metrics over http it’s possible to download <a class="reference external" href="http://mx4j.sourceforge.net/">Mx4jTool</a> and
+place <code class="docutils literal notranslate"><span class="pre">mx4j-tools.jar</span></code> into the classpath.  On startup you will see in the log:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>HttpAdaptor version 3.0.2 started on port 8081
 </pre></div>
 </div>
 <p>To choose a different port (8081 is the default) or a different listen address (0.0.0.0 is not the default) edit
-<code class="docutils literal"><span class="pre">conf/cassandra-env.sh</span></code> and uncomment:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#MX4J_ADDRESS=&quot;-Dmx4jaddress=0.0.0.0&quot;
+<code class="docutils literal notranslate"><span class="pre">conf/cassandra-env.sh</span></code> and uncomment:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#MX4J_ADDRESS=&quot;-Dmx4jaddress=0.0.0.0&quot;
 
 #MX4J_PORT=&quot;-Dmx4jport=8081&quot;
 </pre></div>
@@ -1643,10 +1643,10 @@
 <p>As mentioned at the top of this section on monitoring the Cassandra metrics can be exported to a number of monitoring
 system a number of <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/getting-started/#other-reporting">built in</a> and <a class="reference external" href="http://metrics.dropwizard.io/3.1.0/manual/third-party/">third party</a> reporter plugins.</p>
 <p>The configuration of these plugins is managed by the <a class="reference external" href="https://github.com/addthis/metrics-reporter-config">metrics reporter config project</a>. There is a sample configuration file located at
-<code class="docutils literal"><span class="pre">conf/metrics-reporter-config-sample.yaml</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">conf/metrics-reporter-config-sample.yaml</span></code>.</p>
 <p>Once configured, you simply start cassandra with the flag
-<code class="docutils literal"><span class="pre">-Dcassandra.metricsReporterConfigFile=metrics-reporter-config.yaml</span></code>. The specified .yaml file plus any 3rd party
-reporter jars must all be in Cassandra&#8217;s classpath.</p>
+<code class="docutils literal notranslate"><span class="pre">-Dcassandra.metricsReporterConfigFile=metrics-reporter-config.yaml</span></code>. The specified .yaml file plus any 3rd party
+reporter jars must all be in Cassandra’s classpath.</p>
 </div>
 </div>
 
diff --git a/content/doc/stable/operating/read_repair.html b/content/doc/stable/operating/read_repair.html
index ebd0b31..2781be1 100644
--- a/content/doc/stable/operating/read_repair.html
+++ b/content/doc/stable/operating/read_repair.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hints" href="hints.html"/> <link rel="prev" title="Repair" href="repair.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hints" href="hints.html"/> <link rel="prev" title="Repair" href="repair.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/operating/repair.html b/content/doc/stable/operating/repair.html
index e0b32b9..47a5f8a 100644
--- a/content/doc/stable/operating/repair.html
+++ b/content/doc/stable/operating/repair.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Read repair" href="read_repair.html"/> <link rel="prev" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Read repair" href="read_repair.html"/> <link rel="prev" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/operating/security.html b/content/doc/stable/operating/security.html
index 89ff15c..0013bc7 100644
--- a/content/doc/stable/operating/security.html
+++ b/content/doc/stable/operating/security.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hardware Choices" href="hardware.html"/> <link rel="prev" title="Monitoring" href="metrics.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Hardware Choices" href="hardware.html"/> <link rel="prev" title="Monitoring" href="metrics.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -186,7 +186,7 @@
 cluster. Enabling encryption ensures that data in flight is not compromised and is transferred securely. The options for
 client-to-node and node-to-node encryption are managed separately and may be configured independently.</p>
 <p>In both cases, the JVM defaults for supported protocols and cipher suites are used when encryption is enabled. These can
-be overidden using the settings in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>, but this is not recommended unless there are policies in place
+be overidden using the settings in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>, but this is not recommended unless there are policies in place
 which dictate certain settings or a need to disable vulnerable ciphers or protocols in cases where the JVM cannot be
 updated.</p>
 <p>FIPS compliant settings can be configured at the JVM level and should not involve changing encryption settings in
@@ -196,41 +196,41 @@
 <a class="reference external" href="http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore">java documentation on creating keystores</a></p>
 <div class="section" id="inter-node-encryption">
 <h3>Inter-node Encryption<a class="headerlink" href="#inter-node-encryption" title="Permalink to this headline">¶</a></h3>
-<p>The settings for managing inter-node encryption are found in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal"><span class="pre">server_encryption_options</span></code>
-section. To enable inter-node encryption, change the <code class="docutils literal"><span class="pre">internode_encryption</span></code> setting from its default value of <code class="docutils literal"><span class="pre">none</span></code>
-to one value from: <code class="docutils literal"><span class="pre">rack</span></code>, <code class="docutils literal"><span class="pre">dc</span></code> or <code class="docutils literal"><span class="pre">all</span></code>.</p>
+<p>The settings for managing inter-node encryption are found in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal notranslate"><span class="pre">server_encryption_options</span></code>
+section. To enable inter-node encryption, change the <code class="docutils literal notranslate"><span class="pre">internode_encryption</span></code> setting from its default value of <code class="docutils literal notranslate"><span class="pre">none</span></code>
+to one value from: <code class="docutils literal notranslate"><span class="pre">rack</span></code>, <code class="docutils literal notranslate"><span class="pre">dc</span></code> or <code class="docutils literal notranslate"><span class="pre">all</span></code>.</p>
 </div>
 <div class="section" id="client-to-node-encryption">
 <h3>Client to Node Encryption<a class="headerlink" href="#client-to-node-encryption" title="Permalink to this headline">¶</a></h3>
-<p>The settings for managing client to node encryption are found in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal"><span class="pre">client_encryption_options</span></code>
-section. There are two primary toggles here for enabling encryption, <code class="docutils literal"><span class="pre">enabled</span></code> and <code class="docutils literal"><span class="pre">optional</span></code>.</p>
+<p>The settings for managing client to node encryption are found in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> in the <code class="docutils literal notranslate"><span class="pre">client_encryption_options</span></code>
+section. There are two primary toggles here for enabling encryption, <code class="docutils literal notranslate"><span class="pre">enabled</span></code> and <code class="docutils literal notranslate"><span class="pre">optional</span></code>.</p>
 <ul class="simple">
-<li>If neither is set to <code class="docutils literal"><span class="pre">true</span></code>, client connections are entirely unencrypted.</li>
-<li>If <code class="docutils literal"><span class="pre">enabled</span></code> is set to <code class="docutils literal"><span class="pre">true</span></code> and <code class="docutils literal"><span class="pre">optional</span></code> is set to <code class="docutils literal"><span class="pre">false</span></code>, all client connections must be secured.</li>
-<li>If both options are set to <code class="docutils literal"><span class="pre">true</span></code>, both encrypted and unencrypted connections are supported using the same port.
+<li>If neither is set to <code class="docutils literal notranslate"><span class="pre">true</span></code>, client connections are entirely unencrypted.</li>
+<li>If <code class="docutils literal notranslate"><span class="pre">enabled</span></code> is set to <code class="docutils literal notranslate"><span class="pre">true</span></code> and <code class="docutils literal notranslate"><span class="pre">optional</span></code> is set to <code class="docutils literal notranslate"><span class="pre">false</span></code>, all client connections must be secured.</li>
+<li>If both options are set to <code class="docutils literal notranslate"><span class="pre">true</span></code>, both encrypted and unencrypted connections are supported using the same port.
 Client connections using encryption with this configuration will be automatically detected and handled by the server.</li>
 </ul>
-<p>As an alternative to the <code class="docutils literal"><span class="pre">optional</span></code> setting, separate ports can also be configured for secure and unsecure connections
-where operational requirements demand it. To do so, set <code class="docutils literal"><span class="pre">optional</span></code> to false and use the <code class="docutils literal"><span class="pre">native_transport_port_ssl</span></code>
-setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to specify the port to be used for secure client communication.</p>
+<p>As an alternative to the <code class="docutils literal notranslate"><span class="pre">optional</span></code> setting, separate ports can also be configured for secure and unsecure connections
+where operational requirements demand it. To do so, set <code class="docutils literal notranslate"><span class="pre">optional</span></code> to false and use the <code class="docutils literal notranslate"><span class="pre">native_transport_port_ssl</span></code>
+setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to specify the port to be used for secure client communication.</p>
 </div>
 </div>
 <div class="section" id="roles">
 <span id="operation-roles"></span><h2>Roles<a class="headerlink" href="#roles" title="Permalink to this headline">¶</a></h2>
 <p>Cassandra uses database roles, which may represent either a single user or a group of users, in both authentication and
 permissions management. Role management is an extension point in Cassandra and may be configured using the
-<code class="docutils literal"><span class="pre">role_manager</span></code> setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>. The default setting uses <code class="docutils literal"><span class="pre">CassandraRoleManager</span></code>, an implementation
-which stores role information in the tables of the <code class="docutils literal"><span class="pre">system_auth</span></code> keyspace.</p>
+<code class="docutils literal notranslate"><span class="pre">role_manager</span></code> setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>. The default setting uses <code class="docutils literal notranslate"><span class="pre">CassandraRoleManager</span></code>, an implementation
+which stores role information in the tables of the <code class="docutils literal notranslate"><span class="pre">system_auth</span></code> keyspace.</p>
 <p>See also the <a class="reference internal" href="../cql/security.html#cql-roles"><span class="std std-ref">CQL documentation on roles</span></a>.</p>
 </div>
 <div class="section" id="authentication">
 <h2>Authentication<a class="headerlink" href="#authentication" title="Permalink to this headline">¶</a></h2>
-<p>Authentication is pluggable in Cassandra and is configured using the <code class="docutils literal"><span class="pre">authenticator</span></code> setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>.
+<p>Authentication is pluggable in Cassandra and is configured using the <code class="docutils literal notranslate"><span class="pre">authenticator</span></code> setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>.
 Cassandra ships with two options included in the default distribution.</p>
-<p>By default, Cassandra is configured with <code class="docutils literal"><span class="pre">AllowAllAuthenticator</span></code> which performs no authentication checks and therefore
+<p>By default, Cassandra is configured with <code class="docutils literal notranslate"><span class="pre">AllowAllAuthenticator</span></code> which performs no authentication checks and therefore
 requires no credentials. It is used to disable authentication completely. Note that authentication is a necessary
-condition of Cassandra&#8217;s permissions subsystem, so if authentication is disabled, effectively so are permissions.</p>
-<p>The default distribution also includes <code class="docutils literal"><span class="pre">PasswordAuthenticator</span></code>, which stores encrypted credentials in a system table.
+condition of Cassandra’s permissions subsystem, so if authentication is disabled, effectively so are permissions.</p>
+<p>The default distribution also includes <code class="docutils literal notranslate"><span class="pre">PasswordAuthenticator</span></code>, which stores encrypted credentials in a system table.
 This can be used to enable simple username/password authentication.</p>
 <div class="section" id="enabling-password-authentication">
 <span id="password-authentication"></span><h3>Enabling Password Authentication<a class="headerlink" href="#enabling-password-authentication" title="Permalink to this headline">¶</a></h3>
@@ -244,42 +244,42 @@
 to this node during the setup process, so you may want to remove it from client config, block it at the network level
 or possibly add a new temporary node to the cluster for this purpose. On that node, perform the following steps:</p>
 <ol class="arabic simple">
-<li>Open a <code class="docutils literal"><span class="pre">cqlsh</span></code> session and change the replication factor of the <code class="docutils literal"><span class="pre">system_auth</span></code> keyspace. By default, this keyspace
-uses <code class="docutils literal"><span class="pre">SimpleReplicationStrategy</span></code> and a <code class="docutils literal"><span class="pre">replication_factor</span></code> of 1. It is recommended to change this for any
+<li>Open a <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code> session and change the replication factor of the <code class="docutils literal notranslate"><span class="pre">system_auth</span></code> keyspace. By default, this keyspace
+uses <code class="docutils literal notranslate"><span class="pre">SimpleReplicationStrategy</span></code> and a <code class="docutils literal notranslate"><span class="pre">replication_factor</span></code> of 1. It is recommended to change this for any
 non-trivial deployment to ensure that should nodes become unavailable, login is still possible. Best practice is to
 configure a replication factor of 3 to 5 per-DC.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER KEYSPACE system_auth WITH replication = {&#39;class&#39;: &#39;NetworkTopologyStrategy&#39;, &#39;DC1&#39;: 3, &#39;DC2&#39;: 3};
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER KEYSPACE system_auth WITH replication = {&#39;class&#39;: &#39;NetworkTopologyStrategy&#39;, &#39;DC1&#39;: 3, &#39;DC2&#39;: 3};
 </pre></div>
 </div>
 <ol class="arabic simple" start="2">
-<li>Edit <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal"><span class="pre">authenticator</span></code> option like so:</li>
+<li>Edit <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal notranslate"><span class="pre">authenticator</span></code> option like so:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>authenticator: PasswordAuthenticator
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>authenticator: PasswordAuthenticator
 </pre></div>
 </div>
 <ol class="arabic simple" start="3">
 <li>Restart the node.</li>
-<li>Open a new <code class="docutils literal"><span class="pre">cqlsh</span></code> session using the credentials of the default superuser:</li>
+<li>Open a new <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code> session using the credentials of the default superuser:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh -u cassandra -p cassandra
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh -u cassandra -p cassandra
 </pre></div>
 </div>
 <ol class="arabic simple" start="5">
-<li>During login, the credentials for the default superuser are read with a consistency level of <code class="docutils literal"><span class="pre">QUORUM</span></code>, whereas
-those for all other users (including superusers) are read at <code class="docutils literal"><span class="pre">LOCAL_ONE</span></code>. In the interests of performance and
+<li>During login, the credentials for the default superuser are read with a consistency level of <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code>, whereas
+those for all other users (including superusers) are read at <code class="docutils literal notranslate"><span class="pre">LOCAL_ONE</span></code>. In the interests of performance and
 availability, as well as security, operators should create another superuser and disable the default one. This step
 is optional, but highly recommended. While logged in as the default superuser, create another superuser role which
 can be used to bootstrap further configuration.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span># create a new superuser
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span># create a new superuser
 CREATE ROLE dba WITH SUPERUSER = true AND LOGIN = true AND PASSWORD = &#39;super&#39;;
 </pre></div>
 </div>
 <ol class="arabic simple" start="6">
 <li>Start a new cqlsh session, this time logging in as the new_superuser and disable the default superuser.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>ALTER ROLE cassandra WITH SUPERUSER = false AND LOGIN = false;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>ALTER ROLE cassandra WITH SUPERUSER = false AND LOGIN = false;
 </pre></div>
 </div>
 <ol class="arabic simple" start="7">
@@ -289,18 +289,18 @@
 <p>At the end of these steps, the one node is configured to use password authentication. To roll that out across the
 cluster, repeat steps 2 and 3 on each node in the cluster. Once all nodes have been restarted, authentication will be
 fully enabled throughout the cluster.</p>
-<p>Note that using <code class="docutils literal"><span class="pre">PasswordAuthenticator</span></code> also requires the use of <a class="reference internal" href="#operation-roles"><span class="std std-ref">CassandraRoleManager</span></a>.</p>
+<p>Note that using <code class="docutils literal notranslate"><span class="pre">PasswordAuthenticator</span></code> also requires the use of <a class="reference internal" href="#operation-roles"><span class="std std-ref">CassandraRoleManager</span></a>.</p>
 <p>See also: <a class="reference internal" href="../cql/security.html#setting-credentials-for-internal-authentication"><span class="std std-ref">Setting credentials for internal authentication</span></a>, <a class="reference internal" href="../cql/security.html#create-role-statement"><span class="std std-ref">CREATE ROLE</span></a>,
 <a class="reference internal" href="../cql/security.html#alter-role-statement"><span class="std std-ref">ALTER ROLE</span></a>, <a class="reference internal" href="../cql/ddl.html#alter-keyspace-statement"><span class="std std-ref">ALTER KEYSPACE</span></a> and <a class="reference internal" href="../cql/security.html#grant-permission-statement"><span class="std std-ref">GRANT PERMISSION</span></a>,</p>
 </div>
 </div>
 <div class="section" id="authorization">
 <h2>Authorization<a class="headerlink" href="#authorization" title="Permalink to this headline">¶</a></h2>
-<p>Authorization is pluggable in Cassandra and is configured using the <code class="docutils literal"><span class="pre">authorizer</span></code> setting in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>.
+<p>Authorization is pluggable in Cassandra and is configured using the <code class="docutils literal notranslate"><span class="pre">authorizer</span></code> setting in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>.
 Cassandra ships with two options included in the default distribution.</p>
-<p>By default, Cassandra is configured with <code class="docutils literal"><span class="pre">AllowAllAuthorizer</span></code> which performs no checking and so effectively grants all
-permissions to all roles. This must be used if <code class="docutils literal"><span class="pre">AllowAllAuthenticator</span></code> is the configured authenticator.</p>
-<p>The default distribution also includes <code class="docutils literal"><span class="pre">CassandraAuthorizer</span></code>, which does implement full permissions management
+<p>By default, Cassandra is configured with <code class="docutils literal notranslate"><span class="pre">AllowAllAuthorizer</span></code> which performs no checking and so effectively grants all
+permissions to all roles. This must be used if <code class="docutils literal notranslate"><span class="pre">AllowAllAuthenticator</span></code> is the configured authenticator.</p>
+<p>The default distribution also includes <code class="docutils literal notranslate"><span class="pre">CassandraAuthorizer</span></code>, which does implement full permissions management
 functionality and stores its data in Cassandra system tables.</p>
 <div class="section" id="enabling-internal-authorization">
 <h3>Enabling Internal Authorization<a class="headerlink" href="#enabling-internal-authorization" title="Permalink to this headline">¶</a></h3>
@@ -311,16 +311,16 @@
 <p>The following assumes that authentication has already been enabled via the process outlined in
 <a class="reference internal" href="#password-authentication"><span class="std std-ref">Enabling Password Authentication</span></a>. Perform these steps to enable internal authorization across the cluster:</p>
 <ol class="arabic simple">
-<li>On the selected node, edit <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal"><span class="pre">authorizer</span></code> option like so:</li>
+<li>On the selected node, edit <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> to change the <code class="docutils literal notranslate"><span class="pre">authorizer</span></code> option like so:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>authorizer: CassandraAuthorizer
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>authorizer: CassandraAuthorizer
 </pre></div>
 </div>
 <ol class="arabic simple" start="2">
 <li>Restart the node.</li>
-<li>Open a new <code class="docutils literal"><span class="pre">cqlsh</span></code> session using the credentials of a role with superuser credentials:</li>
+<li>Open a new <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code> session using the credentials of a role with superuser credentials:</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh -u dba -p super
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh -u dba -p super
 </pre></div>
 </div>
 <ol class="arabic simple" start="4">
@@ -328,7 +328,7 @@
 statements. On the other nodes, until configuration is updated and the node restarted, this will have no effect so
 disruption to clients is avoided.</li>
 </ol>
-<div class="highlight-none"><div class="highlight"><pre><span></span>GRANT SELECT ON ks.t1 TO db_user;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GRANT SELECT ON ks.t1 TO db_user;
 </pre></div>
 </div>
 <ol class="arabic simple" start="5">
@@ -341,11 +341,11 @@
 <div class="section" id="caching">
 <h2>Caching<a class="headerlink" href="#caching" title="Permalink to this headline">¶</a></h2>
 <p>Enabling authentication and authorization places additional load on the cluster by frequently reading from the
-<code class="docutils literal"><span class="pre">system_auth</span></code> tables. Furthermore, these reads are in the critical paths of many client operations, and so has the
+<code class="docutils literal notranslate"><span class="pre">system_auth</span></code> tables. Furthermore, these reads are in the critical paths of many client operations, and so has the
 potential to severely impact quality of service. To mitigate this, auth data such as credentials, permissions and role
-details are cached for a configurable period. The caching can be configured (and even disabled) from <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>
+details are cached for a configurable period. The caching can be configured (and even disabled) from <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>
 or using a JMX client. The JMX interface also supports invalidation of the various caches, but any changes made via JMX
-are not persistent and will be re-read from <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> when the node is restarted.</p>
+are not persistent and will be re-read from <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> when the node is restarted.</p>
 <p>Each cache has 3 options which can be set:</p>
 <dl class="docutils">
 <dt>Validity Period</dt>
@@ -357,22 +357,22 @@
 <dt>Max Entries</dt>
 <dd>Controls the upper bound on cache size.</dd>
 </dl>
-<p>The naming for these options in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> follows the convention:</p>
+<p>The naming for these options in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> follows the convention:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">&lt;type&gt;_validity_in_ms</span></code></li>
-<li><code class="docutils literal"><span class="pre">&lt;type&gt;_update_interval_in_ms</span></code></li>
-<li><code class="docutils literal"><span class="pre">&lt;type&gt;_cache_max_entries</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">&lt;type&gt;_validity_in_ms</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">&lt;type&gt;_update_interval_in_ms</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">&lt;type&gt;_cache_max_entries</span></code></li>
 </ul>
-<p>Where <code class="docutils literal"><span class="pre">&lt;type&gt;</span></code> is one of <code class="docutils literal"><span class="pre">credentials</span></code>, <code class="docutils literal"><span class="pre">permissions</span></code>, or <code class="docutils literal"><span class="pre">roles</span></code>.</p>
-<p>As mentioned, these are also exposed via JMX in the mbeans under the <code class="docutils literal"><span class="pre">org.apache.cassandra.auth</span></code> domain.</p>
+<p>Where <code class="docutils literal notranslate"><span class="pre">&lt;type&gt;</span></code> is one of <code class="docutils literal notranslate"><span class="pre">credentials</span></code>, <code class="docutils literal notranslate"><span class="pre">permissions</span></code>, or <code class="docutils literal notranslate"><span class="pre">roles</span></code>.</p>
+<p>As mentioned, these are also exposed via JMX in the mbeans under the <code class="docutils literal notranslate"><span class="pre">org.apache.cassandra.auth</span></code> domain.</p>
 </div>
 <div class="section" id="jmx-access">
 <h2>JMX access<a class="headerlink" href="#jmx-access" title="Permalink to this headline">¶</a></h2>
 <p>Access control for JMX clients is configured separately to that for CQL. For both authentication and authorization, two
 providers are available; the first based on standard JMX security and the second which integrates more closely with
-Cassandra&#8217;s own auth subsystem.</p>
+Cassandra’s own auth subsystem.</p>
 <p>The default settings for Cassandra make JMX accessible only from localhost. To enable remote JMX connections, edit
-<code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal"><span class="pre">cassandra-env.ps1</span></code> on Windows) to change the <code class="docutils literal"><span class="pre">LOCAL_JMX</span></code> setting to <code class="docutils literal"><span class="pre">yes</span></code>. Under the
+<code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal notranslate"><span class="pre">cassandra-env.ps1</span></code> on Windows) to change the <code class="docutils literal notranslate"><span class="pre">LOCAL_JMX</span></code> setting to <code class="docutils literal notranslate"><span class="pre">yes</span></code>. Under the
 standard configuration, when remote JMX connections are enabled, <a class="reference internal" href="#standard-jmx-auth"><span class="std std-ref">standard JMX authentication</span></a>
 is also switched on.</p>
 <p>Note that by default, local-only connections are not subject to authentication, but this can be enabled.</p>
@@ -382,27 +382,27 @@
 <div class="section" id="standard-jmx-auth">
 <span id="id1"></span><h3>Standard JMX Auth<a class="headerlink" href="#standard-jmx-auth" title="Permalink to this headline">¶</a></h3>
 <p>Users permitted to connect to the JMX server are specified in a simple text file. The location of this file is set in
-<code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> by the line:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
+<code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> by the line:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
 </pre></div>
 </div>
 <p>Edit the password file to add username/password pairs:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>jmx_user jmx_password
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>jmx_user jmx_password
 </pre></div>
 </div>
 <p>Secure the credentials file so that only the user running the Cassandra process can read it :</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>$ chown cassandra:cassandra /etc/cassandra/jmxremote.password
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ chown cassandra:cassandra /etc/cassandra/jmxremote.password
 $ chmod 400 /etc/cassandra/jmxremote.password
 </pre></div>
 </div>
 <p>Optionally, enable access control to limit the scope of what defined users can do via JMX. Note that this is a fairly
 blunt instrument in this context as most operational tools in Cassandra require full read/write access. To configure a
-simple access file, uncomment this line in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
+simple access file, uncomment this line in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
 </pre></div>
 </div>
 <p>Then edit the access file to grant your JMX user readwrite permission:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>jmx_user readwrite
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>jmx_user readwrite
 </pre></div>
 </div>
 <p>Cassandra must be restarted to pick up the new settings.</p>
@@ -410,36 +410,36 @@
 </div>
 <div class="section" id="cassandra-integrated-auth">
 <h3>Cassandra Integrated Auth<a class="headerlink" href="#cassandra-integrated-auth" title="Permalink to this headline">¶</a></h3>
-<p>An alternative to the out-of-the-box JMX auth is to useeCassandra&#8217;s own authentication and/or authorization providers
+<p>An alternative to the out-of-the-box JMX auth is to useeCassandra’s own authentication and/or authorization providers
 for JMX clients. This is potentially more flexible and secure but it come with one major caveat. Namely that it is not
 available until <cite>after</cite> a node has joined the ring, because the auth subsystem is not fully configured until that point
 However, it is often critical for monitoring purposes to have JMX access particularly during bootstrap. So it is
 recommended, where possible, to use local only JMX auth during bootstrap and then, if remote connectivity is required,
 to switch to integrated auth once the node has joined the ring and initial setup is complete.</p>
 <p>With this option, the same database roles used for CQL authentication can be used to control access to JMX, so updates
-can be managed centrally using just <code class="docutils literal"><span class="pre">cqlsh</span></code>. Furthermore, fine grained control over exactly which operations are
+can be managed centrally using just <code class="docutils literal notranslate"><span class="pre">cqlsh</span></code>. Furthermore, fine grained control over exactly which operations are
 permitted on particular MBeans can be acheived via <a class="reference internal" href="../cql/security.html#grant-permission-statement"><span class="std std-ref">GRANT PERMISSION</span></a>.</p>
-<p>To enable integrated authentication, edit <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> to uncomment these lines:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.remote.login.config=CassandraLogin&quot;
+<p>To enable integrated authentication, edit <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> to uncomment these lines:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.remote.login.config=CassandraLogin&quot;
 #JVM_OPTS=&quot;$JVM_OPTS -Djava.security.auth.login.config=$CASSANDRA_HOME/conf/cassandra-jaas.config&quot;
 </pre></div>
 </div>
 <p>And disable the JMX standard auth by commenting this line:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password&quot;
 </pre></div>
 </div>
 <p>To enable integrated authorization, uncomment this line:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.authorizer=org.apache.cassandra.auth.jmx.AuthorizationProxy&quot;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcassandra.jmx.authorizer=org.apache.cassandra.auth.jmx.AuthorizationProxy&quot;
 </pre></div>
 </div>
 <p>Check standard access control is off by ensuring this line is commented out:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>#JVM_OPTS=&quot;$JVM_OPTS -Dcom.sun.management.jmxremote.access.file=/etc/cassandra/jmxremote.access&quot;
 </pre></div>
 </div>
 <p>With integrated authentication and authorization enabled, operators can define specific roles and grant them access to
 the particular JMX resources that they need. For example, a role with the necessary permissions to use tools such as
 jconsole or jmc in read-only mode would be defined as:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CREATE ROLE jmx WITH LOGIN = false;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CREATE ROLE jmx WITH LOGIN = false;
 GRANT SELECT ON ALL MBEANS TO jmx;
 GRANT DESCRIBE ON ALL MBEANS TO jmx;
 GRANT EXECUTE ON MBEAN &#39;java.lang:type=Threading&#39; TO jmx;
@@ -451,12 +451,12 @@
 </pre></div>
 </div>
 <p>Fine grained access control to individual MBeans is also supported:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>GRANT EXECUTE ON MBEAN &#39;org.apache.cassandra.db:type=Tables,keyspace=test_keyspace,table=t1&#39; TO ks_user;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GRANT EXECUTE ON MBEAN &#39;org.apache.cassandra.db:type=Tables,keyspace=test_keyspace,table=t1&#39; TO ks_user;
 GRANT EXECUTE ON MBEAN &#39;org.apache.cassandra.db:type=Tables,keyspace=test_keyspace,table=*&#39; TO ks_owner;
 </pre></div>
 </div>
-<p>This permits the <code class="docutils literal"><span class="pre">ks_user</span></code> role to invoke methods on the MBean representing a single table in <code class="docutils literal"><span class="pre">test_keyspace</span></code>, while
-granting the same permission for all table level MBeans in that keyspace to the <code class="docutils literal"><span class="pre">ks_owner</span></code> role.</p>
+<p>This permits the <code class="docutils literal notranslate"><span class="pre">ks_user</span></code> role to invoke methods on the MBean representing a single table in <code class="docutils literal notranslate"><span class="pre">test_keyspace</span></code>, while
+granting the same permission for all table level MBeans in that keyspace to the <code class="docutils literal notranslate"><span class="pre">ks_owner</span></code> role.</p>
 <p>Adding/removing roles and granting/revoking of permissions is handled dynamically once the initial setup is complete, so
 no further restarts are required if permissions are altered.</p>
 <p>See also: <a class="reference internal" href="../cql/security.html#cql-permissions"><span class="std std-ref">Permissions</span></a>.</p>
@@ -464,29 +464,29 @@
 <div class="section" id="jmx-with-ssl">
 <span id="id2"></span><h3>JMX With SSL<a class="headerlink" href="#jmx-with-ssl" title="Permalink to this headline">¶</a></h3>
 <p>JMX SSL configuration is controlled by a number of system properties, some of which are optional. To turn on SSL, edit
-the relevant lines in <code class="docutils literal"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal"><span class="pre">cassandra-env.ps1</span></code> on Windows) to uncomment and set the values of these
+the relevant lines in <code class="docutils literal notranslate"><span class="pre">cassandra-env.sh</span></code> (or <code class="docutils literal notranslate"><span class="pre">cassandra-env.ps1</span></code> on Windows) to uncomment and set the values of these
 properties as required:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl</span></code></dt>
 <dd>set to true to enable SSL</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl.need.client.auth</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl.need.client.auth</span></code></dt>
 <dd>set to true to enable validation of client certificates</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.registry.ssl</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.registry.ssl</span></code></dt>
 <dd>enables SSL sockets for the RMI registry from which clients obtain the JMX connector stub</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl.enabled.protocols</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl.enabled.protocols</span></code></dt>
 <dd>by default, the protocols supported by the JVM will be used, override with a comma-separated list. Note that this is
 not usually necessary and using the defaults is the preferred option.</dd>
-<dt><code class="docutils literal"><span class="pre">com.sun.management.jmxremote.ssl.enabled.cipher.suites</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">com.sun.management.jmxremote.ssl.enabled.cipher.suites</span></code></dt>
 <dd>by default, the cipher suites supported by the JVM will be used, override with a comma-separated list. Note that
 this is not usually necessary and using the defaults is the preferred option.</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.keyStore</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.keyStore</span></code></dt>
 <dd>set the path on the local filesystem of the keystore containing server private keys and public certificates</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.keyStorePassword</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.keyStorePassword</span></code></dt>
 <dd>set the password of the keystore file</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.trustStore</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.trustStore</span></code></dt>
 <dd>if validation of client certificates is required, use this property to specify the path of the truststore containing
 the public certificates of trusted clients</dd>
-<dt><code class="docutils literal"><span class="pre">javax.net.ssl.trustStorePassword</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">javax.net.ssl.trustStorePassword</span></code></dt>
 <dd>set the password of the truststore file</dd>
 </dl>
 <p>See also: <a class="reference external" href="http://docs.oracle.com/javase/7/docs/technotes/guides/management/agent.html#gdemv">Oracle Java7 Docs</a>,
diff --git a/content/doc/stable/operating/snitch.html b/content/doc/stable/operating/snitch.html
index f4c9072..dd41538 100644
--- a/content/doc/stable/operating/snitch.html
+++ b/content/doc/stable/operating/snitch.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> <link rel="prev" title="Operating Cassandra" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Adding, replacing, moving and removing nodes" href="topo_changes.html"/> <link rel="prev" title="Operating Cassandra" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -174,20 +174,20 @@
 <ul class="simple">
 <li>it teaches Cassandra enough about your network topology to route requests efficiently.</li>
 <li>it allows Cassandra to spread replicas around your cluster to avoid correlated failures. It does this by grouping
-machines into &#8220;datacenters&#8221; and &#8220;racks.&#8221;  Cassandra will do its best not to have more than one replica on the same
-&#8220;rack&#8221; (which may not actually be a physical location).</li>
+machines into “datacenters” and “racks.”  Cassandra will do its best not to have more than one replica on the same
+“rack” (which may not actually be a physical location).</li>
 </ul>
 <div class="section" id="dynamic-snitching">
 <h2>Dynamic snitching<a class="headerlink" href="#dynamic-snitching" title="Permalink to this headline">¶</a></h2>
 <p>The dynamic snitch monitor read latencies to avoid reading from hosts that have slowed down. The dynamic snitch is
-configured with the following properties on <code class="docutils literal"><span class="pre">cassandra.yaml</span></code>:</p>
+configured with the following properties on <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code>:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">dynamic_snitch</span></code>: whether the dynamic snitch should be enabled or disabled.</li>
-<li><code class="docutils literal"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code>: controls how often to perform the more expensive part of host score
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch</span></code>: whether the dynamic snitch should be enabled or disabled.</li>
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_update_interval_in_ms</span></code>: controls how often to perform the more expensive part of host score
 calculation.</li>
-<li><code class="docutils literal"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code>: if set greater than zero and read_repair_chance is &lt; 1.0, this will allow
-&#8216;pinning&#8217; of replicas to hosts in order to increase cache capacity.</li>
-<li><code class="docutils literal"><span class="pre">dynamic_snitch_badness_threshold:</span></code>: The badness threshold will control how much worse the pinned host has to be
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_reset_interval_in_ms</span></code>: if set greater than zero and read_repair_chance is &lt; 1.0, this will allow
+‘pinning’ of replicas to hosts in order to increase cache capacity.</li>
+<li><code class="docutils literal notranslate"><span class="pre">dynamic_snitch_badness_threshold:</span></code>: The badness threshold will control how much worse the pinned host has to be
 before the dynamic snitch will prefer other replicas over it.  This is expressed as a double which represents a
 percentage.  Thus, a value of 0.2 means Cassandra would continue to prefer the static snitch values until the pinned
 host was 20% worse than the fastest.</li>
@@ -195,31 +195,31 @@
 </div>
 <div class="section" id="snitch-classes">
 <h2>Snitch classes<a class="headerlink" href="#snitch-classes" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">endpoint_snitch</span></code> parameter in <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> should be set to the class the class that implements
-<code class="docutils literal"><span class="pre">IEndPointSnitch</span></code> which will be wrapped by the dynamic snitch and decide if two endpoints are in the same data center
+<p>The <code class="docutils literal notranslate"><span class="pre">endpoint_snitch</span></code> parameter in <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> should be set to the class the class that implements
+<code class="docutils literal notranslate"><span class="pre">IEndPointSnitch</span></code> which will be wrapped by the dynamic snitch and decide if two endpoints are in the same data center
 or on the same rack. Out of the box, Cassandra provides the snitch implementations:</p>
 <dl class="docutils">
 <dt>GossipingPropertyFileSnitch</dt>
 <dd>This should be your go-to snitch for production use. The rack and datacenter for the local node are defined in
-cassandra-rackdc.properties and propagated to other nodes via gossip. If <code class="docutils literal"><span class="pre">cassandra-topology.properties</span></code> exists,
+cassandra-rackdc.properties and propagated to other nodes via gossip. If <code class="docutils literal notranslate"><span class="pre">cassandra-topology.properties</span></code> exists,
 it is used as a fallback, allowing migration from the PropertyFileSnitch.</dd>
 <dt>SimpleSnitch</dt>
 <dd>Treats Strategy order as proximity. This can improve cache locality when disabling read repair. Only appropriate for
 single-datacenter deployments.</dd>
 <dt>PropertyFileSnitch</dt>
 <dd>Proximity is determined by rack and data center, which are explicitly configured in
-<code class="docutils literal"><span class="pre">cassandra-topology.properties</span></code>.</dd>
+<code class="docutils literal notranslate"><span class="pre">cassandra-topology.properties</span></code>.</dd>
 <dt>Ec2Snitch</dt>
 <dd>Appropriate for EC2 deployments in a single Region. Loads Region and Availability Zone information from the EC2 API.
 The Region is treated as the datacenter, and the Availability Zone as the rack. Only private IPs are used, so this
 will not work across multiple regions.</dd>
 <dt>Ec2MultiRegionSnitch</dt>
 <dd>Uses public IPs as broadcast_address to allow cross-region connectivity (thus, you should set seed addresses to the
-public IP as well). You will need to open the <code class="docutils literal"><span class="pre">storage_port</span></code> or <code class="docutils literal"><span class="pre">ssl_storage_port</span></code> on the public IP firewall
+public IP as well). You will need to open the <code class="docutils literal notranslate"><span class="pre">storage_port</span></code> or <code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code> on the public IP firewall
 (For intra-Region traffic, Cassandra will switch to the private IP after establishing a connection).</dd>
 <dt>RackInferringSnitch</dt>
 <dd>Proximity is determined by rack and data center, which are assumed to correspond to the 3rd and 2nd octet of each
-node&#8217;s IP address, respectively.  Unless this happens to match your deployment conventions, this is best used as an
+node’s IP address, respectively.  Unless this happens to match your deployment conventions, this is best used as an
 example of writing a custom Snitch class and is provided in that spirit.</dd>
 </dl>
 </div>
diff --git a/content/doc/stable/operating/topo_changes.html b/content/doc/stable/operating/topo_changes.html
index f8fd5a5..16af02c 100644
--- a/content/doc/stable/operating/topo_changes.html
+++ b/content/doc/stable/operating/topo_changes.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Repair" href="repair.html"/> <link rel="prev" title="Snitch" href="snitch.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Operating Cassandra" href="index.html"/> <link rel="next" title="Repair" href="repair.html"/> <link rel="prev" title="Snitch" href="snitch.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -176,22 +176,22 @@
 <span id="topology-changes"></span><h1>Adding, replacing, moving and removing nodes<a class="headerlink" href="#adding-replacing-moving-and-removing-nodes" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="bootstrap">
 <h2>Bootstrap<a class="headerlink" href="#bootstrap" title="Permalink to this headline">¶</a></h2>
-<p>Adding new nodes is called &#8220;bootstrapping&#8221;. The <code class="docutils literal"><span class="pre">num_tokens</span></code> parameter will define the amount of virtual nodes
+<p>Adding new nodes is called “bootstrapping”. The <code class="docutils literal notranslate"><span class="pre">num_tokens</span></code> parameter will define the amount of virtual nodes
 (tokens) the joining node will be assigned during bootstrap. The tokens define the sections of the ring (token ranges)
 the node will become responsible for.</p>
 <div class="section" id="token-allocation">
 <h3>Token allocation<a class="headerlink" href="#token-allocation" title="Permalink to this headline">¶</a></h3>
-<p>With the default token allocation algorithm the new node will pick <code class="docutils literal"><span class="pre">num_tokens</span></code> random tokens to become responsible
+<p>With the default token allocation algorithm the new node will pick <code class="docutils literal notranslate"><span class="pre">num_tokens</span></code> random tokens to become responsible
 for. Since tokens are distributed randomly, load distribution improves with a higher amount of virtual nodes, but it
 also increases token management overhead. The default of 256 virtual nodes should provide a reasonable load balance with
 acceptable overhead.</p>
 <p>On 3.0+ a new token allocation algorithm was introduced to allocate tokens based on the load of existing virtual nodes
 for a given keyspace, and thus yield an improved load distribution with a lower number of tokens. To use this approach,
-the new node must be started with the JVM option <code class="docutils literal"><span class="pre">-Dcassandra.allocate_tokens_for_keyspace=&lt;keyspace&gt;</span></code>, where
-<code class="docutils literal"><span class="pre">&lt;keyspace&gt;</span></code> is the keyspace from which the algorithm can find the load information to optimize token assignment for.</p>
+the new node must be started with the JVM option <code class="docutils literal notranslate"><span class="pre">-Dcassandra.allocate_tokens_for_keyspace=&lt;keyspace&gt;</span></code>, where
+<code class="docutils literal notranslate"><span class="pre">&lt;keyspace&gt;</span></code> is the keyspace from which the algorithm can find the load information to optimize token assignment for.</p>
 <div class="section" id="manual-token-assignment">
 <h4>Manual token assignment<a class="headerlink" href="#manual-token-assignment" title="Permalink to this headline">¶</a></h4>
-<p>You may specify a comma-separated list of tokens manually with the <code class="docutils literal"><span class="pre">initial_token</span></code> <code class="docutils literal"><span class="pre">cassandra.yaml</span></code> parameter, and
+<p>You may specify a comma-separated list of tokens manually with the <code class="docutils literal notranslate"><span class="pre">initial_token</span></code> <code class="docutils literal notranslate"><span class="pre">cassandra.yaml</span></code> parameter, and
 if that is specified Cassandra will skip the token allocation process. This may be useful when doing token assignment
 with an external tool or when restoring a node with its previous tokens.</p>
 </div>
@@ -202,26 +202,26 @@
 responsible for to stream data from. By default it will stream from the primary replica of each token range in order to
 guarantee data in the new node will be consistent with the current state.</p>
 <p>In the case of any unavailable replica, the consistent bootstrap process will fail. To override this behavior and
-potentially miss data from an unavailable replica, set the JVM flag <code class="docutils literal"><span class="pre">-Dcassandra.consistent.rangemovement=false</span></code>.</p>
+potentially miss data from an unavailable replica, set the JVM flag <code class="docutils literal notranslate"><span class="pre">-Dcassandra.consistent.rangemovement=false</span></code>.</p>
 </div>
 <div class="section" id="resuming-failed-hanged-bootstrap">
 <h3>Resuming failed/hanged bootstrap<a class="headerlink" href="#resuming-failed-hanged-bootstrap" title="Permalink to this headline">¶</a></h3>
-<p>On 2.2+, if the bootstrap process fails, it&#8217;s possible to resume bootstrap from the previous saved state by calling
-<code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">bootstrap</span> <span class="pre">resume</span></code>. If for some reason the bootstrap hangs or stalls, it may also be resumed by simply
+<p>On 2.2+, if the bootstrap process fails, it’s possible to resume bootstrap from the previous saved state by calling
+<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">bootstrap</span> <span class="pre">resume</span></code>. If for some reason the bootstrap hangs or stalls, it may also be resumed by simply
 restarting the node. In order to cleanup bootstrap state and start fresh, you may set the JVM startup flag
-<code class="docutils literal"><span class="pre">-Dcassandra.reset_bootstrap_progress=true</span></code>.</p>
+<code class="docutils literal notranslate"><span class="pre">-Dcassandra.reset_bootstrap_progress=true</span></code>.</p>
 <p>On lower versions, when the bootstrap proces fails it is recommended to wipe the node (remove all the data), and restart
 the bootstrap process again.</p>
 </div>
 <div class="section" id="manual-bootstrapping">
 <h3>Manual bootstrapping<a class="headerlink" href="#manual-bootstrapping" title="Permalink to this headline">¶</a></h3>
-<p>It&#8217;s possible to skip the bootstrapping process entirely and join the ring straight away by setting the hidden parameter
-<code class="docutils literal"><span class="pre">auto_bootstrap:</span> <span class="pre">false</span></code>. This may be useful when restoring a node from a backup or creating a new data-center.</p>
+<p>It’s possible to skip the bootstrapping process entirely and join the ring straight away by setting the hidden parameter
+<code class="docutils literal notranslate"><span class="pre">auto_bootstrap:</span> <span class="pre">false</span></code>. This may be useful when restoring a node from a backup or creating a new data-center.</p>
 </div>
 </div>
 <div class="section" id="removing-nodes">
 <h2>Removing nodes<a class="headerlink" href="#removing-nodes" title="Permalink to this headline">¶</a></h2>
-<p>You can take a node out of the cluster with <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">decommission</span></code> to a live node, or <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">removenode</span></code> (to any
+<p>You can take a node out of the cluster with <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">decommission</span></code> to a live node, or <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">removenode</span></code> (to any
 other machine) to remove a dead one. This will assign the ranges the old node was responsible for to other nodes, and
 replicate the appropriate data there. If decommission is used, the data will stream from the decommissioned node. If
 removenode is used, the data will stream from the remaining replicas.</p>
@@ -230,34 +230,34 @@
 </div>
 <div class="section" id="moving-nodes">
 <h2>Moving nodes<a class="headerlink" href="#moving-nodes" title="Permalink to this headline">¶</a></h2>
-<p>When <code class="docutils literal"><span class="pre">num_tokens:</span> <span class="pre">1</span></code> it&#8217;s possible to move the node position in the ring with <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">move</span></code>. Moving is both a
-convenience over and more efficient than decommission + bootstrap. After moving a node, <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> should be
+<p>When <code class="docutils literal notranslate"><span class="pre">num_tokens:</span> <span class="pre">1</span></code> it’s possible to move the node position in the ring with <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">move</span></code>. Moving is both a
+convenience over and more efficient than decommission + bootstrap. After moving a node, <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> should be
 run to remove any unnecessary data.</p>
 </div>
 <div class="section" id="replacing-a-dead-node">
 <h2>Replacing a dead node<a class="headerlink" href="#replacing-a-dead-node" title="Permalink to this headline">¶</a></h2>
 <p>In order to replace a dead node, start cassandra with the JVM startup flag
-<code class="docutils literal"><span class="pre">-Dcassandra.replace_address_first_boot=&lt;dead_node_ip&gt;</span></code>. Once this property is enabled the node starts in a hibernate
+<code class="docutils literal notranslate"><span class="pre">-Dcassandra.replace_address_first_boot=&lt;dead_node_ip&gt;</span></code>. Once this property is enabled the node starts in a hibernate
 state, during which all the other nodes will see this node to be down.</p>
 <p>The replacing node will now start to bootstrap the data from the rest of the nodes in the cluster. The main difference
 between normal bootstrapping of a new node is that this new node will not accept any writes during this phase.</p>
-<p>Once the bootstrapping is complete the node will be marked &#8220;UP&#8221;, we rely on the hinted handoff&#8217;s for making this node
-consistent (since we don&#8217;t accept writes since the start of the bootstrap).</p>
+<p>Once the bootstrapping is complete the node will be marked “UP”, we rely on the hinted handoff’s for making this node
+consistent (since we don’t accept writes since the start of the bootstrap).</p>
 <div class="admonition note">
 <p class="first admonition-title">Note</p>
-<p class="last">If the replacement process takes longer than <code class="docutils literal"><span class="pre">max_hint_window_in_ms</span></code> you <strong>MUST</strong> run repair to make the
+<p class="last">If the replacement process takes longer than <code class="docutils literal notranslate"><span class="pre">max_hint_window_in_ms</span></code> you <strong>MUST</strong> run repair to make the
 replaced node consistent again, since it missed ongoing writes during bootstrapping.</p>
 </div>
 </div>
 <div class="section" id="monitoring-progress">
 <h2>Monitoring progress<a class="headerlink" href="#monitoring-progress" title="Permalink to this headline">¶</a></h2>
-<p>Bootstrap, replace, move and remove progress can be monitored using <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">netstats</span></code> which will show the progress
+<p>Bootstrap, replace, move and remove progress can be monitored using <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">netstats</span></code> which will show the progress
 of the streaming operations.</p>
 </div>
 <div class="section" id="cleanup-data-after-range-movements">
 <h2>Cleanup data after range movements<a class="headerlink" href="#cleanup-data-after-range-movements" title="Permalink to this headline">¶</a></h2>
-<p>As a safety measure, Cassandra does not automatically remove data from nodes that &#8220;lose&#8221; part of their token range due
-to a range movement operation (bootstrap, move, replace). Run <code class="docutils literal"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the nodes that lost ranges to the
+<p>As a safety measure, Cassandra does not automatically remove data from nodes that “lose” part of their token range due
+to a range movement operation (bootstrap, move, replace). Run <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">cleanup</span></code> on the nodes that lost ranges to the
 joining node when you are satisfied the new node is up and working. If you do not do this the old data will still be
 counted against the load on that node.</p>
 </div>
diff --git a/content/doc/stable/search.html b/content/doc/stable/search.html
index d6c39c2..7bb1af3 100644
--- a/content/doc/stable/search.html
+++ b/content/doc/stable/search.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/searchindex.js b/content/doc/stable/searchindex.js
index 05a7b40..9e174ae 100644
--- a/content/doc/stable/searchindex.js
+++ b/content/doc/stable/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["architecture/dynamo","architecture/guarantees","architecture/index","architecture/overview","architecture/storage_engine","bugs","configuration/cassandra_config_file","configuration/index","contactus","cql/appendices","cql/changes","cql/ddl","cql/definitions","cql/dml","cql/functions","cql/index","cql/indexes","cql/json","cql/mvs","cql/security","cql/triggers","cql/types","data_modeling/index","development/code_style","development/how_to_commit","development/how_to_review","development/ide","development/index","development/patches","development/testing","faq/index","getting_started/configuring","getting_started/drivers","getting_started/index","getting_started/installing","getting_started/querying","index","operating/backups","operating/bloom_filters","operating/bulk_loading","operating/cdc","operating/compaction","operating/compression","operating/hardware","operating/hints","operating/index","operating/metrics","operating/read_repair","operating/repair","operating/security","operating/snitch","operating/topo_changes","tools/cqlsh","tools/index","tools/nodetool","tools/nodetool/assassinate","tools/nodetool/bootstrap","tools/nodetool/cleanup","tools/nodetool/clearsnapshot","tools/nodetool/clientstats","tools/nodetool/compact","tools/nodetool/compactionhistory","tools/nodetool/compactionstats","tools/nodetool/decommission","tools/nodetool/describecluster","tools/nodetool/describering","tools/nodetool/disableauditlog","tools/nodetool/disableautocompaction","tools/nodetool/disablebackup","tools/nodetool/disablebinary","tools/nodetool/disablefullquerylog","tools/nodetool/disablegossip","tools/nodetool/disablehandoff","tools/nodetool/disablehintsfordc","tools/nodetool/disableoldprotocolversions","tools/nodetool/drain","tools/nodetool/enableauditlog","tools/nodetool/enableautocompaction","tools/nodetool/enablebackup","tools/nodetool/enablebinary","tools/nodetool/enablefullquerylog","tools/nodetool/enablegossip","tools/nodetool/enablehandoff","tools/nodetool/enablehintsfordc","tools/nodetool/enableoldprotocolversions","tools/nodetool/failuredetector","tools/nodetool/flush","tools/nodetool/garbagecollect","tools/nodetool/gcstats","tools/nodetool/getbatchlogreplaythrottle","tools/nodetool/getcompactionthreshold","tools/nodetool/getcompactionthroughput","tools/nodetool/getconcurrentcompactors","tools/nodetool/getconcurrentviewbuilders","tools/nodetool/getendpoints","tools/nodetool/getinterdcstreamthroughput","tools/nodetool/getlogginglevels","tools/nodetool/getmaxhintwindow","tools/nodetool/getreplicas","tools/nodetool/getseeds","tools/nodetool/getsstables","tools/nodetool/getstreamthroughput","tools/nodetool/gettimeout","tools/nodetool/gettraceprobability","tools/nodetool/gossipinfo","tools/nodetool/handoffwindow","tools/nodetool/help","tools/nodetool/import","tools/nodetool/info","tools/nodetool/invalidatecountercache","tools/nodetool/invalidatekeycache","tools/nodetool/invalidaterowcache","tools/nodetool/join","tools/nodetool/listsnapshots","tools/nodetool/move","tools/nodetool/netstats","tools/nodetool/nodetool","tools/nodetool/pausehandoff","tools/nodetool/profileload","tools/nodetool/proxyhistograms","tools/nodetool/rangekeysample","tools/nodetool/rebuild","tools/nodetool/rebuild_index","tools/nodetool/refresh","tools/nodetool/refreshsizeestimates","tools/nodetool/reloadlocalschema","tools/nodetool/reloadseeds","tools/nodetool/reloadssl","tools/nodetool/reloadtriggers","tools/nodetool/relocatesstables","tools/nodetool/removenode","tools/nodetool/repair","tools/nodetool/repair_admin","tools/nodetool/replaybatchlog","tools/nodetool/resetfullquerylog","tools/nodetool/resetlocalschema","tools/nodetool/resumehandoff","tools/nodetool/ring","tools/nodetool/scrub","tools/nodetool/setbatchlogreplaythrottle","tools/nodetool/setcachecapacity","tools/nodetool/setcachekeystosave","tools/nodetool/setcompactionthreshold","tools/nodetool/setcompactionthroughput","tools/nodetool/setconcurrentcompactors","tools/nodetool/setconcurrentviewbuilders","tools/nodetool/sethintedhandoffthrottlekb","tools/nodetool/setinterdcstreamthroughput","tools/nodetool/setlogginglevel","tools/nodetool/setmaxhintwindow","tools/nodetool/setstreamthroughput","tools/nodetool/settimeout","tools/nodetool/settraceprobability","tools/nodetool/snapshot","tools/nodetool/status","tools/nodetool/statusautocompaction","tools/nodetool/statusbackup","tools/nodetool/statusbinary","tools/nodetool/statusgossip","tools/nodetool/statushandoff","tools/nodetool/stop","tools/nodetool/stopdaemon","tools/nodetool/tablehistograms","tools/nodetool/tablestats","tools/nodetool/toppartitions","tools/nodetool/tpstats","tools/nodetool/truncatehints","tools/nodetool/upgradesstables","tools/nodetool/verify","tools/nodetool/version","tools/nodetool/viewbuildstatus","troubleshooting/index"],envversion:51,filenames:["architecture/dynamo.rst","architecture/guarantees.rst","architecture/index.rst","architecture/overview.rst","architecture/storage_engine.rst","bugs.rst","configuration/cassandra_config_file.rst","configuration/index.rst","contactus.rst","cql/appendices.rst","cql/changes.rst","cql/ddl.rst","cql/definitions.rst","cql/dml.rst","cql/functions.rst","cql/index.rst","cql/indexes.rst","cql/json.rst","cql/mvs.rst","cql/security.rst","cql/triggers.rst","cql/types.rst","data_modeling/index.rst","development/code_style.rst","development/how_to_commit.rst","development/how_to_review.rst","development/ide.rst","development/index.rst","development/patches.rst","development/testing.rst","faq/index.rst","getting_started/configuring.rst","getting_started/drivers.rst","getting_started/index.rst","getting_started/installing.rst","getting_started/querying.rst","index.rst","operating/backups.rst","operating/bloom_filters.rst","operating/bulk_loading.rst","operating/cdc.rst","operating/compaction.rst","operating/compression.rst","operating/hardware.rst","operating/hints.rst","operating/index.rst","operating/metrics.rst","operating/read_repair.rst","operating/repair.rst","operating/security.rst","operating/snitch.rst","operating/topo_changes.rst","tools/cqlsh.rst","tools/index.rst","tools/nodetool.rst","tools/nodetool/assassinate.rst","tools/nodetool/bootstrap.rst","tools/nodetool/cleanup.rst","tools/nodetool/clearsnapshot.rst","tools/nodetool/clientstats.rst","tools/nodetool/compact.rst","tools/nodetool/compactionhistory.rst","tools/nodetool/compactionstats.rst","tools/nodetool/decommission.rst","tools/nodetool/describecluster.rst","tools/nodetool/describering.rst","tools/nodetool/disableauditlog.rst","tools/nodetool/disableautocompaction.rst","tools/nodetool/disablebackup.rst","tools/nodetool/disablebinary.rst","tools/nodetool/disablefullquerylog.rst","tools/nodetool/disablegossip.rst","tools/nodetool/disablehandoff.rst","tools/nodetool/disablehintsfordc.rst","tools/nodetool/disableoldprotocolversions.rst","tools/nodetool/drain.rst","tools/nodetool/enableauditlog.rst","tools/nodetool/enableautocompaction.rst","tools/nodetool/enablebackup.rst","tools/nodetool/enablebinary.rst","tools/nodetool/enablefullquerylog.rst","tools/nodetool/enablegossip.rst","tools/nodetool/enablehandoff.rst","tools/nodetool/enablehintsfordc.rst","tools/nodetool/enableoldprotocolversions.rst","tools/nodetool/failuredetector.rst","tools/nodetool/flush.rst","tools/nodetool/garbagecollect.rst","tools/nodetool/gcstats.rst","tools/nodetool/getbatchlogreplaythrottle.rst","tools/nodetool/getcompactionthreshold.rst","tools/nodetool/getcompactionthroughput.rst","tools/nodetool/getconcurrentcompactors.rst","tools/nodetool/getconcurrentviewbuilders.rst","tools/nodetool/getendpoints.rst","tools/nodetool/getinterdcstreamthroughput.rst","tools/nodetool/getlogginglevels.rst","tools/nodetool/getmaxhintwindow.rst","tools/nodetool/getreplicas.rst","tools/nodetool/getseeds.rst","tools/nodetool/getsstables.rst","tools/nodetool/getstreamthroughput.rst","tools/nodetool/gettimeout.rst","tools/nodetool/gettraceprobability.rst","tools/nodetool/gossipinfo.rst","tools/nodetool/handoffwindow.rst","tools/nodetool/help.rst","tools/nodetool/import.rst","tools/nodetool/info.rst","tools/nodetool/invalidatecountercache.rst","tools/nodetool/invalidatekeycache.rst","tools/nodetool/invalidaterowcache.rst","tools/nodetool/join.rst","tools/nodetool/listsnapshots.rst","tools/nodetool/move.rst","tools/nodetool/netstats.rst","tools/nodetool/nodetool.rst","tools/nodetool/pausehandoff.rst","tools/nodetool/profileload.rst","tools/nodetool/proxyhistograms.rst","tools/nodetool/rangekeysample.rst","tools/nodetool/rebuild.rst","tools/nodetool/rebuild_index.rst","tools/nodetool/refresh.rst","tools/nodetool/refreshsizeestimates.rst","tools/nodetool/reloadlocalschema.rst","tools/nodetool/reloadseeds.rst","tools/nodetool/reloadssl.rst","tools/nodetool/reloadtriggers.rst","tools/nodetool/relocatesstables.rst","tools/nodetool/removenode.rst","tools/nodetool/repair.rst","tools/nodetool/repair_admin.rst","tools/nodetool/replaybatchlog.rst","tools/nodetool/resetfullquerylog.rst","tools/nodetool/resetlocalschema.rst","tools/nodetool/resumehandoff.rst","tools/nodetool/ring.rst","tools/nodetool/scrub.rst","tools/nodetool/setbatchlogreplaythrottle.rst","tools/nodetool/setcachecapacity.rst","tools/nodetool/setcachekeystosave.rst","tools/nodetool/setcompactionthreshold.rst","tools/nodetool/setcompactionthroughput.rst","tools/nodetool/setconcurrentcompactors.rst","tools/nodetool/setconcurrentviewbuilders.rst","tools/nodetool/sethintedhandoffthrottlekb.rst","tools/nodetool/setinterdcstreamthroughput.rst","tools/nodetool/setlogginglevel.rst","tools/nodetool/setmaxhintwindow.rst","tools/nodetool/setstreamthroughput.rst","tools/nodetool/settimeout.rst","tools/nodetool/settraceprobability.rst","tools/nodetool/snapshot.rst","tools/nodetool/status.rst","tools/nodetool/statusautocompaction.rst","tools/nodetool/statusbackup.rst","tools/nodetool/statusbinary.rst","tools/nodetool/statusgossip.rst","tools/nodetool/statushandoff.rst","tools/nodetool/stop.rst","tools/nodetool/stopdaemon.rst","tools/nodetool/tablehistograms.rst","tools/nodetool/tablestats.rst","tools/nodetool/toppartitions.rst","tools/nodetool/tpstats.rst","tools/nodetool/truncatehints.rst","tools/nodetool/upgradesstables.rst","tools/nodetool/verify.rst","tools/nodetool/version.rst","tools/nodetool/viewbuildstatus.rst","troubleshooting/index.rst"],objects:{},objnames:{},objtypes:{},terms:{"00t89":21,"03t04":21,"0x0000000000000003":14,"0x00000004":13,"100mb":6,"10mb":6,"10s":52,"10x":[6,41],"11e6":52,"128th":4,"12gb":43,"12h30m":21,"15m":46,"160mb":41,"16mb":[30,41],"180kb":6,"19t03":138,"1mo":21,"1st":21,"24h":21,"250m":6,"256mb":6,"256th":6,"29d":21,"2e10":10,"2gb":43,"2nd":[6,11,50],"2xlarg":43,"300s":6,"327e":52,"32gb":43,"32mb":[6,30],"36x":34,"3ff3e5109f22":13,"3gb":42,"3rd":[6,46,50],"40f3":13,"4ae3":13,"4kb":11,"4xlarg":43,"50kb":6,"50mb":[6,41],"512mb":6,"5573e5b09f14":13,"5kb":6,"5mb":41,"64k":6,"64kb":42,"6ms":6,"6tb":43,"7374e9b5ab08c1f1e612bf72293ea14c959b0c3c":24,"75th":46,"86400s":41,"89h4m48":21,"8gb":43,"8th":[6,40],"90th":46,"95ac6470":52,"95th":46,"98th":46,"99th":46,"9th":46,"\u00eatre":9,"abstract":[23,25],"boolean":[9,12,14,17,19,21,52],"break":[28,41],"byte":[6,9,13,21,46,62,80,115,163],"case":[6,10,11,12,13,14,16,17,18,21,24,25,28,29,30,38,43,49,51,52],"catch":23,"class":[6,11,14,21,23,26,29,41,42,45,49,116,128,148],"default":[4,6,10,11,13,14,17,19,21,26,29,30,31,34,38,40,41,42,46,49,51,52,57,76,80,87,115,116,118,121,131,132,138,152,153,164],"enum":9,"export":[26,46,52],"final":[14,19,23,26,41,43,49,132],"float":[9,10,11,12,14,17,21,38,42],"function":[6,9,10,11,12,15,16,18,19,21,25,32,36,49,50,52],"import":[11,14,21,26,27,29,31,41,43,46,52,116],"int":[9,10,11,13,14,17,18,19,21,29,40,42],"long":[6,13,21,24,25,30,41,46],"new":[0,4,6,10,11,14,16,17,18,19,20,21,23,25,26,28,29,33,36,38,41,43,49,51,107,114,116],"null":[9,10,12,13,14,17,18,21,23,52],"public":[6,14,23,29,30,34,49,50],"return":[6,9,11,13,14,16,17,18,19,21,25,131],"short":[6,21],"static":[6,9,10,18,50],"super":49,"switch":[6,10,19,26,30,45,46,49,50],"throw":[6,14,23,29],"true":[6,11,12,17,19,21,26,30,40,41,49,51,52,113,116],"try":[6,11,23,26,28,30,41,54,131],"var":[6,23,34],"void":29,"while":[6,10,11,12,13,21,24,28,38,41,42,43,49,52],AES:6,AND:[9,11,13,14,18,19,49,52],AWS:43,Added:10,Adding:[6,11,19,21,30,36,45,49],And:[11,14,19,49],Are:25,Ave:21,BUT:23,But:[13,15,19,21,23,28,30,52],CAS:6,CFs:[131,138],CLS:52,DCs:6,DNS:30,Doing:10,EBS:43,For:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,20,21,28,29,30,31,34,35,41,43,49,50,52],GCs:6,Has:[6,25],IDE:[27,36],IDEs:[26,27],IDs:[116,154],INTO:[6,9,11,13,14,17,21],IPs:[6,50,137,154],Ids:160,JKS:6,KBs:6,LCS:11,NFS:43,NOT:[6,9,10,11,13,14,16,18,19,20,21],Not:[13,19,28,41,42],ONE:[0,6,46,52],One:[6,29,30,41],PFS:6,Pis:43,Such:21,THE:6,TLS:[6,45],That:[11,12,18,21,28,30,41,52],The:[0,4,6,8,9,10,12,14,16,18,19,20,21,23,24,26,28,29,30,31,34,35,36,38,40,42,43,46,49,50,51,52,57,60,65,67,73,77,83,86,87,90,94,98,100,102,107,114,116,118,122,123,129,131,138,141,142,148,153,154,155,162,164,167,168,170],Their:21,Then:[13,29,30,34,41,49],There:[0,6,10,11,12,13,14,21,26,28,29,30,41,46,49],These:[4,6,11,14,26,46,49,52],USE:[9,14,15],USING:[9,13,16,20,21,41],Use:[11,13,19,30,35,45,52,55,60,116,121,131,160,167],Used:46,Uses:[6,17,45,50],Using:[11,13,29,30,49],WILL:6,WITH:[9,11,12,16,18,19,38,40,41,42,49,52],Will:[6,36,80,116,148],With:[6,13,17,30,41,51,56],Yes:30,_cache_max_entri:49,_if_:6,_must_:6,_trace:46,_udt:14,_update_interval_in_m:49,_use:14,_validity_in_m:49,a278b781fe4b2bda:34,abil:[14,30,42],abilityid:16,abl:[6,14,21,26,29,30,41],about:[4,6,19,26,28,29,30,38,41,50,52,59,116,137],abov:[6,8,11,12,13,14,21,26,28,30,31,40,41,46],absenc:12,abstracttyp:21,accept:[0,6,10,11,12,13,17,28,29,38,51,75,116],access:[6,10,21,26,28,43,45,46],accompani:6,accord:[6,30],accordingli:[6,14,30],account:[6,21,29],accru:[41,46],accumul:[6,41,46],accur:[6,30,38,137],accuraci:[38,118,164],acheiv:49,achiev:[41,46],achil:32,ack:6,acoount:46,acquir:[19,46],across:[6,11,19,28,46,49,50,116,120],action:[6,13],activ:[4,6,28,40,46,52,116,118,164],activetask:46,actual:[4,6,13,20,23,25,30,34,41,50,131],acycl:19,add:[0,6,9,10,11,21,24,25,28,31,34,36,41,49],addamsfamili:11,added:[0,6,10,11,14,25,41],adding:[6,13,14,25,43,52],addit:[0,6,9,11,13,19,21,26,28,31,41,43,46,49,52],addition:[11,13,41],address:[6,8,17,21,26,28,31,36,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],adher:10,adjac:41,adjust:[6,38],adv:34,advanc:[6,45,49],advantag:43,advers:30,advic:[28,30],advis:[6,12,21,30],af08:13,afd:21,affect:[6,25,28,30,41,138],afford:6,after:[5,6,10,11,12,13,14,16,17,18,26,28,30,40,41,43,45,46,49,50,52],afterward:[26,29],afunct:14,again:[6,28,41,51,52],against:[6,11,14,28,29,30,43,51,52,131],agent:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],agentlib:26,aggreg:[6,9,10,13,15,18,19,46,52],aid:12,aim:6,akeyspac:14,algorithm:[6,11,51],alia:[10,13,32],alias:[6,10,18],alic:19,align:23,aliv:6,all:[0,6,9,11,12,13,14,17,18,21,23,24,25,26,28,29,36,38,40,41,46,49,51,52,57,58,59,75,87,107,108,113,116,118,120,129,132,138,152,153,155,164,166,167,168],allmemtableslivedatas:46,allmemtablesoffheaps:46,allmemtablesonheaps:46,alloc:[6,30,40,43,46],allocate_tokens_for_keyspac:51,allow:[0,4,6,9,10,11,12,14,16,17,18,21,31,38,40,41,42,43,50],allowallauthent:[6,49],allowallauthor:[6,49],allowallinternodeauthent:6,almost:[6,14,21,41],alon:[6,23],along:[6,13,113,116],alongsid:[35,52],alphabet:23,alphanumer:[11,19],alreadi:[6,11,14,16,18,21,28,41,49,167],also:[0,4,6,10,11,12,13,14,17,18,19,21,26,28,29,30,31,41,43,46,49,51,52,87,168],alter:[9,10,15,17,30,38,40,41,42,49],alter_keyspace_stat:12,alter_role_stat:12,alter_table_instruct:11,alter_table_stat:12,alter_type_modif:21,alter_type_stat:[12,21],alter_user_stat:12,altern:[6,10,11,12,13,17,21,26,28,31,43,49],although:[6,28],alwai:[0,6,9,10,11,13,14,18,21,23,28,29,30,41,43],amend:24,amongst:11,amount:[6,11,13,21,26,28,29,30,41,42,43,46,51,52,131],amplif:[41,43],anaggreg:14,analogu:13,analyt:38,analyz:29,ani:[0,6,10,11,12,13,14,17,18,19,20,21,24,25,26,28,29,31,34,36,40,41,43,46,49,51,52,55,107,116,121,138,152],annot:23,anonym:[12,21],anoth:[6,11,14,19,21,29,41,49,52],anotherarg:14,ant:[26,28,29],anti:[6,21],anticip:11,anticompact:41,antientropystag:46,antipattern:43,anymor:[24,41],anyon:23,anyth:41,anywai:6,anywher:13,apach:[2,5,6,7,14,20,23,24,25,26,28,29,30,33,34,41,42,46,49,53],api:[6,8,11,15,17,35,50],appear:[12,14,41,52],append:[21,24,43,46,52],appendic:[15,36],appendix:[12,15],appl:21,appli:[6,9,10,11,12,13,19,21,24,28,29,30,46,52],applic:[6,11,19,23,25,26,49],appreci:28,approach:[4,41,51],appropri:[6,11,19,21,25,28,49,50,51],approxim:[41,46],apt:34,arbitrari:[11,12,21],architectur:[30,36],archiv:[6,40,80],archive_command:80,archive_retri:80,aren:13,arg:[14,116],argnam:14,argnum:14,argument:[6,11,13,14,16,17,30,31,42,52,55,56,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],arguments_declar:14,arguments_signatur:14,around:[6,19,41,43,50],arrai:[6,30],arriv:[6,28,30],artifact:26,artifici:11,asap:10,asc:[9,11,13],ascend:[11,13],ascii:[9,14,17,21],asf:26,ask:[5,28,29,36,49],aspect:11,assassin:116,assertionerror:23,assertrow:29,assign:[6,13,30],associ:[6,11],assum:[6,11,14,26,49,50],assumpt:49,astyanax:32,async:[6,49],asynchron:[6,16,30,43],asynchroni:46,atabl:14,atom:[11,13,20,24],atomiclong:46,attach:28,attemp:46,attempt:[0,6,11,16,18,19,21,30,41,46,49,52,132],attent:[23,28],attribut:41,audit:[66,76,116],auditlog:76,auth:6,authent:[10,45,52],authenticatedus:6,author:[9,19,21,45],authorizationproxi:49,auto:[6,30,155],auto_bootstrap:51,autocompact:[41,67,77,116,155],autogener:54,autom:[8,23],automat:[6,13,14,16,26,29,30,34,41,49,51],avail:[0,6,8,11,14,19,26,28,29,34,40,49,50,52,57,87,129,138,148,167],availabil:6,averag:[6,14,41,46],average_live_cells_per_slice_last_five_minut:163,average_s:11,average_tombstones_per_slice_last_five_minut:163,averagefin:14,averagest:14,avg_bucket_s:41,avoid:[6,11,12,23,25,28,38,41,43,49,50,52,168],awai:[26,51,52],awar:[0,11,28,38,42,137],azur:43,b124:13,b70de1d0:13,back:[6,41,46,51],backend:6,background:[30,34,41,49],backlog:6,backpressur:6,backpressurestrategi:6,backup:[6,36,41,45,51,52,68,78,116,156],backward:[6,10,11,15,19,21],bad:[6,14,30,50],balanc:51,banana:21,band:21,bar:[12,23],bardet:21,bare:6,base:[0,4,6,10,11,13,14,18,19,21,24,28,29,30,41,43,46,49,51],bash:30,basi:[6,30,42],basic:[11,41,43],batch:[6,9,15,29,36,52],batch_remov:46,batch_stat:12,batch_stor:46,batchlog:[13,46,89,116,133,139],be34:13,beatl:21,beca:52,becaus:[6,13,14,34,41,42,49],becom:[4,6,11,14,19,28,41,46,49,51],been:[0,4,6,10,13,14,15,19,21,25,28,41,43,49,138],befor:[0,6,10,11,13,14,16,20,21,26,27,29,32,41,49,50,52,80,153],begin:[9,12,13,29,49,52],beginn:28,begintoken:52,behavior:[0,6,10,14,17,21,23,25,38,41,51,132],behind:[6,23,29,30,41],being:[6,11,13,17,21,25,29,30,38,41,46,51],belong:[11,13,14,46,57,116],below:[6,11,12,13,17,19,21,28,34,41,52,63],benchmark:43,benefici:41,benefit:[6,38,41,43,45],besid:6,best:[6,29,41,49,50],best_effort:6,better:[6,23,28,41,43],between:[0,6,9,10,13,15,28,30,38,41,46,49,51,131,152],beyond:[6,52,168],big:[41,60],bigger:[11,41],biggest:14,bigint:[9,14,17,21],bigintasblob:14,bin:[26,34,35,52],binari:[14,33,69,79,116,157],binauditlogg:76,bind:[6,10,12,14,30],bind_mark:[12,13,18,21],biolog:11,birth:13,birth_year:13,bit:[6,14,17,21,28,30,42,43],bite:30,bitrot:11,bitstr:9,black:6,blank:[6,23,30],bleed:26,blindli:30,blob:[9,10,12,17,21,36,42],blobasbigint:14,blobastyp:14,block:[4,6,11,24,31,41,43,46,49,80],blockedonalloc:6,blog:[6,11,13],blog_til:13,blog_titl:13,bloom:[4,11,36,43,45,46],bloom_filter_false_posit:163,bloom_filter_false_ratio:163,bloom_filter_fp_ch:[11,38],bloom_filter_off_heap_memory_us:163,bloom_filter_space_us:163,bloomfilterdiskspaceus:46,bloomfilterfalseposit:46,bloomfilterfalseratio:46,bloomfilteroffheapmemoryus:46,blunt:49,bnf:12,bob:[13,19],bodi:[11,12],boilerpl:27,boolstyl:52,boost:6,boot:30,bootstrap:[0,6,36,42,45,46,49,116,121,148],born:13,both:[0,6,11,13,14,18,21,24,25,28,30,31,38,41,42,43,46,49,51,52],bottleneck:6,bottom:30,bound:[6,11,12,21,43,49],box:[6,49,50],brace:23,bracket:12,braket:12,branch:[24,25,26,29],branchnam:28,breakpoint:26,breed:29,bring:6,brk:30,broadcast:6,broadcast_address:50,broken:[41,46],browser:52,bucket:41,bucket_high:41,bucket_low:41,buffer:[4,6,46],bufferpool:45,bug:[10,24,29,30,36],build:[8,27,29,36,46,116,170],builder:[93,116,145],built:[26,46],bulk:[36,45],bump:10,bunch:23,burn:40,button:30,bytebuff:14,byteorderedpartition:[6,14],bytescompact:46,bytesflush:46,bytestyp:9,c73de1d3:13,cach:[6,30,31,43,45,50,107,109,110,111,116,140,141],cachecleanupexecutor:46,cachenam:46,calcul:[6,38,40,41,46,50],call:[9,11,12,13,14,19,23,31,36,41,43,46,51,116,148],callback:46,caller:23,can:[0,4,5,6,8,9,10,11,12,13,14,16,17,18,19,20,21,23,24,25,26,28,29,31,34,35,36,38,40,41,42,43,46,49,50,51,52,55,57,58,60,65,67,73,77,80,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],cancel:[10,132],candid:41,cannot:[6,9,11,13,14,17,18,19,21,41,49,55,116],cap:[12,91,95,101,116,143,147,150],capabl:[6,30,52],capac:[6,40,46,50,116,118,140,164],captur:[6,36,45],care:[6,41,131],carlo:19,carri:[23,131],cascommit:46,cascontent:[102,151],casprepar:46,caspropos:46,casread:46,cassablanca:21,cassafort:32,cassandra:[0,2,4,5,8,10,11,13,14,19,20,21,23,24,28,32,33,35,38,41,42,43,46,50,51,52,76,80,116,127,131,134,138,161,169],cassandra_hom:[6,40,49],cassandraauthor:[6,49],cassandradaemon:[26,34],cassandralogin:49,cassandrarolemanag:[6,49],casser:32,cassi:32,cast:[10,13,18],caswrit:46,cat:21,categor:46,categori:[11,12,13,14,76],caught:[25,46],caus:[6,18,30,41,49],caution:6,caveat:49,cbc:6,ccm:[25,29],ccmlib:29,cdc:[6,11],cdc_enabl:40,cdc_free_space_check_interval_m:40,cdc_free_space_in_mb:40,cdc_raw:[6,40],cdc_raw_directori:40,cdccompactor:6,cell:[6,21,46,87,168],center:[6,11,21,30,50,51,73,83,116,131],central:[26,49,52],centric:19,certain:[6,9,11,19,29,41,49],certainli:14,certif:[49,116,127],cfname:[100,118,164],cfs:23,chain:19,chanc:38,chang:[6,11,12,15,19,21,24,26,27,33,34,36,42,45,46,49,148],channel:[5,8,28],charact:[11,12,13,17,19,21,23,52],chat:8,cheap:6,check:[0,6,11,13,23,25,26,28,29,30,38,40,41,46,49,107,116,131,168],checklist:[27,28,36],checkout:[26,28],checksum:[11,42,116,168],cherri:24,chess:13,child:52,chmod:49,choic:[6,11,36,41,45],choos:[0,6,11,27,32,43,46],chosen:[0,6,11,14],chown:49,christoph:21,chrome:52,chunk:[4,6,30,42,52],chunk_length_in_kb:[11,42],chunk_length_kb:6,chunk_lenth_in_kb:11,chunkcach:46,chunksiz:52,churn:6,cipher:[6,49],cipher_suit:6,circular:19,citi:21,clash:12,class_nam:6,classpath:[6,14,21,46],claus:[10,11,14,16,17,18,19,23],clean:[6,23,46,57,116,134],cleanli:28,cleanup:[30,41,45,46,87,116,160],clear:[25,28,59,107],clearsnapshot:116,click:[13,26,28,29],client:[0,6,8,10,11,13,17,19,21,25,30,31,33,36,43,45,52,59,116],client_encryption_opt:49,clientrequest:46,clientstat:116,clock:6,clockr:6,clojur:33,clone:[26,30,52],close:[6,15,49],closer:38,cloud:45,cluster:[0,4,6,9,10,13,14,20,21,25,29,31,35,36,41,43,46,49,50,51,52,64,85,89,104,116,139,154],cluster_nam:[31,35],clustering_column:11,clustering_ord:11,cmsparallelremarken:26,coalesc:6,coalescingstrategi:6,code:[6,10,12,14,20,24,25,26,27,29,36,42,46],codestyl:23,col:14,cold:6,collat:6,collect:[6,10,11,12,13,14,15,17,43,45,46,87],collection_liter:12,collection_typ:21,color:[21,52],column1:9,column:[6,9,10,12,13,14,15,16,17,18,21,42,46,52,100,118,138,153,164],column_definit:11,column_nam:[11,13,16],columnfamili:[6,9,23,41],colupdatetimedeltahistogram:46,com:[6,11,14,23,24,49],combin:[4,6,10,40,41],come:[6,9,49],comingl:41,comma:[6,11,12,13,31,49,51,52,76,118,121,164],command:[0,6,24,29,30,31,34,35,42,45,53,55,56,57,58,60,65,67,73,77,80,83,86,87,90,94,98,100,102,106,107,114,116,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],comment:[6,11,15,18,23,25,49],commit:[6,8,11,27,28,36,46],commitlog:[2,6,30,31,43,45],commitlog_archiv:6,commitlog_directori:[31,43],commitlog_segment_size_in_mb:30,commitlogread:40,commitlogreadhandl:40,commitlogreplay:40,commitlogseg:[6,45,46],committ:[24,28,29],common:[0,14,15,23,25,28,45,52],common_nam:11,commonli:116,commun:[6,8,25,26,28,30,31,35,49],commut:30,compact:[4,6,15,30,36,38,42,43,45,57,61,62,87,90,91,116,129,138,142,143,148,155,160,167],compacted_partition_maximum_byt:163,compacted_partition_mean_byt:163,compacted_partition_minimum_byt:163,compaction_:160,compaction_window_s:41,compaction_window_unit:41,compactionbyteswritten:46,compactionexecutor:46,compactionhistori:[41,116],compactionid:160,compactionparamet:41,compactionparametersjson:41,compactionstat:[41,116],compactionstrategi:45,compactor:[92,116,144],compar:[6,28,41,46],compat:[6,9,10,11,13,15,19,25,28],compatilibi:21,compet:6,compil:[23,26,52],complain:26,complet:[6,13,14,28,30,41,46,49,51,52,116,130,132],completedtask:46,complex:[6,9,14,21,28],complexarg:14,compliant:[6,14,49],complic:28,compon:[4,11,25,38,46,49,116,148],compos:[11,13,21],composit:11,compound:17,comprehens:25,compress:[4,6,29,36,41,43,45,46],compression_metadata_off_heap_memory_us:163,compressioninfo:4,compressionmetadataoffheapmemoryus:46,compressionratio:46,compressor:[6,11],compris:[4,11,42],compromis:49,comput:[6,14],concaten:14,concept:[15,19,41],concern:[13,14],concret:[12,21],concurr:[6,43,92,93,116,131,144,145],concurrentmarksweep:43,condens:13,condit:[6,10,12,13,19,21,23,24,41,46,49,52],conditionnotmet:46,conf:[6,30,31,34,46,49,52],config:[46,49,52],configur:[0,4,11,21,26,29,30,33,34,36,45,46,49,50,52,63,80,116,134,148],confirm:[6,8,25,26],conflict:[13,21,24],conform:[18,25],confus:[10,12,30],conjunct:52,connect:[6,11,19,21,26,35,36,46,49,50,52,59,63,115,116],connectednativecli:46,connectedthriftcli:46,connector:[30,32,49],consecut:31,consequ:[11,13,21,43],conserv:6,consid:[0,6,13,21,28,31,38,41,43],consider:[13,21],consist:[2,11,12,13,14,25,49,51],consol:[26,31,52],constant:[10,11,15,17,21],constantli:[6,41],construct:12,constructor:[6,23],consum:[29,38,40,46],consumpt:40,contact:[6,11,30,36],contain:[0,6,8,9,10,11,12,13,15,16,18,19,21,26,28,40,41,42,49,52,153],contend:[6,46],content:[4,6,11,12,13,36,41,52,80],contentionhistogram:46,context:[6,9,19,21,28,30,49],contigu:13,continu:[0,6,23,26,29,41,49,50],contrarili:12,contrast:[29,49],contribut:[24,27,29,36],contributor:[24,28,29,34],control:[0,6,10,11,13,15,25,31,34,41,49,50,52],conveni:[9,12,14,17,29,51],convent:[6,11,14,15,24,27,28,29,49,50],convers:10,convert:[10,13,14,41],coordin:[0,6,11,13,14,21,30,46,132],coordinatorreadlat:46,coordinatorscanlat:46,cop:23,copi:[0,30,41],core:[6,14,43],correct:[10,25,34,41,42,116,129],correctli:[6,11,30,41,49],correl:[6,10,50],correspond:[6,9,11,13,14,18,21,28,29,30,40,50],corrupt:[6,11,41,42,43,138,168],cost:[6,13,21,42],could:[6,12,21,25,28,41,52],couldn:34,count:[6,9,13,21,30,41,46,51],counter:[6,9,14,43,46,109,116,138,140,141],counter_mut:46,countercach:46,countermutationstag:46,counterwrit:[102,151],countri:[13,21],country_cod:21,coupl:[0,6],cours:[6,13],cover:[25,28,29,30,33,41,46],cpu:[6,11,40,42,45],cqerl:32,cql3:[11,14,25,29,52],cql:[6,10,11,12,13,14,16,17,19,21,29,32,35,36,41,45,49,53,148],cql_type:[11,12,13,14,19,21],cqlc:32,cqldefinit:14,cqlsh:[30,33,34,36,49,53],cqltester:[25,29],crash:43,crc32:4,crc:4,crc_check_chanc:[11,42],creat:[6,9,10,12,13,15,17,26,27,29,30,40,41,42,49,51,52,60],create_aggregate_stat:12,create_function_stat:12,create_index_stat:12,create_keyspace_stat:12,create_materialized_view_stat:12,create_role_stat:12,create_table_stat:12,create_trigger_stat:12,create_type_stat:[12,21],create_user_stat:12,createkeystor:6,createt:29,creation:[6,10,11,13,14,18,21],creator:19,credenti:[6,49],critic:[25,28,49],cross:[6,30,50],crossnodedroppedlat:46,cryptographi:6,csv:52,cuddli:21,curl:[24,34],current:[6,9,11,13,14,19,21,26,28,34,41,46,51,52,82,99,103,105,107,116,130,159,167],currentlyblockedtask:46,custom:[6,9,10,11,14,15,16,19,28,50,52],custom_option1:19,custom_option2:19,custom_typ:[14,21],cute:21,cvh:25,cycl:[6,40,80],daemon:[26,116,161],dai:[17,21,41],daili:80,danger:6,dash:12,data:[0,4,6,10,12,14,15,16,18,25,31,34,36,38,42,43,45,46,49,50,52,55,60,73,80,83,87,107,116,121,131,153,168],data_file_directori:[31,43],data_read:19,data_writ:19,databas:[12,13,15,20,41,43,49],datacent:[0,6,50,73,83,95,116,131,147],datacenter1:6,dataset:6,datastax:[6,11,14,32],datatyp:14,date:[9,10,14,15,17,138],dateof:[10,14],datestamp:17,datetieredcompactionstrategi:[11,41],daylight:21,db_user:49,dba:49,dc1:[6,11,49],dc2:[6,11,49],dcassandra:[41,46,49,51],dclocal_read_repair_ch:[0,11,41],dcom:49,dcpar:131,ddl:[11,52],ddl_statement:12,dead:[6,45,55,116],dead_node_ip:51,deb:34,debian:[30,33],debug:[31,52],decid:[9,41,50],decim:[9,14,17,21,52],decimalsep:52,declar:[11,12,14,21],decod:[17,21],decommiss:[6,51,116],decompress:42,decreas:[6,41],decrement:[13,21],decrypt:6,dedic:6,deem:6,deeper:28,default_time_to_l:[10,11,13],default_weight:6,defend:30,defin:[0,6,9,10,11,12,13,15,16,17,18,19,20,26,41,46,49,50,51,52,60,116],definit:[9,13,14,15,18,21,36,38],deflat:6,deflatecompressor:[11,42],degrad:6,delet:[6,9,10,11,12,15,17,19,21,28,36,52,80,87,116,166],delete_stat:[12,13],delimit:6,deliv:[0,6],deliveri:[6,116,117,136,146],delta:46,demand:49,deni:30,denorm:21,denot:12,dens:38,depend:[4,6,11,12,13,14,21,25,26,28,29,41],deploi:[30,31],deploy:[6,49,50],deprec:[6,10,11,14,15,30,41],desc:[9,11,13,52],descend:[11,13],describ:[2,6,7,9,10,11,12,13,14,15,17,19,21,25,26,28,38,49,53,116],describeclust:116,descript:[6,10,11,14,21,46,52],descriptor:46,design:[14,40,41,43],desir:[16,21,30],destin:[40,52],detail:[5,6,10,11,12,13,14,21,30,45,49,52],detect:[2,6,11,24,30,49],detector:[85,116],determin:[0,6,13,19,38,42,50,131],determinist:30,dev:[6,8,11,30],develop:[5,8,26,28,29,36,43],dfb660d92ad8:52,dfp:168,dht:6,dictat:[6,49],did:[25,46],die:6,dies:36,diff:[15,23],differ:[0,6,11,12,13,14,15,19,21,24,26,28,29,30,31,34,41,42,43,46,51],difficult:[6,29],difficulti:21,digest:4,digit:[17,21,30],diminish:21,direct:[6,11,17,19,28,46],directli:[13,18,19,26,41],director:13,directori:[6,20,26,29,30,33,34,35,40,43,45,52,107,116,134],dirti:6,disabl:[6,11,14,41,42,49,50,52,66,67,68,69,70,71,72,73,74,83,116,139,141,143,147,150,151,152],disable_stcs_in_l0:41,disableauditlog:116,disableautocompact:[41,116],disablebackup:116,disablebinari:116,disablefullquerylog:116,disablegossip:116,disablehandoff:116,disablehintsfordc:116,disableoldprotocolvers:116,disablesnapshot:138,disallow:6,disambigu:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],discard:[6,40],disconnect:41,discourag:[11,21,28],discov:30,discuss:[8,21,28],disk:[4,6,11,31,36,38,40,41,42,45,46,80,113,116,129,168],displai:[11,52,56,62,106,108,115,116,163],disrupt:[30,49],dist:34,distinct:[0,9,10,13],distinguish:[9,14],distribut:[6,29,30,41,46,49,51],divid:12,djava:[26,30,49],dml:20,dml_statement:12,dmx4jaddress:46,dmx4jport:46,dns:30,dobar:23,doc:[6,25,40,49],document:[5,12,14,15,17,25,28,35,49,52],doe:[6,11,13,14,16,17,18,19,21,24,25,28,36,38,40,41,42,49,50,51],doesn:[6,14,21,23,29,30],dofoo:23,doing:[6,13,29,30,41,51],dollar:[10,12],domain:[49,137,154],don:[5,13,23,24,25,26,28,30,31,41,51,107,131],done:[6,11,13,21,28,29,31,35,41],doubl:[6,9,10,11,12,14,17,21,26,46,50],down:[6,19,41,46,50,51,71,116,131],download:[6,26,34,46],downward:19,drain:116,drive:[6,41,43],driver:[6,12,14,29,33,36,52],drop:[6,10,15,36,41,46,80],drop_aggregate_stat:12,drop_function_stat:12,drop_index_stat:12,drop_keyspace_stat:12,drop_materialized_view_stat:12,drop_role_stat:12,drop_table_stat:12,drop_trigger_stat:12,drop_type_stat:[12,21],drop_user_stat:12,droppabl:[6,41],dropped_mut:163,droppedmessag:45,droppedmetr:46,droppedmut:46,dropwizard:46,dt_socket:26,dtest:[25,27],due:[11,13,21,30,34,46,51],dump:52,duplic:25,durable_writ:11,durat:[6,10,15,19,41,46,118,164],dure:[6,11,14,20,28,29,30,41,42,46,49,51,52,138],dying:30,dynam:[6,45,49],dynamic_snitch:50,dynamic_snitch_badness_threshold:50,dynamic_snitch_reset_interval_in_m:50,dynamic_snitch_update_interval_in_m:50,dynamo:[2,36],each:[0,4,6,10,11,12,13,14,17,18,19,21,24,28,35,36,41,42,43,46,49,50,51,52,116,141,155,168],each_quorum:0,earli:[6,12,28],earlier:15,easi:[9,28],easier:[0,28],easiest:30,ec2:[6,43,50],ec2multiregionsnitch:[6,50],ec2snitch:[6,50],ecc:43,echo:34,eclips:[23,27,29],ecosystem:25,edg:[25,26],edit:[26,31,34,46,49],effect:[6,11,21,28,30,38,42,49,71,116],effectiv:46,effici:[6,11,41,50,51],effort:6,either:[6,8,12,13,14,16,21,23,24,26,28,30,34,35,40,41,46,49,166],elaps:[41,46],element:[21,52],elig:6,els:[11,13,23,28],email:[8,16,21,36],embed:29,emploi:38,empti:[6,9,10,11,12,52],emptytyp:9,enabl:[6,11,14,17,19,29,30,41,42,50,51,52,76,77,78,80,83,84,116,152],enable_user_defined_funct:14,enableauditlog:116,enableautocompact:[41,116],enablebackup:116,enablebinari:116,enablefullquerylog:116,enablegossip:116,enablehandoff:116,enablehintsfordc:116,enableoldprotocolvers:116,encapsul:[23,46],enclos:[9,10,12,14,19],enclosur:12,encod:[15,21,25,52],encount:[5,13,34,46],encourag:[6,11],encrypt:[6,45],encryption_opt:6,end:[21,28,30,41,49,52,60,94,116,131],end_token:[60,131],end_token_1:121,end_token_2:121,end_token_n:121,endpoint:[46,50,55,94,116,131,166],endpoint_snitch:50,endtoken:52,enforc:[17,49],engin:[2,11,28,36,46],enhanc:43,enough:[0,6,21,30,31,41,50,52],enqueu:6,ensur:[11,13,18,20,30,42,49],entail:30,enter:[30,52],entir:[0,4,6,14,21,30,38,41,49,51,52],entri:[4,6,9,13,16,28,36,46,49,52],entropi:6,entry_titl:13,enumer:19,env:[30,31,46,49],environ:[0,5,6,26,30,33,43],ephemer:43,epoch:21,equal:[0,6,10,11,13,21,23,41],equival:[10,11,12,13,14,19,24,41],eras:11,erlang:33,erlcass:32,err:52,errfil:52,error:[6,11,12,14,16,18,19,21,23,25,26,34,36,52,132],escap:[12,17],especi:[28,30,41,52],essenti:[0,6,14,30,52],establish:[6,19,50],estim:46,estimatedcolumncounthistogram:46,estimatedpartitioncount:46,estimatedpartitionsizehistogram:46,etc:[6,18,21,23,25,30,31,34,41,46,49],eth0:6,eth1:6,ev1:21,even:[0,6,10,12,13,14,17,21,28,36,41,49,52,63,138,167],evenli:6,event:[13,21,41,52,131],event_typ:13,eventu:[4,13],ever:[23,29,30,43],everi:[4,6,11,13,14,18,19,20,21,35,38,41,43,52],everyth:[12,23,26,30],evict:46,evil:[6,14],exact:[11,12,14,42],exactli:[11,14,18,49],exampl:[0,6,11,13,14,17,19,21,29,34,35,41,49,50,52],exaust:6,excalibur:11,exce:[4,6,17,23],exceed:[6,43],excel:11,excelsior:11,except:[0,13,14,17,25,27,28,29,30,46],excess:38,exchang:[6,30],exclud:[46,76,99,116],excluded_categori:76,excluded_keyspac:76,excluded_us:76,exclus:[21,29],execut:[6,9,11,12,13,14,19,26,29,35,41,46,49,52],exhaust:6,exhibit:13,exist:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,29,36,38,41,42,50,51],expect:[6,10,12,21,23,25,28,41,49],expens:[6,38,50],experi:[6,41],experienc:6,experiment:[6,131],expir:[6,10,11,13,21,45,49,138],expiri:41,explain:[23,25,28,34],explicit:10,explicitli:[6,10,13,17,21,23,41,50],explor:26,expon:10,exponenti:46,expos:[6,9,49],express:[0,6,10,12,50],expung:30,extend:[21,28,29,107,168],extens:[6,11,49],extern:[46,51],extra:[0,6,11,41],extract:[23,34],extrem:[6,13],fact:[21,29,30],factor:[0,6,11,36,42,49],fail:[6,13,14,21,36,41,52,116,132],failur:[2,6,28,36,41,43,46,50,85,116,168],failuredetector:116,fairli:[6,40,49],fake:14,fall:6,fallback:[6,50],fals:[6,11,12,17,19,21,38,40,41,42,46,49,51,52,138],famili:[6,43,100,118,153,164],fanout_s:41,fast:[6,38,41],faster:[6,28,42,43,116,141],fastest:[6,24,50],fatal:6,fault:30,fav:[16,21],fax:21,fct:14,fct_using_udt:14,fear:30,feasibl:21,featur:[25,26,28,49],fed:6,feedback:28,feel:24,fetch:[6,11,52],few:[41,43],fewer:[6,28],fffffffff:[17,21],field:[10,13,14,17,21,23,38],field_definit:21,field_nam:13,fifteen:46,fifteenminutecachehitr:46,figur:41,file:[4,7,11,26,27,28,29,30,31,33,36,38,41,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],filenam:[11,52,100,116],filesystem:49,fill:[40,41],fillion:13,filter:[4,9,11,18,36,43,45,46,131],finalfunc:[9,14],find:[6,26,29,34,38,41,51,94,98],fine:[6,28,49],finer:6,finish:[26,28,116,133],fip:[6,49],fire:20,firefox:52,firewal:[6,30,31,50],first:[5,6,11,13,14,21,28,30,33,41,43,49,52,131,138],firstnam:13,fit:[6,41,46],five:46,fiveminutecachehitr:46,fix:[6,10,12,24,30,41,43],flag:[6,13,24,25,28,40,46,51],flexibl:49,flight:[6,49],flip:11,floor:6,flow:[6,19,25],fluent:32,flush:[4,6,40,41,43,46,75,116,153],fname:14,focu:28,folder:[26,160],follow:[0,5,6,8,9,10,11,12,13,14,17,18,19,21,23,24,25,26,28,29,30,31,34,36,40,41,42,46,49,50,52,57,60,67,77,86,87,122,131,138,151,155,167,168],font:12,foo:[11,12,40],footprint:[116,118],forc:[4,6,11,13,52,60,63,116,130,131,132],forcefulli:[55,116],foreground:[31,34],forev:41,forget:5,fork:28,form:[6,10,11,12,14,19,62,115,163],formal:12,format:[6,10,17,21,24,25,27,28,46,52,61,80,100,121,163,165],former:[6,46],forward:[6,11],found:[5,12,14,15,28,29,31,35,49,52,160,168],four:13,fqcn:29,fraction:6,frame:6,framework:[25,29],franc:[13,21],free:[6,11,21,24,26,46],freed:4,freenod:8,frequenc:[6,40],frequent:[6,29,36,41,49],fresh:51,friendli:[6,21,29],from:[0,4,6,9,11,12,13,14,15,17,18,19,21,24,27,28,29,33,35,36,38,40,41,42,43,46,49,50,51,54,55,57,58,60,65,67,73,76,77,83,86,87,90,94,98,100,102,106,107,114,116,118,121,122,123,125,126,129,130,131,132,134,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],fromjson:15,froom:21,frozen:[9,10,11,13,14,21],fruit:[21,28],fsync:[6,46],full:[6,9,11,13,16,19,28,34,35,41,42,49,52,70,80,116,122,131,134],full_nam:163,fulli:[6,11,12,14,45,49],function_cal:12,function_nam:[13,14,19],fundament:17,further:[5,6,11,18,21,41,45,49],furthermor:[10,13,49],futur:[6,9,10,11,21,28,82,116,159],g1gc:43,game:[14,21],garbag:[11,43,45,46,87],garbagecollect:116,gather:41,gaug:46,gaurante:0,gc_grace_second:11,gc_type:46,gce:[30,43],gcg:6,gcstat:116,gener:[0,2,4,6,8,11,12,13,14,17,21,25,26,27,28,30,43,49,52,102,138,151],genuin:23,get:[6,8,24,26,28,30,34,36,38,41,92,93,96,99,116],getbatchlogreplaythrottl:116,getcompactionthreshold:116,getcompactionthroughput:116,getconcurrentcompactor:116,getconcurrentviewbuild:116,getendpoint:116,getint:14,getinterdcstreamthroughput:116,getlocalhost:[6,30],getlogginglevel:116,getlong:14,getmaxhintwindow:116,getpartition:23,getreplica:116,getse:116,getsstabl:116,getstr:14,getstreamthroughput:116,gettempsstablepath:23,getter:[19,23],gettimeout:116,gettraceprob:116,gib:[62,115,163],gist:23,git:[5,24,26,28],github:[23,24,28,29],give:[18,19,21,28,29,36,52],given:[0,6,11,12,13,14,16,21,28,38,41,49,51,52,58,60,65,67,77,90,98,102,116,122,142,148,152,155,162],global:[6,52,116,140],gmt:21,goal:[6,41],gocassa:32,gocql:32,going:[6,28,41],gone:6,good:[6,23,28,29,30,52],googl:[23,52],gori:30,gossip:[2,6,30,46,50,71,81,104,116,158],gossipinfo:116,gossipingpropertyfilesnitch:[6,50],gossipstag:46,got:6,gp2:43,gpg:34,grace:45,grai:21,grain:49,grammar:[11,12],grant:[6,9,49],grant_permission_stat:12,grant_role_stat:12,granular:[6,87],graph:19,gravesit:11,great:[28,41],greater:[0,6,21,30,50,144,145],greatli:6,green:21,group:[6,10,11,19,41,46,49,50],group_by_claus:13,grow:21,guarante:[0,2,11,13,14,21,28,36,38,41,51,52],guid:[6,26],guidelin:[10,25,43],had:[9,10,41],half:[6,24,30],hand:[6,13,43],handl:[6,14,25,27,28,30,40,43,46,49,80],handoff:[6,46,51,72,105,116,146],handoffwindow:116,hang:28,happen:[6,13,23,24,28,36,41,46,50],happi:28,happili:43,hard:[6,14,41,43],harder:6,hardwar:[6,36,45],has:[0,4,6,10,11,12,13,14,18,19,21,23,28,30,41,43,46,49,50,52],hash:[4,6,41],hashcod:23,haskel:33,hasn:80,have:[0,5,6,9,10,11,12,13,14,15,18,19,21,23,24,25,26,28,29,30,31,34,38,41,42,43,46,49,50,80,138],haven:28,hayt:32,hdd:[6,43],head:28,header:[26,52],headroom:6,heap:[4,6,26,31,36,38,42,43,46],heap_buff:6,heavi:6,heavili:43,held:[6,43,116,120],help:[5,6,10,28,29,35,54,56,116],helper:29,henc:[5,6,11,21],here:[6,24,29,30,32,41,46,49],hex:[12,17,100],hexadecim:[10,12,100],hibern:51,hidden:51,hide:[23,25],hierarch:19,hierarchi:19,high:[0,6,30,41,43],higher:[0,19,28,38,41,46,51,118,164],highest:41,highli:[28,30,43,49],hint:[0,6,11,12,30,31,36,45,46,51,72,73,82,83,97,105,116,117,136,146,149,159,166],hintedhandoff:[6,45],hintedhandoffmanag:46,hints_creat:46,hints_directori:31,hints_not_stor:46,hintsdispatch:46,histogram:[41,46,116,119,162],histor:28,histori:[23,59,61,116],hit:[6,41,46],hitrat:46,hoc:29,hold:[0,6,10,13,19,30,41,52],home:[21,52],hope:41,hopefulli:28,host:[6,31,36,46,50,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],hostnam:[6,30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],hot:[6,46],hotspot:11,hotspotdiagnost:49,hottest:6,hour:[6,21,28,41],hourli:80,how:[0,5,6,7,8,11,12,21,25,26,27,28,29,33,35,36,41,42,46,50,52,80],howev:[6,9,10,11,12,13,15,17,18,21,28,29,30,31,34,38,42,43,49,52],hsha:6,html:6,http:[6,23,24,26,34,46],httpadaptor:46,hub:30,human:[11,62,115,163],hypothet:24,iauthent:6,iauthor:6,icompressor:42,idea:[6,14,27,28,29,30,41,52],ideal:[6,29,41,49],idempot:[13,21],idemptot:21,ident:0,identifi:[6,9,10,11,13,14,15,16,19,20,21],idiomat:8,idl:6,ieee:[17,21],iendpointsnitch:[6,50],ignor:[0,6,10,14,21,23,52,163],iinternodeauthent:6,illeg:14,illustr:19,imag:21,imagin:41,immedi:[6,11,21,28,38,42,57,116],immut:[4,30,42,43],impact:[6,11,25,41,45,49],implement:[6,10,13,14,18,19,23,29,30,40,42,49,50],implementor:6,impli:[11,12,21],implic:[0,49],implicitli:14,import_:52,imposs:41,improv:[0,6,11,21,28,29,38,41,43,50,51,52],inact:30,includ:[4,6,10,11,12,13,18,19,21,23,28,40,41,43,46,49,52,76,132,167],included_categori:76,included_keyspac:76,included_us:76,inclus:28,incom:6,incomingbyt:46,incompat:[6,10],incomplet:25,inconsist:[0,30],incorrect:30,increas:[6,11,30,38,41,42,43,46,50,51,131],increment:[6,10,13,21,28,41,68,78,116,132,138,156],incur:[13,21,46],indent:23,independ:[11,41,43,49],index:[4,6,9,10,11,12,13,15,21,36,41,45,52,116,122],index_build:160,index_identifi:16,index_nam:16,index_summary_off_heap_memory_us:163,indexclass:16,indexedentrys:46,indexinfocount:46,indexinfoget:46,indexnam:122,indexsummaryoffheapmemoryus:46,indic:[5,6,12,13,23,28,30,131],indirectli:13,individu:[6,10,14,21,28,29,43,49],induc:13,inequ:[10,13],inet:[9,11,14,17,21],inetaddress:[6,30],inexpens:43,infin:[9,10,12],influenc:11,info:[6,31,46,65,116],inform:[4,6,12,13,21,35,49,50,51,52,56,59,85,104,106,107,108,115,116,137,154],ingest:6,ingestr:52,inher:[11,21],inherit:19,init:46,initcond:[9,14],initi:[6,14,23,25,40,46,49,52,116,148],initial_token:51,input:[9,10,14,17,21,25,52],inputd:21,inreleas:34,insensit:[11,12],insert:[6,9,10,11,12,14,15,16,19,21,30,33,36,43,52],insert_stat:[12,13],insid:[6,11,12,13,21,23,52],inspect:[6,26,52],instabl:6,instal:[6,20,30,33,36,52],instanc:[6,10,11,12,13,14,16,18,19,20,21,26,29,30,40,41,43,46],instantan:46,instanti:10,instantli:6,instead:[10,11,13,18,21,23,30,41,137,154],instruct:[6,8,11,24,26,36],instrument:49,intasblob:13,integ:[0,10,11,12,13,17,21,46],integr:[27,29,36],intellij:[23,27],intend:[25,49],intens:[6,29,30],intent:25,inter:[6,95,116,147],interact:[29,35,52],interest:[0,41,49],interfac:[6,10,14,23,30,31,42,49],intern:[6,9,11,13,18,21,25,30,43,46],internaldroppedlat:46,internalresponsestag:46,internet:6,internod:[6,30],internode_encrypt:[6,49],internodeconnect:[102,151],internodeus:[102,151],interpret:[10,21,52],interrupt:30,interv:[6,9,46],intra:[6,46,50],intrins:21,introduc:[6,10,17,28,51],introduct:[10,19,29],intvalu:14,invalid:[6,13,19,25,49,107,109,110,111,116],invalidatecountercach:116,invalidatekeycach:116,invalidaterowcach:116,invertedindex:20,investig:6,invoc:14,invok:[24,34,49,168],involv:[6,13,41,42,49],ioerror:23,ip1:6,ip2:6,ip3:6,ip_address:55,ipv4:[6,17,21,30],ipv6:[6,17,21],irc:[5,28,36],irolemanag:6,irrevers:[11,21],isn:[0,18,23,28,30],iso:21,isol:[6,11,13],issu:[0,19,24,28,29,30,38,41,42,131],item:[12,21,25,26],iter:[0,6],its:[4,6,11,12,13,14,21,26,30,41,46,49,50,51],itself:[6,11,16,30,34],iv_length:6,jaa:49,jacki:24,jamm:26,januari:21,jar:[14,23,26,46],java7:49,java:[6,14,20,21,23,26,28,33,34,36,40,41,43,46,49],javaag:26,javadoc:[23,25],javas:6,javascript:[6,14],javax:49,jbod:43,jce8:6,jce:6,jcek:6,jconsol:[36,41,49],jdk:6,jdwp:26,jenkin:[26,29],jetbrain:26,jira:[5,25,28,29,40],jkskeyprovid:6,jmc:[41,49],jmx:[6,19,36,45,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],jmx_password:49,jmx_user:49,jmxremot:49,job:[28,57,87,129,131,138,167],job_thread:131,john:[13,21],join:[6,8,13,36,41,49,51,116],joss:13,jpg:21,jsmith:21,json:[9,10,13,15,36,41,42,61,163,165],json_claus:13,jsr:[6,14],jsse:6,jsserefguid:6,judgement:23,junit:[23,26,29],jurisdict:6,just:[6,14,19,26,28,29,30,41,49],jvm:[6,20,26,30,31,45,49,51],jvm_extra_opt:26,jvm_opt:[31,49],jvmstabilityinspector:25,keep:[6,8,11,23,28,30,41,46,107],keepal:[6,30],kei:[4,6,9,10,13,14,17,21,29,30,34,40,41,42,43,46,49,57,94,98,100,110,116,120,140,141,163],kept:[6,41,46],kernel:[6,30],key_alia:6,key_password:6,key_provid:6,keycach:46,keycachehitr:46,keyserv:34,keyspac:[0,6,9,10,12,14,15,16,19,21,36,38,41,42,45,49,51,52,57,58,60,65,67,76,77,86,87,90,94,98,100,107,116,118,120,121,122,123,129,131,137,138,142,153,154,155,162,163,164,167,168,170],keyspace1:[6,19],keyspace2:6,keyspace_nam:[11,14,19,21,41],keystor:[6,49],keystore_password:6,keystorepassword:49,keyword:[10,11,13,14,15,16,17,21],kib:[62,115,163],kick:[116,133],kill:[6,34],kilobyt:42,kind:[11,12,21,28,40,41],kitten:21,know:[6,13,21,23,41],known:[19,21,32,35,38,41],ks_owner:49,ks_user:49,ktlist:153,kundera:32,label:[21,28],lag:46,land:42,landlin:21,lang:[36,46,49],languag:[6,9,10,12,14,20,21,32,35,36,52],larg:[6,11,13,14,21,29,36,41,43,46,52],larger:[6,29,30,41,42,43],largest:[6,46],last:[6,12,13,14,15,28,41,46,55,116],lastli:[13,21],lastnam:13,latenc:[0,6,30,46,50],later:[0,11,21,23,28,30],latest:[0,28,34,41,52,168],latter:12,layer:43,layout:11,lazi:11,lazili:11,lead:[6,10,21,41],learn:[6,29,30,52],least:[0,6,11,12,13,18,30,41,43],leav:[6,12,13,23,29,30,52],left:[6,17,41],legaci:[6,19],legal:10,length:[4,6,10,17,21,25,41],less:[6,21,28,30,38,43],let:[6,41],letter:17,level:[6,10,11,13,19,23,25,31,43,45,46,49,52,96,107,116,148],leveledcompactionstrategi:[11,38,41],lexic:30,lib:[6,20,25,26,34],libqtcassandra:32,librari:[8,25,29,32,46,52],licenc:25,licens:[25,26,28],life:28,lifespan:43,like:[0,6,12,13,14,17,21,23,24,25,28,29,30,36,41,42,43,49],likewis:19,limit:[6,9,10,11,18,19,21,30,40,41,42,49],line:[12,23,28,29,31,34,35,49,53,55,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],linear:43,linearli:38,link:[6,8,11,12,28,29,34],linux:[6,30],list:[4,5,6,9,10,11,12,13,14,17,26,28,29,31,34,35,36,41,49,51,52,55,57,58,59,60,65,67,73,76,77,83,86,87,90,94,98,99,100,102,106,107,113,114,116,118,121,122,123,126,129,130,131,132,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],list_liter:[13,21],list_permissions_stat:12,list_roles_stat:12,list_users_stat:12,listarg:14,listen:[6,36,46],listen_address:[31,35,36],listen_interfac:31,listsnapshot:116,liter:[10,12,14,17,52],littl:23,live:[13,36,41,46,51],livediskspaceus:46,livescannedhistogram:46,livesstablecount:46,load:[0,6,11,20,21,36,45,46,49,50,51,108,116,123,131,154],local:[0,6,11,26,28,29,35,43,46,49,50,52,116,125,131,135,166],local_jmx:49,local_on:[0,49,52],local_quorum:[0,52],local_read_count:163,local_read_latency_m:163,local_seri:52,local_write_latency_m:163,localhost:[6,35,49],locat:[6,33,34,42,46,49,50,52,160],lock:[6,30,46],log:[6,11,13,25,29,33,34,36,40,45,46,49,66,70,76,80,96,116,131,134,148,160],log_al:41,logback:31,logger:[23,31,76],logic:[6,20],login:[6,9,19,29,49],lol:21,longer:[6,9,10,30,41,51,57,116],look:[6,12,24,28,29,41,43],lookup:46,loop:23,lose:[6,41,51],loss:[6,21],lost:[41,51],lot:[6,35,36],low:[6,28,116,118],lower:[0,6,11,12,13,19,30,38,41,46,51],lowercas:12,lowest:[28,41],lz4:6,lz4compressor:[6,11,42],macaddr:9,machin:[6,11,29,30,46,49,50,51],made:[6,21,36,38,43,49],magnet:6,magnitud:13,mai:[0,4,6,9,10,11,13,14,16,17,19,21,25,26,28,29,30,34,38,41,49,50,51,52,138],mail:[5,28,36],main:[0,14,18,26,30,33,34,49,51,52],main_actor:13,mainli:[6,11],maintain:[6,28],mainten:46,major:[0,10,28,49,60,116],make:[0,6,8,9,20,21,23,26,28,29,30,31,34,41,49,51,52],man:6,manag:[6,19,26,29,46,49,51,56,116],mandatori:[11,14],mani:[0,6,11,23,25,28,41,42,43,46,49,52,57,60,67,77,80,86,87,131,138,155,167,168],manipul:[12,15,29,36],manual:[6,24,30],map:[6,9,10,11,13,14,17,19,36,46],map_liter:[11,16,19,21],mar:21,mark:[6,19,41,51,71,116],marker:[6,11,12,25,30],match:[6,12,13,14,17,19,46,50],materi:[6,10,11,12,15,36,46,52,116,170],materialized_view_stat:12,matter:[11,30],max:[6,36,41,46,49,52,80,90,97,116,131,142,149],max_hint_window_in_m:51,max_log_s:80,max_map_count:30,max_mutation_size_in_kb:[6,30],max_queue_weight:80,max_thread:6,max_threshold:41,maxattempt:52,maxbatchs:52,maxfiledescriptorcount:46,maxhintwindow:149,maxim:43,maximum:[4,6,14,38,46,52,80,138],maximum_live_cells_per_slice_last_five_minut:163,maximum_tombstones_per_slice_last_five_minut:163,maxinserterror:52,maxoutputs:52,maxparseerror:52,maxpartitions:46,maxpools:46,maxrequest:52,maxrow:52,maxthreshold:142,maxtimeuuid:10,mayb:13,mbean:[6,19,41,46,49],mbeanserv:19,mbp:6,mct:6,mean:[6,9,11,12,13,14,17,18,21,36,41,46,50,52,131],meaning:13,meanpartitions:46,meant:[21,30,46],measur:[6,25,29,46,51,52],mechan:40,median:46,meet:[6,25],megabyt:6,member:23,membership:6,memlock:30,memori:[4,6,11,36,38,41,45],memory_pool:46,memtabl:[2,6,38,40,41,42,43,46,153],memtable_allocation_typ:4,memtable_cell_count:163,memtable_cleanup_threshold:4,memtable_data_s:163,memtable_off_heap_memory_us:163,memtable_switch_count:163,memtablecolumnscount:46,memtableflushwrit:46,memtablelivedatas:46,memtableoffheaps:46,memtableonheaps:46,memtablepool:6,memtablepostflush:46,memtablereclaimmemori:46,memtableswitchcount:46,mention:[6,21,28,46,49],menu:26,mere:23,merg:[24,28,38,42,43,45],mergetool:24,merkl:46,mess:[28,29],messag:[6,21,25,28,34,36,46],met:13,meta:[13,46],metadata:[4,19,42,43,46],metal:6,meter:46,method:[10,13,14,19,23,25,26,29,36,49],metric:[6,45],metricnam:46,metricsreporterconfigfil:46,mib:[62,115,163],microsecond:[6,11,13,21,46],midnight:21,might:[6,13,41,46,55,57,58,60,65,67,73,77,80,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],migrat:[6,46,50],migrationstag:46,millisecond:[6,10,21,46,118,138,164],min:[6,30,40,41,46,52,90,116,142],min_sstable_s:41,min_threshold:41,minbatchs:52,mind:6,minim:[6,41,43],minimum:[6,11,14,31,46],minor:[10,12,45],minpartitions:46,minthreshold:142,mintimeuuid:10,minut:[6,21,41,46,80],misbehav:41,misc:[102,151],miscelen:46,miscellan:6,miscstag:46,miss:[11,41,46,51],misslat:46,mistaken:[55,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],mitig:[6,49],mix:[6,41],mmap:30,mnt:16,mock:29,mode:[6,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],model:[11,15,19,28,36,49],moder:43,modern:43,modif:[13,19],modifi:[6,9,10,11,14,19,21,28,38,41,42],modification_stat:13,modul:52,modular:25,moment:[6,28],monitor:[30,36,45,49,50,56,116],monkeyspeci:[11,18],monkeyspecies_by_popul:18,month:21,more:[0,4,6,10,11,12,13,21,23,28,29,31,35,36,38,43,45,46,49,50,51,60,86,87,116,118,131,138,164,168],moreov:13,most:[6,11,12,13,21,26,28,29,30,31,41,42,43,49,52,59,116,164],mostli:[6,11,21],motiv:[29,41],mount:6,move:[6,28,30,36,40,45,46,116],movement:45,movi:[13,21],movingaverag:6,mtime:11,much:[0,5,6,11,38,41,50],multi:[0,6,12,25],multilin:27,multipl:[4,6,10,11,12,13,14,21,23,25,26,28,30,31,41,43,50,121],multipli:41,murmur3partit:4,murmur3partition:[6,14,52],must:[0,6,10,11,13,14,17,18,19,23,28,29,30,31,41,46,49,51,52,153],mutant:16,mutat:[0,6,13,30,40,46,168],mutationstag:46,mv1:18,mx4j:46,mx4j_address:46,mx4j_port:46,mx4jtool:46,mxbean:19,myaggreg:14,mycolumn:17,mydir:52,myevent:13,myfunct:14,myid:12,mykei:17,mykeyspac:14,mytabl:[11,14,17,20],mytrigg:20,nairo:21,name:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,28,29,30,31,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],names_valu:13,nan:[9,10,12],nanosecond:21,nathan:13,nativ:[6,10,12,15,17,25,30,35,46,52,69,79,116,122,157],native_transport_min_thread:6,native_transport_port:31,native_transport_port_ssl:49,native_typ:21,natur:[11,21,23,41,42],nearli:26,neccessari:6,necessari:[6,11,14,19,28,34,42,49],necessarili:[6,12,31],need:[0,6,10,11,12,13,19,21,23,25,26,28,29,30,31,34,35,38,41,42,43,49,50,52,94,98],neg:6,neglig:13,neighbour:41,neither:[18,21,49],neon:26,nerdmovi:[13,16],nest:[12,13,23],net:[6,26,30,33,34,49],netstat:[51,116],network:[6,13,30,43,49,50,115,116,119],networktopologystrategi:[11,49],never:[6,10,11,12,13,14,21,23,30,41],nevertheless:13,new_rol:19,new_superus:49,newargtuplevalu:14,newargudtvalu:14,newer:[41,43,52,87],newest:[11,41],newli:[11,21,28,40,116,123],newreturntuplevalu:14,newreturnudtvalu:14,newtuplevalu:14,newudtvalu:14,next:[6,30,35,41,52],ngem3b:13,ngem3c:13,nifti:24,nio:[6,14,46],no_pubkei:34,node:[0,4,6,11,13,14,20,21,25,29,31,32,35,36,38,40,41,43,45,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],nodej:33,nodetool:[34,36,38,42,45,49,51,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],nologin:9,non:[6,9,10,11,12,13,14,19,21,30,38,42,46,49,52],none:[6,11,13,21,49],nonsens:19,nor:[11,18,21],norecurs:[9,19],norm:46,normal:[14,17,26,30,34,46,51,52],noschedul:6,nosuperus:[9,19],notabl:[14,17],notat:[10,12,13,52],note:[0,5,6,10,11,12,13,14,15,17,19,21,24,28,30,41,49],noth:[6,11,14,24,29,30],notic:6,notif:8,notion:[11,12],now:[10,23,26,41,51],ntp:6,nullval:52,num_cor:52,num_token:51,number:[0,6,10,11,12,13,14,17,18,21,26,28,29,30,34,38,41,42,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],number_of_cor:6,number_of_dr:6,number_of_partitions_estim:163,numer:[15,38],numprocess:52,object:[6,11,12,25],objectnam:19,observ:23,obsolet:[6,43,46],obtain:[12,49],obviou:[14,24],obvious:11,occup:13,occupi:[6,46],occur:[10,12,13,20,21,30,41,43,46],occurr:21,octet:[6,50],odd:28,off:[4,6,30,42,46,49,52,116,133],off_heap_memory_used_tot:163,offer:[15,29,42],offheap:[38,43],offheap_buff:6,offheap_object:6,offici:[36,52],offset:[4,46],often:[6,11,12,23,28,29,30,41,42,43,49,50,52,80],ohc:6,ohcprovid:6,okai:23,old:[4,6,41,51,74,84,116],older:[6,14,26,34,41,43,52],oldest:[6,11],omit:[6,10,11,13,17,21,148],onc:[4,6,11,12,14,21,24,26,28,29,30,40,41,42,43,46,49,51,52],one:[0,4,6,9,10,11,12,13,14,17,18,19,21,23,26,28,29,31,36,38,41,43,46,49,50,51,52,57,60,67,77,86,87,102,116,131,138,151,153,155,167,168],oneminutecachehitr:46,ones:[6,11,12,13,14,18,19,46],ongo:[41,51],onli:[0,6,9,11,12,13,14,17,18,19,21,23,28,29,31,36,38,41,42,43,46,49,50,52,131,153,163],onlin:52,only_purge_repaired_tombston:41,onto:[4,41],open:[5,6,26,49,50],openfiledescriptorcount:46,openjdk:34,oper:[0,6,10,11,13,16,18,19,21,23,36,38,40,43,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],operatingsystem:46,opertaion:6,opportun:38,ops:30,opt:14,optim:[6,11,12,13,30,41,43,51],optimis:131,option1_valu:19,option:[4,6,9,10,12,13,14,16,19,21,26,29,30,34,42,43,45,49,51,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],oracl:[6,34,49],order:[0,4,6,9,10,14,18,21,23,28,30,38,40,41,50,51,52],ordering_claus:13,orderpreservingpartition:6,org:[6,14,20,23,26,29,30,34,41,42,46,49],organ:[4,26,32],origin:[9,24,28,138],orign:13,other:[0,4,6,10,12,13,14,18,19,21,24,26,28,31,36,38,41,43,46,49,50,51,116,121,132],other_rol:19,otherwis:[0,9,12,13,16,21],our:[5,6,8,24,26,28,41],ourselv:24,out:[6,12,23,26,28,41,46,49,50,51,131],outbound:6,outboundtcpconnect:6,outgo:6,outgoingbyt:46,outlin:49,outofmemoryerror:36,output:[14,19,25,26,38,41,52,60,61,163,165],outsid:[11,20,21],over:[0,6,11,21,30,41,46,49,50,51],overal:14,overflow:[17,138],overhead:[6,30,42,46,51],overidden:49,overlap:[0,41],overload:[6,14,30],overrid:[6,23,49,51,138],overridden:[6,11],overview:[2,36,45],overwhelm:6,overwrit:[42,43],overwritten:[46,87],own:[0,6,11,12,14,21,28,30,34,41,42,46,49,94,100,107,116,168],owner:21,ownership:[41,137],p0000:21,pacif:21,packag:[26,30,31,33,35,52],packet:6,page:[6,21,26,28,29,30,43,46],paged_slic:46,pages:52,pagetimeout:52,pai:23,pair:[6,11,19,21,41,49],parallel:[29,41,131],paramet:[6,14,23,25,26,31,38,43,50,51,116,148],paranoid:6,parenthesi:[11,52],parnew:43,pars:[6,12,40,52],parser:[9,10,40],part:[0,5,6,11,13,14,18,21,25,26,28,29,30,50,51,52],parti:[25,46],partial:4,particip:[0,20],particular:[11,12,13,14,17,19,21,30,43,46,49],particularli:[12,21,49],partit:[4,6,10,13,14,30,38,41,43,46,87,94,98,116,138,164],partition:[4,10,13,14,52,64,116,131],partition_kei:[11,13],partli:13,pass:[25,28,31,52],password:[6,9,13,19,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],password_a:19,password_b:19,passwordauthent:[6,49],passwordfilepath:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],past:46,patch:[10,13,23,24,25,27,29,36],path:[5,6,16,25,34,38,41,42,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],patter:19,pattern:[6,19,21],paus:[6,30,116,117],pausehandoff:116,paxo:[13,46,52],peer:[6,46],peerip:46,penalti:[6,13],pend:[41,46,116,130],pending_flush:163,pendingcompact:46,pendingflush:46,pendingrangecalcul:46,pendingtask:46,pendingtasksbytablenam:46,pennsylvania:21,peopl:[28,30],per:[0,4,6,10,11,13,23,24,28,30,38,40,41,42,46,49,52,116,139,146],percent:46,percent_repair:163,percentag:[6,46,50],percentil:46,percentrepair:46,perdiskmemtableflushwriter_0:46,perfect:14,perform:[6,11,13,19,21,24,25,27,30,31,38,41,43,46,49,50,52,131],period:[6,43,46,49,116,118],perman:[11,30,41,43],permiss:[6,9,12,29,49],permit:[6,19,40,49],persist:[4,30,38,43,49],perspect:30,pet:21,pgrep:34,phantom:32,phase:[51,52],phi:6,phone:[13,21],php:33,physic:[0,6,11,30,43,50],pick:[24,28,30,41,49,51,121],pid:[30,34],piec:[12,41,46],pile:6,pin:[6,50],ping:28,pkcs5pad:6,pkill:34,place:[5,6,16,20,23,24,28,40,41,46,49,52,116,123],placehold:[14,52],plai:[14,21],plain:4,plan:[11,24,28],platform:19,platter:[6,43],player:[14,21],playorm:32,pleas:[5,6,11,13,14,15,21,23,26,29,30],plu:[14,41,46],plug:6,pluggabl:[19,49],plugin:46,poe:21,point:[6,10,17,21,23,26,36,49,52,94,116],pointer:14,polici:[6,28,49,168],pool:[6,34,46,116,165],popul:[11,18],popular:[26,43],port:[6,26,31,36,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],portion:[43,52],posit:[4,6,10,11,21,38,46,51],possbili:6,possess:19,possibl:[6,10,11,13,14,17,19,21,25,28,29,30,38,41,43,46,49,51],post:[13,116,141],post_at:13,posted_at:13,posted_bi:11,posted_month:11,posted_tim:11,potenti:[0,6,9,11,12,14,25,41,43,49,51,138],power:6,pr3z1den7:21,practic:[11,12,13,49],pre:[6,17,21,43,49],preced:30,precis:[10,17,21,41],precondit:46,predefin:11,predict:13,prefer:[0,6,11,12,21,23,28,49,50],preferipv4stack:26,prefix:[11,12,21],prepar:[6,14,15,46],preparedstatementscount:46,preparedstatementsevict:46,preparedstatementsexecut:46,preparedstatementsratio:46,prepend:21,prerequisit:33,present:[12,13,18,46],preserv:[6,17,19],press:34,pressur:[6,46],pretti:52,prevent:[6,29,40],preview:131,previou:[6,10,11,21,41,51],previous:6,previsouli:[83,116],primari:[9,10,13,14,21,29,40,41,42,49,51],primarili:[6,11],primary_kei:[11,18],print:[52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],prior:[6,13,19,21],prioriti:28,privat:[6,23,49,50],privileg:[19,34,49],probabilist:[38,42],probabl:[6,11,29,38,41,103,116,152],problem:[5,6,14,24,25,30,49],problemat:21,proc:[6,30],proce:[25,42,51],procedur:[13,49],process:[0,6,14,24,25,26,28,29,30,34,40,42,43,46,49,51,52,56,116,117,136],prod_clust:52,produc:[13,14,41,80],product:[6,28,30,43,50],profil:[13,116,118],profileload:116,program:[14,29],progress:[23,24,28,38,45,116,170],project:[23,29,46],promin:11,prompt:52,propag:[6,11,14,23,25,50],proper:[11,21,30,49],properli:[6,25],properti:[6,11,19,33,40,41,49,50,51],propertyfilesnitch:[6,50],proport:[6,13],proportion:[6,89,116,139],propos:[6,46],protect:[6,43],protocol:[6,25,30,35,46,49,52,59,69,74,79,84,116,157],provid:[0,5,6,11,12,13,14,15,17,21,26,28,35,40,41,42,43,46,49,50,51,53,115,116,126,130],proxim:[6,50],proxyhistogram:116,prv:131,ps1:49,ps22dhd:13,pt89h8m53:21,pull:[29,41,46,131],purg:43,purpos:[11,12,13,21,43,49],push:[24,28,46],put:[15,28,31,41,51,107,131],pwf:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],python:[14,28,29,33,34,52],quak:[14,21],qualifi:[6,11,14,28],qualiti:49,quantiti:21,queri:[6,10,11,12,13,14,16,18,19,33,36,41,46,52,70,80,116,134],question:[8,19,36],queu:[6,46],queue:[6,46,80],quick:[107,168],quickli:[30,41],quill:32,quintana:21,quit:[41,52],quorum:[0,49,52],quot:[9,10,11,12,14,17,19,52],quotat:19,quoted_identifi:12,quoted_nam:11,race:[21,24],rack1:6,rack:[0,6,49,50],rackdc:[6,50],rackinferringsnitch:[6,50],raid0:43,raid1:43,raid5:43,rain:12,rais:[12,30],raison:9,ram:[38,42,43],random:[11,14,30,51],randomli:[0,6,51],randompartition:[6,13,14],rang:[2,6,10,11,13,21,25,41,45,46,52,60,65,102,116,121,131,151],range_slic:46,rangekeysampl:116,rangelat:46,rangemov:51,rangeslic:46,rapid:43,rare:[10,38],raspberri:43,rate:[6,11,46,49,52],ratebasedbackpressur:6,ratefil:52,rather:[13,30,41,43],ratio:[6,42,43,46],raw:[6,14],reach:[6,28,30,40,41],read:[0,6,11,13,21,23,25,29,30,33,36,38,41,42,43,45,46,49,50,52,102,151,163,168],read_lat:163,read_repair:46,read_repair_ch:[0,6,11,41,50],read_request_timeout:30,readabl:[11,62,115,163],readi:[28,49],readlat:46,readrepair:46,readrepairstag:46,readstag:46,readwrit:49,real:[8,11,23,30],realiz:41,realli:[6,29,31],reason:[0,6,13,14,15,30,31,34,41,43,49,51],rebuild:[38,41,42,46,116,122,138],rebuild_index:116,receiv:[6,14,28,30,41,43],recent:[6,28,29,43,59],reclaim:41,recogn:[13,26,28],recommend:[6,11,21,30,43,49,51],recompact:41,recompress:42,reconnect:49,record:[11,13,21,28,41],recov:[6,30,41],recoveri:6,recreat:52,recurs:80,recv:34,recycl:[6,46],redistribut:6,redo:28,reduc:[6,30,41,42,63,89,116,131,139],reduct:6,redund:[0,23,25,28,43],reenabl:[79,81,82,116],refactor:40,refer:[6,11,12,13,14,15,21,23,29,30,34,35,52],referenc:6,reflect:41,refresh:[6,49,52,116,124],refreshsizeestim:116,refus:36,regard:[11,13],regardless:[0,6,19,28],regener:38,regexp:12,region:[6,50],regist:21,registri:49,regress:[25,29],regular:[9,12,26,29,30,46,52],regularstatementsexecut:46,reinsert:138,reject:[6,13,30,40,49],rel:[6,21,52],relat:[8,10,12,13,26,28,41,46],releas:[6,10,34,52],relev:[13,19,21,28,42,49],reli:[6,14,21,30,51],reliabl:41,reload:[6,116,125,126,127,128],reloadlocalschema:116,reloadse:116,reloadssl:116,reloadtrigg:116,reloc:[116,129],relocatesst:116,remain:[6,13,14,21,24,41,46,51,163],remaind:[17,42],remedi:41,remot:[0,24,26,36,41,49,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],remov:[4,6,10,11,12,13,14,15,17,21,25,30,36,40,45,49,55,58,87,116,130],removenod:[51,55,116],renam:[9,21],reorder:6,repair:[0,4,6,11,30,36,42,45,46,50,51,107,116,132,148,168],repair_admin:116,repeat:[12,34,42,49],replac:[6,9,14,19,21,25,30,36,41,45,80],replace_address_first_boot:51,replai:[0,21,43,46,89,116,133,139],replaybatchlog:116,replic:[2,6,11,36,41,43,49,51,55,116],replica:[0,6,11,13,30,41,46,50,51,63,98,116],replication_factor:[0,11,49],repo:[24,26],report:[28,36,45],report_writ:19,reportfrequ:52,repositori:[5,8,26,28,29,34],repres:[6,10,17,19,21,30,41,46,49,50,52],represent:[10,17],request:[0,6,13,19,20,29,30,38,41,43,45,49,50,52,116,152,167],request_respons:46,requestresponsestag:46,requestschedul:6,requesttyp:46,requir:[0,6,11,13,14,19,23,24,25,26,28,30,38,42,43,49],require_client_auth:6,require_endpoint_verif:6,resampl:6,reserv:[6,10,12,15],reset:[6,13,116,135,148],reset_bootstrap_progress:51,resetfullquerylog:116,resetlocalschema:116,resid:[6,13,30,46],resolut:[6,13,30],resolv:[24,30,137,154],resort:[55,116],resourc:[19,49],resp:14,respect:[6,10,14,34,50,80],respond:[0,6,12],respons:[0,6,19,30,46,51],ressourc:21,rest:[6,11,12,21,25,51],restart:[30,41,49,51,116,123,141],restor:[41,51,52],restrict:[10,11,13,18,19],result:[0,6,8,10,11,12,14,17,19,21,28,30,41,46,52],resum:[56,116,136],resumehandoff:116,resurrect:41,resync:[116,135],retain:[30,41],rethrow:23,retri:[0,6,21,46,80],retriev:[11,13,19],reus:25,revers:13,review:[11,23,27,28,29,36],revok:[9,49],revoke_permission_stat:12,revoke_role_stat:12,rewrit:[38,41,42,116,138,167],rewritten:[43,138],rfc:[14,21],rhel:36,rich:21,rider:21,riderresult:21,right:[6,26,30,52],ring:[2,6,36,49,51,52,112,114,116,148],risk:11,rmem_max:6,rmi:[30,49],robin:6,rogu:14,role:[6,9,10,12,15,45],role_a:19,role_admin:19,role_b:19,role_c:19,role_manag:49,role_nam:19,role_opt:19,role_or_permission_stat:12,role_permiss:6,roll:[30,49,80],roll_cycl:80,romain:21,root:[6,24,28,34],rotat:6,roughli:6,round:[6,13,41,46],roundrobin:6,roundrobinschedul:6,rout:[6,50],row:[0,4,6,10,11,13,14,15,17,18,29,35,38,42,43,46,52,87,107,111,116,138,140,141],rowcach:46,rowcachehit:46,rowcachehitoutofrang:46,rowcachemiss:46,rowindexentri:46,rows_per_partit:11,rpc:[6,46],rpc_min:6,rpc_timeout_in_m:[102,151],rsc:168,rubi:[14,33],rule:[6,12,14,28,30],run:[5,6,12,21,24,26,28,30,31,34,41,43,46,49,51,107,131],runtim:[6,33,96,116],runtimeexcept:23,rust:33,safe:[6,14,21,41,49],safeguard:43,safeti:[41,51],sai:36,said:[11,28,30,116,167],same:[0,5,6,11,12,13,14,15,17,18,19,21,24,26,28,31,36,38,41,46,49,50,131],sampl:[4,6,12,14,46,52,80,116,118,120,164],sampler:[46,118,164],san:43,sandbox:[6,14],satisfi:[0,23,43,46,51],satur:[6,46],save:[6,13,21,30,31,38,42,43,51,116,141],saved_cach:6,saved_caches_directori:31,sbin:30,scala:[14,33],scalar:15,scale:[6,29,42],scan:[6,13,38,46],scenario:24,scene:30,schedul:6,schema:[0,9,11,14,17,46,52,64,116,125,135],schema_own:19,scope:[19,46,49],score:[6,14,21,50],script:[6,14,26,29,80],scrub:[38,41,42,46,116,160],search:28,second:[6,11,12,13,21,30,40,43,49,52,116,139,146],secondari:[10,12,13,15,36,41,46,116,122],secondary_index_stat:12,secondaryindexmanag:46,section:[2,5,7,10,11,12,13,15,19,21,30,33,34,35,41,46,49,51,53],secur:[6,14,15,36,45],see:[0,4,6,10,11,12,13,14,17,19,21,26,28,35,36,40,41,46,49,51,52,87,116,131],seed:[6,31,36,50,99,116,126],seedprovid:6,seek:[6,43,46],seen:[6,11],segment:[4,6,40,46,52,80],select:[6,9,10,11,12,14,15,19,26,29,30,35,38,41,49,52,121],select_claus:13,select_stat:[12,18],self:25,selinux:30,semant:[10,13,14],semi:30,send:[6,8,30],sens:[6,10,13,15,30],sensic:14,sensit:[11,12,14,17],sensor:21,sent:[0,6,21,30,46],separ:[4,6,11,13,23,28,31,41,43,49,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],seq:[6,131],sequenc:12,sequenti:[6,43,131],seren:13,seri:[11,41,52],serial:6,serializingcacheprovid:6,serv:[13,43,49],server:[6,12,13,21,26,29,30,43,46,49],server_encryption_opt:49,servic:[6,26,34,49,51],session:[6,19,49,116,132],set:[0,6,9,10,11,12,13,14,17,18,25,27,28,29,31,36,38,40,41,42,43,46,49,50,51,52,57,76,87,116,129,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,167],set_liter:21,setbatchlogreplaythrottl:116,setcachecapac:116,setcachekeystosav:116,setcompactionthreshold:[41,116],setcompactionthroughput:[41,116],setconcurrentcompactor:116,setconcurrentviewbuild:116,sethintedhandoffthrottlekb:116,setint:14,setinterdcstreamthroughput:116,setlogginglevel:116,setlong:14,setmaxhintwindow:116,setstr:14,setstreamthroughput:116,setter:[19,23],settimeout:116,settraceprob:116,setup:[28,29,49],sever:[4,13,19,41,49],sfunc:[9,14],sha:24,shadow:41,share:[11,13,26],sharedpool:52,sharp:32,shed:30,shell:[35,36,53],shift:21,ship:[29,35,49,52],shortcut:18,shorter:49,shorthand:52,should:[0,5,6,10,11,12,13,14,17,19,21,25,26,28,29,30,31,32,33,35,38,41,42,43,46,49,50,51,52,121,131,151],shouldn:11,show:[19,36,51,65,85,104,116,120,130,137,154,155,163,170],shown:[12,52,163],shrink:6,shut:6,shutdown:[6,43],side:[11,13,17,21,49],sign:[13,21,30],signal:[116,127],signatur:[34,40],signific:[6,26,28,29,43],significantli:6,silent:14,similar:[6,13,14,42,43],similarli:[0,10,17,23,43,116,121],simpl:[6,11,26,29,49],simple_classnam:29,simple_select:13,simplequerytest:29,simplereplicationstrategi:49,simpleseedprovid:6,simplesnitch:[6,50],simplestrategi:11,simpli:[0,6,11,13,14,17,21,26,29,41,43,46,51,168],simul:29,simultan:[6,43,52,57,87,129,138,167],sinc:[6,11,13,14,21,26,30,34,41,46,51],singl:[0,6,10,11,12,13,14,17,18,19,21,23,28,31,35,36,45,46,49,50,52,60],singleton:25,situat:[6,29,41],size:[4,6,11,21,23,30,31,38,40,42,43,45,46,49,52,80,113,116],size_estim:[116,124],sizetieredcompactionstrategi:[11,41],skip:[6,13,46,51,52,138,153],skipcol:52,skiprow:52,sks:34,sla:25,slash:12,slf4j:23,slightli:6,slow:[6,50],slower:[6,11,38],slowest:6,slowli:[6,21],small:[6,11,13,21,30,41,43],smaller:[6,30,41,43,52],smallest:[0,11,14,46],smallint:[9,10,14,17,21],smith:21,smoother:10,smoothli:6,snappi:6,snappycompressor:[11,42],snapshot:[6,26,46,58,113,116,138],snapshot_nam:58,snapshotnam:[58,116],snitch:[6,36,45,64,116],socket:[6,49,151],sole:11,solid:[6,43],some:[0,6,9,11,12,13,14,21,26,28,29,30,31,40,41,42,46,49,51,52],some_funct:14,some_nam:12,someaggreg:14,somearg:14,somefunct:14,someon:[24,41],sometim:[6,12,13],someudt:14,somewher:34,soon:49,sooner:6,sort:[4,11,13,21,41,43,163],sort_kei:163,sourc:[5,6,8,14,27,34,46,121],source_elaps:52,space:[6,23,30,40,41,43,46],space_used_by_snapshots_tot:163,space_used_l:163,space_used_tot:163,span:[6,13,41],sparingli:13,spark:32,spec:[25,35,46,52],speci:[11,18],special:[12,13,29,30,41,46],specif:[6,9,11,12,13,19,21,26,28,30,32,40,41,46,49,52,116,121,131],specifc:46,specifi:[0,6,10,11,12,13,14,16,18,19,21,26,30,35,40,41,42,46,49,51,52,58,60,100,116,121,131,137,149,151,153,160,163,166],specific_dc:131,specific_host:131,specific_keyspac:121,specific_sourc:121,specific_token:121,specul:[0,46],speculativeretri:46,speed:[6,36],spent:46,spike:30,spin:[6,43],spindl:6,spirit:[6,50],split:[23,30,41,46,52,60],spread:[6,50],sql:[13,15],squar:12,squash:28,src:121,ssd:[6,16,43],ssl:[6,30,45,52,116,127],ssl_storage_port:50,sss:17,sstabl:[2,6,11,30,38,42,43,45,57,60,87,100,107,116,123,129,138,167,168],sstable_compression_ratio:163,sstable_count:163,sstable_s:41,sstable_size_in_mb:41,sstableexpiredblock:41,sstablesperreadhistogram:46,sstablewrit:23,stabil:28,stabl:[34,52],stack:6,stage:28,stai:[36,41],stale:49,stall:[6,51],stand:[6,29],standalon:29,standard:[6,21,30,34,46],start:[0,6,9,13,27,30,31,34,36,41,43,46,49,51,60,131,160],start_token:[60,131],start_token_1:121,start_token_2:121,start_token_n:121,starter:28,startup:[6,20,26,30,41,46,51],starvat:6,state:[6,14,38,41,43,46,51,116,154],statement:[6,9,10,11,13,14,15,16,17,19,20,21,25,27,28,38,41,46,49,52],static0:11,static1:11,statist:[4,41,46,52,62,88,116,119,162,163,165],statu:[19,25,28,30,34,52,116,130,155,156,157,158,159,168],statusautocompact:116,statusbackup:116,statusbinari:116,statusgossip:116,statushandoff:116,stc:11,stdin:52,stdout:52,step:[6,26,31,49],still:[0,6,10,13,14,17,21,23,49,51,52],stop:[6,34,52,75,116,134,161],stop_commit:6,stop_paranoid:6,stopdaemon:116,storag:[2,11,15,16,28,30,36,42,43,45],storage_port:[31,50],storageservic:[6,23],store:[0,4,6,10,11,12,13,21,36,38,41,42,43,46,49,52,72,80,82,116,159],store_typ:6,straight:51,straightforward:40,strategi:[0,6,11,45,50],stream:[4,6,36,41,42,45,56,95,101,116,121,131,147,148,150,151],street:21,strength:6,strict:[10,41],strictli:[8,11,14],string:[6,10,11,12,13,14,16,17,19,20,21,46,52,100],strong:0,strongli:[6,11,12,49],structur:[4,6,9,19,25,38,46],stub:49,style:[6,25,26,27,28,29,36],stype:[9,14],sub:[11,13,21,34,41],subclass:6,subdirectori:[6,20],subject:[6,14,49],submiss:[6,28],submit:[28,29,36,60],subscrib:8,subscript:8,subsequ:[6,13,30,41,42],subset:[19,41,52],substitut:34,subsystem:49,subvert:41,succed:46,succesfulli:46,success:[0,52],sudden:6,sudo:[30,34],suffici:[6,43],suggest:[12,28,43],suit:[6,28,29,49],suitabl:[13,14,25,28],sum:40,summari:[4,6,46],sun:[23,49],sunx509:6,supercolumn:9,supersed:[10,138],superus:[9,19,49],suppli:[13,24],support:[0,6,9,10,11,12,13,14,15,16,18,19,21,28,29,30,32,36,41,49,52,138,160],suppos:13,sure:[6,8,23,26,28,29,30,31,34,41],surplu:30,surpris:0,surprisingli:6,surround:[17,52],suscept:14,suspect:[5,28],suspend:26,swamp:30,swap:6,symmetri:17,symptom:30,sync:[6,30,46,131],synchron:6,synonym:19,synopsi:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],syntact:[11,19],syntax:[10,12,13,14,19,21,41,42],sys:6,sysctl:30,sysintern:6,system:[6,11,14,19,29,30,31,35,41,43,46,49,52,91,92,93,95,101,107,116,123,124,125,143,144,145,147,150],system_auth:[6,49],system_trac:131,tab:23,tabl:[0,4,6,9,10,12,13,14,15,16,17,18,19,20,21,29,38,41,42,45,49,52,57,60,67,75,77,86,87,90,94,98,107,116,122,123,125,129,131,138,142,153,155,160,162,163,167,168],table1:19,table_nam:[11,13,16,19,20,41,163],table_opt:[11,18],tablehistogram:116,tablestat:116,tag:[21,25,28,153],take:[6,10,11,13,14,21,25,26,28,30,38,41,42,43,51,116,153],taken:[6,40,41,46],tar:34,tarbal:[31,33,52],target:[11,19,26,29,41],task:[6,26,28,46,52],tcp:[6,30],tcp_keepalive_intvl:30,tcp_keepalive_prob:30,tcp_keepalive_tim:30,tcp_nodelai:6,tcp_wmem:6,teach:[6,50],team:30,technetwork:6,technic:[11,15],technot:6,tee:34,tell:[6,13,25,30,31,46],temporari:49,temporarili:6,tenanc:6,tend:[6,30,43],tendenc:6,terabyt:42,term:[6,13,14,15,18,21],termin:[12,52],ternari:23,test:[6,8,23,25,27,28,35,36,43,52],test_keyspac:49,testabl:[25,28],testbatchandlist:29,testmethod1:29,testmethod2:29,testsom:29,teststaticcompactt:29,text:[4,9,11,12,13,14,17,21,40,42,49],than:[0,6,11,12,13,14,15,18,21,23,28,36,41,42,43,49,50,51,132,144,145],thei:[6,9,10,11,12,13,14,15,18,19,21,23,25,28,29,36,38,41,42,43,46,49],them:[6,10,11,13,14,21,23,28,29,30,35,38,41,46,49,116,167],themselv:[13,19],theoret:11,therefor:[28,29,49],thi:[0,2,4,5,6,7,10,11,12,13,14,15,17,18,19,21,23,24,25,26,28,29,30,31,33,34,36,38,40,41,42,43,46,49,50,51,52,53,54,55,57,58,60,63,65,67,73,77,83,86,87,89,90,94,98,100,102,106,107,114,116,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],thing:[6,21,24,28,30,33,41],think:6,third:[21,25,46],thobb:52,those:[11,12,13,14,16,17,18,19,21,28,30,40,41,49,52,167],though:[6,10,12,21,36,41,42,46],thousand:52,thousandssep:52,thread:[6,43,46,49,57,87,116,129,131,138,146,165,167],threadpool:45,threadpoolnam:46,threadprioritypolici:26,three:[0,6,38,41,42,49,52],threshold:[4,40,43,50,90,116,142,148],thrift:[6,9,11,15,30,46],throttl:[6,89,116,139,143,146,147,150],throttle_limit:6,through:[0,5,9,10,11,12,13,26,28,30,35,40,41,52],throughout:49,throughput:[0,6,41,42,43,46,91,95,101,116,143,147,150],throwabl:[25,29],thrown:21,thu:[6,10,11,12,13,18,21,30,46,50,51,116,167],thumb:[6,28],thusli:21,tib:[62,115,163],ticket:[5,24,25,28,29,40],tie:30,tier:45,ties:13,tighter:6,tightli:6,tild:52,time:[0,6,8,9,10,11,12,13,15,16,17,18,23,25,26,28,29,30,38,40,42,45,46,49,52,116,118],timehorizon:6,timelin:11,timeout:[6,21,30,46,52,102,116,151],timeout_in_m:151,timeout_typ:[102,151],timer:[6,46],timestamp:[4,9,10,11,13,14,15,17,36,41,52,138],timeunit:41,timeuuid:[9,10,11,17,21],timewindowcompactionstrategi:11,timezon:[17,52],tini:[6,41],tinyint:[9,10,14,17,21],tjake:23,tls_dhe_rsa_with_aes_128_cbc_sha:6,tls_dhe_rsa_with_aes_256_cbc_sha:6,tls_ecdhe_rsa_with_aes_128_cbc_sha:6,tls_ecdhe_rsa_with_aes_256_cbc_sha:6,tls_rsa_with_aes_128_cbc_sha:6,tls_rsa_with_aes_256_cbc_sha:6,toc:4,todai:12,todat:14,todo:[25,29],togeth:[6,11,13,14,41],toggl:49,tojson:15,token:[2,4,6,9,10,12,13,30,41,46,52,60,65,107,108,114,116,121,131,137,168],toler:38,tom:13,tombston:[4,6,11,17,30,45,46,87,138],tombstone_compaction_interv:41,tombstone_threshold:41,tombstonescannedhistogram:46,ton:29,too:[6,11,12,14,21,25,41],tool:[6,12,28,30,36,41,46,49,51],top:[13,21,28,36,46,118,163,164],topcount:[118,164],topic:52,topolog:[6,50,137],toppartit:116,total:[6,13,40,41,46],totalblockedtask:46,totalcommitlogs:46,totalcompactionscomplet:46,totaldiskspaceus:46,totalhint:46,totalhintsinprogress:46,totallat:46,totimestamp:14,touch:[8,30,41],tough:29,tounixtimestamp:14,tour:21,toward:11,tpstat:116,trace:[6,46,103,116,131,152],track:[6,41,46],tracker:28,tradeoff:[0,6],tradit:[41,42],traffic:[6,50],trail:23,transact:[13,20,46,160],transfer:[6,30,49],transform:13,transit:[10,19],translat:6,transpar:[6,30],transport:[6,26,46,69,79,116,157],treat:[0,6,10,30,50],tree:[26,46],tri:41,trigger:[4,6,9,12,15,36,38,42,45,57,116,128],trigger_nam:20,trigger_stat:12,trip:[6,13],trivial:49,troubleshoot:[25,36],truesnapshotss:46,truli:9,truncat:[6,9,10,15,19,102,116,151,166],truncate_stat:12,truncatehint:116,trunk:[24,25,26,28],trust:49,trustor:6,truststor:[6,49],truststore_password:6,truststorepassword:49,tserverfactori:6,ttl:[4,6,9,10,11,14,17,21,45,138],tty:52,tunabl:2,tune:[30,38,41,43],tupl:[6,9,10,12,13,14,15,17],tuple_liter:[12,13],tuple_typ:21,tuplevalu:[10,14],turn:[0,6,28,30,49],twc:[11,41],twice:[6,21],two:[0,6,11,12,13,14,17,26,36,38,41,43,49,50,52],txt:[4,14,24,25,28],type:[0,6,10,11,12,13,14,15,19,25,34,36,43,45,49,52,102,116,151,160],type_hint:12,typeasblob:14,typecodec:14,typic:[0,6,13,30,38,41,43,46,49,52],ubuntu:26,udf:[6,14],udf_stat:12,udfcontext:[10,14],udt:[14,17],udt_liter:12,udt_nam:21,udt_stat:12,udtarg:14,udtnam:14,udtvalu:[10,14],ulimit:30,unabl:[6,25,36],unaffect:21,unavail:[6,11,46,49,51],unblock:46,unbound:21,unchecked_tombstone_compact:41,uncom:[6,46,49],uncommon:28,uncompress:[6,42,46],undelet:41,under:[6,21,23,29,46,49],underli:[6,18,41,49],understand:[6,28,30],unencrypt:[6,49],unexpectedli:21,unfinishedcommit:46,unflush:[40,153],unfortun:29,uniqu:[11,14,21],unit:[21,25,27,41,116,140],unixtimestampof:[10,14],unless:[6,11,13,16,18,19,21,23,40,49,50],unlik:[6,10,13,21],unlimit:[6,30,52],unlog:9,unnecessari:[25,51],unnecessarili:40,unpredict:13,unprepar:46,unquot:12,unquoted_identifi:12,unquoted_nam:11,unrel:28,unreleas:28,unrepair:45,unsecur:49,unset:[6,10,13,17],unsign:21,unspecifi:6,unsubscrib:[8,36],untar:34,until:[0,6,21,38,40,41,42,49,50],unus:6,unusu:25,updat:[6,9,10,11,12,14,15,17,18,19,21,25,28,29,34,36,41,42,46,49,52],update_paramet:13,update_stat:[12,13],upgrad:[6,41,116,167],upgradesst:[38,41,42,116],upload:28,upon:[6,21,38,42],upper:[12,17,41,49],ups:43,upstream:28,uptim:[108,116],url:24,usag:[4,6,11,21,36,38,40,42,46,52],use:[6,9,10,11,12,13,14,16,17,18,19,21,23,25,26,28,29,31,34,35,36,38,40,41,43,46,49,50,51,52,57,87,99,116,118,129,138,164,167],use_stat:12,usecas:41,useconcmarksweepgc:26,usecondcardmark:26,used:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,21,25,26,28,29,30,41,43,46,49,50,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,94,98,100,102,106,107,114,116,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],useecassandra:49,useful:[0,6,11,14,28,41,42,46,51,52,55,57,58,60,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],useparnewgc:26,user1:13,user2:13,user3:13,user4:13,user:[5,6,8,9,10,11,12,13,15,16,17,18,25,28,30,34,38,41,42,43,49,52,60,76,116],user_count:13,user_defined_typ:21,user_funct:19,user_nam:13,user_occup:13,user_opt:19,useract:13,userid:[11,13,14],userindex:16,usernam:[6,13,14,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],uses:[0,4,6,11,12,13,14,16,19,20,29,30,49],usethreadprior:26,using:[4,6,10,11,12,13,14,18,19,21,26,28,29,33,34,35,36,38,42,43,45,46,49,51,52,60,121,138,153],usr:52,usual:[6,13,21,24,29,38,49,131],utc:[17,52],utd:11,utf8:[21,52],utf8typ:9,utf:52,util:[14,25,41,52],uuid:[9,10,11,12,17,21],val0:11,val1:11,val:14,valid:[6,10,11,12,13,14,17,21,30,41,42,46,49,52,131,138,160],validationexecutor:46,valu:[6,9,10,11,12,13,14,16,17,21,25,26,30,38,41,46,49,50,52,76,103,107,116,139,143,144,145,146,147,149,150,151,152],value1:13,value2:13,value_in_kb_per_sec:[139,146],value_in_m:149,value_in_mb:[143,147,150],valueof:14,varchar:[9,11,14,17,21],vari:[6,42],variabl:[6,10,12,17,21,26,33],variant:12,varieti:40,varint:[9,11,14,17,21],variou:[26,29,43,49],veri:[6,11,13,28,29,30,38,41,42,43],verifi:[28,30,32,34,42,107,116,160],version:[5,6,9,11,14,15,21,26,28,32,34,41,46,51,59,64,74,84,116,167,168],vertic:52,via:[6,8,10,19,25,30,31,41,42,43,46,49,50],view:[6,10,11,12,15,19,36,46,52,93,116,145,170],view_nam:18,viewbuildstatu:116,viewlockacquiretim:46,viewmutationstag:46,viewpendingmut:46,viewreadtim:46,viewreplicasattempt:46,viewreplicassuccess:46,viewwrit:46,viewwritelat:46,virtual:[0,6,30,41,46,51],visibl:[11,19,23,38],vnode:[6,42],volum:[6,40,42],vulner:[6,49],wai:[4,6,12,15,17,18,21,24,26,29,30,41,42,131],wait:[0,6,11,28,30,46,116,133],waitingoncommit:46,waitingonfreememtablespac:46,waitingonsegmentalloc:46,want:[6,11,13,26,28,29,30,49,51],warmup:[116,141],warn:[6,11,23,29,45,131],washington:21,wasn:10,wast:6,watch:29,weaker:0,websit:[29,34],week:21,weight:[6,46,80],welcom:8,well:[6,11,13,14,17,21,25,26,40,42,43,49,50,116,134],went:46,were:[6,9,10,19,25,26,41,46],what:[11,13,21,27,29,31,36,41,43,49,52],whatev:[10,13,30],whedon:13,when:[4,6,9,10,11,12,13,14,15,16,17,19,21,23,25,28,29,31,36,38,40,42,43,45,46,49,50,51,52,55,57,58,60,63,65,67,73,77,83,86,87,90,94,98,100,102,106,107,114,118,121,122,123,129,130,131,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,160,162,163,164,166,167,168,170],where:[0,4,6,9,10,11,12,14,16,17,18,19,21,25,29,31,34,38,41,42,49,51,52,80,131],where_claus:13,wherea:[21,49],whether:[0,6,9,11,13,26,41,50,52,80],which:[0,4,5,6,10,11,12,13,14,15,16,18,19,20,21,28,29,30,31,34,35,38,40,41,42,43,46,49,50,51,60,94,98,107,121,131],whichev:[0,6],whitelist:49,whitespac:27,who:[19,28,30],whole:[6,11,13,14,21,41],whose:[11,21,160],why:[25,28,36],wide:[4,40],width:12,wiki:[6,26],wildcard:[13,19],window:[0,6,45,46,49,97,105,116,149],winner:30,wip:[26,28],wipe:[30,51],wire:30,wise:11,wish:[6,41,46],within:[0,4,6,11,12,13,16,28,30,41,43,46,49],withing:6,without:[6,11,12,13,14,19,21,24,26,28,29,30,40,43,46,49,52,55,107,116,123],wmem_max:6,won:[6,13,24],wont:41,word:[10,11,12,18,19,21,30],work:[6,10,11,14,15,17,23,24,26,27,29,30,41,43,46,49,50,51,52],worker:52,workload:[6,25,38,41,43],workspac:26,worktre:26,worri:[28,30],wors:[6,50],worst:[6,28],worthwhil:6,would:[6,12,13,14,17,19,26,28,29,36,41,42,43,49,50],wrap:50,write:[0,4,6,10,11,13,21,23,25,29,30,40,41,42,43,46,49,50,51,52,75,102,116,151,163],write_lat:163,write_request_timeout:30,writelat:46,writer:[6,23],writetim:[9,14],writetimeoutexcept:6,written:[4,6,20,30,38,41,42,46],wrong:6,wrte:46,www:[6,11,34],xlarg:43,xml:31,xmn220m:26,xms1024m:26,xmx1024m:26,xmx:43,xss256k:26,xvf:34,yaml:[6,14,31,34,46,49,50,51,61,76,80,116,134,163,165],year:[13,21],yes:[9,11,49],yet:[11,46],yield:[13,51],you:[5,6,8,10,11,12,13,14,16,17,18,20,21,23,24,26,27,29,30,31,32,33,34,35,36,41,46,49,50,51,52,55,116,153],younger:14,your:[0,5,6,8,10,11,12,23,26,28,29,30,31,34,36,41,43,49,50,52],yourself:[24,29],yyyi:[17,21],z_0:[11,16,18],zero:[6,10,30,46,50],zip:21,zipcod:21,zone:[6,21,50],zzzzz:28},titles:["Dynamo","Guarantees","Architecture","Overview","Storage Engine","Reporting Bugs and Contributing","Cassandra Configuration File","Configuring Cassandra","Contact us","Appendices","Changes","Data Definition","Definitions","Data Manipulation","Functions","The Cassandra Query Language (CQL)","Secondary Indexes","JSON Support","Materialized Views","Security","Triggers","Data Types","Data Modeling","Code Style","How-to Commit","Review Checklist","Building and IDE Integration","Cassandra Development","Contributing Code Changes","Testing","Frequently Asked Questions","Configuring Cassandra","Client drivers","Getting Started","Installing Cassandra","Inserting and querying","Welcome to Apache Cassandra&#8217;s documentation!","Backups","Bloom Filters","Bulk Loading","Change Data Capture","Compaction","Compression","Hardware Choices","Hints","Operating Cassandra","Monitoring","Read repair","Repair","Security","Snitch","Adding, replacing, moving and removing nodes","cqlsh: the CQL shell","Cassandra Tools","Nodetool","assassinate","bootstrap","cleanup","clearsnapshot","clientstats","compact","compactionhistory","compactionstats","decommission","describecluster","describering","disableauditlog","disableautocompaction","disablebackup","disablebinary","disablefullquerylog","disablegossip","disablehandoff","disablehintsfordc","disableoldprotocolversions","drain","enableauditlog","enableautocompaction","enablebackup","enablebinary","enablefullquerylog","enablegossip","enablehandoff","enablehintsfordc","enableoldprotocolversions","failuredetector","flush","garbagecollect","gcstats","getbatchlogreplaythrottle","getcompactionthreshold","getcompactionthroughput","getconcurrentcompactors","getconcurrentviewbuilders","getendpoints","getinterdcstreamthroughput","getlogginglevels","getmaxhintwindow","getreplicas","getseeds","getsstables","getstreamthroughput","gettimeout","gettraceprobability","gossipinfo","handoffwindow","help","import","info","invalidatecountercache","invalidatekeycache","invalidaterowcache","join","listsnapshots","move","netstats","Nodetool","pausehandoff","profileload","proxyhistograms","rangekeysample","rebuild","rebuild_index","refresh","refreshsizeestimates","reloadlocalschema","reloadseeds","reloadssl","reloadtriggers","relocatesstables","removenode","repair","repair_admin","replaybatchlog","resetfullquerylog","resetlocalschema","resumehandoff","ring","scrub","setbatchlogreplaythrottle","setcachecapacity","setcachekeystosave","setcompactionthreshold","setcompactionthroughput","setconcurrentcompactors","setconcurrentviewbuilders","sethintedhandoffthrottlekb","setinterdcstreamthroughput","setlogginglevel","setmaxhintwindow","setstreamthroughput","settimeout","settraceprobability","snapshot","status","statusautocompaction","statusbackup","statusbinary","statusgossip","statushandoff","stop","stopdaemon","tablehistograms","tablestats","toppartitions","tpstats","truncatehints","upgradesstables","verify","version","viewbuildstatus","Troubleshooting"],titleterms:{"class":50,"function":[13,14,17],"import":[23,107],"long":29,"new":30,"static":11,"switch":41,Adding:51,IDE:26,IDEs:23,LCS:41,TLS:49,The:[11,13,15,17,41],USE:11,Use:42,Uses:42,Using:26,Will:30,With:49,access:49,add:30,address:30,advanc:42,after:51,aggreg:14,alias:13,all:[19,30],alloc:51,allocate_tokens_for_keyspac:6,allow:13,alter:[11,18,19,21],ani:30,apach:36,appendic:9,appendix:9,architectur:2,ask:30,assassin:55,assign:51,auth:49,authent:[6,19,49],author:[6,49],auto_snapshot:6,automat:19,avg:14,back_pressure_en:6,back_pressure_strategi:6,backup:37,batch:[13,30],batch_size_fail_threshold_in_kb:6,batch_size_warn_threshold_in_kb:6,batchlog_replay_throttle_in_kb:6,befor:28,benefit:42,binari:34,blob:[14,30],bloom:38,boilerpl:23,bootstrap:[30,41,51,56],branch:28,broadcast_address:6,broadcast_rpc_address:6,buffer_pool_use_heap_if_exhaust:6,bufferpool:46,bug:[5,28],build:26,bulk:[30,39],cach:[11,46,49],call:30,can:30,captur:[40,52],cas_contention_timeout_in_m:6,cassandra:[6,7,15,17,26,27,29,30,31,34,36,40,45,49,53],cast:14,cdc:40,cdc_enabl:6,cdc_free_space_check_interval_m:6,cdc_raw_directori:6,cdc_total_space_in_mb:6,chang:[10,28,30,31,38,40,41],characterist:21,checklist:25,choic:43,choos:28,circleci:29,claus:13,cleanup:[51,57],clear:52,clearsnapshot:58,client:[32,35,46,49],client_encryption_opt:6,clientstat:59,clojur:32,cloud:43,cluster:[11,30],cluster_nam:6,code:[23,28],collect:[21,41],column:11,column_index_cache_size_in_kb:6,column_index_size_in_kb:6,command:[26,41,52],comment:12,commit:24,commit_failure_polici:6,commitlog:[4,46],commitlog_compress:6,commitlog_directori:6,commitlog_segment_size_in_mb:6,commitlog_sync:6,commitlog_sync_batch_window_in_m:6,commitlog_sync_period_in_m:6,commitlog_total_space_in_mb:6,commitlogseg:40,common:[11,41,43],compact:[9,11,41,46,60],compaction_large_partition_warning_threshold_mb:6,compaction_throughput_mb_per_sec:6,compactionhistori:61,compactionstat:62,compactionstrategi:41,compat:52,compress:[11,42],concern:41,concurrent_compactor:6,concurrent_counter_writ:6,concurrent_materialized_view_writ:6,concurrent_read:6,concurrent_writ:6,condition:19,configur:[6,7,31,40,42],connect:30,consider:11,consist:[0,52],constant:12,contact:8,contribut:[5,28],control:19,convent:[12,23],convers:14,copi:52,count:14,counter:[13,21],counter_cache_keys_to_sav:6,counter_cache_save_period:6,counter_cache_size_in_mb:6,counter_write_request_timeout_in_m:6,cpu:43,cql:[9,15,46,52],cqlsh:[35,52],cqlshrc:52,creat:[11,14,16,18,19,20,21,28],credenti:19,credentials_update_interval_in_m:6,credentials_validity_in_m:6,cross_node_timeout:6,cstar_perf:29,custom:21,cython:52,data:[11,13,17,19,21,22,30,40,41,51],data_file_directori:6,databas:19,date:21,dead:51,debian:34,debug:26,decommiss:63,defin:[14,21],definit:[11,12],defragment:41,delet:[13,30,41],depend:52,describ:[52,65],describeclust:64,detail:41,detect:0,develop:27,dies:30,directori:[31,41],disabl:40,disableauditlog:66,disableautocompact:67,disablebackup:68,disablebinari:69,disablefullquerylog:70,disablegossip:71,disablehandoff:72,disablehintsfordc:73,disableoldprotocolvers:74,disk:[30,43],disk_failure_polici:6,disk_optimization_strategi:6,document:36,doe:30,drain:75,driver:[32,35],drop:[9,11,14,16,18,19,20,21,30],droppedmessag:46,dtest:29,durat:21,dynam:50,dynamic_snitch_badness_threshold:6,dynamic_snitch_reset_interval_in_m:6,dynamic_snitch_update_interval_in_m:6,dynamo:0,each:30,eclips:26,email:30,enabl:[40,49],enable_materialized_view:6,enable_scripted_user_defined_funct:6,enable_user_defined_funct:6,enableauditlog:76,enableautocompact:77,enablebackup:78,enablebinari:79,enablefullquerylog:80,enablegossip:81,enablehandoff:82,enablehintsfordc:83,enableoldprotocolvers:84,encod:17,encrypt:49,endpoint_snitch:6,engin:4,entri:30,environ:31,erlang:32,error:30,even:30,except:23,exist:30,exit:52,expand:52,expir:41,factor:30,fail:[30,51],failur:[0,30],failuredetector:85,file:[6,23,34],file_cache_size_in_mb:6,filedescriptorratio:46,filter:[13,38],fix:28,flush:86,format:23,frequent:30,from:[26,30,34,52],fromjson:17,fulli:41,further:40,garbag:41,garbagecollect:87,garbagecollector:46,gc_grace_second:41,gc_log_threshold_in_m:6,gc_warn_threshold_in_m:6,gcstat:88,gener:23,get:33,getbatchlogreplaythrottl:89,getcompactionthreshold:90,getcompactionthroughput:91,getconcurrentcompactor:92,getconcurrentviewbuild:93,getendpoint:94,getinterdcstreamthroughput:95,getlogginglevel:96,getmaxhintwindow:97,getreplica:98,getse:99,getsstabl:100,getstreamthroughput:101,gettimeout:102,gettraceprob:103,give:30,gossip:0,gossipinfo:104,grace:41,grant:19,group:13,guarante:1,handl:23,handoffwindow:105,hang:51,happen:30,hardwar:43,haskel:32,heap:30,help:[52,106],hint:44,hinted_handoff_disabled_datacent:6,hinted_handoff_en:6,hinted_handoff_throttle_in_kb:6,hintedhandoff:46,hints_compress:6,hints_directori:6,hints_flush_period_in_m:6,host:[30,52],how:[24,30],idea:26,identifi:12,impact:42,incremental_backup:6,index:[16,46],index_summary_capacity_in_mb:6,index_summary_resize_interval_in_minut:6,info:108,initial_token:6,insert:[13,17,35],instal:34,integr:[26,49],intellij:26,inter:49,inter_dc_stream_throughput_outbound_megabits_per_sec:6,inter_dc_tcp_nodelai:6,intern:[19,49],internode_authent:6,internode_compress:6,internode_recv_buff_size_in_byt:6,internode_send_buff_size_in_byt:6,invalidatecountercach:109,invalidatekeycach:110,invalidaterowcach:111,irc:8,java:[30,32],jconsol:30,jmx:[30,41,46,49],join:[30,112],json:17,jvm:46,kei:[11,16,18],key_cache_keys_to_sav:6,key_cache_save_period:6,key_cache_size_in_mb:6,keyspac:[11,30,46],keyword:[9,12],lang:30,languag:15,larg:30,level:[0,41],limit:13,line:[26,52],list:[8,19,21,30],listen:30,listen_address:[6,30],listen_interfac:6,listen_interface_prefer_ipv6:6,listen_on_broadcast_address:6,listsnapshot:113,liter:21,live:30,load:[30,39],locat:31,log:[30,31,41],login:52,lot:30,made:30,mail:8,main:31,major:41,manipul:13,manual:51,map:[16,21,30],materi:18,max:[14,30],max_hint_window_in_m:6,max_hints_delivery_thread:6,max_hints_file_size_in_mb:6,max_value_size_in_mb:6,maxtimeuuid:14,mean:30,memori:[30,43,46],memorypool:46,memtabl:4,memtable_allocation_typ:6,memtable_cleanup_threshold:6,memtable_flush_writ:6,memtable_heap_space_in_mb:6,memtable_offheap_space_in_mb:6,merg:41,messag:30,method:30,metric:46,min:14,minor:41,mintimeuuid:14,model:22,monitor:[46,51],more:[30,41],move:[51,114],movement:51,multilin:23,nativ:[14,21],native_transport_max_concurrent_connect:6,native_transport_max_concurrent_connections_per_ip:6,native_transport_max_frame_size_in_mb:6,native_transport_max_thread:6,native_transport_port:6,native_transport_port_ssl:6,net:32,netstat:115,networktopologystrategi:0,newer:26,node:[30,49,51],nodej:32,nodetool:[30,41,54,116],noteworthi:21,now:14,num_token:6,one:30,onli:30,oper:[30,41,42,45],option:[11,18,41,52],order:[11,13],otc_backlog_expiration_interval_m:6,otc_coalescing_enough_coalesced_messag:6,otc_coalescing_strategi:6,otc_coalescing_window_u:6,other:[11,30],outofmemoryerror:30,overview:[3,40],packag:34,page:52,paramet:[13,40,41],partit:11,partition:6,password:49,patch:28,pausehandoff:117,perform:29,permiss:19,permissions_update_interval_in_m:6,permissions_validity_in_m:6,phi_convict_threshold:6,php:32,pick:0,point:30,port:30,prepar:12,prepared_statements_cache_size_mb:6,prerequisit:34,primari:[11,18],profileload:118,progress:51,project:26,properti:31,proxyhistogram:119,python:32,pytz:52,queri:[15,35],question:30,rang:[0,51],range_request_timeout_in_m:6,rangekeysampl:120,read:[40,47],read_request_timeout_in_m:6,rebuild:121,rebuild_index:122,refresh:123,refreshsizeestim:124,refus:30,releas:28,reloadlocalschema:125,reloadse:126,reloadssl:127,reloadtrigg:128,relocatesst:129,remot:30,remov:[41,51],removenod:130,repair:[41,47,48,131],repair_admin:132,replac:51,replaybatchlog:133,replic:[0,30],report:[5,30,46],request:46,request_schedul:6,request_scheduler_id:6,request_scheduler_opt:6,request_timeout_in_m:6,reserv:9,resetfullquerylog:134,resetlocalschema:135,result:13,resum:51,resumehandoff:136,revers:11,review:25,revok:19,rhel:30,right:28,ring:[0,30,137],role:[19,49],role_manag:6,roles_update_interval_in_m:6,roles_validity_in_m:6,row_cache_class_nam:6,row_cache_keys_to_sav:6,row_cache_save_period:6,row_cache_size_in_mb:6,rpc_address:6,rpc_interfac:6,rpc_interface_prefer_ipv6:6,rpc_keepal:6,rpc_max_thread:6,rpc_min_thread:6,rpc_port:6,rpc_recv_buff_size_in_byt:6,rpc_send_buff_size_in_byt:6,rpc_server_typ:6,rubi:32,run:29,runtim:31,rust:32,safeti:6,sai:30,same:30,saved_caches_directori:6,scala:32,scalar:14,scrub:138,secondari:16,secur:[19,49],see:30,seed:30,seed_provid:6,select:[13,17,18],selector:13,serial:52,server_encryption_opt:6,session:52,set:[19,21,26,30],setbatchlogreplaythrottl:139,setcachecapac:140,setcachekeystosav:141,setcompactionthreshold:142,setcompactionthroughput:143,setconcurrentcompactor:144,setconcurrentviewbuild:145,sethintedhandoffthrottlekb:146,setinterdcstreamthroughput:147,setlogginglevel:148,setmaxhintwindow:149,setstreamthroughput:150,settimeout:151,settraceprob:152,setup:26,share:52,shell:52,show:[30,52],signatur:14,simplestrategi:0,singl:[30,41],size:41,slow_query_log_timeout_in_m:6,snapshot:153,snapshot_before_compact:6,snitch:50,sourc:[26,52],special:52,speed:30,ssl:49,ssl_storage_port:6,sstabl:[4,41,46],sstable_preemptive_open_interval_in_mb:6,stai:30,standard:49,start:[26,28,33],start_native_transport:6,start_rpc:6,starv:41,statement:[12,18,23],statu:154,statusautocompact:155,statusbackup:156,statusbinari:157,statusgossip:158,statushandoff:159,stc:41,stop:160,stopdaemon:161,storag:[4,9,46],storage_port:6,store:30,strategi:41,stream:[30,46,51],stream_throughput_outbound_megabits_per_sec:6,streaming_keep_alive_period_in_sec:6,stress:29,style:23,sum:14,support:17,tabl:[11,40,46],tablehistogram:162,tablestat:163,tarbal:34,term:12,test:[26,29],than:30,thei:30,though:30,threadpool:46,threshold:6,thrift_framed_transport_size_in_mb:6,thrift_prepared_statements_cache_size_mb:6,tick:28,tier:41,time:[14,21,41],timestamp:[21,30],timeuuid:14,timewindowcompactionstrategi:41,tock:28,todo:[0,1,3,4,11,22,37,39,44,47,48,54],tojson:17,token:[0,14,51],tombston:41,tombstone_failure_threshold:6,tombstone_warn_threshold:6,tool:[29,53],top:30,toppartit:164,tpstat:165,trace:52,tracetype_query_ttl:6,tracetype_repair_ttl:6,transparent_data_encryption_opt:6,trickle_fsync:6,trickle_fsync_interval_in_kb:6,trigger:[20,41],troubleshoot:171,truncat:11,truncate_request_timeout_in_m:6,truncatehint:166,ttl:[13,41],tunabl:0,tupl:21,two:30,type:[9,17,21,41,46],udt:21,unabl:30,unit:[26,29],unlog:13,unlogged_batch_across_partitions_warn_threshold:6,unrepair:41,unsubscrib:30,updat:[13,30],upgradesst:167,usag:[30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],use:30,user:[14,19,21],using:[30,41],uuid:14,variabl:31,verifi:168,version:[10,52,169],view:18,viewbuildstatu:170,warn:40,welcom:36,what:[28,30],when:[30,41],where:13,whitespac:23,why:[30,41],window:41,windows_timer_interv:6,without:41,work:[21,28],write_request_timeout_in_m:6,writetim:13,yaml:40,you:28}})
\ No newline at end of file
+Search.setIndex({docnames:["architecture/dynamo","architecture/guarantees","architecture/index","architecture/overview","architecture/storage_engine","bugs","configuration/cassandra_config_file","configuration/index","contactus","cql/appendices","cql/changes","cql/ddl","cql/definitions","cql/dml","cql/functions","cql/index","cql/indexes","cql/json","cql/mvs","cql/security","cql/triggers","cql/types","data_modeling/index","development/code_style","development/how_to_commit","development/how_to_review","development/ide","development/index","development/patches","development/testing","faq/index","getting_started/configuring","getting_started/drivers","getting_started/index","getting_started/installing","getting_started/querying","index","operating/backups","operating/bloom_filters","operating/bulk_loading","operating/cdc","operating/compaction","operating/compression","operating/hardware","operating/hints","operating/index","operating/metrics","operating/read_repair","operating/repair","operating/security","operating/snitch","operating/topo_changes","tools/cqlsh","tools/index","tools/nodetool","tools/nodetool/assassinate","tools/nodetool/bootstrap","tools/nodetool/cleanup","tools/nodetool/clearsnapshot","tools/nodetool/clientstats","tools/nodetool/compact","tools/nodetool/compactionhistory","tools/nodetool/compactionstats","tools/nodetool/decommission","tools/nodetool/describecluster","tools/nodetool/describering","tools/nodetool/disableauditlog","tools/nodetool/disableautocompaction","tools/nodetool/disablebackup","tools/nodetool/disablebinary","tools/nodetool/disablefullquerylog","tools/nodetool/disablegossip","tools/nodetool/disablehandoff","tools/nodetool/disablehintsfordc","tools/nodetool/disableoldprotocolversions","tools/nodetool/drain","tools/nodetool/enableauditlog","tools/nodetool/enableautocompaction","tools/nodetool/enablebackup","tools/nodetool/enablebinary","tools/nodetool/enablefullquerylog","tools/nodetool/enablegossip","tools/nodetool/enablehandoff","tools/nodetool/enablehintsfordc","tools/nodetool/enableoldprotocolversions","tools/nodetool/failuredetector","tools/nodetool/flush","tools/nodetool/garbagecollect","tools/nodetool/gcstats","tools/nodetool/getbatchlogreplaythrottle","tools/nodetool/getcompactionthreshold","tools/nodetool/getcompactionthroughput","tools/nodetool/getconcurrency","tools/nodetool/getconcurrentcompactors","tools/nodetool/getconcurrentviewbuilders","tools/nodetool/getendpoints","tools/nodetool/getinterdcstreamthroughput","tools/nodetool/getlogginglevels","tools/nodetool/getmaxhintwindow","tools/nodetool/getreplicas","tools/nodetool/getseeds","tools/nodetool/getsstables","tools/nodetool/getstreamthroughput","tools/nodetool/gettimeout","tools/nodetool/gettraceprobability","tools/nodetool/gossipinfo","tools/nodetool/handoffwindow","tools/nodetool/help","tools/nodetool/import","tools/nodetool/info","tools/nodetool/invalidatecountercache","tools/nodetool/invalidatekeycache","tools/nodetool/invalidaterowcache","tools/nodetool/join","tools/nodetool/listsnapshots","tools/nodetool/move","tools/nodetool/netstats","tools/nodetool/nodetool","tools/nodetool/pausehandoff","tools/nodetool/profileload","tools/nodetool/proxyhistograms","tools/nodetool/rangekeysample","tools/nodetool/rebuild","tools/nodetool/rebuild_index","tools/nodetool/refresh","tools/nodetool/refreshsizeestimates","tools/nodetool/reloadlocalschema","tools/nodetool/reloadseeds","tools/nodetool/reloadssl","tools/nodetool/reloadtriggers","tools/nodetool/relocatesstables","tools/nodetool/removenode","tools/nodetool/repair","tools/nodetool/repair_admin","tools/nodetool/replaybatchlog","tools/nodetool/resetfullquerylog","tools/nodetool/resetlocalschema","tools/nodetool/resumehandoff","tools/nodetool/ring","tools/nodetool/scrub","tools/nodetool/setbatchlogreplaythrottle","tools/nodetool/setcachecapacity","tools/nodetool/setcachekeystosave","tools/nodetool/setcompactionthreshold","tools/nodetool/setcompactionthroughput","tools/nodetool/setconcurrency","tools/nodetool/setconcurrentcompactors","tools/nodetool/setconcurrentviewbuilders","tools/nodetool/sethintedhandoffthrottlekb","tools/nodetool/setinterdcstreamthroughput","tools/nodetool/setlogginglevel","tools/nodetool/setmaxhintwindow","tools/nodetool/setstreamthroughput","tools/nodetool/settimeout","tools/nodetool/settraceprobability","tools/nodetool/sjk","tools/nodetool/snapshot","tools/nodetool/status","tools/nodetool/statusautocompaction","tools/nodetool/statusbackup","tools/nodetool/statusbinary","tools/nodetool/statusgossip","tools/nodetool/statushandoff","tools/nodetool/stop","tools/nodetool/stopdaemon","tools/nodetool/tablehistograms","tools/nodetool/tablestats","tools/nodetool/toppartitions","tools/nodetool/tpstats","tools/nodetool/truncatehints","tools/nodetool/upgradesstables","tools/nodetool/verify","tools/nodetool/version","tools/nodetool/viewbuildstatus","troubleshooting/index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,"sphinx.ext.todo":1,sphinx:54},filenames:["architecture/dynamo.rst","architecture/guarantees.rst","architecture/index.rst","architecture/overview.rst","architecture/storage_engine.rst","bugs.rst","configuration/cassandra_config_file.rst","configuration/index.rst","contactus.rst","cql/appendices.rst","cql/changes.rst","cql/ddl.rst","cql/definitions.rst","cql/dml.rst","cql/functions.rst","cql/index.rst","cql/indexes.rst","cql/json.rst","cql/mvs.rst","cql/security.rst","cql/triggers.rst","cql/types.rst","data_modeling/index.rst","development/code_style.rst","development/how_to_commit.rst","development/how_to_review.rst","development/ide.rst","development/index.rst","development/patches.rst","development/testing.rst","faq/index.rst","getting_started/configuring.rst","getting_started/drivers.rst","getting_started/index.rst","getting_started/installing.rst","getting_started/querying.rst","index.rst","operating/backups.rst","operating/bloom_filters.rst","operating/bulk_loading.rst","operating/cdc.rst","operating/compaction.rst","operating/compression.rst","operating/hardware.rst","operating/hints.rst","operating/index.rst","operating/metrics.rst","operating/read_repair.rst","operating/repair.rst","operating/security.rst","operating/snitch.rst","operating/topo_changes.rst","tools/cqlsh.rst","tools/index.rst","tools/nodetool.rst","tools/nodetool/assassinate.rst","tools/nodetool/bootstrap.rst","tools/nodetool/cleanup.rst","tools/nodetool/clearsnapshot.rst","tools/nodetool/clientstats.rst","tools/nodetool/compact.rst","tools/nodetool/compactionhistory.rst","tools/nodetool/compactionstats.rst","tools/nodetool/decommission.rst","tools/nodetool/describecluster.rst","tools/nodetool/describering.rst","tools/nodetool/disableauditlog.rst","tools/nodetool/disableautocompaction.rst","tools/nodetool/disablebackup.rst","tools/nodetool/disablebinary.rst","tools/nodetool/disablefullquerylog.rst","tools/nodetool/disablegossip.rst","tools/nodetool/disablehandoff.rst","tools/nodetool/disablehintsfordc.rst","tools/nodetool/disableoldprotocolversions.rst","tools/nodetool/drain.rst","tools/nodetool/enableauditlog.rst","tools/nodetool/enableautocompaction.rst","tools/nodetool/enablebackup.rst","tools/nodetool/enablebinary.rst","tools/nodetool/enablefullquerylog.rst","tools/nodetool/enablegossip.rst","tools/nodetool/enablehandoff.rst","tools/nodetool/enablehintsfordc.rst","tools/nodetool/enableoldprotocolversions.rst","tools/nodetool/failuredetector.rst","tools/nodetool/flush.rst","tools/nodetool/garbagecollect.rst","tools/nodetool/gcstats.rst","tools/nodetool/getbatchlogreplaythrottle.rst","tools/nodetool/getcompactionthreshold.rst","tools/nodetool/getcompactionthroughput.rst","tools/nodetool/getconcurrency.rst","tools/nodetool/getconcurrentcompactors.rst","tools/nodetool/getconcurrentviewbuilders.rst","tools/nodetool/getendpoints.rst","tools/nodetool/getinterdcstreamthroughput.rst","tools/nodetool/getlogginglevels.rst","tools/nodetool/getmaxhintwindow.rst","tools/nodetool/getreplicas.rst","tools/nodetool/getseeds.rst","tools/nodetool/getsstables.rst","tools/nodetool/getstreamthroughput.rst","tools/nodetool/gettimeout.rst","tools/nodetool/gettraceprobability.rst","tools/nodetool/gossipinfo.rst","tools/nodetool/handoffwindow.rst","tools/nodetool/help.rst","tools/nodetool/import.rst","tools/nodetool/info.rst","tools/nodetool/invalidatecountercache.rst","tools/nodetool/invalidatekeycache.rst","tools/nodetool/invalidaterowcache.rst","tools/nodetool/join.rst","tools/nodetool/listsnapshots.rst","tools/nodetool/move.rst","tools/nodetool/netstats.rst","tools/nodetool/nodetool.rst","tools/nodetool/pausehandoff.rst","tools/nodetool/profileload.rst","tools/nodetool/proxyhistograms.rst","tools/nodetool/rangekeysample.rst","tools/nodetool/rebuild.rst","tools/nodetool/rebuild_index.rst","tools/nodetool/refresh.rst","tools/nodetool/refreshsizeestimates.rst","tools/nodetool/reloadlocalschema.rst","tools/nodetool/reloadseeds.rst","tools/nodetool/reloadssl.rst","tools/nodetool/reloadtriggers.rst","tools/nodetool/relocatesstables.rst","tools/nodetool/removenode.rst","tools/nodetool/repair.rst","tools/nodetool/repair_admin.rst","tools/nodetool/replaybatchlog.rst","tools/nodetool/resetfullquerylog.rst","tools/nodetool/resetlocalschema.rst","tools/nodetool/resumehandoff.rst","tools/nodetool/ring.rst","tools/nodetool/scrub.rst","tools/nodetool/setbatchlogreplaythrottle.rst","tools/nodetool/setcachecapacity.rst","tools/nodetool/setcachekeystosave.rst","tools/nodetool/setcompactionthreshold.rst","tools/nodetool/setcompactionthroughput.rst","tools/nodetool/setconcurrency.rst","tools/nodetool/setconcurrentcompactors.rst","tools/nodetool/setconcurrentviewbuilders.rst","tools/nodetool/sethintedhandoffthrottlekb.rst","tools/nodetool/setinterdcstreamthroughput.rst","tools/nodetool/setlogginglevel.rst","tools/nodetool/setmaxhintwindow.rst","tools/nodetool/setstreamthroughput.rst","tools/nodetool/settimeout.rst","tools/nodetool/settraceprobability.rst","tools/nodetool/sjk.rst","tools/nodetool/snapshot.rst","tools/nodetool/status.rst","tools/nodetool/statusautocompaction.rst","tools/nodetool/statusbackup.rst","tools/nodetool/statusbinary.rst","tools/nodetool/statusgossip.rst","tools/nodetool/statushandoff.rst","tools/nodetool/stop.rst","tools/nodetool/stopdaemon.rst","tools/nodetool/tablehistograms.rst","tools/nodetool/tablestats.rst","tools/nodetool/toppartitions.rst","tools/nodetool/tpstats.rst","tools/nodetool/truncatehints.rst","tools/nodetool/upgradesstables.rst","tools/nodetool/verify.rst","tools/nodetool/version.rst","tools/nodetool/viewbuildstatus.rst","troubleshooting/index.rst"],objects:{},objnames:{},objtypes:{},terms:{"00t89":21,"03t04":21,"0x0000000000000003":14,"0x00000004":13,"100mb":6,"10mb":6,"10s":52,"10x":[6,41],"11e6":52,"128th":4,"12gb":43,"12h30m":21,"15m":46,"160mb":41,"16mb":[30,41],"180kb":6,"19t03":139,"1mo":21,"1st":21,"24h":21,"250m":6,"256mb":6,"256th":6,"29d":21,"2e10":10,"2gb":43,"2nd":[6,11,50],"2xlarg":43,"300s":6,"327e":52,"32gb":43,"32mb":[6,30],"36x":34,"3ff3e5109f22":13,"3gb":42,"3rd":[6,46,50],"40f3":13,"4ae3":13,"4kb":11,"4xlarg":43,"50kb":6,"50mb":[6,41],"512mb":6,"5573e5b09f14":13,"5kb":6,"5mb":41,"64k":6,"64kb":42,"6ms":6,"6tb":43,"7374e9b5ab08c1f1e612bf72293ea14c959b0c3c":24,"75th":46,"86400s":41,"89h4m48":21,"8gb":43,"8th":[6,40],"90th":46,"95ac6470":52,"95th":46,"98th":46,"99th":46,"9th":46,"\u00eatre":9,"abstract":[23,25],"boolean":[9,12,14,17,19,21,52],"break":[28,41],"byte":[6,9,13,21,46,62,80,116,166],"case":[6,10,11,12,13,14,16,17,18,21,24,25,28,29,30,38,43,49,51,52],"catch":23,"class":[6,11,14,21,23,26,29,41,42,45,49,117,129,150],"default":[4,6,10,11,13,14,17,19,21,26,29,30,31,34,38,40,41,42,46,49,51,52,57,76,80,87,116,117,119,122,132,133,139,154,156,167],"enum":9,"export":[26,46,52],"final":[14,19,23,26,41,43,49,133],"float":[9,10,11,12,14,17,21,38,42],"function":[6,9,10,11,12,15,16,18,19,21,25,32,36,49,50,52],"import":[11,14,21,26,27,29,31,41,43,46,52,117],"int":[9,10,11,13,14,17,18,19,21,29,40,42],"long":[6,13,21,24,25,30,41,46],"new":[0,4,6,10,11,14,16,17,18,19,20,21,23,25,26,28,29,33,36,38,41,43,49,51,108,115,117],"null":[9,10,12,13,14,17,18,21,23,52],"public":[6,14,23,29,30,34,49,50],"return":[6,9,11,13,14,16,17,18,19,21,25,132],"short":[6,21],"static":[6,9,10,18,50],"super":49,"switch":[6,10,19,26,30,45,46,49,50],"throw":[6,14,23,29],"true":[6,11,12,17,19,21,26,30,40,41,49,51,52,114,117],"try":[6,11,23,26,28,30,41,54,132],"var":[6,23,34],"void":29,"while":[6,10,11,12,13,21,24,28,38,41,42,43,49,52],AES:6,AND:[9,11,13,14,18,19,49,52],AWS:43,Added:10,Adding:[6,11,19,21,30,36,45,49],And:[11,14,19,49],Are:25,Ave:21,BUT:23,But:[13,15,19,21,23,28,30,52],CAS:6,CFs:[132,139],CLS:52,DCs:6,DNS:30,Doing:10,EBS:43,For:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,20,21,28,29,30,31,34,35,41,43,49,50,52],GCs:6,Has:[6,25],IDE:[27,36],IDEs:[26,27],IDs:[117,157],INTO:[6,9,11,13,14,17,21],IPs:[6,50,138,157],Ids:163,JKS:6,KBs:6,LCS:11,NFS:43,NOT:[6,9,10,11,13,14,16,18,19,20,21],Not:[13,19,28,41,42],ONE:[0,6,46,52],One:[6,29,30,41],PFS:6,Pis:43,Such:21,THE:6,TLS:[6,45],That:[11,12,18,21,28,30,41,52],The:[0,4,6,8,9,10,12,14,16,18,19,20,21,23,24,26,28,29,30,31,34,35,36,38,40,42,43,46,49,50,51,52,57,60,65,67,73,77,83,86,87,90,95,99,101,103,108,115,117,119,123,124,130,132,139,142,143,150,156,157,158,165,167,170,171,173],Their:21,Then:[13,29,30,34,41,49],There:[0,6,10,11,12,13,14,21,26,28,29,30,41,46,49],These:[4,6,11,14,26,46,49,52],USE:[9,14,15],USING:[9,13,16,20,21,41],Use:[11,13,19,30,35,45,52,55,60,117,122,132,163,170],Used:46,Uses:[6,17,45,50],Using:[11,13,29,30,49],WILL:6,WITH:[9,11,12,16,18,19,38,40,41,42,49,52],Will:[6,36,80,117,150],With:[6,13,17,30,41,51,56],Yes:30,_cache_max_entri:49,_if_:6,_must_:6,_trace:46,_udt:14,_update_interval_in_m:49,_use:14,_validity_in_m:49,a278b781fe4b2bda:34,abil:[14,30,42],abilityid:16,abl:[6,14,21,26,29,30,41],about:[4,6,19,26,28,29,30,38,41,50,52,59,117,138],abov:[6,8,11,12,13,14,21,26,28,30,31,40,41,46],absenc:12,abstracttyp:21,accept:[0,6,10,11,12,13,17,28,29,38,51,75,117],access:[6,10,21,26,28,43,45,46],accompani:6,accord:[6,30],accordingli:[6,14,30],account:[6,21,29],accru:[41,46],accumul:[6,41,46],accur:[6,30,38,138],accuraci:[38,119,167],acheiv:49,achiev:[41,46],achil:32,ack:6,acoount:46,acquir:[19,46],across:[6,11,19,28,46,49,50,117,121],action:[6,13],activ:[4,6,28,40,46,52,117,119,167],activetask:46,actual:[4,6,13,20,23,25,30,34,41,50,132],acycl:19,add:[0,6,9,10,11,21,24,25,28,31,34,36,41,49],addamsfamili:11,added:[0,6,10,11,14,25,41],adding:[6,13,14,25,43,52],addit:[0,6,9,11,13,19,21,26,28,31,41,43,46,49,52],addition:[11,13,41],address:[6,8,17,21,26,28,31,36,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],adher:10,adjac:41,adjust:[6,38],adv:34,advanc:[6,45,49],advantag:43,advers:30,advic:[28,30],advis:[6,12,21,30],af08:13,afd:21,affect:[6,25,28,30,41,139],afford:6,after:[5,6,10,11,12,13,14,16,17,18,26,28,30,40,41,43,45,46,49,50,52],afterward:[26,29],afunct:14,again:[6,28,41,51,52],against:[6,11,14,28,29,30,43,51,52,132],agent:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],agentlib:26,aggreg:[6,9,10,13,15,18,19,46,52],aid:12,aim:6,akeyspac:14,algorithm:[6,11,51],alia:[10,13,32],alias:[6,10,18],alic:19,align:23,aliv:6,all:[0,6,9,11,12,13,14,17,18,21,23,24,25,26,28,29,36,38,40,41,46,49,51,52,57,58,59,75,87,92,108,109,114,117,119,121,130,133,139,154,156,158,167,169,170,171],allmemtableslivedatas:46,allmemtablesoffheaps:46,allmemtablesonheaps:46,alloc:[6,30,40,43,46],allocate_tokens_for_keyspac:51,allow:[0,4,6,9,10,11,12,14,16,17,18,21,31,38,40,41,42,43,50],allowallauthent:[6,49],allowallauthor:[6,49],allowallinternodeauthent:6,almost:[6,14,21,41],alon:[6,23],along:[6,13,114,117],alongsid:[35,52],alphabet:23,alphanumer:[11,19],alreadi:[6,11,14,16,18,21,28,41,49,170],also:[0,4,6,10,11,12,13,14,17,18,19,21,26,28,29,30,31,41,43,46,49,51,52,87,171],alter:[9,10,15,17,30,38,40,41,42,49],alter_keyspace_stat:12,alter_role_stat:12,alter_table_instruct:11,alter_table_stat:12,alter_type_modif:21,alter_type_stat:[12,21],alter_user_stat:12,altern:[6,10,11,12,13,17,21,26,28,31,43,49],although:[6,28],alwai:[0,6,9,10,11,13,14,18,21,23,28,29,30,41,43],amend:24,amongst:11,amount:[6,11,13,21,26,28,29,30,41,42,43,46,51,52,132],amplif:[41,43],anaggreg:14,analogu:13,analyt:38,analyz:29,ani:[0,6,10,11,12,13,14,17,18,19,20,21,24,25,26,28,29,31,34,36,40,41,43,46,49,51,52,55,108,114,117,122,139,154],annot:23,anonym:[12,21],anoth:[6,11,14,19,21,29,41,49,52],anotherarg:14,ant:[26,28,29],anti:[6,21],anticip:11,anticompact:[41,163],antientropystag:46,antipattern:43,anymor:[24,41],anyon:23,anyth:41,anywai:6,anywher:13,apach:[2,5,6,7,14,20,23,24,25,26,28,29,30,33,34,41,42,46,49,53],api:[6,8,11,15,17,35,50],appear:[12,14,41,52],append:[21,24,43,46,52],appendic:[15,36],appendix:[12,15],appl:21,appli:[6,9,10,11,12,13,19,21,24,28,29,30,46,52],applic:[6,11,19,23,25,26,49],appreci:28,approach:[4,41,51],appropri:[6,11,19,21,25,28,49,50,51],approxim:[41,46],apt:34,arbitrari:[11,12,21],architectur:[30,36],archiv:[6,40,80],archive_command:80,archive_retri:80,aren:13,arg:[14,117,155],argnam:14,argnum:14,argument:[6,11,13,14,16,17,30,31,42,52,55,56,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],arguments_declar:14,arguments_signatur:14,around:[6,19,41,43,50],arrai:[6,30],arriv:[6,28,30],artifact:26,artifici:11,asap:10,asc:[9,11,13],ascend:[11,13],ascii:[9,14,17,21],asf:26,ask:[5,28,29,36,49],aspect:11,assassin:117,assertionerror:23,assertrow:29,assign:[6,13,30],associ:[6,11],assum:[6,11,14,26,49,50],assumpt:49,astyanax:32,async:[6,49],asynchron:[6,16,30,43],asynchroni:46,atabl:14,atom:[11,13,20,24],atomiclong:46,attach:28,attemp:46,attempt:[0,6,11,16,18,19,21,30,41,46,49,52,133],attent:[23,28],attribut:41,audit:[66,76,117],auditlog:76,auth:6,authent:[10,45,52],authenticatedus:6,author:[9,19,21,45],authorizationproxi:49,auto:[6,30,158],auto_bootstrap:51,autocompact:[41,67,77,117,158],autogener:54,autom:[8,23],automat:[6,13,14,16,26,29,30,34,41,49,51],avail:[0,6,8,11,14,19,26,28,29,34,40,49,50,52,57,87,130,139,150,170],availabil:6,averag:[6,14,41,46],average_live_cells_per_slice_last_five_minut:166,average_s:11,average_tombstones_per_slice_last_five_minut:166,averagefin:14,averagest:14,avg_bucket_s:41,avoid:[6,11,12,23,25,28,38,41,43,49,50,52,171],awai:[26,51,52],awar:[0,11,28,38,42,138],azur:43,b124:13,b70de1d0:13,back:[6,41,46,51,114,117],backend:6,background:[30,34,41,49],backlog:6,backpressur:6,backpressurestrategi:6,backup:[6,36,41,45,51,52,68,78,117,159],backward:[6,10,11,15,19,21],bad:[6,14,30,50],balanc:51,banana:21,band:21,bar:[12,23],bardet:21,bare:6,base:[0,4,6,10,11,13,14,18,19,21,24,28,29,30,41,43,46,49,51],bash:30,basi:[6,30,42],basic:[11,41,43],batch:[6,9,15,29,36,52],batch_remov:46,batch_stat:12,batch_stor:46,batchlog:[13,46,89,117,134,140],be34:13,beatl:21,beca:52,becaus:[6,13,14,34,41,42,49],becom:[4,6,11,14,19,28,41,46,49,51],been:[0,4,6,10,13,14,15,19,21,25,28,41,43,49,139],befor:[0,6,10,11,13,14,16,20,21,26,27,29,32,41,49,50,52,80,156],begin:[9,12,13,29,49,52],beginn:28,begintoken:52,behavior:[0,6,10,14,17,21,23,25,38,41,51,133],behind:[6,23,29,30,41],being:[6,11,13,17,21,25,29,30,38,41,46,51],belong:[11,13,14,46,57,117],below:[6,11,12,13,17,19,21,28,34,41,52,63],benchmark:43,benefici:41,benefit:[6,38,41,43,45],besid:6,best:[6,29,41,49,50],best_effort:6,better:[6,23,28,41,43],between:[0,6,9,10,13,15,28,30,38,41,46,49,51,132,154],beyond:[6,52,171],big:[41,60],bigger:[11,41],biggest:14,bigint:[9,14,17,21],bigintasblob:14,bin:[26,34,35,52],binari:[14,33,69,79,117,160],binauditlogg:76,bind:[6,10,12,14,30],bind_mark:[12,13,18,21],biolog:11,birth:13,birth_year:13,bit:[6,14,17,21,28,30,42,43],bite:30,bitrot:11,bitstr:9,black:6,blank:[6,23,30],bleed:26,blindli:30,blob:[9,10,12,17,21,36,42],blobasbigint:14,blobastyp:14,block:[4,6,11,24,31,41,43,46,49,80],blockedonalloc:6,blog:[6,11,13],blog_til:13,blog_titl:13,bloom:[4,11,36,43,45,46],bloom_filter_false_posit:166,bloom_filter_false_ratio:166,bloom_filter_fp_ch:[11,38],bloom_filter_off_heap_memory_us:166,bloom_filter_space_us:166,bloomfilterdiskspaceus:46,bloomfilterfalseposit:46,bloomfilterfalseratio:46,bloomfilteroffheapmemoryus:46,blunt:49,bnf:12,bob:[13,19],bodi:[11,12],boilerpl:27,boolstyl:52,boost:6,boot:30,bootstrap:[0,6,36,42,45,46,49,117,122,150],born:13,both:[0,6,11,13,14,18,21,24,25,28,30,31,38,41,42,43,46,49,51,52],bottleneck:6,bottom:30,bound:[6,11,12,21,43,49],box:[6,49,50],brace:23,bracket:12,braket:12,branch:[24,25,26,29],branchnam:28,breakpoint:26,breed:29,bring:6,brk:30,broadcast:6,broadcast_address:50,broken:[41,46],brows:6,browser:52,bucket:41,bucket_high:41,bucket_low:41,buffer:[4,6,46],bufferpool:45,bug:[10,24,29,30,36],build:[8,27,29,36,46,117,173],builder:[94,117,147],built:[26,46],bulk:[36,45],bump:10,bunch:23,burn:40,button:30,bytebuff:14,byteorderedpartition:[6,14],bytescompact:46,bytesflush:46,bytestyp:9,c73de1d3:13,cach:[6,30,31,43,45,50,108,110,111,112,117,141,142],cachecleanupexecutor:46,cachenam:46,calcul:[6,38,40,41,46,50],call:[9,11,12,13,14,19,23,31,36,41,43,46,51,117,150],callback:46,caller:23,can:[0,4,5,6,8,9,10,11,12,13,14,16,17,18,19,20,21,23,24,25,26,28,29,31,34,35,36,38,40,41,42,43,46,49,50,51,52,55,57,58,60,65,67,73,77,80,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],cancel:[10,133],candid:41,cannot:[6,9,11,13,14,17,18,19,21,41,49,55,117],cap:[12,91,96,102,117,144,149,152],capabl:[6,30,52],capac:[6,40,46,50,117,119,141,167],captur:[6,36,45],care:[6,41,132],carlo:19,carri:[23,132],cascommit:46,cascontent:[103,153],casprepar:46,caspropos:46,casread:46,cassablanca:21,cassafort:32,cassandra:[0,2,4,5,8,10,11,13,14,19,20,21,23,24,28,32,33,35,38,41,42,43,46,50,51,52,76,80,117,128,132,135,139,164,172],cassandra_hom:[6,40,49],cassandraauthor:[6,49],cassandradaemon:[26,34],cassandralogin:49,cassandrarolemanag:[6,49],casser:32,cassi:32,cast:[10,13,18],caswrit:46,cat:21,categor:46,categori:[11,12,13,14,76],caught:[25,46],caus:[6,18,30,41,49],caution:6,caveat:49,cbc:6,ccm:[25,29],ccmlib:29,cdc:[6,11],cdc_enabl:40,cdc_free_space_check_interval_m:40,cdc_free_space_in_mb:40,cdc_raw:[6,40],cdc_raw_directori:40,cdccompactor:6,cell:[6,21,46,87,171],center:[6,11,21,30,50,51,73,83,117,132],central:[26,49,52],centric:19,certain:[6,9,11,19,29,41,49],certainli:14,certif:[49,117,128],cfname:[101,119,167],cfs:23,chain:19,chanc:38,chang:[6,11,12,15,19,21,24,26,27,33,34,36,42,45,46,49,150],channel:[5,8,28],charact:[11,12,13,17,19,21,23,52],chat:8,cheap:6,check:[0,6,11,13,23,25,26,28,29,30,38,40,41,46,49,108,117,132,171],checklist:[27,28,36],checkout:[26,28],checksum:[11,42,117,171],cherri:24,chess:13,child:52,chmod:49,choic:[6,11,36,41,45],choos:[0,6,11,27,32,43,46],chosen:[0,6,11,14],chown:49,christoph:21,chrome:52,chunk:[4,6,30,42,52],chunk_length_in_kb:[11,42],chunk_length_kb:6,chunk_lenth_in_kb:11,chunkcach:46,chunksiz:52,churn:6,cipher:[6,49],cipher_suit:6,circular:19,citi:21,clash:12,class_nam:6,classpath:[6,14,21,46],claus:[10,11,14,16,17,18,19,23],clean:[6,23,46,57,117,135],cleanli:28,cleanup:[30,41,45,46,87,117,163],clear:[25,28,59,108],clearsnapshot:117,click:[13,26,28,29],client:[0,6,8,10,11,13,17,19,21,25,30,31,33,36,43,45,52,59,117],client_encryption_opt:49,clientrequest:46,clientstat:117,clock:6,clockr:6,clojur:33,clone:[26,30,52],close:[6,15,49],closer:38,cloud:45,cluster:[0,4,6,9,10,13,14,20,21,25,29,31,35,36,41,43,46,49,50,51,52,64,85,89,105,117,140,157],cluster_nam:[31,35],clustering_column:11,clustering_ord:11,cmsparallelremarken:26,coalesc:6,coalescingstrategi:6,code:[6,10,12,14,20,24,25,26,27,29,36,42,46],codestyl:23,col:14,cold:6,collat:6,collect:[6,10,11,12,13,14,15,17,43,45,46,87],collection_liter:12,collection_typ:21,color:[21,52],column1:9,column:[6,9,10,12,13,14,15,16,17,18,21,42,46,52,101,119,139,156,167],column_definit:11,column_nam:[11,13,16],columnfamili:[6,9,23,41],colupdatetimedeltahistogram:46,com:[6,11,14,23,24,49],combin:[4,6,10,40,41],come:[6,9,49],comingl:41,comma:[6,11,12,13,31,49,51,52,76,119,122,167],command:[0,6,24,29,30,31,34,35,42,45,53,55,56,57,58,60,65,67,73,77,80,83,86,87,90,92,95,99,101,103,107,108,115,117,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],comment:[6,11,15,18,23,25,49],commit:[6,8,11,27,28,36,46],commitlog:[2,6,30,31,43,45],commitlog_archiv:6,commitlog_directori:[31,43],commitlog_segment_size_in_mb:30,commitlogread:40,commitlogreadhandl:40,commitlogreplay:40,commitlogseg:[6,45,46],committ:[24,28,29],common:[0,14,15,23,25,28,45,52],common_nam:11,commonli:117,commun:[6,8,25,26,28,30,31,35,49],commut:30,compact:[4,6,15,30,36,38,42,43,45,57,61,62,87,90,91,117,130,139,143,144,150,158,163,170],compacted_partition_maximum_byt:166,compacted_partition_mean_byt:166,compacted_partition_minimum_byt:166,compaction_:163,compaction_window_s:41,compaction_window_unit:41,compactionbyteswritten:46,compactionexecutor:46,compactionhistori:[41,117],compactionid:163,compactionparamet:41,compactionparametersjson:41,compactionstat:[41,117],compactionstrategi:45,compactor:[93,117,146],compar:[6,28,41,46],compat:[6,9,10,11,13,15,19,25,28],compatilibi:21,compet:6,compil:[23,26,52],complain:26,complet:[6,13,14,28,30,41,46,49,51,52,117,131,133],completedtask:46,complex:[6,9,14,21,28],complexarg:14,compliant:[6,14,49],complic:28,compon:[4,11,25,38,46,49,117,150],compos:[11,13,21],composit:11,compound:17,comprehens:25,compress:[4,6,29,36,41,43,45,46],compression_metadata_off_heap_memory_us:166,compressioninfo:4,compressionmetadataoffheapmemoryus:46,compressionratio:46,compressor:[6,11],compris:[4,11,42],compromis:49,comput:[6,14],concaten:14,concept:[15,19,41],concern:[13,14],concret:[12,21],concurr:[6,43,92,93,94,117,132,145,146,147],concurrentmarksweep:43,condens:13,condit:[6,10,12,13,19,21,23,24,41,46,49,52],conditionnotmet:46,conf:[6,30,31,34,46,49,52],config:[46,49,52],configur:[0,4,11,21,26,29,30,33,34,36,45,46,49,50,52,63,80,117,135,150],confirm:[6,8,25,26],conflict:[13,21,24],conform:[18,25],confus:[10,12,30],conjunct:52,connect:[6,11,19,21,26,35,36,46,49,50,52,59,63,116,117],connectednativecli:46,connectedthriftcli:46,connector:[30,32,49],consecut:31,consequ:[11,13,21,43],conserv:6,consid:[0,6,13,21,28,31,38,41,43],consider:[13,21],consist:[2,11,12,13,14,25,49,51],consol:[26,31,52],constant:[10,11,15,17,21],constantli:[6,41],construct:12,constructor:[6,23],consum:[6,29,38,40,46],consumpt:40,contact:[6,11,30,36],contain:[0,6,8,9,10,11,12,13,15,16,18,19,21,26,28,40,41,42,49,52,156],contend:[6,46],content:[4,6,11,12,13,36,41,52,80],contentionhistogram:46,context:[6,9,19,21,28,30,49],contigu:13,continu:[0,6,23,26,29,41,49,50],contrarili:12,contrast:[29,49],contribut:[24,27,29,36],contributor:[24,28,29,34],control:[0,6,10,11,13,15,25,31,34,41,49,50,52],conveni:[9,12,14,17,29,51],convent:[6,11,14,15,24,27,28,29,49,50],convers:10,convert:[10,13,14,41],coordin:[0,6,11,13,14,21,30,46,133],coordinatorreadlat:46,coordinatorscanlat:46,cop:23,copi:[0,30,41],core:[6,14,43,145],correct:[10,25,34,41,42,117,130],correctli:[6,11,30,41,49],correl:[6,10,50],correspond:[6,9,11,13,14,18,21,28,29,30,40,50],corrupt:[6,11,41,42,43,139,171],cost:[6,13,21,42],could:[6,12,21,25,28,41,52],couldn:34,count:[6,9,13,21,30,41,46,51],counter:[6,9,14,43,46,110,117,139,141,142],counter_mut:46,countercach:46,countermutationstag:46,counterwrit:[103,153],countri:[13,21],country_cod:21,coupl:[0,6],cours:[6,13],cover:[25,28,29,30,33,41,46],cpu:[6,11,40,42,45],cqerl:32,cql3:[11,14,25,29,52],cql:[6,10,11,12,13,14,16,17,19,21,29,32,35,36,41,45,49,53,150],cql_type:[11,12,13,14,19,21],cqlc:32,cqldefinit:14,cqlsh:[30,33,34,36,49,53],cqltester:[25,29],crash:43,crc32:4,crc:4,crc_check_chanc:[11,42],creat:[6,9,10,12,13,15,17,26,27,29,30,40,41,42,49,51,52,60],create_aggregate_stat:12,create_function_stat:12,create_index_stat:12,create_keyspace_stat:12,create_materialized_view_stat:12,create_role_stat:12,create_table_stat:12,create_trigger_stat:12,create_type_stat:[12,21],create_user_stat:12,createkeystor:6,createt:29,creation:[6,10,11,13,14,18,21],creator:19,credenti:[6,49],critic:[25,28,49],cross:[6,30,50],crossnodedroppedlat:46,cryptographi:6,csv:52,cuddli:21,curl:[24,34],current:[6,9,11,13,14,19,21,26,28,34,41,46,51,52,82,100,104,106,108,117,131,162,170],currentlyblockedtask:46,custom:[6,9,10,11,14,15,16,19,28,50,52],custom_option1:19,custom_option2:19,custom_typ:[14,21],cute:21,cvh:25,cycl:[6,40,80],daemon:[26,117,164],dai:[17,21,41],daili:80,danger:6,dash:12,data:[0,4,6,10,12,14,15,16,18,25,31,34,36,38,42,43,45,46,49,50,52,55,60,73,80,83,87,108,117,122,132,156,171],data_file_directori:[31,43],data_read:19,data_writ:19,databas:[12,13,15,20,41,43,49],datacent:[0,6,50,73,83,96,117,132,149],datacenter1:6,dataset:6,datastax:[6,11,14,32],datatyp:14,date:[9,10,14,15,17,139],dateof:[10,14],datestamp:17,datetieredcompactionstrategi:[11,41],daylight:21,db_user:49,dba:49,dc1:[6,11,49],dc2:[6,11,49],dcassandra:[41,46,49,51],dclocal_read_repair_ch:[0,11,41],dcom:49,dcpar:132,ddl:[11,52],ddl_statement:12,dead:[6,45,55,117],dead_node_ip:51,deb:34,debian:[30,33],debug:[31,52],decid:[9,41,50],decim:[9,14,17,21,52],decimalsep:52,declar:[11,12,14,21],decod:[17,21],decommiss:[6,51,117],decompress:42,decreas:[6,41],decrement:[13,21],decrypt:6,dedic:6,dedupl:[114,117],deem:6,deeper:28,default_time_to_l:[10,11,13],default_weight:6,defend:30,defin:[0,6,9,10,11,12,13,15,16,17,18,19,20,26,41,46,49,50,51,52,60,117],definit:[9,13,14,15,18,21,36,38],deflat:6,deflatecompressor:[11,42],degrad:6,delet:[6,9,10,11,12,15,17,19,21,28,36,52,80,87,117,169],delete_stat:[12,13],delimit:6,deliv:[0,6],deliveri:[6,117,118,137,148],delta:46,demand:49,deni:30,denorm:21,denot:12,dens:38,depend:[4,6,11,12,13,14,21,25,26,28,29,41],deploi:[30,31],deploy:[6,49,50],deprec:[6,10,11,14,15,30,41],depth:6,desc:[9,11,13,52],descend:[11,13],describ:[2,6,7,9,10,11,12,13,14,15,17,19,21,25,26,28,38,49,53,117],describeclust:117,descript:[6,10,11,14,21,46,52],descriptor:46,design:[14,40,41,43],desir:[16,21,30],destin:[40,52],detail:[5,6,10,11,12,13,14,21,30,45,49,52],detect:[2,6,11,24,30,49],detector:[85,117],determin:[0,6,13,19,38,42,50,132],determinist:30,dev:[6,8,11,30],develop:[5,8,26,28,29,36,43],dfb660d92ad8:52,dfp:171,dht:6,dictat:[6,49],did:[25,46],die:6,dies:36,diff:[15,23],differ:[0,6,11,12,13,14,15,19,21,24,26,28,29,30,31,34,41,42,43,46,51],difficult:[6,29],difficulti:21,digest:4,digit:[17,21,30],diminish:21,direct:[6,11,17,19,28,46],directli:[13,18,19,26,41],director:13,directori:[6,20,26,29,30,33,34,35,40,43,45,52,108,117,135],dirti:6,disabl:[6,11,14,41,42,49,50,52,66,67,68,69,70,71,72,73,74,83,117,140,142,144,149,152,153,154],disable_stcs_in_l0:41,disableauditlog:117,disableautocompact:[41,117],disablebackup:117,disablebinari:117,disablefullquerylog:117,disablegossip:117,disablehandoff:117,disablehintsfordc:117,disableoldprotocolvers:117,disablesnapshot:139,disallow:6,disambigu:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],discard:[6,40],disconnect:41,discourag:[11,21,28],discov:30,discuss:[8,21,28],disk:[4,6,11,31,36,38,40,41,42,45,46,80,114,117,130,171],displai:[11,52,56,62,92,107,109,116,117,166],disrupt:[30,49],distinct:[0,9,10,13],distinguish:[9,14],distribut:[6,29,30,41,46,49,51],divid:12,djava:[26,30,49],dml:20,dml_statement:12,dmx4jaddress:46,dmx4jport:46,dns:30,dobar:23,doc:[6,25,40,49],document:[5,12,14,15,17,25,28,35,49,52],doe:[6,11,13,14,16,17,18,19,21,24,25,28,36,38,40,41,42,49,50,51,114,117],doesn:[6,14,21,23,29,30],dofoo:23,doing:[6,13,29,30,41,51],dollar:[10,12],domain:[49,138,157],don:[5,13,23,24,25,26,28,30,31,41,51,108,132],done:[6,11,13,21,28,29,31,35,41],doubl:[6,9,10,11,12,14,17,21,26,46,50],down:[6,19,41,46,50,51,71,117,132],download:[6,26,34,46],downward:19,drain:117,drive:[6,41,43],driver:[6,12,14,29,33,36,52],drop:[6,10,15,36,41,46,80],drop_aggregate_stat:12,drop_function_stat:12,drop_index_stat:12,drop_keyspace_stat:12,drop_materialized_view_stat:12,drop_role_stat:12,drop_table_stat:12,drop_trigger_stat:12,drop_type_stat:[12,21],drop_user_stat:12,droppabl:[6,41],dropped_mut:166,droppedmessag:45,droppedmetr:46,droppedmut:46,dropwizard:46,dt_socket:26,dtest:[25,27],due:[11,13,21,30,34,46,51],dump:52,duplic:25,durable_writ:11,durat:[6,10,15,19,41,46,119,167],dure:[6,11,14,20,28,29,30,41,42,46,49,51,52,139],dying:30,dynam:[6,45,49],dynamic_snitch:50,dynamic_snitch_badness_threshold:50,dynamic_snitch_reset_interval_in_m:50,dynamic_snitch_update_interval_in_m:50,dynamo:[2,36],each:[0,4,6,10,11,12,13,14,17,18,19,21,24,28,35,36,41,42,43,46,49,50,51,52,117,142,158,171],each_quorum:0,earli:[6,12,28],earlier:15,easi:[9,28],easier:[0,28],easiest:30,ec2:[6,43,50],ec2multiregionsnitch:[6,50],ec2snitch:[6,50],ecc:43,echo:34,eclips:[23,27,29],ecosystem:25,edg:[25,26],edit:[26,31,34,46,49],effect:[6,11,21,28,30,38,42,49,71,117],effectiv:46,effici:[6,11,41,50,51],effort:6,either:[6,8,12,13,14,16,21,23,24,26,28,30,34,35,40,41,46,49,169],elaps:[41,46],element:[21,52],elig:6,els:[11,13,23,28],email:[8,16,21,36],embed:29,emploi:38,empti:[6,9,10,11,12,52],emptytyp:9,enabl:[6,11,14,17,19,29,30,41,42,50,51,52,76,77,78,80,83,84,117,154],enable_user_defined_funct:14,enableauditlog:117,enableautocompact:[41,117],enablebackup:117,enablebinari:117,enablefullquerylog:117,enablegossip:117,enablehandoff:117,enablehintsfordc:117,enableoldprotocolvers:117,encapsul:[23,46],enclos:[9,10,12,14,19],enclosur:12,encod:[15,21,25,52],encount:[5,13,34,46],encourag:[6,11],encrypt:[6,45],encryption_opt:6,end:[21,28,30,41,49,52,60,95,117,132],end_token:[60,132],end_token_1:122,end_token_2:122,end_token_n:122,endpoint:[46,50,55,95,117,132,169],endpoint_snitch:50,endtoken:52,enforc:[17,49],engin:[2,11,28,36,46],enhanc:43,enough:[0,6,21,30,31,41,50,52],enqueu:6,ensur:[11,13,18,20,30,42,49],entail:30,enter:[30,52],entir:[0,4,6,14,21,30,38,41,49,51,52],entri:[4,6,9,13,16,28,36,46,49,52],entropi:6,entry_titl:13,enumer:19,env:[30,31,46,49],environ:[0,5,6,26,30,33,43],ephemer:43,epoch:21,equal:[0,6,10,11,13,21,23,41],equival:[10,11,12,13,14,19,24,41],eras:11,erlang:33,erlcass:32,err:52,errfil:52,error:[6,11,12,14,16,18,19,21,23,25,26,34,36,52,133],escap:[12,17],especi:[28,30,41,52],essenti:[0,6,14,30,52],establish:[6,19,50],estim:46,estimatedcolumncounthistogram:46,estimatedpartitioncount:46,estimatedpartitionsizehistogram:46,etc:[6,18,21,23,25,30,31,34,41,46,49],eth0:6,eth1:6,ev1:21,even:[0,6,10,12,13,14,17,21,28,36,41,49,52,63,139,170],evenli:6,event:[13,21,41,52,132],event_typ:13,eventu:[4,13],ever:[23,29,30,43],everi:[4,6,11,13,14,18,19,20,21,35,38,41,43,52],everyth:[12,23,26,30],evict:46,evil:[6,14],exact:[11,12,14,42],exactli:[11,14,18,49],exampl:[0,6,11,13,14,17,19,21,29,34,35,41,49,50,52],exaust:6,excalibur:11,exce:[4,6,17,23],exceed:[6,43],excel:11,excelsior:11,except:[0,13,14,17,25,27,28,29,30,46],excess:38,exchang:[6,30],exclud:[46,76,100,117],excluded_categori:76,excluded_keyspac:76,excluded_us:76,exclus:[21,29,132],execut:[6,9,11,12,13,14,19,26,29,35,41,46,49,52],exhaust:6,exhibit:13,exist:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,29,36,38,41,42,50,51],expect:[6,10,12,21,23,25,28,41,49],expens:[6,38,50],experi:[6,41],experienc:6,experiment:132,expir:[6,10,11,13,21,45,49,139],expiri:41,explain:[23,25,28,34],explicit:10,explicitli:[6,10,13,17,21,23,41,50],explor:26,expon:10,exponenti:46,expos:[6,9,49],express:[0,6,10,12,50],expung:30,extend:[21,28,29,108,171],extens:[6,11,49],extern:[46,51],extra:[0,6,11,41],extract:[23,34],extrem:[6,13],fact:[21,29,30],factor:[0,6,11,36,42,49],fail:[6,13,14,21,36,41,52,117,133],failur:[2,6,28,36,41,43,46,50,85,117,171],failuredetector:117,fairli:[6,40,49],fake:14,fall:6,fallback:[6,50],fals:[6,11,12,17,19,21,38,40,41,42,46,49,51,52,139],famili:[6,43,101,119,156,167],fanout_s:41,fast:[6,38,41],faster:[6,28,42,43,117,142],fastest:[6,24,50],fatal:6,fault:30,fav:[16,21],fax:21,fct:14,fct_using_udt:14,fear:30,feasibl:21,featur:[25,26,28,49],fed:6,feedback:28,feel:24,fetch:[6,11,52],few:[41,43],fewer:[6,28],fffffffff:[17,21],field:[10,13,14,17,21,23,38],field_definit:21,field_nam:13,fifteen:46,fifteenminutecachehitr:46,figur:41,file:[4,7,11,26,27,28,29,30,31,33,36,38,41,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],filenam:[11,52,101,117],filesystem:49,fill:[40,41],fillion:13,filter:[4,9,11,18,36,43,45,46,132],finalfunc:[9,14],find:[6,26,29,34,38,41,51,95,99],fine:[6,28,49],finer:6,finish:[26,28,117,134],fip:[6,49],fire:20,firefox:52,firewal:[6,30,31,50],first:[5,6,11,13,14,21,28,30,33,41,43,49,52,132,139],firstnam:13,fit:[6,41,46],five:46,fiveminutecachehitr:46,fix:[6,10,12,24,30,41,43],flag:[6,13,24,25,28,40,46,51],flexibl:49,flight:[6,49],flip:11,floor:6,flow:[6,19,25],fluent:32,flush:[4,6,40,41,43,46,75,117,156],fname:14,focu:28,folder:[26,163],follow:[0,5,6,8,9,10,11,12,13,14,17,18,19,21,23,24,25,26,28,29,30,31,34,36,40,41,42,46,49,50,52,57,60,67,77,86,87,123,132,139,153,158,170,171],font:12,foo:[11,12,40],footprint:[117,119],forc:[4,6,11,13,52,60,63,117,131,132,133],forcefulli:[55,117],foreground:[31,34],forev:41,forget:5,fork:28,form:[6,10,11,12,14,19,62,116,166],formal:12,format:[6,10,17,21,24,25,27,28,46,52,61,80,101,122,166,168],former:[6,46],forward:[6,11],found:[5,12,14,15,28,29,31,35,49,52,163,171],four:13,fqcn:29,fraction:6,frame:6,framework:[25,29],franc:[13,21],free:[6,11,21,24,26,46],freed:4,freenod:8,frequenc:[6,40],frequent:[6,29,36,41,49],fresh:51,friendli:[6,21,29],from:[0,4,6,9,11,12,13,14,15,17,18,19,21,24,27,28,29,33,35,36,38,40,41,42,43,46,49,50,51,54,55,57,58,60,65,67,73,76,77,83,86,87,90,92,95,99,101,103,107,108,115,117,119,122,123,124,126,127,130,131,132,133,135,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],fromjson:15,froom:21,frozen:[9,10,11,13,14,21],fruit:[21,28],fsync:[6,46],full:[6,9,11,13,16,19,28,34,35,41,42,49,52,70,80,117,123,132,135],full_nam:166,fulli:[6,11,12,14,45,49],function_cal:12,function_nam:[13,14,19],fundament:17,further:[5,6,11,18,21,41,45,49],furthermor:[10,13,49],futur:[6,9,10,11,21,28,82,117,162],g1gc:43,game:[14,21],garbag:[11,43,45,46,87],garbage_collect:163,garbagecollect:117,gather:41,gaug:46,gaurante:0,gc_grace_second:11,gc_type:46,gce:[30,43],gcg:6,gcstat:117,gener:[0,2,4,6,8,11,12,13,14,17,21,25,26,27,28,30,43,49,52,103,139,153],genuin:23,get:[6,8,24,26,28,30,34,36,38,41,92,93,94,97,100,117],getbatchlogreplaythrottl:117,getcompactionthreshold:117,getcompactionthroughput:117,getconcurr:117,getconcurrentcompactor:117,getconcurrentviewbuild:117,getendpoint:117,getint:14,getinterdcstreamthroughput:117,getlocalhost:[6,30],getlogginglevel:117,getlong:14,getmaxhintwindow:117,getpartition:23,getreplica:117,getse:117,getsstabl:117,getstr:14,getstreamthroughput:117,gettempsstablepath:23,getter:[19,23],gettimeout:117,gettraceprob:117,gib:[62,116,166],gist:23,git:[5,24,26,28],github:[23,24,28,29],give:[18,19,21,28,29,36,52],given:[0,6,11,12,13,14,16,21,28,38,41,49,51,52,58,60,65,67,77,90,99,103,117,123,143,150,154,158,165],global:[6,52,117,141],gmt:21,goal:[6,41],gocassa:32,gocql:32,going:[6,28,41],gone:6,good:[6,23,28,29,30,52],googl:[23,52],gori:30,gossip:[2,6,30,46,50,71,81,105,117,161],gossipinfo:117,gossipingpropertyfilesnitch:[6,50],gossipstag:46,got:6,gp2:43,gpg:34,grace:45,grai:21,grain:49,grammar:[11,12],grant:[6,9,49],grant_permission_stat:12,grant_role_stat:12,granular:[6,87],graph:19,gravesit:11,great:[28,41],greater:[0,6,21,30,50,146,147],greatli:6,green:21,group:[6,10,11,19,41,46,49,50],group_by_claus:13,grow:21,guarante:[0,2,11,13,14,21,28,36,38,41,51,52],guid:[6,26],guidelin:[10,25,43],had:[9,10,41],half:[6,24,30],hand:[6,13,43],handl:[6,14,25,27,28,30,40,43,46,49,80],handoff:[6,46,51,72,106,117,148],handoffwindow:117,hang:28,happen:[6,13,23,24,28,36,41,46,50],happi:28,happili:43,hard:[6,14,41,43],harder:6,hardwar:[6,36,45],has:[0,4,6,10,11,12,13,14,18,19,21,23,28,30,41,43,46,49,50,52],hash:[4,6,41],hashcod:23,haskel:33,hasn:80,have:[0,5,6,9,10,11,12,13,14,15,18,19,21,23,24,25,26,28,29,30,31,34,38,41,42,43,46,49,50,80,139],haven:28,hayt:32,hdd:[6,43],head:28,header:[26,52],headroom:6,heap:[4,6,26,31,36,38,42,43,46],heap_buff:6,heavi:6,heavili:43,held:[6,43,117,121],help:[5,6,10,28,29,35,54,56,117,155],helper:29,henc:[5,6,11,21],here:[6,24,29,30,32,41,46,49],hex:[12,17,101],hexadecim:[10,12,101],hibern:51,hidden:51,hide:[23,25],hierarch:19,hierarchi:19,high:[0,6,30,41,43],higher:[0,19,28,38,41,46,51,119,167],highest:41,highli:[28,30,43,49],hint:[0,6,11,12,30,31,36,45,46,51,72,73,82,83,98,106,117,118,137,148,151,162,169],hintedhandoff:[6,45],hintedhandoffmanag:46,hints_creat:46,hints_directori:31,hints_not_stor:46,hintsdispatch:46,histogram:[41,46,117,120,165],histor:28,histori:[23,59,61,117],hit:[6,41,46],hitrat:46,hoc:29,hold:[0,6,10,13,19,30,41,52],home:[21,52],hope:41,hopefulli:28,host:[6,31,36,46,50,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],hostnam:[6,30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],hot:[6,46],hotspot:11,hotspotdiagnost:49,hottest:6,hour:[6,21,28,41],hourli:80,how:[0,5,6,7,8,11,12,21,25,26,27,28,29,33,35,36,41,42,46,50,52,80],howev:[6,9,10,11,12,13,15,17,18,21,28,29,30,31,34,38,42,43,49,52],hsha:6,html:6,http:[6,23,24,26,34,46],httpadaptor:46,hub:30,human:[11,62,116,166],hypothet:24,iauthent:6,iauthor:6,icompressor:42,idea:[6,14,27,28,29,30,41,52],ideal:[6,29,41,49],idempot:[13,21],idemptot:21,ident:0,identifi:[6,9,10,11,13,14,15,16,19,20,21],idiomat:8,idl:6,ieee:[17,21],iendpointsnitch:[6,50],ignor:[0,6,10,14,21,23,52,166],iinternodeauthent:6,illeg:14,illustr:19,imag:21,imagin:41,immedi:[6,11,21,28,38,42,57,117],immut:[4,30,42,43],impact:[6,11,25,41,45,49],implement:[6,10,13,14,18,19,23,29,30,40,42,49,50],implementor:6,impli:[11,12,21],implic:[0,49],implicitli:14,import_:52,imposs:41,improv:[0,6,11,21,28,29,38,41,43,50,51,52],inact:30,includ:[4,6,10,11,12,13,18,19,21,23,28,40,41,43,46,49,52,76,133,170],included_categori:76,included_keyspac:76,included_us:76,inclus:[28,132],incom:6,incomingbyt:46,incompat:[6,10],incomplet:25,inconsist:[0,30],incorrect:30,increas:[6,11,30,38,41,42,43,46,50,51,132],increment:[6,10,13,21,28,41,68,78,117,133,139,159],incur:[13,21,46],indent:23,independ:[11,41,43,49],index:[4,6,9,10,11,12,13,15,21,36,41,45,52,117,123],index_build:163,index_identifi:16,index_nam:16,index_summari:163,index_summary_off_heap_memory_us:166,indexclass:16,indexedentrys:46,indexinfocount:46,indexinfoget:46,indexnam:123,indexsummaryoffheapmemoryus:46,indic:[5,6,12,13,23,28,30,132],indirectli:13,individu:[6,10,14,21,28,29,43,49],induc:13,inequ:[10,13],inet:[9,11,14,17,21],inetaddress:[6,30],inexpens:43,infin:[9,10,12],influenc:11,info:[6,31,46,65,117],inform:[4,6,12,13,21,35,49,50,51,52,56,59,85,105,107,108,109,116,117,138,155,157],ingest:6,ingestr:52,inher:[11,21],inherit:19,init:46,initcond:[9,14],initi:[6,14,23,25,40,46,49,52,117,150],initial_token:51,input:[9,10,14,17,21,25,52],inputd:21,inreleas:34,insensit:[11,12],insert:[6,9,10,11,12,14,15,16,19,21,30,33,36,43,52],insert_stat:[12,13],insid:[6,11,12,13,21,23,52],inspect:[6,26,52],instabl:6,instal:[6,20,30,33,36,52],instanc:[6,10,11,12,13,14,16,18,19,20,21,26,29,30,40,41,43,46],instantan:46,instanti:10,instantli:6,instead:[10,11,13,18,21,23,30,41,138,157],instruct:[6,8,11,24,26,36],instrument:49,intasblob:13,integ:[0,10,11,12,13,17,21,46],integr:[27,29,36],intellij:[23,27],intend:[25,49],intens:[6,29,30],intent:25,inter:[6,96,117,149],interact:[29,35,52],interest:[0,41,49],interfac:[6,10,14,23,30,31,42,49],intern:[6,9,11,13,18,21,25,30,43,46],internaldroppedlat:46,internalresponsestag:46,internet:6,internod:[6,30],internode_encrypt:[6,49],internodeconnect:[103,153],internodeus:[103,153],interpret:[10,21,52],interrupt:30,interv:[6,9,46],intra:[6,46,50],intrins:21,introduc:[6,10,17,28,51],introduct:[10,19,29],intvalu:14,invalid:[6,13,19,25,49,108,110,111,112,117],invalidatecountercach:117,invalidatekeycach:117,invalidaterowcach:117,invertedindex:20,investig:6,invoc:14,invok:[24,34,49,171],involv:[6,13,41,42,49],ioerror:23,ip1:6,ip2:6,ip3:6,ip_address:55,ipv4:[6,17,21,30],ipv6:[6,17,21],irc:[5,28,36],irolemanag:6,irrevers:[11,21],isn:[0,18,23,28,30],iso:21,isol:[6,11,13],issu:[0,6,19,24,28,29,30,38,41,42,132],item:[12,21,25,26],iter:[0,6],its:[4,6,11,12,13,14,21,26,30,41,46,49,50,51],itself:[6,11,16,30,34],iv_length:6,jaa:49,jacki:24,jamm:26,januari:21,jar:[14,23,26,46],java7:49,java:[6,14,20,21,23,26,28,33,34,36,40,41,43,46,49,117,155],javaag:26,javadoc:[23,25],javas:6,javascript:[6,14],javax:49,jbod:43,jce8:6,jce:6,jcek:6,jconsol:[36,41,49],jdk:6,jdwp:26,jenkin:[26,29],jetbrain:26,jira:[5,6,25,28,29,40],jkskeyprovid:6,jmc:[41,49],jmx:[6,19,36,45,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],jmx_password:49,jmx_user:49,jmxremot:49,job:[28,57,87,130,132,139,170],job_thread:132,john:[13,21],join:[6,8,13,36,41,49,51,117],joss:13,jpg:21,jsmith:21,json:[9,10,13,15,36,41,42,61,166,168],json_claus:13,jsr:[6,14],jsse:6,jsserefguid:6,judgement:23,junit:[23,26,29],jurisdict:6,just:[6,14,19,26,28,29,30,41,49],jvm:[6,20,26,30,31,45,49,51],jvm_extra_opt:26,jvm_opt:[31,49],jvmstabilityinspector:25,keep:[6,8,11,23,28,30,41,46,108],keepal:[6,30],kei:[4,6,9,10,13,14,17,21,29,30,34,40,41,42,43,46,49,57,95,99,101,111,117,121,141,142,166],kept:[6,41,46],kernel:[6,30],key_alia:6,key_password:6,key_provid:6,keycach:46,keycachehitr:46,keyserv:34,keyspac:[0,6,9,10,12,14,15,16,19,21,36,38,41,42,45,49,51,52,57,58,60,65,67,76,77,86,87,90,95,99,101,108,117,119,121,122,123,124,130,132,138,139,143,156,157,158,165,166,167,170,171,173],keyspace1:[6,19],keyspace2:6,keyspace_nam:[11,14,19,21,41],keystor:[6,49],keystore_password:6,keystorepassword:49,keyword:[10,11,13,14,15,16,17,21],kib:[62,116,166],kick:[117,134],kill:[6,34],kilobyt:42,kind:[11,12,21,28,40,41],kitten:21,knife:[117,155],know:[6,13,21,23,41],known:[19,21,32,35,38,41],ks_owner:49,ks_user:49,ktlist:156,kundera:32,label:[21,28],lag:46,land:42,landlin:21,lang:[36,46,49],languag:[6,9,10,12,14,20,21,32,35,36,52],larg:[6,11,13,14,21,29,36,41,43,46,52],larger:[6,29,30,41,42,43],largest:[6,46],last:[6,12,13,14,15,28,41,46,55,117],lastli:[13,21],lastnam:13,latenc:[0,6,30,46,50],later:[0,11,21,23,28,30],latest:[0,28,34,41,52,171],latter:12,layer:43,layout:11,lazi:11,lazili:11,lead:[6,10,21,41],learn:[6,29,30,52],least:[0,6,11,12,13,18,30,41,43],leav:[6,12,13,23,29,30,52],left:[6,17,41],legaci:[6,19],legal:10,length:[4,6,10,17,21,25,41],less:[6,21,28,30,38,43],let:[6,41],letter:17,level:[6,10,11,13,19,23,25,31,43,45,46,49,52,97,108,117,150],leveledcompactionstrategi:[11,38,41],lexic:30,lib:[6,20,25,26,34],libqtcassandra:32,librari:[8,25,29,32,46,52],licenc:25,licens:[25,26,28],life:28,lifespan:43,like:[0,6,12,13,14,17,21,23,24,25,28,29,30,36,41,42,43,49],likewis:19,limit:[6,9,10,11,18,19,21,30,40,41,42,49],line:[12,23,28,29,31,34,35,49,53,55,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],linear:43,linearli:38,link:[6,8,11,12,28,29,34],linux:[6,30],list:[4,5,6,9,10,11,12,13,14,17,26,28,29,31,34,35,36,41,49,51,52,55,57,58,59,60,65,67,73,76,77,83,86,87,90,92,95,99,100,101,103,107,108,114,115,117,119,122,123,124,127,130,131,132,133,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],list_liter:[13,21],list_permissions_stat:12,list_roles_stat:12,list_users_stat:12,listarg:14,listen:[6,36,46],listen_address:[31,35,36],listen_interfac:31,listsnapshot:117,liter:[10,12,14,17,52],littl:23,live:[13,36,41,46,51],livediskspaceus:46,livescannedhistogram:46,livesstablecount:46,load:[0,6,11,20,21,36,45,46,49,50,51,109,117,124,132,157],local:[0,6,11,26,28,29,35,43,46,49,50,52,117,126,132,136,169],local_jmx:49,local_on:[0,49,52],local_quorum:[0,52],local_read_count:166,local_read_latency_m:166,local_seri:52,local_write_latency_m:166,localhost:[6,35,49],locat:[6,33,34,42,46,49,50,52,163],lock:[6,30,46],log:[6,11,13,25,29,33,34,36,40,45,46,49,66,70,76,80,97,117,132,135,150,163],log_al:41,logback:31,logger:[23,31,76],logic:[6,20],login:[6,9,19,29,49],lol:21,longer:[6,9,10,30,41,51,57,117],look:[6,12,24,28,29,41,43],lookup:46,loop:23,lose:[6,41,51],loss:[6,21],lost:[41,51],lot:[6,35,36],low:[6,28,117,119],lower:[0,6,11,12,13,19,30,38,41,46,51],lowercas:12,lowest:[28,41],lz4:6,lz4compressor:[6,11,42],macaddr:9,machin:[6,11,29,30,46,49,50,51],made:[6,21,36,38,43,49],magnet:6,magnitud:13,mai:[0,4,6,9,10,11,13,14,16,17,19,21,25,26,28,29,30,34,38,41,49,50,51,52,139],mail:[5,28,36],main:[0,14,18,26,30,33,34,49,51,52],main_actor:13,mainli:[6,11],maintain:[6,28],mainten:46,major:[0,10,28,49,60,117],make:[0,6,8,9,20,21,23,26,28,29,30,31,34,41,49,51,52,114,117],man:6,manag:[6,19,26,29,46,49,51,56,117],mandatori:[11,14],mani:[0,6,11,23,25,28,41,42,43,46,49,52,57,60,67,77,80,86,87,132,139,158,170,171],manipul:[12,15,29,36],manual:[6,24,30],map:[6,9,10,11,13,14,17,19,36,46],map_liter:[11,16,19,21],mar:21,mark:[6,19,41,51,71,117],marker:[6,11,12,25,30],match:[6,12,13,14,17,19,46,50],materi:[6,10,11,12,15,36,46,52,117,173],materialized_view_stat:12,matter:[11,30],max:[6,36,41,46,49,52,80,90,98,117,132,143,151],max_hint_window_in_m:51,max_log_s:80,max_map_count:30,max_mutation_size_in_kb:[6,30],max_queue_weight:80,max_thread:6,max_threshold:41,maxattempt:52,maxbatchs:52,maxfiledescriptorcount:46,maxhintwindow:151,maxim:43,maximum:[4,6,14,38,46,52,80,92,117,139,145],maximum_live_cells_per_slice_last_five_minut:166,maximum_tombstones_per_slice_last_five_minut:166,maxinserterror:52,maxoutputs:52,maxparseerror:52,maxpartitions:46,maxpools:46,maxrequest:52,maxrow:52,maxthreshold:143,maxtimeuuid:10,mayb:13,mbean:[6,19,41,46,49],mbeanserv:19,mbp:6,mct:6,mean:[6,9,11,12,13,14,17,18,21,36,41,46,50,52,132],meaning:13,meanpartitions:46,meant:[21,30,46],measur:[6,25,29,46,51,52],mechan:40,median:46,meet:[6,25],megabyt:6,member:23,membership:6,memlock:30,memori:[4,6,11,36,38,41,45],memory_pool:46,memtabl:[2,6,38,40,41,42,43,46,156],memtable_allocation_typ:4,memtable_cell_count:166,memtable_cleanup_threshold:4,memtable_data_s:166,memtable_off_heap_memory_us:166,memtable_switch_count:166,memtablecolumnscount:46,memtableflushwrit:46,memtablelivedatas:46,memtableoffheaps:46,memtableonheaps:46,memtablepool:6,memtablepostflush:46,memtablereclaimmemori:46,memtableswitchcount:46,mention:[6,21,28,46,49],menu:26,mere:23,merg:[24,28,38,42,43,45],mergetool:24,merkl:[6,46],mess:[28,29],messag:[6,21,25,28,34,36,46],met:13,meta:[13,46],metadata:[4,19,42,43,46],metal:6,meter:46,method:[10,13,14,19,23,25,26,29,36,49],metric:[6,45],metricnam:46,metricsreporterconfigfil:46,mib:[6,62,116,166],microsecond:[6,11,13,21,46],midnight:21,might:[6,13,41,46,55,57,58,60,65,67,73,77,80,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],migrat:[6,46,50],migrationstag:46,millisecond:[6,10,21,46,119,139,167],min:[6,30,40,41,46,52,90,117,143],min_sstable_s:41,min_threshold:41,minbatchs:52,mind:6,minim:[6,41,43],minimum:[6,11,14,31,46],minor:[10,12,45],minpartitions:46,minthreshold:143,mintimeuuid:10,minut:[6,21,41,46,80],misbehav:41,misc:[103,153],miscelen:46,miscellan:6,miscstag:46,miss:[11,41,46,51],misslat:46,mistaken:[55,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],mitig:[6,49],mix:[6,41],mmap:30,mnt:16,mock:29,mode:[6,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],model:[11,15,19,28,36,49],moder:43,modern:43,modif:[13,19],modifi:[6,9,10,11,14,19,21,28,38,41,42],modification_stat:13,modul:52,modular:25,moment:[6,28],monitor:[30,36,45,49,50,56,117],monkeyspeci:[11,18],monkeyspecies_by_popul:18,month:21,more:[0,4,6,10,11,12,13,21,23,28,29,31,35,36,38,43,45,46,49,50,51,60,86,87,117,119,132,139,155,167,171],moreov:13,most:[6,11,12,13,21,26,28,29,30,31,41,42,43,49,52,59,117,167],mostli:[6,11,21],motiv:[29,41],mount:6,move:[6,28,30,36,40,45,46,117],movement:45,movi:[13,21],movingaverag:6,mtime:11,much:[0,5,6,11,38,41,50],multi:[0,6,12,25],multilin:27,multipl:[4,6,10,11,12,13,14,21,23,25,26,28,30,31,41,43,50,122],multipli:41,murmur3partit:4,murmur3partition:[6,14,52],must:[0,6,10,11,13,14,17,18,19,23,28,29,30,31,41,46,49,51,52,156],mutant:16,mutat:[0,6,13,30,40,46,171],mutationstag:46,mv1:18,mx4j:46,mx4j_address:46,mx4j_port:46,mx4jtool:46,mxbean:19,myaggreg:14,mycolumn:17,mydir:52,myevent:13,myfunct:14,myid:12,mykei:17,mykeyspac:14,mytabl:[11,14,17,20],mytrigg:20,nairo:21,name:[6,9,10,11,12,13,14,16,17,18,19,20,21,25,26,28,29,30,31,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],names_valu:13,nan:[9,10,12],nanosecond:21,nathan:13,nativ:[6,10,12,15,17,25,30,35,46,52,69,79,117,123,160],native_transport_min_thread:6,native_transport_port:31,native_transport_port_ssl:49,native_typ:21,natur:[11,21,23,41,42],nearli:26,neccessari:6,necessari:[6,11,14,19,28,34,42,49],necessarili:[6,12,31],need:[0,6,10,11,12,13,19,21,23,25,26,28,29,30,31,34,35,38,41,42,43,49,50,52,95,99],neg:6,neglig:13,neighbour:41,neither:[18,21,49],neon:26,nerdmovi:[13,16],nest:[12,13,23],net:[6,26,30,33,34,49],netstat:[51,117],network:[6,13,30,43,49,50,116,117,120],networktopologystrategi:[11,49],never:[6,10,11,12,13,14,21,23,30,41],nevertheless:13,new_rol:19,new_superus:49,newargtuplevalu:14,newargudtvalu:14,newer:[41,43,52,87],newest:[11,41],newli:[11,21,28,40,117,124],newreturntuplevalu:14,newreturnudtvalu:14,newtuplevalu:14,newudtvalu:14,next:[6,30,35,41,52],ngem3b:13,ngem3c:13,nifti:24,nio:[6,14,46],no_pubkei:34,node:[0,4,6,11,13,14,20,21,25,29,31,32,35,36,38,40,41,43,45,46,50,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],nodej:33,nodetool:[34,36,38,42,45,49,51,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],nologin:9,non:[6,9,10,11,12,13,14,19,21,30,38,42,46,49,52],none:[6,11,13,21,49],nonsens:19,nor:[11,18,21],norecurs:[9,19],norm:46,normal:[14,17,26,30,34,46,51,52],noschedul:6,nosuperus:[9,19],notabl:[14,17],notat:[10,12,13,52],note:[0,5,6,10,11,12,13,14,15,17,19,21,24,28,30,41,49],noth:[6,11,14,24,29,30],notic:6,notif:8,notion:[11,12],now:[10,23,26,41,51],ntp:6,nullval:52,num_cor:52,num_token:51,number:[0,6,10,11,12,13,14,17,18,21,26,28,29,30,34,38,41,42,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],number_of_cor:6,number_of_dr:6,number_of_partitions_estim:166,numer:[15,38],numprocess:52,object:[6,11,12,25],objectnam:19,observ:23,obsolet:[6,43,46],obtain:[12,49],obviou:[14,24],obvious:11,occup:13,occupi:[6,46],occur:[10,12,13,20,21,30,41,43,46],occurr:21,octet:[6,50],odd:28,off:[4,6,30,42,46,49,52,117,134],off_heap_memory_used_tot:166,offer:[15,29,42],offheap:[38,43],offheap_buff:6,offheap_object:6,offici:[36,52],offset:[4,46],often:[6,11,12,23,28,29,30,41,42,43,49,50,52,80],ohc:6,ohcprovid:6,okai:23,old:[4,6,41,51,74,84,117],older:[6,14,26,34,41,43,52],oldest:[6,11],omit:[6,10,11,13,17,21,150],onc:[4,6,11,12,14,21,24,26,28,29,30,40,41,42,43,46,49,51,52],one:[0,4,6,9,10,11,12,13,14,17,18,19,21,23,26,28,29,31,36,38,41,43,46,49,50,51,52,57,60,67,77,86,87,103,117,132,139,153,156,158,170,171],oneminutecachehitr:46,ones:[6,11,12,13,14,18,19,46],ongo:[41,51],onli:[0,6,9,11,12,13,14,17,18,19,21,23,28,29,31,36,38,41,42,43,46,49,50,52,132,156,166],onlin:52,only_purge_repaired_tombston:41,onto:[4,41],open:[5,6,26,49,50],openfiledescriptorcount:46,openjdk:34,oper:[0,6,10,11,13,16,18,19,21,23,36,38,40,43,46,49,51,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],operatingsystem:46,opertaion:6,opportun:38,ops:30,opt:14,optim:[6,11,12,13,30,41,43,51],optimis:132,option1_valu:19,option:[4,6,9,10,12,13,14,16,19,21,26,29,30,34,42,43,45,49,51,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],oracl:[6,34,49],order:[0,4,6,9,10,14,18,21,23,28,30,38,40,41,50,51,52],ordering_claus:13,orderpreservingpartition:6,org:[6,14,20,23,26,29,30,34,41,42,46,49],organ:[4,26,32],origin:[9,24,28,139],orign:13,other:[0,4,6,10,12,13,14,18,19,21,24,26,28,31,36,38,41,43,46,49,50,51,117,122,133],other_rol:19,otherwis:[0,9,12,13,16,21,92],our:[5,6,8,24,26,28,41],ourselv:24,out:[6,12,23,26,28,41,46,49,50,51,132],outbound:6,outboundtcpconnect:6,outgo:6,outgoingbyt:46,outlin:49,outofmemoryerror:36,output:[14,19,25,26,38,41,52,60,61,166,168],outsid:[11,20,21],over:[0,6,11,21,30,41,46,49,50,51],overal:14,overflow:[17,139],overhead:[6,30,42,46,51],overidden:49,overlap:[0,41],overload:[6,14,30],overrid:[6,23,49,51,139],overridden:[6,11],overview:[2,36,45],overwhelm:6,overwrit:[42,43],overwritten:[46,87],own:[0,6,11,12,14,21,28,30,34,41,42,46,49,95,101,108,117,171],owner:21,ownership:[41,138],p0000:21,pacif:21,packag:[26,30,31,33,35,52],packet:6,page:[6,21,26,28,29,30,43,46],paged_slic:46,pages:52,pagetimeout:52,pai:23,pair:[6,11,19,21,41,49],parallel:[29,41,132],paramet:[6,14,23,25,26,31,38,43,50,51,117,150],paranoid:6,parenthesi:[11,52],parnew:43,pars:[6,12,40,52],parser:[9,10,40],part:[0,5,6,11,13,14,18,21,25,26,28,29,30,50,51,52],parti:[25,46],partial:4,particip:[0,20],particular:[11,12,13,14,17,19,21,30,43,46,49],particularli:[12,21,49],partit:[4,6,10,13,14,30,38,41,43,46,87,95,99,117,139,167],partition:[4,10,13,14,52,64,117,132],partition_kei:[11,13],partli:13,pass:[25,28,31,52,155],password:[6,9,13,19,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],password_a:19,password_b:19,passwordauthent:[6,49],passwordfilepath:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],past:[6,46],patch:[10,13,23,24,25,27,29,36],path:[5,6,16,25,34,38,41,42,43,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],patter:19,pattern:[6,19,21],paus:[6,30,117,118],pausehandoff:117,paxo:[13,46,52],peer:[6,46],peerip:46,penalti:[6,13],pend:[41,46,117,131],pending_flush:166,pendingcompact:46,pendingflush:46,pendingrangecalcul:46,pendingtask:46,pendingtasksbytablenam:46,pennsylvania:21,peopl:[28,30],per:[0,4,6,10,11,13,23,24,28,30,38,40,41,42,46,49,52,117,140,148],percent:46,percent_repair:166,percentag:[6,46,50],percentil:46,percentrepair:46,perdiskmemtableflushwriter_0:46,perfect:14,perform:[6,11,13,19,21,24,25,27,30,31,38,41,43,46,49,50,52,132],period:[6,43,46,49,117,119],perman:[11,30,41,43],permiss:[6,9,12,29,49],permit:[6,19,40,49],persist:[4,30,38,43,49],perspect:30,pet:21,pgrep:34,phantom:32,phase:[51,52],phi:6,phone:[13,21],php:33,physic:[0,6,11,30,43,50],pick:[24,28,30,41,49,51,122],pid:[30,34],piec:[12,41,46],pile:6,pin:[6,50],ping:28,pkcs5pad:6,pkill:34,place:[5,6,16,20,23,24,28,40,41,46,49,52,117,124],placehold:[14,52],plai:[14,21],plain:4,plan:[11,24,28],platform:19,platter:[6,43],player:[14,21],playorm:32,pleas:[5,6,11,13,14,15,21,23,26,29,30],plu:[14,41,46],plug:6,pluggabl:[19,49],plugin:46,poe:21,point:[6,10,17,21,23,26,36,49,52,95,117],pointer:14,polici:[6,28,49,171],pool:[6,34,46,117,145,168],popul:[11,18],popular:[26,43],port:[6,26,31,36,46,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],portion:[43,52],posit:[4,6,10,11,21,38,46,51],possbili:6,possess:19,possibl:[6,10,11,13,14,17,19,21,25,28,29,30,38,41,43,46,49,51],post:[13,117,142],post_at:13,posted_at:13,posted_bi:11,posted_month:11,posted_tim:11,potenti:[0,6,9,11,12,14,25,41,43,49,51,139],power:6,pr3z1den7:21,practic:[11,12,13,49],pre:[6,17,21,43,49],preced:30,precis:[10,17,21,41],precondit:46,predefin:11,predict:13,prefer:[0,6,11,12,21,23,28,49,50],preferipv4stack:26,prefix:[11,12,21],prepar:[6,14,15,46],preparedstatementscount:46,preparedstatementsevict:46,preparedstatementsexecut:46,preparedstatementsratio:46,prepend:21,prerequisit:33,present:[12,13,18,46],preserv:[6,17,19],press:34,pressur:[6,46],pretti:52,prevent:[6,29,40],preview:132,previou:[6,10,11,21,41,51],previous:6,previsouli:[83,117],primari:[9,10,13,14,21,29,40,41,42,49,51],primarili:[6,11],primary_kei:[11,18],print:[52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],prior:[6,13,19,21],prioriti:28,privat:[6,23,49,50],privileg:[19,34,49],probabilist:[38,42],probabl:[6,11,29,38,41,104,117,154],problem:[5,6,14,24,25,30,49],problemat:21,proc:[6,30],proce:[25,42,51],procedur:[13,49],process:[0,6,14,24,25,26,28,29,30,34,40,42,43,46,49,51,52,56,92,117,118,137,145],prod_clust:52,produc:[13,14,41,80],product:[6,28,30,43,50],profil:[13,117,119],profileload:117,program:[14,29],progress:[23,24,28,38,45,117,173],project:[23,29,46],promin:11,prompt:52,propag:[6,11,14,23,25,50],proper:[11,21,30,49],properli:[6,25],properti:[6,11,19,33,40,41,49,50,51],propertyfilesnitch:[6,50],proport:[6,13],proportion:[6,89,117,140],propos:[6,46],protect:[6,43],protocol:[6,25,30,35,46,49,52,59,69,74,79,84,117,160],provid:[0,5,6,11,12,13,14,15,17,21,26,28,35,40,41,42,43,46,49,50,51,53,116,117,127,131],proxim:[6,50],proxyhistogram:117,prv:132,ps1:49,ps22dhd:13,pt89h8m53:21,pull:[29,41,46,132],purg:43,purpos:[11,12,13,21,43,49],push:[24,28,46],put:[15,28,31,41,51,108,132],pwf:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],python:[14,28,29,33,34,52],quak:[14,21],qualifi:[6,11,14,28],qualiti:49,quantiti:21,queri:[6,10,11,12,13,14,16,18,19,33,36,41,46,52,70,80,117,135],question:[8,19,36],queu:[6,46],queue:[6,46,80],quick:[108,171],quickli:[30,41],quill:32,quintana:21,quit:[41,52],quorum:[0,49,52],quot:[9,10,11,12,14,17,19,52],quotat:19,quoted_identifi:12,quoted_nam:11,race:[21,24],rack1:6,rack:[0,6,49,50],rackdc:[6,50],rackinferringsnitch:[6,50],raid0:43,raid1:43,raid5:43,rain:12,rais:[12,30],raison:9,ram:[38,42,43],random:[11,14,30,51],randomli:[0,6,51],randompartition:[6,13,14],rang:[2,6,10,11,13,21,25,41,45,46,52,60,65,103,117,122,132,153],range_slic:46,rangekeysampl:117,rangelat:46,rangemov:51,rangeslic:46,rapid:43,rare:[10,38],raspberri:43,rate:[6,11,46,49,52],ratebasedbackpressur:6,ratefil:52,rather:[13,30,41,43],ratio:[6,42,43,46],raw:[6,14],reach:[6,28,30,40,41],read:[0,6,11,13,21,23,25,29,30,33,36,38,41,42,43,45,46,49,50,52,103,153,166,171],read_lat:166,read_repair:46,read_repair_ch:[0,6,11,41,50],read_request_timeout:30,readabl:[11,62,116,166],readi:[28,49],readlat:46,readrepair:46,readrepairstag:46,readstag:46,readwrit:49,real:[8,11,23,30],realiz:41,realli:[6,29,31],reason:[0,6,13,14,15,30,31,34,41,43,49,51],rebuild:[38,41,42,46,117,123,139],rebuild_index:117,receiv:[6,14,28,30,41,43],recent:[6,28,29,43,59],reclaim:41,recogn:[13,26,28],recommend:[6,11,21,30,43,49,51],recompact:41,recompress:42,reconnect:49,record:[11,13,21,28,41],recov:[6,30,41],recoveri:6,recreat:52,recurs:80,recv:34,recycl:[6,46],redistribut:6,redo:28,reduc:[6,30,41,42,63,89,117,132,140],reduct:6,redund:[0,6,23,25,28,43],reenabl:[79,81,82,117],refactor:40,refer:[6,11,12,13,14,15,21,23,29,30,34,35,52],referenc:6,reflect:41,refresh:[6,49,52,117,125],refreshsizeestim:117,refus:36,regard:[11,13],regardless:[0,6,19,28],regener:38,regexp:12,region:[6,50],regist:21,registri:49,regress:[25,29],regular:[9,12,26,29,30,46,52],regularstatementsexecut:46,reinsert:139,reject:[6,13,30,40,49],rel:[6,21,52],relat:[8,10,12,13,26,28,41,46],releas:[6,10,34,52],relev:[13,19,21,28,42,49],reli:[6,14,21,30,51],reliabl:41,reload:[6,117,126,127,128,129],reloadlocalschema:117,reloadse:117,reloadssl:117,reloadtrigg:117,reloc:[117,130,163],relocatesst:117,remain:[6,13,14,21,24,41,46,51,166],remaind:[17,42],remedi:41,remot:[0,24,26,36,41,49,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],remov:[4,6,10,11,12,13,14,15,17,21,25,30,36,40,45,49,55,58,87,117,131],removenod:[51,55,117],renam:[9,21],reorder:6,repair:[0,4,6,11,30,36,42,45,46,50,51,108,117,133,150,171],repair_admin:117,repeat:[12,34,42,49],replac:[6,9,14,19,21,25,30,36,41,45,80],replace_address_first_boot:51,replai:[0,21,43,46,89,117,134,140],replaybatchlog:117,replic:[2,6,11,36,41,43,49,51,55,117],replica:[0,6,11,13,30,41,46,50,51,63,99,117],replication_factor:[0,11,49],repo:[24,26],report:[28,36,45],report_writ:19,reportfrequ:52,repositori:[5,8,26,28,29,34],repres:[6,10,17,19,21,30,41,46,49,50,52],represent:[10,17],request:[0,6,13,19,20,29,30,38,41,43,45,49,50,52,117,154,170],request_respons:46,requestresponsestag:46,requestschedul:6,requesttyp:46,requir:[0,6,11,13,14,19,23,24,25,26,28,30,38,42,43,49],require_client_auth:6,require_endpoint_verif:6,resampl:6,reserv:[6,10,12,15],reset:[6,13,117,136,150],reset_bootstrap_progress:51,resetfullquerylog:117,resetlocalschema:117,resid:[6,13,30,46],resolut:[6,13,30],resolv:[24,30,138,157],resort:[55,117],resourc:[19,49],resp:14,respect:[6,10,14,34,50,80],respond:[0,6,12],respons:[0,6,19,30,46,51],ressourc:21,rest:[6,11,12,21,25,51],restart:[30,41,49,51,117,124,142],restor:[41,51,52],restrict:[10,11,13,18,19],result:[0,6,8,10,11,12,14,17,19,21,28,30,41,46,52],resum:[56,117,137],resumehandoff:117,resurrect:41,resync:[117,136],retain:[30,41],rethrow:23,retri:[0,6,21,46,80],retriev:[11,13,19],reus:25,revers:13,review:[11,23,27,28,29,36],revok:[9,49],revoke_permission_stat:12,revoke_role_stat:12,rewrit:[38,41,42,117,139,170],rewritten:[43,139],rfc:[14,21],rhel:36,rich:21,rider:21,riderresult:21,right:[6,26,30,52],ring:[2,6,36,49,51,52,113,115,117,150],risk:11,rmem_max:6,rmi:[30,49],robin:6,rogu:14,role:[6,9,10,12,15,45],role_a:19,role_admin:19,role_b:19,role_c:19,role_manag:49,role_nam:19,role_opt:19,role_or_permission_stat:12,role_permiss:6,roll:[30,49,80],roll_cycl:80,romain:21,root:[6,24,28,34],rotat:6,roughli:6,round:[6,13,41,46],roundrobin:6,roundrobinschedul:6,rout:[6,50],row:[0,4,6,10,11,13,14,15,17,18,29,35,38,42,43,46,52,87,108,112,117,139,141,142],rowcach:46,rowcachehit:46,rowcachehitoutofrang:46,rowcachemiss:46,rowindexentri:46,rows_per_partit:11,rpc:[6,46],rpc_min:6,rpc_timeout_in_m:[103,153],rsc:171,rubi:[14,33],rule:[6,12,14,28,30],run:[5,6,12,21,24,26,28,30,31,34,41,43,46,49,51,108,117,132,155],runtim:[6,33,97,117],runtimeexcept:23,rust:33,safe:[6,14,21,41,49],safeguard:43,safeti:[41,51],sai:36,said:[11,28,30,117,170],same:[0,5,6,11,12,13,14,15,17,18,19,21,24,26,28,31,36,38,41,46,49,50,132],sampl:[4,6,12,14,46,52,80,117,119,121,167],sampler:[46,119,167],san:43,sandbox:[6,14],sasi:6,satisfi:[0,23,43,46,51],satur:[6,46],save:[6,13,21,30,31,38,42,43,51,117,142],saved_cach:6,saved_caches_directori:31,sbin:30,scala:[14,33],scalar:15,scale:[6,29,42],scan:[6,13,38,46],scenario:24,scene:30,schedul:6,schema:[0,9,11,14,17,46,52,64,117,126,136],schema_own:19,scope:[19,46,49],score:[6,14,21,50],script:[6,14,26,29,80],scrub:[38,41,42,46,117,163],search:28,second:[6,11,12,13,21,30,40,43,49,52,117,140,148],secondari:[10,12,13,15,36,41,46,117,123],secondary_index_stat:12,secondaryindexmanag:46,section:[2,5,7,10,11,12,13,15,19,21,30,33,34,35,41,46,49,51,53],secur:[6,14,15,36,45],see:[0,4,6,10,11,12,13,14,17,19,21,26,28,35,36,40,41,46,49,51,52,87,117,132],seed:[6,31,36,50,100,117,127],seedprovid:6,seek:[6,43,46],seen:[6,11],segment:[4,6,40,46,52,80],select:[6,9,10,11,12,14,15,19,26,29,30,35,38,41,49,52,122],select_claus:13,select_stat:[12,18],self:25,selinux:30,semant:[10,13,14],semi:30,send:[6,8,30],sens:[6,10,13,15,30],sensic:14,sensit:[11,12,14,17],sensor:21,sent:[0,6,21,30,46],separ:[4,6,11,13,23,28,31,41,43,49,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],seq:[6,132],sequenc:12,sequenti:[6,43,132],seren:13,seri:[11,41,52],serial:6,serializingcacheprovid:6,serv:[13,43,49],server:[6,12,13,21,26,29,30,43,46,49],server_encryption_opt:49,servic:[6,26,34,49,51],session:[6,19,49,117,133],set:[0,6,9,10,11,12,13,14,17,18,25,27,28,29,31,36,38,40,41,42,43,46,49,50,51,52,57,76,87,117,130,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,170],set_liter:21,setbatchlogreplaythrottl:117,setcachecapac:117,setcachekeystosav:117,setcompactionthreshold:[41,117],setcompactionthroughput:[41,117],setconcurr:117,setconcurrentcompactor:117,setconcurrentviewbuild:117,sethintedhandoffthrottlekb:117,setint:14,setinterdcstreamthroughput:117,setlogginglevel:117,setlong:14,setmaxhintwindow:117,setstr:14,setstreamthroughput:117,setter:[19,23],settimeout:117,settraceprob:117,setup:[28,29,49],sever:[4,13,19,41,49],sfunc:[9,14],sha:24,shadow:41,share:[11,13,26],sharedpool:52,sharp:32,shed:30,shell:[35,36,53],shift:21,ship:[29,35,49,52],shortcut:18,shorter:49,shorthand:52,should:[0,5,6,10,11,12,13,14,17,19,21,25,26,28,29,30,31,32,33,35,38,41,42,43,46,49,50,51,52,122,132,153],shouldn:11,show:[19,36,51,65,85,105,117,121,131,138,157,158,166,173],shown:[12,52,166],shrink:6,shut:6,shutdown:[6,43],side:[11,13,17,21,49],sign:[13,21,30],signal:[117,128],signatur:[34,40],signific:[6,26,28,29,43],significantli:6,silent:14,similar:[6,13,14,42,43],similarli:[0,10,17,23,43,117,122],simpl:[6,11,26,29,49],simple_classnam:29,simple_select:13,simplequerytest:29,simplereplicationstrategi:49,simpleseedprovid:6,simplesnitch:[6,50],simplestrategi:11,simpli:[0,6,11,13,14,17,21,26,29,41,43,46,51,171],simul:29,simultan:[6,43,52,57,87,130,139,170],sinc:[6,11,13,14,21,26,30,34,41,46,51],singl:[0,6,10,11,12,13,14,17,18,19,21,23,28,31,35,36,45,46,49,50,52,60],singleton:25,situat:[6,29,41],size:[4,6,11,21,23,30,31,38,40,42,43,45,46,49,52,80,114,117],size_estim:[117,125],sizetieredcompactionstrategi:[11,41],sjk:117,skip:[6,13,46,51,52,139,156],skipcol:52,skiprow:52,sks:34,sla:25,slash:12,slf4j:23,slightli:6,slow:[6,50],slower:[6,11,38],slowest:6,slowli:[6,21],small:[6,11,13,21,30,41,43],smaller:[6,30,41,43,52],smallest:[0,11,14,46],smallint:[9,10,14,17,21],smith:21,smoother:10,smoothli:6,snappi:6,snappycompressor:[11,42],snapshot:[6,26,46,58,114,117,139],snapshot_nam:58,snapshotnam:[58,117],snitch:[6,36,45,64,117],socket:[6,49,153],sole:11,solid:[6,43],some:[0,6,9,11,12,13,14,21,26,28,29,30,31,40,41,42,46,49,51,52],some_funct:14,some_nam:12,someaggreg:14,somearg:14,somefunct:14,someon:[24,41],sometim:[6,12,13],someudt:14,somewher:34,soon:49,sooner:6,sort:[4,11,13,21,41,43,166],sort_kei:166,sourc:[5,6,8,14,27,34,46,122],source_elaps:52,space:[6,23,30,40,41,43,46],space_used_by_snapshots_tot:166,space_used_l:166,space_used_tot:166,span:[6,13,41],sparingli:13,spark:32,spec:[25,35,46,52],speci:[11,18],special:[12,13,29,30,41,46],specif:[6,9,11,12,13,19,21,26,28,30,32,40,41,46,49,52,117,122,132],specifc:46,specifi:[0,6,10,11,12,13,14,16,18,19,21,26,30,35,40,41,42,46,49,51,52,58,60,101,117,122,132,138,151,153,156,163,166,169],specific_dc:132,specific_host:132,specific_keyspac:122,specific_sourc:122,specific_token:122,specul:[0,46],speculativeretri:46,speed:[6,36],spent:46,spike:30,spin:[6,43],spindl:6,spirit:[6,50],split:[23,30,41,46,52,60],spread:[6,50],sql:[13,15],squar:12,squash:28,src:122,ssd:[6,16,43],ssl:[6,30,45,52,117,128],ssl_storage_port:50,sss:17,sstabl:[2,6,11,30,38,42,43,45,57,60,87,101,108,114,117,124,130,139,170,171],sstable_compression_ratio:166,sstable_count:166,sstable_s:41,sstable_size_in_mb:41,sstableexpiredblock:41,sstablesperreadhistogram:46,sstablewrit:23,stabil:28,stabl:[34,52],stack:6,stage:[28,92,117,145],stai:[36,41],stale:49,stall:[6,51],stand:[6,29],standalon:29,standard:[6,21,30,34,46],start:[0,6,9,13,27,30,31,34,36,41,43,46,49,51,60,132,163],start_token:[60,132],start_token_1:122,start_token_2:122,start_token_n:122,starter:28,startup:[6,20,26,30,41,46,51],starvat:6,state:[6,14,38,41,43,46,51,117,157],statement:[6,9,10,11,13,14,15,16,17,19,20,21,25,27,28,38,41,46,49,52],static0:11,static1:11,statist:[4,41,46,52,62,88,117,120,165,166,168],statu:[19,25,28,30,34,52,117,131,158,159,160,161,162,171],statusautocompact:117,statusbackup:117,statusbinari:117,statusgossip:117,statushandoff:117,stc:11,stdin:52,stdout:52,step:[6,26,31,49],still:[0,6,10,13,14,17,21,23,49,51,52],stop:[6,34,52,75,117,135,164],stop_commit:6,stop_paranoid:6,stopdaemon:117,storag:[2,11,15,16,28,30,36,42,43,45],storage_port:[31,50],storageservic:[6,23],store:[0,4,6,10,11,12,13,21,36,38,41,42,43,46,49,52,72,80,82,117,162],store_typ:6,straight:51,straightforward:40,strategi:[0,6,11,45,50],stream:[4,6,36,41,42,45,56,96,102,117,122,132,149,150,152,153],street:21,strength:6,strict:[10,41],strictli:[8,11,14],string:[6,10,11,12,13,14,16,17,19,20,21,46,52,101],strong:0,strongli:[6,11,12,49],structur:[4,6,9,19,25,38,46],stub:49,style:[6,25,26,27,28,29,36],stype:[9,14],sub:[11,13,21,34,41],subclass:6,subdirectori:[6,20],subject:[6,14,49],submiss:[6,28],submit:[28,29,36,60],subscrib:8,subscript:8,subsequ:[6,13,30,41,42],subset:[19,41,52],substitut:34,subsystem:49,subvert:41,succed:46,succesfulli:46,success:[0,52],sudden:6,sudo:[30,34],suffici:[6,43],suggest:[12,28,43],suit:[6,28,29,49],suitabl:[13,14,25,28],sum:40,summari:[4,6,46],sun:[23,49],sunx509:6,supercolumn:9,supersed:[10,139],superus:[9,19,49],suppli:[13,24],support:[0,6,9,10,11,12,13,14,15,16,18,19,21,28,29,30,32,36,41,49,52,139,163],suppos:13,sure:[6,8,23,26,28,29,30,31,34,41],surplu:30,surpris:0,surprisingli:6,surround:[17,52],suscept:14,suspect:[5,28],suspend:26,swamp:30,swap:6,swiss:[117,155],symmetri:17,symptom:30,sync:[6,30,46,132],synchron:6,synonym:19,synopsi:[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],syntact:[11,19],syntax:[10,12,13,14,19,21,41,42],sys:6,sysctl:30,sysintern:6,system:[6,11,14,19,29,30,31,35,41,43,46,49,52,91,93,94,96,102,108,117,124,125,126,144,146,147,149,152],system_auth:[6,49],system_trac:132,tab:23,tabl:[0,4,6,9,10,12,13,14,15,16,17,18,19,20,21,29,38,41,42,45,49,52,57,60,67,75,77,86,87,90,95,99,108,117,123,124,126,130,132,139,143,156,158,163,165,166,170,171],table1:19,table_nam:[11,13,16,19,20,41,166],table_opt:[11,18],tablehistogram:117,tablestat:117,tag:[21,25,28,156],take:[6,10,11,13,14,21,25,26,28,30,38,41,42,43,51,117,156],taken:[6,40,41,46],tar:34,tarbal:[31,33,52],target:[11,19,26,29,41],task:[6,26,28,46,52],tcp:[6,30],tcp_keepalive_intvl:30,tcp_keepalive_prob:30,tcp_keepalive_tim:30,tcp_nodelai:6,tcp_wmem:6,teach:[6,50],team:30,technetwork:6,technic:[11,15],technot:6,tee:34,tell:[6,13,25,30,31,46],temporari:49,temporarili:6,tenanc:6,tend:[6,30,43],tendenc:6,terabyt:42,term:[6,13,14,15,18,21],termin:[12,52],ternari:23,test:[6,8,23,25,27,28,35,36,43,52],test_keyspac:49,testabl:[25,28],testbatchandlist:29,testmethod1:29,testmethod2:29,testsom:29,teststaticcompactt:29,text:[4,9,11,12,13,14,17,21,40,42,49],than:[0,6,11,12,13,14,15,18,21,23,28,36,41,42,43,49,50,51,133,146,147],thei:[6,9,10,11,12,13,14,15,18,19,21,23,25,28,29,36,38,41,42,43,46,49],them:[6,10,11,13,14,21,23,28,29,30,35,38,41,46,49,117,170],themselv:[13,19],theoret:11,therefor:[28,29,49],thi:[0,2,4,5,6,7,10,11,12,13,14,15,17,18,19,21,23,24,25,26,28,29,30,31,33,34,36,38,40,41,42,43,46,49,50,51,52,53,54,55,57,58,60,63,65,67,73,77,83,86,87,89,90,92,95,99,101,103,107,108,115,117,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],thing:[6,21,24,28,30,33,41],think:6,third:[21,25,46],thobb:52,those:[11,12,13,14,16,17,18,19,21,28,30,40,41,49,52,170],though:[6,10,12,21,36,41,42,46],thousand:52,thousandssep:52,thread:[6,43,46,49,57,87,117,130,132,139,148,168,170],threadpool:45,threadpoolnam:46,threadprioritypolici:26,three:[0,6,38,41,42,49,52],threshold:[4,40,43,50,90,117,143,150],thrift:[6,9,11,15,30,46],throttl:[6,89,117,140,144,148,149,152],throttle_limit:6,through:[0,5,9,10,11,12,13,26,28,30,35,40,41,52],throughout:49,throughput:[0,6,41,42,43,46,91,96,102,117,144,149,152],throwabl:[25,29],thrown:21,thu:[6,10,11,12,13,18,21,30,46,50,51,117,170],thumb:[6,28],thusli:21,tib:[62,116,166],ticket:[5,24,25,28,29,40],tie:30,tier:45,ties:13,tighter:6,tightli:6,tild:52,time:[0,6,8,9,10,11,12,13,15,16,17,18,23,25,26,28,29,30,38,40,42,45,46,49,52,117,119],timehorizon:6,timelin:11,timeout:[6,21,30,46,52,103,117,153],timeout_in_m:153,timeout_typ:[103,153],timer:[6,46],timestamp:[4,9,10,11,13,14,15,17,36,41,52,139],timeunit:41,timeuuid:[9,10,11,17,21],timewindowcompactionstrategi:11,timezon:[17,52],tini:[6,41],tinyint:[9,10,14,17,21],tjake:23,tls_dhe_rsa_with_aes_128_cbc_sha:6,tls_dhe_rsa_with_aes_256_cbc_sha:6,tls_ecdhe_rsa_with_aes_128_cbc_sha:6,tls_ecdhe_rsa_with_aes_256_cbc_sha:6,tls_rsa_with_aes_128_cbc_sha:6,tls_rsa_with_aes_256_cbc_sha:6,toc:4,todai:12,todat:14,todo:[25,29],togeth:[6,11,13,14,41],toggl:49,tojson:15,token:[2,4,6,9,10,12,13,30,41,46,52,60,65,108,109,115,117,122,132,138,171],toler:38,tom:13,tombston:[4,6,11,17,30,45,46,87,139],tombstone_compact:163,tombstone_compaction_interv:41,tombstone_threshold:41,tombstonescannedhistogram:46,ton:29,too:[6,11,12,14,21,25,41],tool:[6,12,28,30,36,41,46,49,51],top:[13,21,28,36,46,119,166,167],topcount:[119,167],topic:52,topolog:[6,50,138],toppartit:117,total:[6,13,40,41,46,114,117],totalblockedtask:46,totalcommitlogs:46,totalcompactionscomplet:46,totaldiskspaceus:46,totalhint:46,totalhintsinprogress:46,totallat:46,totimestamp:14,touch:[8,30,41],tough:29,tounixtimestamp:14,tour:21,toward:11,tpstat:117,trace:[6,46,104,117,132,154],track:[6,41,46],tracker:28,tradeoff:[0,6],tradit:[41,42],traffic:[6,50],trail:23,transact:[13,20,46,163],transfer:[6,30,49],transform:13,transit:[10,19],translat:6,transpar:[6,30],transport:[6,26,46,69,79,117,160],treat:[0,6,10,30,50],tree:[6,26,46],tri:41,trigger:[4,6,9,12,15,36,38,42,45,57,117,129],trigger_nam:20,trigger_stat:12,trip:[6,13],trivial:49,troubleshoot:[25,36],truediskspaceus:[114,117],truesnapshotss:46,truli:9,truncat:[6,9,10,15,19,103,117,153,169],truncate_stat:12,truncatehint:117,trunk:[24,25,26,28],trust:49,trustor:6,truststor:[6,49],truststore_password:6,truststorepassword:49,tserverfactori:6,ttl:[4,6,9,10,11,14,17,21,45,139],tty:52,tunabl:2,tune:[30,38,41,43],tupl:[6,9,10,12,13,14,15,17],tuple_liter:[12,13],tuple_typ:21,tuplevalu:[10,14],turn:[0,6,28,30,49],twc:[11,41],twice:[6,21],two:[0,6,11,12,13,14,17,26,36,38,41,43,49,50,52],txt:[4,14,24,25,28],type:[0,6,10,11,12,13,14,15,19,25,34,36,43,45,49,52,103,117,153,163],type_hint:12,typeasblob:14,typecodec:14,typic:[0,6,13,30,38,41,43,46,49,52],ubuntu:26,udf:[6,14],udf_stat:12,udfcontext:[10,14],udt:[14,17],udt_liter:12,udt_nam:21,udt_stat:12,udtarg:14,udtnam:14,udtvalu:[10,14],ulimit:30,unabl:[6,25,36],unaffect:21,unavail:[6,11,46,49,51],unblock:46,unbound:21,unchecked_tombstone_compact:41,uncom:[6,46,49],uncommon:28,uncompress:[6,42,46],undelet:41,under:[6,21,23,29,46,49],underli:[6,18,41,49],understand:[6,28,30],unencrypt:[6,49],unexpectedli:21,unfinishedcommit:46,unflush:[40,156],unfortun:29,uniqu:[11,14,21],unit:[21,25,27,41,117,141],unixtimestampof:[10,14],unless:[6,11,13,16,18,19,21,23,40,49,50],unlik:[6,10,13,21],unlimit:[6,30,52],unlog:9,unnecessari:[25,51],unnecessarili:40,unpredict:13,unprepar:46,unquot:12,unquoted_identifi:12,unquoted_nam:11,unrel:28,unreleas:28,unrepair:45,unsecur:49,unset:[6,10,13,17],unsign:21,unspecifi:6,unsubscrib:[8,36],untar:34,until:[0,6,21,38,40,41,42,49,50],unus:6,unusu:25,updat:[6,9,10,11,12,14,15,17,18,19,21,25,28,29,34,36,41,42,46,49,52],update_paramet:13,update_stat:[12,13],upgrad:[6,41,117,170],upgrade_sst:163,upgradesst:[38,41,42,117],upload:28,upon:[6,21,38,42],upper:[12,17,41,49],ups:43,upstream:28,uptim:[109,117],url:24,usag:[4,6,11,21,36,38,40,42,46,52],use:[6,9,10,11,12,13,14,16,17,18,19,21,23,25,26,28,29,31,34,35,36,38,40,41,43,46,49,50,51,52,57,87,100,117,119,130,139,167,170],use_stat:12,usecas:41,useconcmarksweepgc:26,usecondcardmark:26,used:[0,4,6,9,10,11,12,13,14,15,16,17,18,19,21,25,26,28,29,30,41,43,46,49,50,51,52,55,57,58,60,65,67,73,76,77,83,86,87,90,92,95,99,101,103,107,108,115,117,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],useecassandra:49,useful:[0,6,11,14,28,41,42,46,51,52,55,57,58,60,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],useparnewgc:26,user1:13,user2:13,user3:13,user4:13,user:[5,6,8,9,10,11,12,13,15,16,17,18,25,28,30,34,38,41,42,43,49,52,60,76,117],user_count:13,user_defined_typ:21,user_funct:19,user_nam:13,user_occup:13,user_opt:19,useract:13,userid:[11,13,14],userindex:16,usernam:[6,13,14,49,52,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],uses:[0,4,6,11,12,13,14,16,19,20,29,30,49],usethreadprior:26,using:[4,6,10,11,12,13,14,18,19,21,26,28,29,33,34,35,36,38,42,43,45,46,49,51,52,60,122,139,156],usr:52,usual:[6,13,21,24,29,38,49,132],utc:[17,52],utd:11,utf8:[21,52],utf8typ:9,utf:52,util:[14,25,41,52],uuid:[9,10,11,12,17,21],val0:11,val1:11,val:14,valid:[6,10,11,12,13,14,17,21,30,41,42,46,49,52,132,139,163],validationexecutor:46,valu:[6,9,10,11,12,13,14,16,17,21,25,26,30,38,41,46,49,50,52,76,104,108,117,140,144,146,147,148,149,151,152,153,154],value1:13,value2:13,value_in_kb_per_sec:[140,148],value_in_m:151,value_in_mb:[144,149,152],valueof:14,varchar:[9,11,14,17,21],vari:[6,42],variabl:[6,10,12,17,21,26,33],variant:12,varieti:40,varint:[9,11,14,17,21],variou:[26,29,43,49],veri:[6,11,13,28,29,30,38,41,42,43],verifi:[28,30,32,34,42,108,117,163],version:[5,6,9,11,14,15,21,26,28,32,34,41,46,51,59,64,74,84,117,170,171],vertic:52,via:[6,8,10,19,25,30,31,41,42,43,46,49,50],view:[6,10,11,12,15,19,36,46,52,94,117,147,173],view_build:163,view_nam:18,viewbuildstatu:117,viewlockacquiretim:46,viewmutationstag:46,viewpendingmut:46,viewreadtim:46,viewreplicasattempt:46,viewreplicassuccess:46,viewwrit:46,viewwritelat:46,virtual:[0,6,30,41,46,51],visibl:[11,19,23,38],vnode:[6,42],volum:[6,40,42],vulner:[6,49],wai:[4,6,12,15,17,18,21,24,26,29,30,41,42,132],wait:[0,6,11,28,30,46,117,134],waitingoncommit:46,waitingonfreememtablespac:46,waitingonsegmentalloc:46,want:[6,11,13,26,28,29,30,49,51],warmup:[117,142],warn:[6,11,23,29,45,132],washington:21,wasn:10,wast:6,watch:29,weaker:0,websit:[29,34],week:21,weight:[6,46,80],welcom:8,well:[6,11,13,14,17,21,25,26,40,42,43,49,50,117,135],went:46,were:[6,9,10,19,25,26,41,46],what:[11,13,21,27,29,31,36,41,43,49,52],whatev:[10,13,30],whedon:13,when:[4,6,9,10,11,12,13,14,15,16,17,19,21,23,25,28,29,31,36,38,40,42,43,45,46,49,50,51,52,55,57,58,60,63,65,67,73,77,83,86,87,90,92,95,99,101,103,107,108,115,119,122,123,124,130,131,132,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,163,165,166,167,169,170,171,173],where:[0,4,6,9,10,11,12,14,16,17,18,19,21,25,29,31,34,38,41,42,49,51,52,80,132],where_claus:13,wherea:[21,49],whether:[0,6,9,11,13,26,41,50,52,80],which:[0,4,5,6,10,11,12,13,14,15,16,18,19,20,21,28,29,30,31,34,35,38,40,41,42,43,46,49,50,51,60,95,99,108,114,117,122,132],whichev:[0,6],whitelist:49,whitespac:27,who:[19,28,30],whole:[6,11,13,14,21,41],whose:[11,21,163],why:[25,28,36],wide:[4,40],width:12,wiki:[6,26],wildcard:[13,19],window:[0,6,45,46,49,98,106,117,151],winner:30,wip:[26,28],wipe:[30,51],wire:30,wise:11,wish:[6,41,46],within:[0,4,6,11,12,13,16,28,30,41,43,46,49],withing:6,without:[6,11,12,13,14,19,21,24,26,28,29,30,40,43,46,49,52,55,108,117,124],wmem_max:6,won:[6,13,24],wont:41,word:[10,11,12,18,19,21,30],work:[6,10,11,14,15,17,23,24,26,27,29,30,41,43,46,49,50,51,52],worker:52,workload:[6,25,38,41,43],workspac:26,worktre:26,worri:[28,30],wors:[6,50],worst:[6,28],worthwhil:6,would:[6,12,13,14,17,19,26,28,29,36,41,42,43,49,50],wrap:50,write:[0,4,6,10,11,13,21,23,25,29,30,40,41,42,43,46,49,50,51,52,75,103,117,153,166],write_lat:166,write_request_timeout:30,writelat:46,writer:[6,23],writetim:[9,14],writetimeoutexcept:6,written:[4,6,20,30,38,41,42,46],wrong:6,wrte:46,www:[6,11,34],xlarg:43,xml:31,xmn220m:26,xms1024m:26,xmx1024m:26,xmx:43,xss256k:26,xvf:34,yaml:[6,14,31,34,46,49,50,51,61,76,80,117,135,166,168],year:[13,21],yes:[9,11,49],yet:[11,46],yield:[13,51],you:[5,6,8,10,11,12,13,14,16,17,18,20,21,23,24,26,27,29,30,31,32,33,34,35,36,41,46,49,50,51,52,55,117,156],younger:14,your:[0,5,6,8,10,11,12,23,26,28,29,30,31,34,36,41,43,49,50,52],yourself:[24,29],yyyi:[17,21],z_0:[11,16,18],zero:[6,10,30,46,50],zip:21,zipcod:21,zone:[6,21,50],zzzzz:28},titles:["Dynamo","Guarantees","Architecture","Overview","Storage Engine","Reporting Bugs and Contributing","Cassandra Configuration File","Configuring Cassandra","Contact us","Appendices","Changes","Data Definition","Definitions","Data Manipulation","Functions","The Cassandra Query Language (CQL)","Secondary Indexes","JSON Support","Materialized Views","Security","Triggers","Data Types","Data Modeling","Code Style","How-to Commit","Review Checklist","Building and IDE Integration","Cassandra Development","Contributing Code Changes","Testing","Frequently Asked Questions","Configuring Cassandra","Client drivers","Getting Started","Installing Cassandra","Inserting and querying","Welcome to Apache Cassandra\u2019s documentation!","Backups","Bloom Filters","Bulk Loading","Change Data Capture","Compaction","Compression","Hardware Choices","Hints","Operating Cassandra","Monitoring","Read repair","Repair","Security","Snitch","Adding, replacing, moving and removing nodes","cqlsh: the CQL shell","Cassandra Tools","Nodetool","assassinate","bootstrap","cleanup","clearsnapshot","clientstats","compact","compactionhistory","compactionstats","decommission","describecluster","describering","disableauditlog","disableautocompaction","disablebackup","disablebinary","disablefullquerylog","disablegossip","disablehandoff","disablehintsfordc","disableoldprotocolversions","drain","enableauditlog","enableautocompaction","enablebackup","enablebinary","enablefullquerylog","enablegossip","enablehandoff","enablehintsfordc","enableoldprotocolversions","failuredetector","flush","garbagecollect","gcstats","getbatchlogreplaythrottle","getcompactionthreshold","getcompactionthroughput","getconcurrency","getconcurrentcompactors","getconcurrentviewbuilders","getendpoints","getinterdcstreamthroughput","getlogginglevels","getmaxhintwindow","getreplicas","getseeds","getsstables","getstreamthroughput","gettimeout","gettraceprobability","gossipinfo","handoffwindow","help","import","info","invalidatecountercache","invalidatekeycache","invalidaterowcache","join","listsnapshots","move","netstats","Nodetool","pausehandoff","profileload","proxyhistograms","rangekeysample","rebuild","rebuild_index","refresh","refreshsizeestimates","reloadlocalschema","reloadseeds","reloadssl","reloadtriggers","relocatesstables","removenode","repair","repair_admin","replaybatchlog","resetfullquerylog","resetlocalschema","resumehandoff","ring","scrub","setbatchlogreplaythrottle","setcachecapacity","setcachekeystosave","setcompactionthreshold","setcompactionthroughput","setconcurrency","setconcurrentcompactors","setconcurrentviewbuilders","sethintedhandoffthrottlekb","setinterdcstreamthroughput","setlogginglevel","setmaxhintwindow","setstreamthroughput","settimeout","settraceprobability","sjk","snapshot","status","statusautocompaction","statusbackup","statusbinary","statusgossip","statushandoff","stop","stopdaemon","tablehistograms","tablestats","toppartitions","tpstats","truncatehints","upgradesstables","verify","version","viewbuildstatus","Troubleshooting"],titleterms:{"class":50,"function":[13,14,17],"import":[23,108],"long":29,"new":30,"static":11,"switch":41,Adding:51,IDE:26,IDEs:23,LCS:41,TLS:49,The:[11,13,15,17,41],USE:11,Use:42,Uses:42,Using:26,Will:30,With:49,access:49,add:30,address:30,advanc:42,after:51,aggreg:14,alias:13,all:[19,30],alloc:51,allocate_tokens_for_keyspac:6,allow:13,alter:[11,18,19,21],ani:30,apach:36,appendic:9,appendix:9,architectur:2,ask:30,assassin:55,assign:51,auth:49,authent:[6,19,49],author:[6,49],auto_snapshot:6,automat:19,avg:14,back_pressure_en:6,back_pressure_strategi:6,backup:37,batch:[13,30],batch_size_fail_threshold_in_kb:6,batch_size_warn_threshold_in_kb:6,batchlog_replay_throttle_in_kb:6,befor:28,benefit:42,binari:34,blob:[14,30],bloom:38,boilerpl:23,bootstrap:[30,41,51,56],branch:28,broadcast_address:6,broadcast_rpc_address:6,buffer_pool_use_heap_if_exhaust:6,bufferpool:46,bug:[5,28],build:26,bulk:[30,39],cach:[11,46,49],call:30,can:30,captur:[40,52],cas_contention_timeout_in_m:6,cassandra:[6,7,15,17,26,27,29,30,31,34,36,40,45,49,53],cast:14,cdc:40,cdc_enabl:6,cdc_free_space_check_interval_m:6,cdc_raw_directori:6,cdc_total_space_in_mb:6,chang:[10,28,30,31,38,40,41],characterist:21,checklist:25,choic:43,choos:28,circleci:29,claus:13,cleanup:[51,57],clear:52,clearsnapshot:58,client:[32,35,46,49],client_encryption_opt:6,clientstat:59,clojur:32,cloud:43,cluster:[11,30],cluster_nam:6,code:[23,28],collect:[21,41],column:11,column_index_cache_size_in_kb:6,column_index_size_in_kb:6,command:[26,41,52],comment:12,commit:24,commit_failure_polici:6,commitlog:[4,46],commitlog_compress:6,commitlog_directori:6,commitlog_segment_size_in_mb:6,commitlog_sync:6,commitlog_sync_batch_window_in_m:6,commitlog_sync_period_in_m:6,commitlog_total_space_in_mb:6,commitlogseg:40,common:[11,41,43],compact:[9,11,41,46,60],compaction_large_partition_warning_threshold_mb:6,compaction_throughput_mb_per_sec:6,compactionhistori:61,compactionstat:62,compactionstrategi:41,compat:52,compress:[11,42],concern:41,concurrent_compactor:6,concurrent_counter_writ:6,concurrent_materialized_view_writ:6,concurrent_read:6,concurrent_writ:6,condition:19,configur:[6,7,31,40,42],connect:30,consider:11,consist:[0,52],constant:12,contact:8,contribut:[5,28],control:19,convent:[12,23],convers:14,copi:52,count:14,counter:[13,21],counter_cache_keys_to_sav:6,counter_cache_save_period:6,counter_cache_size_in_mb:6,counter_write_request_timeout_in_m:6,cpu:43,cql:[9,15,46,52],cqlsh:[35,52],cqlshrc:52,creat:[11,14,16,18,19,20,21,28],credenti:19,credentials_update_interval_in_m:6,credentials_validity_in_m:6,cross_node_timeout:6,cstar_perf:29,custom:21,cython:52,data:[11,13,17,19,21,22,30,40,41,51],data_file_directori:6,databas:19,date:21,dead:51,debian:34,debug:26,decommiss:63,defin:[14,21],definit:[11,12],defragment:41,delet:[13,30,41],depend:52,describ:[52,65],describeclust:64,detail:41,detect:0,develop:27,dies:30,directori:[31,41],disabl:40,disableauditlog:66,disableautocompact:67,disablebackup:68,disablebinari:69,disablefullquerylog:70,disablegossip:71,disablehandoff:72,disablehintsfordc:73,disableoldprotocolvers:74,disk:[30,43],disk_failure_polici:6,disk_optimization_strategi:6,document:36,doe:30,drain:75,driver:[32,35],drop:[9,11,14,16,18,19,20,21,30],droppedmessag:46,dtest:29,durat:21,dynam:50,dynamic_snitch_badness_threshold:6,dynamic_snitch_reset_interval_in_m:6,dynamic_snitch_update_interval_in_m:6,dynamo:0,each:30,eclips:26,email:30,enabl:[40,49],enable_materialized_view:6,enable_sasi_index:6,enable_scripted_user_defined_funct:6,enable_user_defined_funct:6,enableauditlog:76,enableautocompact:77,enablebackup:78,enablebinari:79,enablefullquerylog:80,enablegossip:81,enablehandoff:82,enablehintsfordc:83,enableoldprotocolvers:84,encod:17,encrypt:49,endpoint_snitch:6,engin:4,entri:30,environ:31,erlang:32,error:30,even:30,except:23,exist:30,exit:52,expand:52,experiment:6,expir:41,factor:30,fail:[30,51],failur:[0,30],failuredetector:85,featur:6,file:[6,23,34],file_cache_size_in_mb:6,filedescriptorratio:46,filter:[13,38],fix:28,flush:86,format:23,frequent:30,from:[26,30,34,52],fromjson:17,fulli:41,further:40,garbag:41,garbagecollect:87,garbagecollector:46,gc_grace_second:41,gc_log_threshold_in_m:6,gc_warn_threshold_in_m:6,gcstat:88,gener:23,get:33,getbatchlogreplaythrottl:89,getcompactionthreshold:90,getcompactionthroughput:91,getconcurr:92,getconcurrentcompactor:93,getconcurrentviewbuild:94,getendpoint:95,getinterdcstreamthroughput:96,getlogginglevel:97,getmaxhintwindow:98,getreplica:99,getse:100,getsstabl:101,getstreamthroughput:102,gettimeout:103,gettraceprob:104,give:30,gossip:0,gossipinfo:105,grace:41,grant:19,group:13,guarante:1,handl:23,handoffwindow:106,hang:51,happen:30,hardwar:43,haskel:32,heap:30,help:[52,107],hint:44,hinted_handoff_disabled_datacent:6,hinted_handoff_en:6,hinted_handoff_throttle_in_kb:6,hintedhandoff:46,hints_compress:6,hints_directori:6,hints_flush_period_in_m:6,host:[30,52],how:[24,30],idea:26,identifi:12,impact:42,incremental_backup:6,index:[16,46],index_summary_capacity_in_mb:6,index_summary_resize_interval_in_minut:6,info:109,initial_token:6,insert:[13,17,35],instal:34,integr:[26,49],intellij:26,inter:49,inter_dc_stream_throughput_outbound_megabits_per_sec:6,inter_dc_tcp_nodelai:6,intern:[19,49],internode_authent:6,internode_compress:6,internode_recv_buff_size_in_byt:6,internode_send_buff_size_in_byt:6,invalidatecountercach:110,invalidatekeycach:111,invalidaterowcach:112,irc:8,java:[30,32],jconsol:30,jmx:[30,41,46,49],join:[30,113],json:17,jvm:46,kei:[11,16,18],key_cache_keys_to_sav:6,key_cache_save_period:6,key_cache_size_in_mb:6,keyspac:[11,30,46],keyword:[9,12],lang:30,languag:15,larg:30,level:[0,41],limit:13,line:[26,52],list:[8,19,21,30],listen:30,listen_address:[6,30],listen_interfac:6,listen_interface_prefer_ipv6:6,listen_on_broadcast_address:6,listsnapshot:114,liter:21,live:30,load:[30,39],locat:31,log:[30,31,41],login:52,lot:30,made:30,mail:8,main:31,major:41,manipul:13,manual:51,map:[16,21,30],materi:18,max:[14,30],max_hint_window_in_m:6,max_hints_delivery_thread:6,max_hints_file_size_in_mb:6,max_value_size_in_mb:6,maxtimeuuid:14,mean:30,memori:[30,43,46],memorypool:46,memtabl:4,memtable_allocation_typ:6,memtable_cleanup_threshold:6,memtable_flush_writ:6,memtable_heap_space_in_mb:6,memtable_offheap_space_in_mb:6,merg:41,messag:30,method:30,metric:46,min:14,minor:41,mintimeuuid:14,model:22,monitor:[46,51],more:[30,41],move:[51,115],movement:51,multilin:23,nativ:[14,21],native_transport_max_concurrent_connect:6,native_transport_max_concurrent_connections_per_ip:6,native_transport_max_frame_size_in_mb:6,native_transport_max_thread:6,native_transport_port:6,native_transport_port_ssl:6,net:32,netstat:116,networktopologystrategi:0,newer:26,node:[30,49,51],nodej:32,nodetool:[30,41,54,117],noteworthi:21,now:14,num_token:6,one:30,onli:30,oper:[30,41,42,45],option:[11,18,41,52],order:[11,13],otc_backlog_expiration_interval_m:6,otc_coalescing_enough_coalesced_messag:6,otc_coalescing_strategi:6,otc_coalescing_window_u:6,other:[11,30],outofmemoryerror:30,overview:[3,40],packag:34,page:52,paramet:[13,40,41],partit:11,partition:6,password:49,patch:28,pausehandoff:118,perform:29,permiss:19,permissions_update_interval_in_m:6,permissions_validity_in_m:6,phi_convict_threshold:6,php:32,pick:0,point:30,port:30,prepar:12,prepared_statements_cache_size_mb:6,prerequisit:34,primari:[11,18],profileload:119,progress:51,project:26,properti:31,proxyhistogram:120,python:32,pytz:52,queri:[15,35],question:30,rang:[0,51],range_request_timeout_in_m:6,rangekeysampl:121,read:[40,47],read_request_timeout_in_m:6,rebuild:122,rebuild_index:123,refresh:124,refreshsizeestim:125,refus:30,releas:28,reloadlocalschema:126,reloadse:127,reloadssl:128,reloadtrigg:129,relocatesst:130,remot:30,remov:[41,51],removenod:131,repair:[41,47,48,132],repair_admin:133,repair_session_max_tree_depth:6,replac:51,replaybatchlog:134,replic:[0,30],report:[5,30,46],request:46,request_schedul:6,request_scheduler_id:6,request_scheduler_opt:6,request_timeout_in_m:6,reserv:9,resetfullquerylog:135,resetlocalschema:136,result:13,resum:51,resumehandoff:137,revers:11,review:25,revok:19,rhel:30,right:28,ring:[0,30,138],role:[19,49],role_manag:6,roles_update_interval_in_m:6,roles_validity_in_m:6,row_cache_class_nam:6,row_cache_keys_to_sav:6,row_cache_save_period:6,row_cache_size_in_mb:6,rpc_address:6,rpc_interfac:6,rpc_interface_prefer_ipv6:6,rpc_keepal:6,rpc_max_thread:6,rpc_min_thread:6,rpc_port:6,rpc_recv_buff_size_in_byt:6,rpc_send_buff_size_in_byt:6,rpc_server_typ:6,rubi:32,run:29,runtim:31,rust:32,safeti:6,sai:30,same:30,saved_caches_directori:6,scala:32,scalar:14,scrub:139,secondari:16,secur:[19,49],see:30,seed:30,seed_provid:6,select:[13,17,18],selector:13,serial:52,server_encryption_opt:6,session:52,set:[19,21,26,30],setbatchlogreplaythrottl:140,setcachecapac:141,setcachekeystosav:142,setcompactionthreshold:143,setcompactionthroughput:144,setconcurr:145,setconcurrentcompactor:146,setconcurrentviewbuild:147,sethintedhandoffthrottlekb:148,setinterdcstreamthroughput:149,setlogginglevel:150,setmaxhintwindow:151,setstreamthroughput:152,settimeout:153,settraceprob:154,setup:26,share:52,shell:52,show:[30,52],signatur:14,simplestrategi:0,singl:[30,41],size:41,sjk:155,slow_query_log_timeout_in_m:6,snapshot:156,snapshot_before_compact:6,snitch:50,sourc:[26,52],special:52,speed:30,ssl:49,ssl_storage_port:6,sstabl:[4,41,46],sstable_preemptive_open_interval_in_mb:6,stai:30,standard:49,start:[26,28,33],start_native_transport:6,start_rpc:6,starv:41,statement:[12,18,23],statu:157,statusautocompact:158,statusbackup:159,statusbinari:160,statusgossip:161,statushandoff:162,stc:41,stop:163,stopdaemon:164,storag:[4,9,46],storage_port:6,store:30,strategi:41,stream:[30,46,51],stream_throughput_outbound_megabits_per_sec:6,streaming_keep_alive_period_in_sec:6,stress:29,style:23,sum:14,support:17,tabl:[11,40,46],tablehistogram:165,tablestat:166,tarbal:34,term:12,test:[26,29],than:30,thei:30,though:30,threadpool:46,threshold:6,thrift_framed_transport_size_in_mb:6,thrift_prepared_statements_cache_size_mb:6,tick:28,tier:41,time:[14,21,41],timestamp:[21,30],timeuuid:14,timewindowcompactionstrategi:41,tock:28,todo:[0,1,3,4,11,22,37,39,44,47,48,54],tojson:17,token:[0,14,51],tombston:41,tombstone_failure_threshold:6,tombstone_warn_threshold:6,tool:[29,53],top:30,toppartit:167,tpstat:168,trace:52,tracetype_query_ttl:6,tracetype_repair_ttl:6,transparent_data_encryption_opt:6,trickle_fsync:6,trickle_fsync_interval_in_kb:6,trigger:[20,41],troubleshoot:174,truncat:11,truncate_request_timeout_in_m:6,truncatehint:169,ttl:[13,41],tunabl:0,tupl:21,two:30,type:[9,17,21,41,46],udt:21,unabl:30,unit:[26,29],unlog:13,unlogged_batch_across_partitions_warn_threshold:6,unrepair:41,unsubscrib:30,updat:[13,30],upgradesst:170,usag:[30,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],use:30,user:[14,19,21],using:[30,41],uuid:14,variabl:31,verifi:171,version:[10,52,172],view:18,viewbuildstatu:173,warn:40,welcom:36,what:[28,30],when:[30,41],where:13,whitespac:23,why:[30,41],window:41,windows_timer_interv:6,without:41,work:[21,28],write_request_timeout_in_m:6,writetim:13,yaml:40,you:28}})
\ No newline at end of file
diff --git a/content/doc/stable/tools/cqlsh.html b/content/doc/stable/tools/cqlsh.html
index b5c6471..0c4fc4e 100644
--- a/content/doc/stable/tools/cqlsh.html
+++ b/content/doc/stable/tools/cqlsh.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="up" title="Cassandra Tools" href="index.html"/> <link rel="next" title="Nodetool" href="nodetool.html"/> <link rel="prev" title="Cassandra Tools" href="index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="up" title="Cassandra Tools" href="index.html"/> <link rel="next" title="Nodetool" href="nodetool.html"/> <link rel="prev" title="Cassandra Tools" href="index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -177,60 +177,60 @@
 <div class="section" id="pytz">
 <h3>pytz<a class="headerlink" href="#pytz" title="Permalink to this headline">¶</a></h3>
 <p>By default, cqlsh displays all timestamps with a UTC timezone.  To support display of timestamps with another timezone,
-the <a class="reference external" href="http://pytz.sourceforge.net/">pytz</a> library must be installed.  See the <code class="docutils literal"><span class="pre">timezone</span></code> option in <a class="reference internal" href="#cqlshrc">cqlshrc</a> for
+the <a class="reference external" href="http://pytz.sourceforge.net/">pytz</a> library must be installed.  See the <code class="docutils literal notranslate"><span class="pre">timezone</span></code> option in <a class="reference internal" href="#cqlshrc">cqlshrc</a> for
 specifying a timezone to use.</p>
 </div>
 <div class="section" id="cython">
 <h3>cython<a class="headerlink" href="#cython" title="Permalink to this headline">¶</a></h3>
-<p>The performance of cqlsh&#8217;s <code class="docutils literal"><span class="pre">COPY</span></code> operations can be improved by installing <a class="reference external" href="http://cython.org/">cython</a>.  This will
-compile the python modules that are central to the performance of <code class="docutils literal"><span class="pre">COPY</span></code>.</p>
+<p>The performance of cqlsh’s <code class="docutils literal notranslate"><span class="pre">COPY</span></code> operations can be improved by installing <a class="reference external" href="http://cython.org/">cython</a>.  This will
+compile the python modules that are central to the performance of <code class="docutils literal notranslate"><span class="pre">COPY</span></code>.</p>
 </div>
 </div>
 <div class="section" id="cqlshrc">
 <h2>cqlshrc<a class="headerlink" href="#cqlshrc" title="Permalink to this headline">¶</a></h2>
-<p>The <code class="docutils literal"><span class="pre">cqlshrc</span></code> file holds configuration options for cqlsh.  By default this is in the user&#8217;s home directory at
-<code class="docutils literal"><span class="pre">~/.cassandra/cqlsh</span></code>, but a custom location can be specified with the <code class="docutils literal"><span class="pre">--cqlshrc</span></code> option.</p>
-<p>Example config values and documentation can be found in the <code class="docutils literal"><span class="pre">conf/cqlshrc.sample</span></code> file of a tarball installation.  You
+<p>The <code class="docutils literal notranslate"><span class="pre">cqlshrc</span></code> file holds configuration options for cqlsh.  By default this is in the user’s home directory at
+<code class="docutils literal notranslate"><span class="pre">~/.cassandra/cqlsh</span></code>, but a custom location can be specified with the <code class="docutils literal notranslate"><span class="pre">--cqlshrc</span></code> option.</p>
+<p>Example config values and documentation can be found in the <code class="docutils literal notranslate"><span class="pre">conf/cqlshrc.sample</span></code> file of a tarball installation.  You
 can also view the latest version of <a class="reference external" href="https://github.com/apache/cassandra/blob/trunk/conf/cqlshrc.sample">cqlshrc online</a>.</p>
 </div>
 <div class="section" id="command-line-options">
 <h2>Command Line Options<a class="headerlink" href="#command-line-options" title="Permalink to this headline">¶</a></h2>
 <p>Usage:</p>
-<p><code class="docutils literal"><span class="pre">cqlsh</span> <span class="pre">[options]</span> <span class="pre">[host</span> <span class="pre">[port]]</span></code></p>
+<p><code class="docutils literal notranslate"><span class="pre">cqlsh</span> <span class="pre">[options]</span> <span class="pre">[host</span> <span class="pre">[port]]</span></code></p>
 <p>Options:</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">-C</span></code> <code class="docutils literal"><span class="pre">--color</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-C</span></code> <code class="docutils literal notranslate"><span class="pre">--color</span></code></dt>
 <dd>Force color output</dd>
-<dt><code class="docutils literal"><span class="pre">--no-color</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--no-color</span></code></dt>
 <dd>Disable color output</dd>
-<dt><code class="docutils literal"><span class="pre">--browser</span></code></dt>
-<dd>Specify the browser to use for displaying cqlsh help.  This can be one of the <a class="reference external" href="https://docs.python.org/2/library/webbrowser.html">supported browser names</a> (e.g. <code class="docutils literal"><span class="pre">firefox</span></code>) or a browser path followed by <code class="docutils literal"><span class="pre">%s</span></code> (e.g.
-<code class="docutils literal"><span class="pre">/usr/bin/google-chrome-stable</span> <span class="pre">%s</span></code>).</dd>
-<dt><code class="docutils literal"><span class="pre">--ssl</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--browser</span></code></dt>
+<dd>Specify the browser to use for displaying cqlsh help.  This can be one of the <a class="reference external" href="https://docs.python.org/2/library/webbrowser.html">supported browser names</a> (e.g. <code class="docutils literal notranslate"><span class="pre">firefox</span></code>) or a browser path followed by <code class="docutils literal notranslate"><span class="pre">%s</span></code> (e.g.
+<code class="docutils literal notranslate"><span class="pre">/usr/bin/google-chrome-stable</span> <span class="pre">%s</span></code>).</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">--ssl</span></code></dt>
 <dd>Use SSL when connecting to Cassandra</dd>
-<dt><code class="docutils literal"><span class="pre">-u</span></code> <code class="docutils literal"><span class="pre">--user</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-u</span></code> <code class="docutils literal notranslate"><span class="pre">--user</span></code></dt>
 <dd>Username to authenticate against Cassandra with</dd>
-<dt><code class="docutils literal"><span class="pre">-p</span></code> <code class="docutils literal"><span class="pre">--password</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-p</span></code> <code class="docutils literal notranslate"><span class="pre">--password</span></code></dt>
 <dd>Password to authenticate against Cassandra with, should
-be used in conjunction with <code class="docutils literal"><span class="pre">--user</span></code></dd>
-<dt><code class="docutils literal"><span class="pre">-k</span></code> <code class="docutils literal"><span class="pre">--keyspace</span></code></dt>
+be used in conjunction with <code class="docutils literal notranslate"><span class="pre">--user</span></code></dd>
+<dt><code class="docutils literal notranslate"><span class="pre">-k</span></code> <code class="docutils literal notranslate"><span class="pre">--keyspace</span></code></dt>
 <dd>Keyspace to authenticate to, should be used in conjunction
-with <code class="docutils literal"><span class="pre">--user</span></code></dd>
-<dt><code class="docutils literal"><span class="pre">-f</span></code> <code class="docutils literal"><span class="pre">--file</span></code></dt>
+with <code class="docutils literal notranslate"><span class="pre">--user</span></code></dd>
+<dt><code class="docutils literal notranslate"><span class="pre">-f</span></code> <code class="docutils literal notranslate"><span class="pre">--file</span></code></dt>
 <dd>Execute commands from the given file, then exit</dd>
-<dt><code class="docutils literal"><span class="pre">--debug</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--debug</span></code></dt>
 <dd>Print additional debugging information</dd>
-<dt><code class="docutils literal"><span class="pre">--encoding</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--encoding</span></code></dt>
 <dd>Specify a non-default encoding for output (defaults to UTF-8)</dd>
-<dt><code class="docutils literal"><span class="pre">--cqlshrc</span></code></dt>
-<dd>Specify a non-default location for the <code class="docutils literal"><span class="pre">cqlshrc</span></code> file</dd>
-<dt><code class="docutils literal"><span class="pre">-e</span></code> <code class="docutils literal"><span class="pre">--execute</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--cqlshrc</span></code></dt>
+<dd>Specify a non-default location for the <code class="docutils literal notranslate"><span class="pre">cqlshrc</span></code> file</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">-e</span></code> <code class="docutils literal notranslate"><span class="pre">--execute</span></code></dt>
 <dd>Execute the given statement, then exit</dd>
-<dt><code class="docutils literal"><span class="pre">--connect-timeout</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--connect-timeout</span></code></dt>
 <dd>Specify the connection timeout in seconds (defaults to 2s)</dd>
-<dt><code class="docutils literal"><span class="pre">--request-timeout</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">--request-timeout</span></code></dt>
 <dd>Specify the request timeout in seconds (defaults to 10s)</dd>
-<dt><code class="docutils literal"><span class="pre">-t</span></code> <code class="docutils literal"><span class="pre">--tty</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">-t</span></code> <code class="docutils literal notranslate"><span class="pre">--tty</span></code></dt>
 <dd>Force tty mode (command prompt)</dd>
 </dl>
 </div>
@@ -239,61 +239,61 @@
 <p>In addition to supporting regular CQL statements, cqlsh also supports a number of special commands that are not part of
 CQL.  These are detailed below.</p>
 <div class="section" id="consistency">
-<h3><code class="docutils literal"><span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#consistency" title="Permalink to this headline">¶</a></h3>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
+<h3><code class="docutils literal notranslate"><span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#consistency" title="Permalink to this headline">¶</a></h3>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
 <p>Sets the consistency level for operations to follow.  Valid arguments include:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">ANY</span></code></li>
-<li><code class="docutils literal"><span class="pre">ONE</span></code></li>
-<li><code class="docutils literal"><span class="pre">TWO</span></code></li>
-<li><code class="docutils literal"><span class="pre">THREE</span></code></li>
-<li><code class="docutils literal"><span class="pre">QUORUM</span></code></li>
-<li><code class="docutils literal"><span class="pre">ALL</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_QUORUM</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_ONE</span></code></li>
-<li><code class="docutils literal"><span class="pre">SERIAL</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ANY</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ONE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">TWO</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">THREE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">QUORUM</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">ALL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_QUORUM</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_ONE</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_SERIAL</span></code></li>
 </ul>
 </div>
 <div class="section" id="serial-consistency">
-<h3><code class="docutils literal"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#serial-consistency" title="Permalink to this headline">¶</a></h3>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
+<h3><code class="docutils literal notranslate"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span></code><a class="headerlink" href="#serial-consistency" title="Permalink to this headline">¶</a></h3>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">SERIAL</span> <span class="pre">CONSISTENCY</span> <span class="pre">&lt;consistency</span> <span class="pre">level&gt;</span></code></p>
 <p>Sets the serial consistency level for operations to follow.  Valid arguments include:</p>
 <ul class="simple">
-<li><code class="docutils literal"><span class="pre">SERIAL</span></code></li>
-<li><code class="docutils literal"><span class="pre">LOCAL_SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">SERIAL</span></code></li>
+<li><code class="docutils literal notranslate"><span class="pre">LOCAL_SERIAL</span></code></li>
 </ul>
-<p>The serial consistency level is only used by conditional updates (<code class="docutils literal"><span class="pre">INSERT</span></code>, <code class="docutils literal"><span class="pre">UPDATE</span></code> and <code class="docutils literal"><span class="pre">DELETE</span></code> with an <code class="docutils literal"><span class="pre">IF</span></code>
+<p>The serial consistency level is only used by conditional updates (<code class="docutils literal notranslate"><span class="pre">INSERT</span></code>, <code class="docutils literal notranslate"><span class="pre">UPDATE</span></code> and <code class="docutils literal notranslate"><span class="pre">DELETE</span></code> with an <code class="docutils literal notranslate"><span class="pre">IF</span></code>
 condition). For those, the serial consistency level defines the consistency level of the serial phase (or “paxos” phase)
 while the normal consistency level defines the consistency for the “learn” phase, i.e. what type of reads will be
-guaranteed to see the update right away. For example, if a conditional write has a consistency level of <code class="docutils literal"><span class="pre">QUORUM</span></code> (and
-is successful), then a <code class="docutils literal"><span class="pre">QUORUM</span></code> read is guaranteed to see that write. But if the regular consistency level of that
-write is <code class="docutils literal"><span class="pre">ANY</span></code>, then only a read with a consistency level of <code class="docutils literal"><span class="pre">SERIAL</span></code> is guaranteed to see it (even a read with
-consistency <code class="docutils literal"><span class="pre">ALL</span></code> is not guaranteed to be enough).</p>
+guaranteed to see the update right away. For example, if a conditional write has a consistency level of <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> (and
+is successful), then a <code class="docutils literal notranslate"><span class="pre">QUORUM</span></code> read is guaranteed to see that write. But if the regular consistency level of that
+write is <code class="docutils literal notranslate"><span class="pre">ANY</span></code>, then only a read with a consistency level of <code class="docutils literal notranslate"><span class="pre">SERIAL</span></code> is guaranteed to see it (even a read with
+consistency <code class="docutils literal notranslate"><span class="pre">ALL</span></code> is not guaranteed to be enough).</p>
 </div>
 <div class="section" id="show-version">
-<h3><code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">VERSION</span></code><a class="headerlink" href="#show-version" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">VERSION</span></code><a class="headerlink" href="#show-version" title="Permalink to this headline">¶</a></h3>
 <p>Prints the cqlsh, Cassandra, CQL, and native protocol versions in use.  Example:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW VERSION
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW VERSION
 [cqlsh 5.0.1 | Cassandra 3.8 | CQL spec 3.4.2 | Native protocol v4]
 </pre></div>
 </div>
 </div>
 <div class="section" id="show-host">
-<h3><code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">HOST</span></code><a class="headerlink" href="#show-host" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">HOST</span></code><a class="headerlink" href="#show-host" title="Permalink to this headline">¶</a></h3>
 <p>Prints the IP address and port of the Cassandra node that cqlsh is connected to in addition to the cluster name.
 Example:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW HOST
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW HOST
 Connected to Prod_Cluster at 192.0.0.1:9042.
 </pre></div>
 </div>
 </div>
 <div class="section" id="show-session">
-<h3><code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">SESSION</span></code><a class="headerlink" href="#show-session" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">SESSION</span></code><a class="headerlink" href="#show-session" title="Permalink to this headline">¶</a></h3>
 <p>Pretty prints a specific tracing session.</p>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">SHOW</span> <span class="pre">SESSION</span> <span class="pre">&lt;session</span> <span class="pre">id&gt;</span></code></p>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">SESSION</span> <span class="pre">&lt;session</span> <span class="pre">id&gt;</span></code></p>
 <p>Example usage:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW SESSION 95ac6470-327e-11e6-beca-dfb660d92ad8
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SHOW SESSION 95ac6470-327e-11e6-beca-dfb660d92ad8
 
 Tracing session: 95ac6470-327e-11e6-beca-dfb660d92ad8
 
@@ -306,100 +306,100 @@
 </div>
 </div>
 <div class="section" id="source">
-<h3><code class="docutils literal"><span class="pre">SOURCE</span></code><a class="headerlink" href="#source" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">SOURCE</span></code><a class="headerlink" href="#source" title="Permalink to this headline">¶</a></h3>
 <p>Reads the contents of a file and executes each line as a CQL statement or special cqlsh command.</p>
-<p><cite>Usage</cite>: <code class="docutils literal"><span class="pre">SOURCE</span> <span class="pre">&lt;string</span> <span class="pre">filename&gt;</span></code></p>
+<p><cite>Usage</cite>: <code class="docutils literal notranslate"><span class="pre">SOURCE</span> <span class="pre">&lt;string</span> <span class="pre">filename&gt;</span></code></p>
 <p>Example usage:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; SOURCE &#39;/home/thobbs/commands.cql&#39;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; SOURCE &#39;/home/thobbs/commands.cql&#39;
 </pre></div>
 </div>
 </div>
 <div class="section" id="capture">
-<h3><code class="docutils literal"><span class="pre">CAPTURE</span></code><a class="headerlink" href="#capture" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">CAPTURE</span></code><a class="headerlink" href="#capture" title="Permalink to this headline">¶</a></h3>
 <p>Begins capturing command output and appending it to a specified file.  Output will not be shown at the console while it
 is captured.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CAPTURE &#39;&lt;file&gt;&#39;;
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CAPTURE &#39;&lt;file&gt;&#39;;
 CAPTURE OFF;
 CAPTURE;
 </pre></div>
 </div>
 <p>That is, the path to the file to be appended to must be given inside a string literal. The path is interpreted relative
-to the current working directory. The tilde shorthand notation (<code class="docutils literal"><span class="pre">'~/mydir'</span></code>) is supported for referring to <code class="docutils literal"><span class="pre">$HOME</span></code>.</p>
+to the current working directory. The tilde shorthand notation (<code class="docutils literal notranslate"><span class="pre">'~/mydir'</span></code>) is supported for referring to <code class="docutils literal notranslate"><span class="pre">$HOME</span></code>.</p>
 <p>Only query result output is captured. Errors and output from cqlsh-only commands will still be shown in the cqlsh
 session.</p>
-<p>To stop capturing output and show it in the cqlsh session again, use <code class="docutils literal"><span class="pre">CAPTURE</span> <span class="pre">OFF</span></code>.</p>
-<p>To inspect the current capture configuration, use <code class="docutils literal"><span class="pre">CAPTURE</span></code> with no arguments.</p>
+<p>To stop capturing output and show it in the cqlsh session again, use <code class="docutils literal notranslate"><span class="pre">CAPTURE</span> <span class="pre">OFF</span></code>.</p>
+<p>To inspect the current capture configuration, use <code class="docutils literal notranslate"><span class="pre">CAPTURE</span></code> with no arguments.</p>
 </div>
 <div class="section" id="help">
-<h3><code class="docutils literal"><span class="pre">HELP</span></code><a class="headerlink" href="#help" title="Permalink to this headline">¶</a></h3>
-<p>Gives information about cqlsh commands. To see available topics, enter <code class="docutils literal"><span class="pre">HELP</span></code> without any arguments. To see help on a
-topic, use <code class="docutils literal"><span class="pre">HELP</span> <span class="pre">&lt;topic&gt;</span></code>.  Also see the <code class="docutils literal"><span class="pre">--browser</span></code> argument for controlling what browser is used to display help.</p>
+<h3><code class="docutils literal notranslate"><span class="pre">HELP</span></code><a class="headerlink" href="#help" title="Permalink to this headline">¶</a></h3>
+<p>Gives information about cqlsh commands. To see available topics, enter <code class="docutils literal notranslate"><span class="pre">HELP</span></code> without any arguments. To see help on a
+topic, use <code class="docutils literal notranslate"><span class="pre">HELP</span> <span class="pre">&lt;topic&gt;</span></code>.  Also see the <code class="docutils literal notranslate"><span class="pre">--browser</span></code> argument for controlling what browser is used to display help.</p>
 </div>
 <div class="section" id="tracing">
-<h3><code class="docutils literal"><span class="pre">TRACING</span></code><a class="headerlink" href="#tracing" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">TRACING</span></code><a class="headerlink" href="#tracing" title="Permalink to this headline">¶</a></h3>
 <p>Enables or disables tracing for queries.  When tracing is enabled, once a query completes, a trace of the events during
 the query will be printed.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>TRACING ON
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TRACING ON
 TRACING OFF
 </pre></div>
 </div>
 </div>
 <div class="section" id="paging">
-<h3><code class="docutils literal"><span class="pre">PAGING</span></code><a class="headerlink" href="#paging" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">PAGING</span></code><a class="headerlink" href="#paging" title="Permalink to this headline">¶</a></h3>
 <p>Enables paging, disables paging, or sets the page size for read queries.  When paging is enabled, only one page of data
-will be fetched at a time and a prompt will appear to fetch the next page.  Generally, it&#8217;s a good idea to leave paging
+will be fetched at a time and a prompt will appear to fetch the next page.  Generally, it’s a good idea to leave paging
 enabled in an interactive session to avoid fetching and printing large amounts of data at once.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>PAGING ON
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>PAGING ON
 PAGING OFF
 PAGING &lt;page size in rows&gt;
 </pre></div>
 </div>
 </div>
 <div class="section" id="expand">
-<h3><code class="docutils literal"><span class="pre">EXPAND</span></code><a class="headerlink" href="#expand" title="Permalink to this headline">¶</a></h3>
-<p>Enables or disables vertical printing of rows.  Enabling <code class="docutils literal"><span class="pre">EXPAND</span></code> is useful when many columns are fetched, or the
+<h3><code class="docutils literal notranslate"><span class="pre">EXPAND</span></code><a class="headerlink" href="#expand" title="Permalink to this headline">¶</a></h3>
+<p>Enables or disables vertical printing of rows.  Enabling <code class="docutils literal notranslate"><span class="pre">EXPAND</span></code> is useful when many columns are fetched, or the
 contents of a single column are large.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>EXPAND ON
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>EXPAND ON
 EXPAND OFF
 </pre></div>
 </div>
 </div>
 <div class="section" id="login">
-<h3><code class="docutils literal"><span class="pre">LOGIN</span></code><a class="headerlink" href="#login" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">LOGIN</span></code><a class="headerlink" href="#login" title="Permalink to this headline">¶</a></h3>
 <p>Authenticate as a specified Cassandra user for the current session.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>LOGIN &lt;username&gt; [&lt;password&gt;]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>LOGIN &lt;username&gt; [&lt;password&gt;]
 </pre></div>
 </div>
 </div>
 <div class="section" id="exit">
-<h3><code class="docutils literal"><span class="pre">EXIT</span></code><a class="headerlink" href="#exit" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">EXIT</span></code><a class="headerlink" href="#exit" title="Permalink to this headline">¶</a></h3>
 <p>Ends the current session and terminates the cqlsh process.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>EXIT
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>EXIT
 QUIT
 </pre></div>
 </div>
 </div>
 <div class="section" id="clear">
-<h3><code class="docutils literal"><span class="pre">CLEAR</span></code><a class="headerlink" href="#clear" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">CLEAR</span></code><a class="headerlink" href="#clear" title="Permalink to this headline">¶</a></h3>
 <p>Clears the console.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>CLEAR
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>CLEAR
 CLS
 </pre></div>
 </div>
 </div>
 <div class="section" id="describe">
-<h3><code class="docutils literal"><span class="pre">DESCRIBE</span></code><a class="headerlink" href="#describe" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code><a class="headerlink" href="#describe" title="Permalink to this headline">¶</a></h3>
 <p>Prints a description (typically a series of DDL statements) of a schema element or the cluster.  This is useful for
 dumping all or portions of the schema.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>DESCRIBE CLUSTER
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>DESCRIBE CLUSTER
 DESCRIBE SCHEMA
 DESCRIBE KEYSPACES
 DESCRIBE KEYSPACE &lt;keyspace name&gt;
@@ -415,114 +415,114 @@
 DESCRIBE AGGREGATE &lt;aggregate function name&gt;
 </pre></div>
 </div>
-<p>In any of the commands, <code class="docutils literal"><span class="pre">DESC</span></code> may be used in place of <code class="docutils literal"><span class="pre">DESCRIBE</span></code>.</p>
-<p>The <code class="docutils literal"><span class="pre">DESCRIBE</span> <span class="pre">CLUSTER</span></code> command prints the cluster name and partitioner:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>cqlsh&gt; DESCRIBE CLUSTER
+<p>In any of the commands, <code class="docutils literal notranslate"><span class="pre">DESC</span></code> may be used in place of <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span></code>.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span> <span class="pre">CLUSTER</span></code> command prints the cluster name and partitioner:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cqlsh&gt; DESCRIBE CLUSTER
 
 Cluster: Test Cluster
 Partitioner: Murmur3Partitioner
 </pre></div>
 </div>
-<p>The <code class="docutils literal"><span class="pre">DESCRIBE</span> <span class="pre">SCHEMA</span></code> command prints the DDL statements needed to recreate the entire schema.  This is especially
+<p>The <code class="docutils literal notranslate"><span class="pre">DESCRIBE</span> <span class="pre">SCHEMA</span></code> command prints the DDL statements needed to recreate the entire schema.  This is especially
 useful for dumping the schema in order to clone a cluster or restore from a backup.</p>
 </div>
 <div class="section" id="copy-to">
-<h3><code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#copy-to" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#copy-to" title="Permalink to this headline">¶</a></h3>
 <p>Copies data from a table to a CSV file.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] TO &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] TO &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
 </pre></div>
 </div>
 <p>If no columns are specified, all columns from the table will be copied to the CSV file.  A subset of columns to copy may
 be specified by adding a comma-separated list of column names surrounded by parenthesis after the table name.</p>
-<p>The <code class="docutils literal"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the destination file.  This
-can also the special value <code class="docutils literal"><span class="pre">STDOUT</span></code> (without single quotes) to print the CSV to stdout.</p>
-<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
+<p>The <code class="docutils literal notranslate"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the destination file.  This
+can also the special value <code class="docutils literal notranslate"><span class="pre">STDOUT</span></code> (without single quotes) to print the CSV to stdout.</p>
+<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
 <div class="section" id="options-for-copy-to">
-<h4>Options for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#options-for-copy-to" title="Permalink to this headline">¶</a></h4>
+<h4>Options for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#options-for-copy-to" title="Permalink to this headline">¶</a></h4>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">MAXREQUESTS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXREQUESTS</span></code></dt>
 <dd>The maximum number token ranges to fetch simultaneously. Defaults to 6.</dd>
-<dt><code class="docutils literal"><span class="pre">PAGESIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">PAGESIZE</span></code></dt>
 <dd>The number of rows to fetch in a single page. Defaults to 1000.</dd>
-<dt><code class="docutils literal"><span class="pre">PAGETIMEOUT</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">PAGETIMEOUT</span></code></dt>
 <dd>By default the page timeout is 10 seconds per 1000 entries
 in the page size or 10 seconds if pagesize is smaller.</dd>
-<dt><code class="docutils literal"><span class="pre">BEGINTOKEN</span></code>, <code class="docutils literal"><span class="pre">ENDTOKEN</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">BEGINTOKEN</span></code>, <code class="docutils literal notranslate"><span class="pre">ENDTOKEN</span></code></dt>
 <dd>Token range to export.  Defaults to exporting the full ring.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXOUTPUTSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXOUTPUTSIZE</span></code></dt>
 <dd>The maximum size of the output file measured in number of lines;
 beyond this maximum the output file will be split into segments.
 -1 means unlimited, and is the default.</dd>
-<dt><code class="docutils literal"><span class="pre">ENCODING</span></code></dt>
-<dd>The encoding used for characters. Defaults to <code class="docutils literal"><span class="pre">utf8</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">ENCODING</span></code></dt>
+<dd>The encoding used for characters. Defaults to <code class="docutils literal notranslate"><span class="pre">utf8</span></code>.</dd>
 </dl>
 </div>
 </div>
 <div class="section" id="copy-from">
-<h3><code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code><a class="headerlink" href="#copy-from" title="Permalink to this headline">¶</a></h3>
+<h3><code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code><a class="headerlink" href="#copy-from" title="Permalink to this headline">¶</a></h3>
 <p>Copies data from a CSV file to table.</p>
 <p><cite>Usage</cite>:</p>
-<div class="highlight-none"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] FROM &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>COPY &lt;table name&gt; [(&lt;column&gt;, ...)] FROM &lt;file name&gt; WITH &lt;copy option&gt; [AND &lt;copy option&gt; ...]
 </pre></div>
 </div>
 <p>If no columns are specified, all columns from the CSV file will be copied to the table.  A subset
 of columns to copy may be specified by adding a comma-separated list of column names surrounded
 by parenthesis after the table name.</p>
-<p>The <code class="docutils literal"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the
-source file.  This can also the special value <code class="docutils literal"><span class="pre">STDIN</span></code> (without single quotes) to read the
+<p>The <code class="docutils literal notranslate"><span class="pre">&lt;file</span> <span class="pre">name&gt;</span></code> should be a string literal (with single quotes) representing a path to the
+source file.  This can also the special value <code class="docutils literal notranslate"><span class="pre">STDIN</span></code> (without single quotes) to read the
 CSV data from stdin.</p>
-<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
+<p>See <a class="reference internal" href="#shared-copy-options"><span class="std std-ref">Shared COPY Options</span></a> for options that apply to both <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
 <div class="section" id="id1">
-<h4>Options for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h4>
+<h4>Options for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h4>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">INGESTRATE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">INGESTRATE</span></code></dt>
 <dd>The maximum number of rows to process per second. Defaults to 100000.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXROWS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXROWS</span></code></dt>
 <dd>The maximum number of rows to import. -1 means unlimited, and is the default.</dd>
-<dt><code class="docutils literal"><span class="pre">SKIPROWS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">SKIPROWS</span></code></dt>
 <dd>A number of initial rows to skip.  Defaults to 0.</dd>
-<dt><code class="docutils literal"><span class="pre">SKIPCOLS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">SKIPCOLS</span></code></dt>
 <dd>A comma-separated list of column names to ignore.  By default, no columns are skipped.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXPARSEERRORS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXPARSEERRORS</span></code></dt>
 <dd>The maximum global number of parsing errors to ignore. -1 means unlimited, and is the default.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXINSERTERRORS</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXINSERTERRORS</span></code></dt>
 <dd>The maximum global number of insert errors to ignore. -1 means unlimited.  The default is 1000.</dd>
-<dt><code class="docutils literal"><span class="pre">ERRFILE</span></code> =</dt>
-<dd>A file to store all rows that could not be imported, by default this is <code class="docutils literal"><span class="pre">import_&lt;ks&gt;_&lt;table&gt;.err</span></code> where <code class="docutils literal"><span class="pre">&lt;ks&gt;</span></code> is
-your keyspace and <code class="docutils literal"><span class="pre">&lt;table&gt;</span></code> is your table name.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXBATCHSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">ERRFILE</span></code> =</dt>
+<dd>A file to store all rows that could not be imported, by default this is <code class="docutils literal notranslate"><span class="pre">import_&lt;ks&gt;_&lt;table&gt;.err</span></code> where <code class="docutils literal notranslate"><span class="pre">&lt;ks&gt;</span></code> is
+your keyspace and <code class="docutils literal notranslate"><span class="pre">&lt;table&gt;</span></code> is your table name.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXBATCHSIZE</span></code></dt>
 <dd>The max number of rows inserted in a single batch. Defaults to 20.</dd>
-<dt><code class="docutils literal"><span class="pre">MINBATCHSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">MINBATCHSIZE</span></code></dt>
 <dd>The min number of rows inserted in a single batch. Defaults to 2.</dd>
-<dt><code class="docutils literal"><span class="pre">CHUNKSIZE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">CHUNKSIZE</span></code></dt>
 <dd>The number of rows that are passed to child worker processes from the main process at a time. Defaults to 1000.</dd>
 </dl>
 </div>
 <div class="section" id="shared-copy-options">
 <span id="id2"></span><h4>Shared COPY Options<a class="headerlink" href="#shared-copy-options" title="Permalink to this headline">¶</a></h4>
-<p>Options that are common to both <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
+<p>Options that are common to both <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code> and <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>.</p>
 <dl class="docutils">
-<dt><code class="docutils literal"><span class="pre">NULLVAL</span></code></dt>
-<dd>The string placeholder for null values.  Defaults to <code class="docutils literal"><span class="pre">null</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">HEADER</span></code></dt>
-<dd>For <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code>, controls whether the first line in the CSV output file will contain the column names.  For COPY FROM,
-specifies whether the first line in the CSV input file contains column names.  Defaults to <code class="docutils literal"><span class="pre">false</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">DECIMALSEP</span></code></dt>
-<dd>The character that is used as the decimal point separator.  Defaults to <code class="docutils literal"><span class="pre">.</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">THOUSANDSSEP</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">NULLVAL</span></code></dt>
+<dd>The string placeholder for null values.  Defaults to <code class="docutils literal notranslate"><span class="pre">null</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">HEADER</span></code></dt>
+<dd>For <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code>, controls whether the first line in the CSV output file will contain the column names.  For COPY FROM,
+specifies whether the first line in the CSV input file contains column names.  Defaults to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">DECIMALSEP</span></code></dt>
+<dd>The character that is used as the decimal point separator.  Defaults to <code class="docutils literal notranslate"><span class="pre">.</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">THOUSANDSSEP</span></code></dt>
 <dd>The character that is used to separate thousands. Defaults to the empty string.</dd>
-<dt><code class="docutils literal"><span class="pre">BOOLSTYlE</span></code></dt>
-<dd>The string literal format for boolean values.  Defaults to <code class="docutils literal"><span class="pre">True,False</span></code>.</dd>
-<dt><code class="docutils literal"><span class="pre">NUMPROCESSES</span></code></dt>
-<dd>The number of child worker processes to create for <code class="docutils literal"><span class="pre">COPY</span></code> tasks.  Defaults to a max of 4 for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code> and 16
-for <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code>.  However, at most (num_cores - 1) processes will be created.</dd>
-<dt><code class="docutils literal"><span class="pre">MAXATTEMPTS</span></code></dt>
-<dd>The maximum number of failed attempts to fetch a range of data (when using <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">TO</span></code>) or insert a chunk of data
-(when using <code class="docutils literal"><span class="pre">COPY</span> <span class="pre">FROM</span></code>) before giving up. Defaults to 5.</dd>
-<dt><code class="docutils literal"><span class="pre">REPORTFREQUENCY</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">BOOLSTYlE</span></code></dt>
+<dd>The string literal format for boolean values.  Defaults to <code class="docutils literal notranslate"><span class="pre">True,False</span></code>.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">NUMPROCESSES</span></code></dt>
+<dd>The number of child worker processes to create for <code class="docutils literal notranslate"><span class="pre">COPY</span></code> tasks.  Defaults to a max of 4 for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code> and 16
+for <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code>.  However, at most (num_cores - 1) processes will be created.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">MAXATTEMPTS</span></code></dt>
+<dd>The maximum number of failed attempts to fetch a range of data (when using <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">TO</span></code>) or insert a chunk of data
+(when using <code class="docutils literal notranslate"><span class="pre">COPY</span> <span class="pre">FROM</span></code>) before giving up. Defaults to 5.</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">REPORTFREQUENCY</span></code></dt>
 <dd>How often status updates are refreshed, in seconds.  Defaults to 0.25.</dd>
-<dt><code class="docutils literal"><span class="pre">RATEFILE</span></code></dt>
+<dt><code class="docutils literal notranslate"><span class="pre">RATEFILE</span></code></dt>
 <dd>An optional file to output rate statistics to.  By default, statistics are not output to a file.</dd>
 </dl>
 </div>
diff --git a/content/doc/stable/tools/index.html b/content/doc/stable/tools/index.html
index c6dd0f0..61e4733 100644
--- a/content/doc/stable/tools/index.html
+++ b/content/doc/stable/tools/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="cqlsh: the CQL shell" href="cqlsh.html"/> <link rel="prev" title="Hardware Choices" href="../operating/hardware.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="cqlsh: the CQL shell" href="cqlsh.html"/> <link rel="prev" title="Hardware Choices" href="../operating/hardware.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/tools/nodetool.html b/content/doc/stable/tools/nodetool.html
index aed9013..7834248 100644
--- a/content/doc/stable/tools/nodetool.html
+++ b/content/doc/stable/tools/nodetool.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" 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="cqlsh: the CQL shell" href="cqlsh.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" 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="cqlsh: the CQL shell" href="cqlsh.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/doc/stable/tools/nodetool/assassinate.html b/content/doc/stable/tools/nodetool/assassinate.html
index dac81e8..6d81391 100644
--- a/content/doc/stable/tools/nodetool/assassinate.html
+++ b/content/doc/stable/tools/nodetool/assassinate.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">assassinate</span> <span class="o">-</span> <span class="n">Forcefully</span> <span class="n">remove</span> <span class="n">a</span> <span class="n">dead</span> <span class="n">node</span> <span class="n">without</span>
         <span class="n">re</span><span class="o">-</span><span class="n">replicating</span> <span class="nb">any</span> <span class="n">data</span><span class="o">.</span> <span class="n">Use</span> <span class="k">as</span> <span class="n">a</span> <span class="n">last</span> <span class="n">resort</span> <span class="k">if</span> <span class="n">you</span> <span class="n">cannot</span> <span class="n">removenode</span>
 
diff --git a/content/doc/stable/tools/nodetool/bootstrap.html b/content/doc/stable/tools/nodetool/bootstrap.html
index f34933b..1b9dca8 100644
--- a/content/doc/stable/tools/nodetool/bootstrap.html
+++ b/content/doc/stable/tools/nodetool/bootstrap.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,16 +151,16 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">bootstrap</span> <span class="o">-</span> <span class="n">Monitor</span><span class="o">/</span><span class="n">manage</span> <span class="n">node</span><span class="s1">&#39;s bootstrap process</span>
 
 <span class="n">SYNOPSIS</span>
         <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">pp</span> <span class="o">|</span> <span class="o">--</span><span class="nb">print</span><span class="o">-</span><span class="n">port</span><span class="p">)]</span>
+        <span class="n">nodetool</span> <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span><span class="p">)]</span>
+                <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span><span class="p">)]</span>
+                <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span><span class="p">)]</span>
                 <span class="p">[(</span><span class="o">-</span><span class="n">pwf</span> <span class="o">&lt;</span><span class="n">passwordFilePath</span><span class="o">&gt;</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">&lt;</span><span class="n">passwordFilePath</span><span class="o">&gt;</span><span class="p">)]</span>
-                <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">u</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">username</span> <span class="o">&lt;</span><span class="n">username</span><span class="o">&gt;</span><span class="p">)]</span>
-                <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">pw</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">password</span> <span class="o">&lt;</span><span class="n">password</span><span class="o">&gt;</span><span class="p">)]</span>
-                <span class="n">bootstrap</span> <span class="n">resume</span>
+                <span class="p">[(</span><span class="o">-</span><span class="n">pp</span> <span class="o">|</span> <span class="o">--</span><span class="nb">print</span><span class="o">-</span><span class="n">port</span><span class="p">)]</span> <span class="n">bootstrap</span> <span class="n">resume</span>
 
 <span class="n">OPTIONS</span>
         <span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">,</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span>
diff --git a/content/doc/stable/tools/nodetool/cleanup.html b/content/doc/stable/tools/nodetool/cleanup.html
index c8e763f..3e5e77c 100644
--- a/content/doc/stable/tools/nodetool/cleanup.html
+++ b/content/doc/stable/tools/nodetool/cleanup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">cleanup</span> <span class="o">-</span> <span class="n">Triggers</span> <span class="n">the</span> <span class="n">immediate</span> <span class="n">cleanup</span> <span class="n">of</span> <span class="n">keys</span> <span class="n">no</span> <span class="n">longer</span>
         <span class="n">belonging</span> <span class="n">to</span> <span class="n">a</span> <span class="n">node</span><span class="o">.</span> <span class="n">By</span> <span class="n">default</span><span class="p">,</span> <span class="n">clean</span> <span class="nb">all</span> <span class="n">keyspaces</span>
 
diff --git a/content/doc/stable/tools/nodetool/clearsnapshot.html b/content/doc/stable/tools/nodetool/clearsnapshot.html
index 9adb5f0..413e366 100644
--- a/content/doc/stable/tools/nodetool/clearsnapshot.html
+++ b/content/doc/stable/tools/nodetool/clearsnapshot.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">clearsnapshot</span> <span class="o">-</span> <span class="n">Remove</span> <span class="n">the</span> <span class="n">snapshot</span> <span class="k">with</span> <span class="n">the</span> <span class="n">given</span> <span class="n">name</span> <span class="kn">from</span>
         <span class="nn">the</span> <span class="n">given</span> <span class="n">keyspaces</span><span class="o">.</span> <span class="n">If</span> <span class="n">no</span> <span class="n">snapshotName</span> <span class="ow">is</span> <span class="n">specified</span> <span class="n">we</span> <span class="n">will</span> <span class="n">remove</span> <span class="nb">all</span>
         <span class="n">snapshots</span>
diff --git a/content/doc/stable/tools/nodetool/clientstats.html b/content/doc/stable/tools/nodetool/clientstats.html
index 689182a..a91a0f8 100644
--- a/content/doc/stable/tools/nodetool/clientstats.html
+++ b/content/doc/stable/tools/nodetool/clientstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">clientstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">information</span> <span class="n">about</span> <span class="n">connected</span> <span class="n">clients</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/compact.html b/content/doc/stable/tools/nodetool/compact.html
index 9258ce5..8a98b35 100644
--- a/content/doc/stable/tools/nodetool/compact.html
+++ b/content/doc/stable/tools/nodetool/compact.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">compact</span> <span class="o">-</span> <span class="n">Force</span> <span class="n">a</span> <span class="p">(</span><span class="n">major</span><span class="p">)</span> <span class="n">compaction</span> <span class="n">on</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span> <span class="ow">or</span>
         <span class="n">user</span><span class="o">-</span><span class="n">defined</span> <span class="n">compaction</span> <span class="n">on</span> <span class="n">given</span> <span class="n">SSTables</span>
 
diff --git a/content/doc/stable/tools/nodetool/compactionhistory.html b/content/doc/stable/tools/nodetool/compactionhistory.html
index 8d810a3..23eabe2 100644
--- a/content/doc/stable/tools/nodetool/compactionhistory.html
+++ b/content/doc/stable/tools/nodetool/compactionhistory.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">compactionhistory</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">history</span> <span class="n">of</span> <span class="n">compaction</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/compactionstats.html b/content/doc/stable/tools/nodetool/compactionstats.html
index d613ed6..33b5385 100644
--- a/content/doc/stable/tools/nodetool/compactionstats.html
+++ b/content/doc/stable/tools/nodetool/compactionstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">compactionstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistics</span> <span class="n">on</span> <span class="n">compactions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/decommission.html b/content/doc/stable/tools/nodetool/decommission.html
index 3920992..8314b60 100644
--- a/content/doc/stable/tools/nodetool/decommission.html
+++ b/content/doc/stable/tools/nodetool/decommission.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">decommission</span> <span class="o">-</span> <span class="n">Decommission</span> <span class="n">the</span> <span class="o">*</span><span class="n">node</span> <span class="n">I</span> <span class="n">am</span> <span class="n">connecting</span> <span class="n">to</span><span class="o">*</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/describecluster.html b/content/doc/stable/tools/nodetool/describecluster.html
index 948bfbb..d7f8ed7 100644
--- a/content/doc/stable/tools/nodetool/describecluster.html
+++ b/content/doc/stable/tools/nodetool/describecluster.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">describecluster</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">name</span><span class="p">,</span> <span class="n">snitch</span><span class="p">,</span> <span class="n">partitioner</span> <span class="ow">and</span>
         <span class="n">schema</span> <span class="n">version</span> <span class="n">of</span> <span class="n">a</span> <span class="n">cluster</span>
 
diff --git a/content/doc/stable/tools/nodetool/describering.html b/content/doc/stable/tools/nodetool/describering.html
index 367474a..1243125 100644
--- a/content/doc/stable/tools/nodetool/describering.html
+++ b/content/doc/stable/tools/nodetool/describering.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">describering</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">token</span> <span class="n">ranges</span> <span class="n">info</span> <span class="n">of</span> <span class="n">a</span> <span class="n">given</span> <span class="n">keyspace</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disableauditlog.html b/content/doc/stable/tools/nodetool/disableauditlog.html
index c801dc6..9c4c873 100644
--- a/content/doc/stable/tools/nodetool/disableauditlog.html
+++ b/content/doc/stable/tools/nodetool/disableauditlog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disableauditlog</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">the</span> <span class="n">audit</span> <span class="n">log</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disableautocompaction.html b/content/doc/stable/tools/nodetool/disableautocompaction.html
index 7e991bb..04168e9 100644
--- a/content/doc/stable/tools/nodetool/disableautocompaction.html
+++ b/content/doc/stable/tools/nodetool/disableautocompaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disableautocompaction</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">autocompaction</span> <span class="k">for</span> <span class="n">the</span> <span class="n">given</span>
         <span class="n">keyspace</span> <span class="ow">and</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/disablebackup.html b/content/doc/stable/tools/nodetool/disablebackup.html
index f71f939..acb10d4 100644
--- a/content/doc/stable/tools/nodetool/disablebackup.html
+++ b/content/doc/stable/tools/nodetool/disablebackup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablebackup</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">incremental</span> <span class="n">backup</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disablebinary.html b/content/doc/stable/tools/nodetool/disablebinary.html
index 2cc3089..bf64186 100644
--- a/content/doc/stable/tools/nodetool/disablebinary.html
+++ b/content/doc/stable/tools/nodetool/disablebinary.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablebinary</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">native</span> <span class="n">transport</span> <span class="p">(</span><span class="n">binary</span> <span class="n">protocol</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disablefullquerylog.html b/content/doc/stable/tools/nodetool/disablefullquerylog.html
index 1c9604b..3104839 100644
--- a/content/doc/stable/tools/nodetool/disablefullquerylog.html
+++ b/content/doc/stable/tools/nodetool/disablefullquerylog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablefullquerylog</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">the</span> <span class="n">full</span> <span class="n">query</span> <span class="n">log</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disablegossip.html b/content/doc/stable/tools/nodetool/disablegossip.html
index 33f63a2..e6f2ddb 100644
--- a/content/doc/stable/tools/nodetool/disablegossip.html
+++ b/content/doc/stable/tools/nodetool/disablegossip.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablegossip</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">gossip</span> <span class="p">(</span><span class="n">effectively</span> <span class="n">marking</span> <span class="n">the</span> <span class="n">node</span>
         <span class="n">down</span><span class="p">)</span>
 
diff --git a/content/doc/stable/tools/nodetool/disablehandoff.html b/content/doc/stable/tools/nodetool/disablehandoff.html
index 646490e..9a4b10e 100644
--- a/content/doc/stable/tools/nodetool/disablehandoff.html
+++ b/content/doc/stable/tools/nodetool/disablehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablehandoff</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">storing</span> <span class="n">hinted</span> <span class="n">handoffs</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disablehintsfordc.html b/content/doc/stable/tools/nodetool/disablehintsfordc.html
index d4375fc..4a1c210 100644
--- a/content/doc/stable/tools/nodetool/disablehintsfordc.html
+++ b/content/doc/stable/tools/nodetool/disablehintsfordc.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disablehintsfordc</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">hints</span> <span class="k">for</span> <span class="n">a</span> <span class="n">data</span> <span class="n">center</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/disableoldprotocolversions.html b/content/doc/stable/tools/nodetool/disableoldprotocolversions.html
index 0a0cd08..8856f58 100644
--- a/content/doc/stable/tools/nodetool/disableoldprotocolversions.html
+++ b/content/doc/stable/tools/nodetool/disableoldprotocolversions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">disableoldprotocolversions</span> <span class="o">-</span> <span class="n">Disable</span> <span class="n">old</span> <span class="n">protocol</span> <span class="n">versions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/drain.html b/content/doc/stable/tools/nodetool/drain.html
index a6e213f..995842a 100644
--- a/content/doc/stable/tools/nodetool/drain.html
+++ b/content/doc/stable/tools/nodetool/drain.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">drain</span> <span class="o">-</span> <span class="n">Drain</span> <span class="n">the</span> <span class="n">node</span> <span class="p">(</span><span class="n">stop</span> <span class="n">accepting</span> <span class="n">writes</span> <span class="ow">and</span> <span class="n">flush</span> <span class="nb">all</span>
         <span class="n">tables</span><span class="p">)</span>
 
diff --git a/content/doc/stable/tools/nodetool/enableauditlog.html b/content/doc/stable/tools/nodetool/enableauditlog.html
index 71a49ab..7cd0766 100644
--- a/content/doc/stable/tools/nodetool/enableauditlog.html
+++ b/content/doc/stable/tools/nodetool/enableauditlog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enableauditlog</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">the</span> <span class="n">audit</span> <span class="n">log</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/enableautocompaction.html b/content/doc/stable/tools/nodetool/enableautocompaction.html
index 352bbbd..63054b6 100644
--- a/content/doc/stable/tools/nodetool/enableautocompaction.html
+++ b/content/doc/stable/tools/nodetool/enableautocompaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enableautocompaction</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">autocompaction</span> <span class="k">for</span> <span class="n">the</span> <span class="n">given</span>
         <span class="n">keyspace</span> <span class="ow">and</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/enablebackup.html b/content/doc/stable/tools/nodetool/enablebackup.html
index f92b595..9213092 100644
--- a/content/doc/stable/tools/nodetool/enablebackup.html
+++ b/content/doc/stable/tools/nodetool/enablebackup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablebackup</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">incremental</span> <span class="n">backup</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/enablebinary.html b/content/doc/stable/tools/nodetool/enablebinary.html
index 7696900..390be83 100644
--- a/content/doc/stable/tools/nodetool/enablebinary.html
+++ b/content/doc/stable/tools/nodetool/enablebinary.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablebinary</span> <span class="o">-</span> <span class="n">Reenable</span> <span class="n">native</span> <span class="n">transport</span> <span class="p">(</span><span class="n">binary</span> <span class="n">protocol</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/enablefullquerylog.html b/content/doc/stable/tools/nodetool/enablefullquerylog.html
index d47ff2e..7811d6d 100644
--- a/content/doc/stable/tools/nodetool/enablefullquerylog.html
+++ b/content/doc/stable/tools/nodetool/enablefullquerylog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablefullquerylog</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">full</span> <span class="n">query</span> <span class="n">logging</span><span class="p">,</span> <span class="n">defaults</span> <span class="k">for</span>
         <span class="n">the</span> <span class="n">options</span> <span class="n">are</span> <span class="n">configured</span> <span class="ow">in</span> <span class="n">cassandra</span><span class="o">.</span><span class="n">yaml</span>
 
diff --git a/content/doc/stable/tools/nodetool/enablegossip.html b/content/doc/stable/tools/nodetool/enablegossip.html
index b89d89e..f4ae26b 100644
--- a/content/doc/stable/tools/nodetool/enablegossip.html
+++ b/content/doc/stable/tools/nodetool/enablegossip.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablegossip</span> <span class="o">-</span> <span class="n">Reenable</span> <span class="n">gossip</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/enablehandoff.html b/content/doc/stable/tools/nodetool/enablehandoff.html
index 88b09f9..14e2134 100644
--- a/content/doc/stable/tools/nodetool/enablehandoff.html
+++ b/content/doc/stable/tools/nodetool/enablehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablehandoff</span> <span class="o">-</span> <span class="n">Reenable</span> <span class="n">future</span> <span class="n">hints</span> <span class="n">storing</span> <span class="n">on</span> <span class="n">the</span> <span class="n">current</span>
         <span class="n">node</span>
 
diff --git a/content/doc/stable/tools/nodetool/enablehintsfordc.html b/content/doc/stable/tools/nodetool/enablehintsfordc.html
index 9424763..4a55bfa 100644
--- a/content/doc/stable/tools/nodetool/enablehintsfordc.html
+++ b/content/doc/stable/tools/nodetool/enablehintsfordc.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enablehintsfordc</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">hints</span> <span class="k">for</span> <span class="n">a</span> <span class="n">data</span> <span class="n">center</span> <span class="n">that</span> <span class="n">was</span>
         <span class="n">previsouly</span> <span class="n">disabled</span>
 
diff --git a/content/doc/stable/tools/nodetool/enableoldprotocolversions.html b/content/doc/stable/tools/nodetool/enableoldprotocolversions.html
index 6800e51..8533547 100644
--- a/content/doc/stable/tools/nodetool/enableoldprotocolversions.html
+++ b/content/doc/stable/tools/nodetool/enableoldprotocolversions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">enableoldprotocolversions</span> <span class="o">-</span> <span class="n">Enable</span> <span class="n">old</span> <span class="n">protocol</span> <span class="n">versions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/failuredetector.html b/content/doc/stable/tools/nodetool/failuredetector.html
index 5aa3e17..9d9a0a7 100644
--- a/content/doc/stable/tools/nodetool/failuredetector.html
+++ b/content/doc/stable/tools/nodetool/failuredetector.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">failuredetector</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">failure</span> <span class="n">detector</span> <span class="n">information</span> <span class="k">for</span>
         <span class="n">the</span> <span class="n">cluster</span>
 
diff --git a/content/doc/stable/tools/nodetool/flush.html b/content/doc/stable/tools/nodetool/flush.html
index e8536b1..af3b6e6 100644
--- a/content/doc/stable/tools/nodetool/flush.html
+++ b/content/doc/stable/tools/nodetool/flush.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">flush</span> <span class="o">-</span> <span class="n">Flush</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/garbagecollect.html b/content/doc/stable/tools/nodetool/garbagecollect.html
index cdc8800..d12887f 100644
--- a/content/doc/stable/tools/nodetool/garbagecollect.html
+++ b/content/doc/stable/tools/nodetool/garbagecollect.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">garbagecollect</span> <span class="o">-</span> <span class="n">Remove</span> <span class="n">deleted</span> <span class="n">data</span> <span class="kn">from</span> <span class="nn">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/gcstats.html b/content/doc/stable/tools/nodetool/gcstats.html
index ebd3e19..1f760cd 100644
--- a/content/doc/stable/tools/nodetool/gcstats.html
+++ b/content/doc/stable/tools/nodetool/gcstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gcstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">GC</span> <span class="n">Statistics</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/getbatchlogreplaythrottle.html b/content/doc/stable/tools/nodetool/getbatchlogreplaythrottle.html
index aa420af..2a91d05 100644
--- a/content/doc/stable/tools/nodetool/getbatchlogreplaythrottle.html
+++ b/content/doc/stable/tools/nodetool/getbatchlogreplaythrottle.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getbatchlogreplaythrottle</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">batchlog</span> <span class="n">replay</span> <span class="n">throttle</span> <span class="ow">in</span>
         <span class="n">KB</span><span class="o">/</span><span class="n">s</span><span class="o">.</span> <span class="n">This</span> <span class="ow">is</span> <span class="n">reduced</span> <span class="n">proportionally</span> <span class="n">to</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">nodes</span> <span class="ow">in</span> <span class="n">the</span>
         <span class="n">cluster</span><span class="o">.</span>
diff --git a/content/doc/stable/tools/nodetool/getcompactionthreshold.html b/content/doc/stable/tools/nodetool/getcompactionthreshold.html
index e463be0..707f50b 100644
--- a/content/doc/stable/tools/nodetool/getcompactionthreshold.html
+++ b/content/doc/stable/tools/nodetool/getcompactionthreshold.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getcompactionthreshold</span> <span class="o">-</span> <span class="n">Print</span> <span class="nb">min</span> <span class="ow">and</span> <span class="nb">max</span> <span class="n">compaction</span>
         <span class="n">thresholds</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/getcompactionthroughput.html b/content/doc/stable/tools/nodetool/getcompactionthroughput.html
index 4f3cc94..30fd16d 100644
--- a/content/doc/stable/tools/nodetool/getcompactionthroughput.html
+++ b/content/doc/stable/tools/nodetool/getcompactionthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getcompactionthroughput</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">MB</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">compaction</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/stable/tools/nodetool/getconcurrentcompactors.html b/content/doc/stable/tools/nodetool/getconcurrentcompactors.html
index 0574d4b..85b2205 100644
--- a/content/doc/stable/tools/nodetool/getconcurrentcompactors.html
+++ b/content/doc/stable/tools/nodetool/getconcurrentcompactors.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getconcurrentcompactors</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span>
         <span class="n">compactors</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="o">.</span>
 
diff --git a/content/doc/stable/tools/nodetool/getconcurrentviewbuilders.html b/content/doc/stable/tools/nodetool/getconcurrentviewbuilders.html
index 862a0b5..246c564 100644
--- a/content/doc/stable/tools/nodetool/getconcurrentviewbuilders.html
+++ b/content/doc/stable/tools/nodetool/getconcurrentviewbuilders.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getconcurrentviewbuilders</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span> <span class="n">view</span>
         <span class="n">builders</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/stable/tools/nodetool/getendpoints.html b/content/doc/stable/tools/nodetool/getendpoints.html
index b695c97..4418c63 100644
--- a/content/doc/stable/tools/nodetool/getendpoints.html
+++ b/content/doc/stable/tools/nodetool/getendpoints.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getendpoints</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">end</span> <span class="n">points</span> <span class="n">that</span> <span class="n">owns</span> <span class="n">the</span> <span class="n">key</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/getinterdcstreamthroughput.html b/content/doc/stable/tools/nodetool/getinterdcstreamthroughput.html
index 75f4f53..294aebd 100644
--- a/content/doc/stable/tools/nodetool/getinterdcstreamthroughput.html
+++ b/content/doc/stable/tools/nodetool/getinterdcstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getinterdcstreamthroughput</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">inter</span><span class="o">-</span><span class="n">datacenter</span> <span class="n">streaming</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/stable/tools/nodetool/getlogginglevels.html b/content/doc/stable/tools/nodetool/getlogginglevels.html
index 6865763..98ac31c 100644
--- a/content/doc/stable/tools/nodetool/getlogginglevels.html
+++ b/content/doc/stable/tools/nodetool/getlogginglevels.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getlogginglevels</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">runtime</span> <span class="n">logging</span> <span class="n">levels</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/getmaxhintwindow.html b/content/doc/stable/tools/nodetool/getmaxhintwindow.html
index 904bdb6..31ba821 100644
--- a/content/doc/stable/tools/nodetool/getmaxhintwindow.html
+++ b/content/doc/stable/tools/nodetool/getmaxhintwindow.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getmaxhintwindow</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="nb">max</span> <span class="n">hint</span> <span class="n">window</span> <span class="ow">in</span> <span class="n">ms</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/getreplicas.html b/content/doc/stable/tools/nodetool/getreplicas.html
index e61e6cb..78634c5 100644
--- a/content/doc/stable/tools/nodetool/getreplicas.html
+++ b/content/doc/stable/tools/nodetool/getreplicas.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getreplicas</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">replicas</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">key</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/getseeds.html b/content/doc/stable/tools/nodetool/getseeds.html
index c83d568..5f146e1 100644
--- a/content/doc/stable/tools/nodetool/getseeds.html
+++ b/content/doc/stable/tools/nodetool/getseeds.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getseeds</span> <span class="o">-</span> <span class="n">Get</span> <span class="n">the</span> <span class="n">currently</span> <span class="ow">in</span> <span class="n">use</span> <span class="n">seed</span> <span class="n">node</span> <span class="n">IP</span> <span class="nb">list</span> <span class="n">excluding</span>
         <span class="n">the</span> <span class="n">node</span> <span class="n">IP</span>
 
diff --git a/content/doc/stable/tools/nodetool/getsstables.html b/content/doc/stable/tools/nodetool/getsstables.html
index 4caa24b..2c1678c 100644
--- a/content/doc/stable/tools/nodetool/getsstables.html
+++ b/content/doc/stable/tools/nodetool/getsstables.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getsstables</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">sstable</span> <span class="n">filenames</span> <span class="n">that</span> <span class="n">own</span> <span class="n">the</span> <span class="n">key</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/getstreamthroughput.html b/content/doc/stable/tools/nodetool/getstreamthroughput.html
index 54b94b9..896f644 100644
--- a/content/doc/stable/tools/nodetool/getstreamthroughput.html
+++ b/content/doc/stable/tools/nodetool/getstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">getstreamthroughput</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">streaming</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/stable/tools/nodetool/gettimeout.html b/content/doc/stable/tools/nodetool/gettimeout.html
index bebfc6e..9bad645 100644
--- a/content/doc/stable/tools/nodetool/gettimeout.html
+++ b/content/doc/stable/tools/nodetool/gettimeout.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gettimeout</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">timeout</span> <span class="n">of</span> <span class="n">the</span> <span class="n">given</span> <span class="nb">type</span> <span class="ow">in</span> <span class="n">ms</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/gettraceprobability.html b/content/doc/stable/tools/nodetool/gettraceprobability.html
index 4e99144..5abd8ff 100644
--- a/content/doc/stable/tools/nodetool/gettraceprobability.html
+++ b/content/doc/stable/tools/nodetool/gettraceprobability.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gettraceprobability</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">the</span> <span class="n">current</span> <span class="n">trace</span> <span class="n">probability</span> <span class="n">value</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/gossipinfo.html b/content/doc/stable/tools/nodetool/gossipinfo.html
index 8d4187a..00de6f4 100644
--- a/content/doc/stable/tools/nodetool/gossipinfo.html
+++ b/content/doc/stable/tools/nodetool/gossipinfo.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">gossipinfo</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">gossip</span> <span class="n">information</span> <span class="k">for</span> <span class="n">the</span> <span class="n">cluster</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/handoffwindow.html b/content/doc/stable/tools/nodetool/handoffwindow.html
index 228498e..b028bbe 100644
--- a/content/doc/stable/tools/nodetool/handoffwindow.html
+++ b/content/doc/stable/tools/nodetool/handoffwindow.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">handoffwindow</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">current</span> <span class="n">hinted</span> <span class="n">handoff</span> <span class="n">window</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/help.html b/content/doc/stable/tools/nodetool/help.html
index 1760cce..864aa8f 100644
--- a/content/doc/stable/tools/nodetool/help.html
+++ b/content/doc/stable/tools/nodetool/help.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">help</span> <span class="o">-</span> <span class="n">Display</span> <span class="n">help</span> <span class="n">information</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/import.html b/content/doc/stable/tools/nodetool/import.html
index 8ed9b16..4070be0 100644
--- a/content/doc/stable/tools/nodetool/import.html
+++ b/content/doc/stable/tools/nodetool/import.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="kn">import</span> <span class="o">-</span> <span class="n">Import</span> <span class="n">new</span> <span class="n">SSTables</span> <span class="n">to</span> <span class="n">the</span> <span class="n">system</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/info.html b/content/doc/stable/tools/nodetool/info.html
index b91ba4c..74b2ec4 100644
--- a/content/doc/stable/tools/nodetool/info.html
+++ b/content/doc/stable/tools/nodetool/info.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">info</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">node</span> <span class="n">information</span> <span class="p">(</span><span class="n">uptime</span><span class="p">,</span> <span class="n">load</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/invalidatecountercache.html b/content/doc/stable/tools/nodetool/invalidatecountercache.html
index 2cd1282..efe4e8a 100644
--- a/content/doc/stable/tools/nodetool/invalidatecountercache.html
+++ b/content/doc/stable/tools/nodetool/invalidatecountercache.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">invalidatecountercache</span> <span class="o">-</span> <span class="n">Invalidate</span> <span class="n">the</span> <span class="n">counter</span> <span class="n">cache</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/invalidatekeycache.html b/content/doc/stable/tools/nodetool/invalidatekeycache.html
index 13efe23..506a63a 100644
--- a/content/doc/stable/tools/nodetool/invalidatekeycache.html
+++ b/content/doc/stable/tools/nodetool/invalidatekeycache.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">invalidatekeycache</span> <span class="o">-</span> <span class="n">Invalidate</span> <span class="n">the</span> <span class="n">key</span> <span class="n">cache</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/invalidaterowcache.html b/content/doc/stable/tools/nodetool/invalidaterowcache.html
index e8af7d7..45d9ac6 100644
--- a/content/doc/stable/tools/nodetool/invalidaterowcache.html
+++ b/content/doc/stable/tools/nodetool/invalidaterowcache.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">invalidaterowcache</span> <span class="o">-</span> <span class="n">Invalidate</span> <span class="n">the</span> <span class="n">row</span> <span class="n">cache</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/join.html b/content/doc/stable/tools/nodetool/join.html
index 830d02f..6413dc4 100644
--- a/content/doc/stable/tools/nodetool/join.html
+++ b/content/doc/stable/tools/nodetool/join.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">join</span> <span class="o">-</span> <span class="n">Join</span> <span class="n">the</span> <span class="n">ring</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/listsnapshots.html b/content/doc/stable/tools/nodetool/listsnapshots.html
index 03a7c19..dfba783 100644
--- a/content/doc/stable/tools/nodetool/listsnapshots.html
+++ b/content/doc/stable/tools/nodetool/listsnapshots.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,9 +151,11 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">listsnapshots</span> <span class="o">-</span> <span class="n">Lists</span> <span class="nb">all</span> <span class="n">the</span> <span class="n">snapshots</span> <span class="n">along</span> <span class="k">with</span> <span class="n">the</span> <span class="n">size</span> <span class="n">on</span>
-        <span class="n">disk</span> <span class="ow">and</span> <span class="n">true</span> <span class="n">size</span><span class="o">.</span>
+        <span class="n">disk</span> <span class="ow">and</span> <span class="n">true</span> <span class="n">size</span><span class="o">.</span> <span class="kc">True</span> <span class="n">size</span> <span class="ow">is</span> <span class="n">the</span> <span class="n">total</span> <span class="n">size</span> <span class="n">of</span> <span class="nb">all</span> <span class="n">SSTables</span> <span class="n">which</span>
+        <span class="n">are</span> <span class="ow">not</span> <span class="n">backed</span> <span class="n">up</span> <span class="n">to</span> <span class="n">disk</span><span class="o">.</span> <span class="n">Size</span> <span class="n">on</span> <span class="n">disk</span> <span class="ow">is</span> <span class="n">total</span> <span class="n">size</span> <span class="n">of</span> <span class="n">the</span> <span class="n">snapshot</span> <span class="n">on</span>
+        <span class="n">disk</span><span class="o">.</span> <span class="n">Total</span> <span class="n">TrueDiskSpaceUsed</span> <span class="n">does</span> <span class="ow">not</span> <span class="n">make</span> <span class="nb">any</span> <span class="n">SSTable</span> <span class="n">deduplication</span><span class="o">.</span>
 
 <span class="n">SYNOPSIS</span>
         <span class="n">nodetool</span> <span class="p">[(</span><span class="o">-</span><span class="n">h</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">host</span> <span class="o">&lt;</span><span class="n">host</span><span class="o">&gt;</span><span class="p">)]</span> <span class="p">[(</span><span class="o">-</span><span class="n">p</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span> <span class="o">|</span> <span class="o">--</span><span class="n">port</span> <span class="o">&lt;</span><span class="n">port</span><span class="o">&gt;</span><span class="p">)]</span>
diff --git a/content/doc/stable/tools/nodetool/move.html b/content/doc/stable/tools/nodetool/move.html
index 71a4793..446f16b 100644
--- a/content/doc/stable/tools/nodetool/move.html
+++ b/content/doc/stable/tools/nodetool/move.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">move</span> <span class="o">-</span> <span class="n">Move</span> <span class="n">node</span> <span class="n">on</span> <span class="n">the</span> <span class="n">token</span> <span class="n">ring</span> <span class="n">to</span> <span class="n">a</span> <span class="n">new</span> <span class="n">token</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/netstats.html b/content/doc/stable/tools/nodetool/netstats.html
index 8c8673b..b5c1289 100644
--- a/content/doc/stable/tools/nodetool/netstats.html
+++ b/content/doc/stable/tools/nodetool/netstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">netstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">network</span> <span class="n">information</span> <span class="n">on</span> <span class="n">provided</span> <span class="n">host</span>
         <span class="p">(</span><span class="n">connecting</span> <span class="n">node</span> <span class="n">by</span> <span class="n">default</span><span class="p">)</span>
 
diff --git a/content/doc/stable/tools/nodetool/nodetool.html b/content/doc/stable/tools/nodetool/nodetool.html
index 0f8b486..4d9be2d 100644
--- a/content/doc/stable/tools/nodetool/nodetool.html
+++ b/content/doc/stable/tools/nodetool/nodetool.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -152,16 +152,16 @@
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
 <dl class="docutils">
-<dt>usage: nodetool [(-pp | &#8211;print-port)]</dt>
-<dd>[(-pwf &lt;passwordFilePath&gt; | &#8211;password-file &lt;passwordFilePath&gt;)]
-[(-p &lt;port&gt; | &#8211;port &lt;port&gt;)] [(-u &lt;username&gt; | &#8211;username &lt;username&gt;)]
-[(-h &lt;host&gt; | &#8211;host &lt;host&gt;)] [(-pw &lt;password&gt; | &#8211;password &lt;password&gt;)]
-&lt;command&gt; [&lt;args&gt;]</dd>
+<dt>usage: nodetool [(-u &lt;username&gt; | –username &lt;username&gt;)]</dt>
+<dd>[(-h &lt;host&gt; | –host &lt;host&gt;)] [(-p &lt;port&gt; | –port &lt;port&gt;)]
+[(-pw &lt;password&gt; | –password &lt;password&gt;)]
+[(-pwf &lt;passwordFilePath&gt; | –password-file &lt;passwordFilePath&gt;)]
+[(-pp | –print-port)] &lt;command&gt; [&lt;args&gt;]</dd>
 </dl>
 <p>The most commonly used nodetool commands are:</p>
 <blockquote>
 <div><p><a class="reference internal" href="assassinate.html"><span class="doc">assassinate</span></a> -                   Forcefully remove a dead node without re-replicating any data.  Use as a last resort if you cannot removenode</p>
-<p><a class="reference internal" href="bootstrap.html"><span class="doc">bootstrap</span></a> -                     Monitor/manage node&#8217;s bootstrap process</p>
+<p><a class="reference internal" href="bootstrap.html"><span class="doc">bootstrap</span></a> -                     Monitor/manage node’s bootstrap process</p>
 <p><a class="reference internal" href="cleanup.html"><span class="doc">cleanup</span></a> -                       Triggers the immediate cleanup of keys no longer belonging to a node. By default, clean all keyspaces</p>
 <p><a class="reference internal" href="clearsnapshot.html"><span class="doc">clearsnapshot</span></a> -                 Remove the snapshot with the given name from the given keyspaces. If no snapshotName is specified we will remove all snapshots</p>
 <p><a class="reference internal" href="clientstats.html"><span class="doc">clientstats</span></a> -                   Print information about connected clients</p>
@@ -197,6 +197,7 @@
 <p><a class="reference internal" href="getbatchlogreplaythrottle.html"><span class="doc">getbatchlogreplaythrottle</span></a> -     Print batchlog replay throttle in KB/s. This is reduced proportionally to the number of nodes in the cluster.</p>
 <p><a class="reference internal" href="getcompactionthreshold.html"><span class="doc">getcompactionthreshold</span></a> -        Print min and max compaction thresholds for a given table</p>
 <p><a class="reference internal" href="getcompactionthroughput.html"><span class="doc">getcompactionthroughput</span></a> -       Print the MB/s throughput cap for compaction in the system</p>
+<p><a class="reference internal" href="getconcurrency.html"><span class="doc">getconcurrency</span></a> -                Get maximum concurrency for processing stages</p>
 <p><a class="reference internal" href="getconcurrentcompactors.html"><span class="doc">getconcurrentcompactors</span></a> -       Get the number of concurrent compactors in the system.</p>
 <p><a class="reference internal" href="getconcurrentviewbuilders.html"><span class="doc">getconcurrentviewbuilders</span></a> -     Get the number of concurrent view builders in the system</p>
 <p><a class="reference internal" href="getendpoints.html"><span class="doc">getendpoints</span></a> -                  Print the end points that owns the key</p>
@@ -213,12 +214,12 @@
 <p><a class="reference internal" href="handoffwindow.html"><span class="doc">handoffwindow</span></a> -                 Print current hinted handoff window</p>
 <p><a class="reference internal" href="help.html"><span class="doc">help</span></a> -                          Display help information</p>
 <p><a class="reference internal" href="import.html"><span class="doc">import</span></a> -                        Import new SSTables to the system</p>
-<p><a class="reference internal" href="info.html"><span class="doc">info</span></a> -                          Print node information (uptime, load, ...)</p>
+<p><a class="reference internal" href="info.html"><span class="doc">info</span></a> -                          Print node information (uptime, load, …)</p>
 <p><a class="reference internal" href="invalidatecountercache.html"><span class="doc">invalidatecountercache</span></a> -        Invalidate the counter cache</p>
 <p><a class="reference internal" href="invalidatekeycache.html"><span class="doc">invalidatekeycache</span></a> -            Invalidate the key cache</p>
 <p><a class="reference internal" href="invalidaterowcache.html"><span class="doc">invalidaterowcache</span></a> -            Invalidate the row cache</p>
 <p><a class="reference internal" href="join.html"><span class="doc">join</span></a> -                          Join the ring</p>
-<p><a class="reference internal" href="listsnapshots.html"><span class="doc">listsnapshots</span></a> -                 Lists all the snapshots along with the size on disk and true size.</p>
+<p><a class="reference internal" href="listsnapshots.html"><span class="doc">listsnapshots</span></a> -                 Lists all the snapshots along with the size on disk and true size. True size is the total size of all SSTables which are not backed up to disk. Size on disk is total size of the snapshot on disk. Total TrueDiskSpaceUsed does not make any SSTable deduplication.</p>
 <p><a class="reference internal" href="move.html"><span class="doc">move</span></a> -                          Move node on the token ring to a new token</p>
 <p><a class="reference internal" href="netstats.html"><span class="doc">netstats</span></a> -                      Print network information on provided host (connecting node by default)</p>
 <p><a class="reference internal" href="pausehandoff.html"><span class="doc">pausehandoff</span></a> -                  Pause hints delivery process</p>
@@ -237,10 +238,10 @@
 <p><a class="reference internal" href="removenode.html"><span class="doc">removenode</span></a> -                    Show status of current node removal, force completion of pending removal or remove provided ID</p>
 <p><a class="reference internal" href="repair.html"><span class="doc">repair</span></a> -                        Repair one or more tables</p>
 <p><a class="reference internal" href="repair_admin.html"><span class="doc">repair_admin</span></a> -
-<span class="xref doc">list</span> -  and fail incremental repair sessions</p>
+<span class="xref std std-doc">list</span> -  and fail incremental repair sessions</p>
 <p><a class="reference internal" href="replaybatchlog.html"><span class="doc">replaybatchlog</span></a> -                Kick off batchlog replay and wait for finish</p>
 <p><a class="reference internal" href="resetfullquerylog.html"><span class="doc">resetfullquerylog</span></a> -             Stop the full query log and clean files in the configured full query log directory from cassandra.yaml as well as JMX</p>
-<p><a class="reference internal" href="resetlocalschema.html"><span class="doc">resetlocalschema</span></a> -              Reset node&#8217;s local schema and resync</p>
+<p><a class="reference internal" href="resetlocalschema.html"><span class="doc">resetlocalschema</span></a> -              Reset node’s local schema and resync</p>
 <p><a class="reference internal" href="resumehandoff.html"><span class="doc">resumehandoff</span></a> -                 Resume hints delivery process</p>
 <p><a class="reference internal" href="ring.html"><span class="doc">ring</span></a> -                          Print information about the token ring</p>
 <p><a class="reference internal" href="scrub.html"><span class="doc">scrub</span></a> -                         Scrub (rebuild sstables for) one or more tables</p>
@@ -249,6 +250,7 @@
 <p><a class="reference internal" href="setcachekeystosave.html"><span class="doc">setcachekeystosave</span></a> -            Set number of keys saved by each cache for faster post-restart warmup. 0 to disable</p>
 <p><a class="reference internal" href="setcompactionthreshold.html"><span class="doc">setcompactionthreshold</span></a> -        Set min and max compaction thresholds for a given table</p>
 <p><a class="reference internal" href="setcompactionthroughput.html"><span class="doc">setcompactionthroughput</span></a> -       Set the MB/s throughput cap for compaction in the system, or 0 to disable throttling</p>
+<p><a class="reference internal" href="setconcurrency.html"><span class="doc">setconcurrency</span></a> -                Set maximum concurrency for processing stage</p>
 <p><a class="reference internal" href="setconcurrentcompactors.html"><span class="doc">setconcurrentcompactors</span></a> -       Set number of concurrent compactors in the system.</p>
 <p><a class="reference internal" href="setconcurrentviewbuilders.html"><span class="doc">setconcurrentviewbuilders</span></a> -     Set the number of concurrent view builders in the system</p>
 <p><a class="reference internal" href="sethintedhandoffthrottlekb.html"><span class="doc">sethintedhandoffthrottlekb</span></a> -    Set hinted handoff throttle in kb per second, per delivery thread.</p>
@@ -258,8 +260,9 @@
 <p><a class="reference internal" href="setstreamthroughput.html"><span class="doc">setstreamthroughput</span></a> -           Set the Mb/s throughput cap for streaming in the system, or 0 to disable throttling</p>
 <p><a class="reference internal" href="settimeout.html"><span class="doc">settimeout</span></a> -                    Set the specified timeout in ms, or 0 to disable timeout</p>
 <p><a class="reference internal" href="settraceprobability.html"><span class="doc">settraceprobability</span></a> -           Sets the probability for tracing any given request to value. 0 disables, 1 enables for all requests, 0 is the default</p>
+<p><a class="reference internal" href="sjk.html"><span class="doc">sjk</span></a> -                           Run commands of ‘Swiss Java Knife’. Run ‘nodetool sjk –help’ for more information.</p>
 <p><a class="reference internal" href="snapshot.html"><span class="doc">snapshot</span></a> -                      Take a snapshot of specified keyspaces or a snapshot of the specified table</p>
-<p><a class="reference internal" href="status.html"><span class="doc">status</span></a> -                        Print cluster information (state, load, IDs, ...)</p>
+<p><a class="reference internal" href="status.html"><span class="doc">status</span></a> -                        Print cluster information (state, load, IDs, …)</p>
 <p><a class="reference internal" href="statusautocompaction.html"><span class="doc">statusautocompaction</span></a> -
 <a class="reference internal" href="status.html"><span class="doc">status</span></a> -  of autocompaction of the given keyspace and table</p>
 <p><a class="reference internal" href="statusbackup.html"><span class="doc">statusbackup</span></a> -                  Status of incremental backup</p>
@@ -278,7 +281,7 @@
 <p><a class="reference internal" href="version.html"><span class="doc">version</span></a> -                       Print cassandra version</p>
 <p><a class="reference internal" href="viewbuildstatus.html"><span class="doc">viewbuildstatus</span></a> -               Show progress of a materialized view build</p>
 </div></blockquote>
-<p>See &#8216;nodetool help &lt;command&gt;&#8217; for more information on a specific command.</p>
+<p>See ‘nodetool help &lt;command&gt;’ for more information on a specific command.</p>
 </div>
 
 
diff --git a/content/doc/stable/tools/nodetool/pausehandoff.html b/content/doc/stable/tools/nodetool/pausehandoff.html
index 6f9da1d..9b85c6c 100644
--- a/content/doc/stable/tools/nodetool/pausehandoff.html
+++ b/content/doc/stable/tools/nodetool/pausehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">pausehandoff</span> <span class="o">-</span> <span class="n">Pause</span> <span class="n">hints</span> <span class="n">delivery</span> <span class="n">process</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/profileload.html b/content/doc/stable/tools/nodetool/profileload.html
index 3339235..5c2ed0c 100644
--- a/content/doc/stable/tools/nodetool/profileload.html
+++ b/content/doc/stable/tools/nodetool/profileload.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">profileload</span> <span class="o">-</span> <span class="n">Low</span> <span class="n">footprint</span> <span class="n">profiling</span> <span class="n">of</span> <span class="n">activity</span> <span class="k">for</span> <span class="n">a</span> <span class="n">period</span>
         <span class="n">of</span> <span class="n">time</span>
 
diff --git a/content/doc/stable/tools/nodetool/proxyhistograms.html b/content/doc/stable/tools/nodetool/proxyhistograms.html
index 788be35..5ea11b0 100644
--- a/content/doc/stable/tools/nodetool/proxyhistograms.html
+++ b/content/doc/stable/tools/nodetool/proxyhistograms.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">proxyhistograms</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistic</span> <span class="n">histograms</span> <span class="k">for</span> <span class="n">network</span>
         <span class="n">operations</span>
 
diff --git a/content/doc/stable/tools/nodetool/rangekeysample.html b/content/doc/stable/tools/nodetool/rangekeysample.html
index dadd646..a4a59a6 100644
--- a/content/doc/stable/tools/nodetool/rangekeysample.html
+++ b/content/doc/stable/tools/nodetool/rangekeysample.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">rangekeysample</span> <span class="o">-</span> <span class="n">Shows</span> <span class="n">the</span> <span class="n">sampled</span> <span class="n">keys</span> <span class="n">held</span> <span class="n">across</span> <span class="nb">all</span>
         <span class="n">keyspaces</span>
 
diff --git a/content/doc/stable/tools/nodetool/rebuild.html b/content/doc/stable/tools/nodetool/rebuild.html
index fce4d66..bcf9853 100644
--- a/content/doc/stable/tools/nodetool/rebuild.html
+++ b/content/doc/stable/tools/nodetool/rebuild.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">rebuild</span> <span class="o">-</span> <span class="n">Rebuild</span> <span class="n">data</span> <span class="n">by</span> <span class="n">streaming</span> <span class="kn">from</span> <span class="nn">other</span> <span class="n">nodes</span> <span class="p">(</span><span class="n">similarly</span>
         <span class="n">to</span> <span class="n">bootstrap</span><span class="p">)</span>
 
diff --git a/content/doc/stable/tools/nodetool/rebuild_index.html b/content/doc/stable/tools/nodetool/rebuild_index.html
index 65a09ea..5575466 100644
--- a/content/doc/stable/tools/nodetool/rebuild_index.html
+++ b/content/doc/stable/tools/nodetool/rebuild_index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">rebuild_index</span> <span class="o">-</span> <span class="n">A</span> <span class="n">full</span> <span class="n">rebuild</span> <span class="n">of</span> <span class="n">native</span> <span class="n">secondary</span> <span class="n">indexes</span> <span class="k">for</span>
         <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/refresh.html b/content/doc/stable/tools/nodetool/refresh.html
index 0e3f9f5..3cb05f5 100644
--- a/content/doc/stable/tools/nodetool/refresh.html
+++ b/content/doc/stable/tools/nodetool/refresh.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">refresh</span> <span class="o">-</span> <span class="n">Load</span> <span class="n">newly</span> <span class="n">placed</span> <span class="n">SSTables</span> <span class="n">to</span> <span class="n">the</span> <span class="n">system</span> <span class="n">without</span>
         <span class="n">restart</span>
 
diff --git a/content/doc/stable/tools/nodetool/refreshsizeestimates.html b/content/doc/stable/tools/nodetool/refreshsizeestimates.html
index 5c747a4..49ed01c 100644
--- a/content/doc/stable/tools/nodetool/refreshsizeestimates.html
+++ b/content/doc/stable/tools/nodetool/refreshsizeestimates.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">refreshsizeestimates</span> <span class="o">-</span> <span class="n">Refresh</span> <span class="n">system</span><span class="o">.</span><span class="n">size_estimates</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/reloadlocalschema.html b/content/doc/stable/tools/nodetool/reloadlocalschema.html
index 2a01d0d..3d82403 100644
--- a/content/doc/stable/tools/nodetool/reloadlocalschema.html
+++ b/content/doc/stable/tools/nodetool/reloadlocalschema.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadlocalschema</span> <span class="o">-</span> <span class="n">Reload</span> <span class="n">local</span> <span class="n">node</span> <span class="n">schema</span> <span class="kn">from</span> <span class="nn">system</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/reloadseeds.html b/content/doc/stable/tools/nodetool/reloadseeds.html
index 38dcaee..fe4fc97 100644
--- a/content/doc/stable/tools/nodetool/reloadseeds.html
+++ b/content/doc/stable/tools/nodetool/reloadseeds.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadseeds</span> <span class="o">-</span> <span class="n">Reload</span> <span class="n">the</span> <span class="n">seed</span> <span class="n">node</span> <span class="nb">list</span> <span class="kn">from</span> <span class="nn">the</span> <span class="n">seed</span> <span class="n">node</span>
         <span class="n">provider</span>
 
diff --git a/content/doc/stable/tools/nodetool/reloadssl.html b/content/doc/stable/tools/nodetool/reloadssl.html
index 6b75b88..b09652d 100644
--- a/content/doc/stable/tools/nodetool/reloadssl.html
+++ b/content/doc/stable/tools/nodetool/reloadssl.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadssl</span> <span class="o">-</span> <span class="n">Signals</span> <span class="n">Cassandra</span> <span class="n">to</span> <span class="n">reload</span> <span class="n">SSL</span> <span class="n">certificates</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/reloadtriggers.html b/content/doc/stable/tools/nodetool/reloadtriggers.html
index b275e5c..615ad62 100644
--- a/content/doc/stable/tools/nodetool/reloadtriggers.html
+++ b/content/doc/stable/tools/nodetool/reloadtriggers.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">reloadtriggers</span> <span class="o">-</span> <span class="n">Reload</span> <span class="n">trigger</span> <span class="n">classes</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/relocatesstables.html b/content/doc/stable/tools/nodetool/relocatesstables.html
index 6474ecd..59ea520 100644
--- a/content/doc/stable/tools/nodetool/relocatesstables.html
+++ b/content/doc/stable/tools/nodetool/relocatesstables.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">relocatesstables</span> <span class="o">-</span> <span class="n">Relocates</span> <span class="n">sstables</span> <span class="n">to</span> <span class="n">the</span> <span class="n">correct</span> <span class="n">disk</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/removenode.html b/content/doc/stable/tools/nodetool/removenode.html
index fa62874..c30a74e 100644
--- a/content/doc/stable/tools/nodetool/removenode.html
+++ b/content/doc/stable/tools/nodetool/removenode.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">removenode</span> <span class="o">-</span> <span class="n">Show</span> <span class="n">status</span> <span class="n">of</span> <span class="n">current</span> <span class="n">node</span> <span class="n">removal</span><span class="p">,</span> <span class="n">force</span>
         <span class="n">completion</span> <span class="n">of</span> <span class="n">pending</span> <span class="n">removal</span> <span class="ow">or</span> <span class="n">remove</span> <span class="n">provided</span> <span class="n">ID</span>
 
diff --git a/content/doc/stable/tools/nodetool/repair.html b/content/doc/stable/tools/nodetool/repair.html
index bf2b2e6..22fff33 100644
--- a/content/doc/stable/tools/nodetool/repair.html
+++ b/content/doc/stable/tools/nodetool/repair.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">repair</span> <span class="o">-</span> <span class="n">Repair</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
@@ -178,7 +178,7 @@
             <span class="n">Use</span> <span class="o">-</span><span class="n">dcpar</span> <span class="n">to</span> <span class="n">repair</span> <span class="n">data</span> <span class="n">centers</span> <span class="ow">in</span> <span class="n">parallel</span><span class="o">.</span>
 
         <span class="o">-</span><span class="n">et</span> <span class="o">&lt;</span><span class="n">end_token</span><span class="o">&gt;</span><span class="p">,</span> <span class="o">--</span><span class="n">end</span><span class="o">-</span><span class="n">token</span> <span class="o">&lt;</span><span class="n">end_token</span><span class="o">&gt;</span>
-            <span class="n">Use</span> <span class="o">-</span><span class="n">et</span> <span class="n">to</span> <span class="n">specify</span> <span class="n">a</span> <span class="n">token</span> <span class="n">at</span> <span class="n">which</span> <span class="n">repair</span> <span class="nb">range</span> <span class="n">ends</span>
+            <span class="n">Use</span> <span class="o">-</span><span class="n">et</span> <span class="n">to</span> <span class="n">specify</span> <span class="n">a</span> <span class="n">token</span> <span class="n">at</span> <span class="n">which</span> <span class="n">repair</span> <span class="nb">range</span> <span class="n">ends</span> <span class="p">(</span><span class="n">inclusive</span><span class="p">)</span>
 
         <span class="o">-</span><span class="n">force</span><span class="p">,</span> <span class="o">--</span><span class="n">force</span>
             <span class="n">Use</span> <span class="o">-</span><span class="n">force</span> <span class="n">to</span> <span class="nb">filter</span> <span class="n">out</span> <span class="n">down</span> <span class="n">endpoints</span>
@@ -232,6 +232,7 @@
 
         <span class="o">-</span><span class="n">st</span> <span class="o">&lt;</span><span class="n">start_token</span><span class="o">&gt;</span><span class="p">,</span> <span class="o">--</span><span class="n">start</span><span class="o">-</span><span class="n">token</span> <span class="o">&lt;</span><span class="n">start_token</span><span class="o">&gt;</span>
             <span class="n">Use</span> <span class="o">-</span><span class="n">st</span> <span class="n">to</span> <span class="n">specify</span> <span class="n">a</span> <span class="n">token</span> <span class="n">at</span> <span class="n">which</span> <span class="n">the</span> <span class="n">repair</span> <span class="nb">range</span> <span class="n">starts</span>
+            <span class="p">(</span><span class="n">exclusive</span><span class="p">)</span>
 
         <span class="o">-</span><span class="n">tr</span><span class="p">,</span> <span class="o">--</span><span class="n">trace</span>
             <span class="n">Use</span> <span class="o">-</span><span class="n">tr</span> <span class="n">to</span> <span class="n">trace</span> <span class="n">the</span> <span class="n">repair</span><span class="o">.</span> <span class="n">Traces</span> <span class="n">are</span> <span class="n">logged</span> <span class="n">to</span>
diff --git a/content/doc/stable/tools/nodetool/repair_admin.html b/content/doc/stable/tools/nodetool/repair_admin.html
index a5eacdc..06922b8 100644
--- a/content/doc/stable/tools/nodetool/repair_admin.html
+++ b/content/doc/stable/tools/nodetool/repair_admin.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">repair_admin</span> <span class="o">-</span> <span class="nb">list</span> <span class="ow">and</span> <span class="n">fail</span> <span class="n">incremental</span> <span class="n">repair</span> <span class="n">sessions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/replaybatchlog.html b/content/doc/stable/tools/nodetool/replaybatchlog.html
index e3595ef..20b7d85 100644
--- a/content/doc/stable/tools/nodetool/replaybatchlog.html
+++ b/content/doc/stable/tools/nodetool/replaybatchlog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">replaybatchlog</span> <span class="o">-</span> <span class="n">Kick</span> <span class="n">off</span> <span class="n">batchlog</span> <span class="n">replay</span> <span class="ow">and</span> <span class="n">wait</span> <span class="k">for</span> <span class="n">finish</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/resetfullquerylog.html b/content/doc/stable/tools/nodetool/resetfullquerylog.html
index 2a8842e..75e0f20 100644
--- a/content/doc/stable/tools/nodetool/resetfullquerylog.html
+++ b/content/doc/stable/tools/nodetool/resetfullquerylog.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">resetfullquerylog</span> <span class="o">-</span> <span class="n">Stop</span> <span class="n">the</span> <span class="n">full</span> <span class="n">query</span> <span class="n">log</span> <span class="ow">and</span> <span class="n">clean</span> <span class="n">files</span> <span class="ow">in</span>
         <span class="n">the</span> <span class="n">configured</span> <span class="n">full</span> <span class="n">query</span> <span class="n">log</span> <span class="n">directory</span> <span class="kn">from</span> <span class="nn">cassandra.yaml</span> <span class="k">as</span> <span class="n">well</span> <span class="k">as</span>
         <span class="n">JMX</span>
diff --git a/content/doc/stable/tools/nodetool/resetlocalschema.html b/content/doc/stable/tools/nodetool/resetlocalschema.html
index f62edaa..284fffe 100644
--- a/content/doc/stable/tools/nodetool/resetlocalschema.html
+++ b/content/doc/stable/tools/nodetool/resetlocalschema.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">resetlocalschema</span> <span class="o">-</span> <span class="n">Reset</span> <span class="n">node</span><span class="s1">&#39;s local schema and resync</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/resumehandoff.html b/content/doc/stable/tools/nodetool/resumehandoff.html
index dd5e4e1..077f3dd 100644
--- a/content/doc/stable/tools/nodetool/resumehandoff.html
+++ b/content/doc/stable/tools/nodetool/resumehandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">resumehandoff</span> <span class="o">-</span> <span class="n">Resume</span> <span class="n">hints</span> <span class="n">delivery</span> <span class="n">process</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/ring.html b/content/doc/stable/tools/nodetool/ring.html
index 854cc4c..f2c7576 100644
--- a/content/doc/stable/tools/nodetool/ring.html
+++ b/content/doc/stable/tools/nodetool/ring.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">ring</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">information</span> <span class="n">about</span> <span class="n">the</span> <span class="n">token</span> <span class="n">ring</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/scrub.html b/content/doc/stable/tools/nodetool/scrub.html
index d513e58..0276927 100644
--- a/content/doc/stable/tools/nodetool/scrub.html
+++ b/content/doc/stable/tools/nodetool/scrub.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">scrub</span> <span class="o">-</span> <span class="n">Scrub</span> <span class="p">(</span><span class="n">rebuild</span> <span class="n">sstables</span> <span class="k">for</span><span class="p">)</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/setbatchlogreplaythrottle.html b/content/doc/stable/tools/nodetool/setbatchlogreplaythrottle.html
index 440d255..1a8ec88 100644
--- a/content/doc/stable/tools/nodetool/setbatchlogreplaythrottle.html
+++ b/content/doc/stable/tools/nodetool/setbatchlogreplaythrottle.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setbatchlogreplaythrottle</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">batchlog</span> <span class="n">replay</span> <span class="n">throttle</span> <span class="ow">in</span> <span class="n">KB</span>
         <span class="n">per</span> <span class="n">second</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span><span class="o">.</span> <span class="n">This</span> <span class="n">will</span> <span class="n">be</span> <span class="n">reduced</span>
         <span class="n">proportionally</span> <span class="n">to</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">nodes</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">cluster</span><span class="o">.</span>
diff --git a/content/doc/stable/tools/nodetool/setcachecapacity.html b/content/doc/stable/tools/nodetool/setcachecapacity.html
index c119dd2..760b418 100644
--- a/content/doc/stable/tools/nodetool/setcachecapacity.html
+++ b/content/doc/stable/tools/nodetool/setcachecapacity.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcachecapacity</span> <span class="o">-</span> <span class="n">Set</span> <span class="k">global</span> <span class="n">key</span><span class="p">,</span> <span class="n">row</span><span class="p">,</span> <span class="ow">and</span> <span class="n">counter</span> <span class="n">cache</span>
         <span class="n">capacities</span> <span class="p">(</span><span class="ow">in</span> <span class="n">MB</span> <span class="n">units</span><span class="p">)</span>
 
diff --git a/content/doc/stable/tools/nodetool/setcachekeystosave.html b/content/doc/stable/tools/nodetool/setcachekeystosave.html
index 73ea56d..726e45f 100644
--- a/content/doc/stable/tools/nodetool/setcachekeystosave.html
+++ b/content/doc/stable/tools/nodetool/setcachekeystosave.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcachekeystosave</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">number</span> <span class="n">of</span> <span class="n">keys</span> <span class="n">saved</span> <span class="n">by</span> <span class="n">each</span> <span class="n">cache</span> <span class="k">for</span>
         <span class="n">faster</span> <span class="n">post</span><span class="o">-</span><span class="n">restart</span> <span class="n">warmup</span><span class="o">.</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span>
 
diff --git a/content/doc/stable/tools/nodetool/setcompactionthreshold.html b/content/doc/stable/tools/nodetool/setcompactionthreshold.html
index 0f9001f..f7bcd88 100644
--- a/content/doc/stable/tools/nodetool/setcompactionthreshold.html
+++ b/content/doc/stable/tools/nodetool/setcompactionthreshold.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcompactionthreshold</span> <span class="o">-</span> <span class="n">Set</span> <span class="nb">min</span> <span class="ow">and</span> <span class="nb">max</span> <span class="n">compaction</span> <span class="n">thresholds</span>
         <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/setcompactionthroughput.html b/content/doc/stable/tools/nodetool/setcompactionthroughput.html
index 6d63ce7..af4f9a3 100644
--- a/content/doc/stable/tools/nodetool/setcompactionthroughput.html
+++ b/content/doc/stable/tools/nodetool/setcompactionthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setcompactionthroughput</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">MB</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">compaction</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span>
 
diff --git a/content/doc/stable/tools/nodetool/setconcurrentcompactors.html b/content/doc/stable/tools/nodetool/setconcurrentcompactors.html
index 64da48b..4690fa3 100644
--- a/content/doc/stable/tools/nodetool/setconcurrentcompactors.html
+++ b/content/doc/stable/tools/nodetool/setconcurrentcompactors.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setconcurrentcompactors</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span> <span class="n">compactors</span>
         <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="o">.</span>
 
diff --git a/content/doc/stable/tools/nodetool/setconcurrentviewbuilders.html b/content/doc/stable/tools/nodetool/setconcurrentviewbuilders.html
index 1ac8857..11cfe88 100644
--- a/content/doc/stable/tools/nodetool/setconcurrentviewbuilders.html
+++ b/content/doc/stable/tools/nodetool/setconcurrentviewbuilders.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setconcurrentviewbuilders</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">number</span> <span class="n">of</span> <span class="n">concurrent</span> <span class="n">view</span>
         <span class="n">builders</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span>
 
diff --git a/content/doc/stable/tools/nodetool/sethintedhandoffthrottlekb.html b/content/doc/stable/tools/nodetool/sethintedhandoffthrottlekb.html
index ef095c4..b77057b 100644
--- a/content/doc/stable/tools/nodetool/sethintedhandoffthrottlekb.html
+++ b/content/doc/stable/tools/nodetool/sethintedhandoffthrottlekb.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">sethintedhandoffthrottlekb</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">hinted</span> <span class="n">handoff</span> <span class="n">throttle</span> <span class="ow">in</span> <span class="n">kb</span>
         <span class="n">per</span> <span class="n">second</span><span class="p">,</span> <span class="n">per</span> <span class="n">delivery</span> <span class="n">thread</span><span class="o">.</span>
 
diff --git a/content/doc/stable/tools/nodetool/setinterdcstreamthroughput.html b/content/doc/stable/tools/nodetool/setinterdcstreamthroughput.html
index 1d43c5f..eb97890 100644
--- a/content/doc/stable/tools/nodetool/setinterdcstreamthroughput.html
+++ b/content/doc/stable/tools/nodetool/setinterdcstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setinterdcstreamthroughput</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span>
         <span class="n">inter</span><span class="o">-</span><span class="n">datacenter</span> <span class="n">streaming</span> <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span>
 
diff --git a/content/doc/stable/tools/nodetool/setlogginglevel.html b/content/doc/stable/tools/nodetool/setlogginglevel.html
index a1eab99..06bd296 100644
--- a/content/doc/stable/tools/nodetool/setlogginglevel.html
+++ b/content/doc/stable/tools/nodetool/setlogginglevel.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setlogginglevel</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">log</span> <span class="n">level</span> <span class="n">threshold</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span>
         <span class="n">component</span> <span class="ow">or</span> <span class="n">class</span><span class="o">.</span> <span class="n">Will</span> <span class="n">reset</span> <span class="n">to</span> <span class="n">the</span> <span class="n">initial</span> <span class="n">configuration</span> <span class="k">if</span> <span class="n">called</span>
         <span class="k">with</span> <span class="n">no</span> <span class="n">parameters</span><span class="o">.</span>
diff --git a/content/doc/stable/tools/nodetool/setmaxhintwindow.html b/content/doc/stable/tools/nodetool/setmaxhintwindow.html
index ef85d44..9b24dbb 100644
--- a/content/doc/stable/tools/nodetool/setmaxhintwindow.html
+++ b/content/doc/stable/tools/nodetool/setmaxhintwindow.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setmaxhintwindow</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">specified</span> <span class="nb">max</span> <span class="n">hint</span> <span class="n">window</span> <span class="ow">in</span> <span class="n">ms</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/setstreamthroughput.html b/content/doc/stable/tools/nodetool/setstreamthroughput.html
index dcca516..e3395bf 100644
--- a/content/doc/stable/tools/nodetool/setstreamthroughput.html
+++ b/content/doc/stable/tools/nodetool/setstreamthroughput.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">setstreamthroughput</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">Mb</span><span class="o">/</span><span class="n">s</span> <span class="n">throughput</span> <span class="n">cap</span> <span class="k">for</span> <span class="n">streaming</span>
         <span class="ow">in</span> <span class="n">the</span> <span class="n">system</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span> <span class="n">throttling</span>
 
diff --git a/content/doc/stable/tools/nodetool/settimeout.html b/content/doc/stable/tools/nodetool/settimeout.html
index 1746816..dab5087 100644
--- a/content/doc/stable/tools/nodetool/settimeout.html
+++ b/content/doc/stable/tools/nodetool/settimeout.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">settimeout</span> <span class="o">-</span> <span class="n">Set</span> <span class="n">the</span> <span class="n">specified</span> <span class="n">timeout</span> <span class="ow">in</span> <span class="n">ms</span><span class="p">,</span> <span class="ow">or</span> <span class="mi">0</span> <span class="n">to</span> <span class="n">disable</span>
         <span class="n">timeout</span>
 
diff --git a/content/doc/stable/tools/nodetool/settraceprobability.html b/content/doc/stable/tools/nodetool/settraceprobability.html
index 4a501fa..11d056a 100644
--- a/content/doc/stable/tools/nodetool/settraceprobability.html
+++ b/content/doc/stable/tools/nodetool/settraceprobability.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">settraceprobability</span> <span class="o">-</span> <span class="n">Sets</span> <span class="n">the</span> <span class="n">probability</span> <span class="k">for</span> <span class="n">tracing</span> <span class="nb">any</span>
         <span class="n">given</span> <span class="n">request</span> <span class="n">to</span> <span class="n">value</span><span class="o">.</span> <span class="mi">0</span> <span class="n">disables</span><span class="p">,</span> <span class="mi">1</span> <span class="n">enables</span> <span class="k">for</span> <span class="nb">all</span> <span class="n">requests</span><span class="p">,</span> <span class="mi">0</span> <span class="ow">is</span> <span class="n">the</span>
         <span class="n">default</span>
diff --git a/content/doc/stable/tools/nodetool/snapshot.html b/content/doc/stable/tools/nodetool/snapshot.html
index 9cf38e9..341a991 100644
--- a/content/doc/stable/tools/nodetool/snapshot.html
+++ b/content/doc/stable/tools/nodetool/snapshot.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">snapshot</span> <span class="o">-</span> <span class="n">Take</span> <span class="n">a</span> <span class="n">snapshot</span> <span class="n">of</span> <span class="n">specified</span> <span class="n">keyspaces</span> <span class="ow">or</span> <span class="n">a</span> <span class="n">snapshot</span>
         <span class="n">of</span> <span class="n">the</span> <span class="n">specified</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/status.html b/content/doc/stable/tools/nodetool/status.html
index 91129b0..c6bee49 100644
--- a/content/doc/stable/tools/nodetool/status.html
+++ b/content/doc/stable/tools/nodetool/status.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">status</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">cluster</span> <span class="n">information</span> <span class="p">(</span><span class="n">state</span><span class="p">,</span> <span class="n">load</span><span class="p">,</span> <span class="n">IDs</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/statusautocompaction.html b/content/doc/stable/tools/nodetool/statusautocompaction.html
index fc7580e..961c89d 100644
--- a/content/doc/stable/tools/nodetool/statusautocompaction.html
+++ b/content/doc/stable/tools/nodetool/statusautocompaction.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusautocompaction</span> <span class="o">-</span> <span class="n">status</span> <span class="n">of</span> <span class="n">autocompaction</span> <span class="n">of</span> <span class="n">the</span> <span class="n">given</span>
         <span class="n">keyspace</span> <span class="ow">and</span> <span class="n">table</span>
 
diff --git a/content/doc/stable/tools/nodetool/statusbackup.html b/content/doc/stable/tools/nodetool/statusbackup.html
index e30abb1..090ee12 100644
--- a/content/doc/stable/tools/nodetool/statusbackup.html
+++ b/content/doc/stable/tools/nodetool/statusbackup.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusbackup</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">incremental</span> <span class="n">backup</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/statusbinary.html b/content/doc/stable/tools/nodetool/statusbinary.html
index b19db1a..67b8836 100644
--- a/content/doc/stable/tools/nodetool/statusbinary.html
+++ b/content/doc/stable/tools/nodetool/statusbinary.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusbinary</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">native</span> <span class="n">transport</span> <span class="p">(</span><span class="n">binary</span> <span class="n">protocol</span><span class="p">)</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/statusgossip.html b/content/doc/stable/tools/nodetool/statusgossip.html
index b91e6fc..5e27da3 100644
--- a/content/doc/stable/tools/nodetool/statusgossip.html
+++ b/content/doc/stable/tools/nodetool/statusgossip.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statusgossip</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">gossip</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/statushandoff.html b/content/doc/stable/tools/nodetool/statushandoff.html
index 846daad..8e72fe0 100644
--- a/content/doc/stable/tools/nodetool/statushandoff.html
+++ b/content/doc/stable/tools/nodetool/statushandoff.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">statushandoff</span> <span class="o">-</span> <span class="n">Status</span> <span class="n">of</span> <span class="n">storing</span> <span class="n">future</span> <span class="n">hints</span> <span class="n">on</span> <span class="n">the</span> <span class="n">current</span>
         <span class="n">node</span>
 
diff --git a/content/doc/stable/tools/nodetool/stop.html b/content/doc/stable/tools/nodetool/stop.html
index edadb81..7688e6f 100644
--- a/content/doc/stable/tools/nodetool/stop.html
+++ b/content/doc/stable/tools/nodetool/stop.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">stop</span> <span class="o">-</span> <span class="n">Stop</span> <span class="n">compaction</span>
 
 <span class="n">SYNOPSIS</span>
@@ -192,8 +192,9 @@
             <span class="n">command</span><span class="o">-</span><span class="n">line</span> <span class="n">options</span>
 
         <span class="o">&lt;</span><span class="n">compaction</span> <span class="nb">type</span><span class="o">&gt;</span>
-            <span class="n">Supported</span> <span class="n">types</span> <span class="n">are</span> <span class="n">COMPACTION</span><span class="p">,</span> <span class="n">VALIDATION</span><span class="p">,</span> <span class="n">CLEANUP</span><span class="p">,</span> <span class="n">SCRUB</span><span class="p">,</span> <span class="n">VERIFY</span><span class="p">,</span>
-            <span class="n">INDEX_BUILD</span>
+            <span class="n">Supported</span> <span class="n">types</span> <span class="n">are</span> <span class="n">COMPACTION</span><span class="p">,</span> <span class="n">VALIDATION</span><span class="p">,</span> <span class="n">CLEANUP</span><span class="p">,</span> <span class="n">SCRUB</span><span class="p">,</span>
+            <span class="n">UPGRADE_SSTABLES</span><span class="p">,</span> <span class="n">INDEX_BUILD</span><span class="p">,</span> <span class="n">TOMBSTONE_COMPACTION</span><span class="p">,</span> <span class="n">ANTICOMPACTION</span><span class="p">,</span>
+            <span class="n">VERIFY</span><span class="p">,</span> <span class="n">VIEW_BUILD</span><span class="p">,</span> <span class="n">INDEX_SUMMARY</span><span class="p">,</span> <span class="n">RELOCATE</span><span class="p">,</span> <span class="n">GARBAGE_COLLECT</span>
 
 
 </pre></div>
diff --git a/content/doc/stable/tools/nodetool/stopdaemon.html b/content/doc/stable/tools/nodetool/stopdaemon.html
index 80a81fb..459411d 100644
--- a/content/doc/stable/tools/nodetool/stopdaemon.html
+++ b/content/doc/stable/tools/nodetool/stopdaemon.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">stopdaemon</span> <span class="o">-</span> <span class="n">Stop</span> <span class="n">cassandra</span> <span class="n">daemon</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/tablehistograms.html b/content/doc/stable/tools/nodetool/tablehistograms.html
index e146316..4c8543f 100644
--- a/content/doc/stable/tools/nodetool/tablehistograms.html
+++ b/content/doc/stable/tools/nodetool/tablehistograms.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">tablehistograms</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistic</span> <span class="n">histograms</span> <span class="k">for</span> <span class="n">a</span> <span class="n">given</span> <span class="n">table</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/tablestats.html b/content/doc/stable/tools/nodetool/tablestats.html
index 83a3139..500b628 100644
--- a/content/doc/stable/tools/nodetool/tablestats.html
+++ b/content/doc/stable/tools/nodetool/tablestats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">tablestats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">statistics</span> <span class="n">on</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/toppartitions.html b/content/doc/stable/tools/nodetool/toppartitions.html
index 5741fc8..b2d2863 100644
--- a/content/doc/stable/tools/nodetool/toppartitions.html
+++ b/content/doc/stable/tools/nodetool/toppartitions.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">toppartitions</span> <span class="o">-</span> <span class="n">Sample</span> <span class="ow">and</span> <span class="nb">print</span> <span class="n">the</span> <span class="n">most</span> <span class="n">active</span> <span class="n">partitions</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/tpstats.html b/content/doc/stable/tools/nodetool/tpstats.html
index 819d06f..b29f6cd 100644
--- a/content/doc/stable/tools/nodetool/tpstats.html
+++ b/content/doc/stable/tools/nodetool/tpstats.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">tpstats</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">usage</span> <span class="n">statistics</span> <span class="n">of</span> <span class="n">thread</span> <span class="n">pools</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/truncatehints.html b/content/doc/stable/tools/nodetool/truncatehints.html
index 94b7375..24a929d 100644
--- a/content/doc/stable/tools/nodetool/truncatehints.html
+++ b/content/doc/stable/tools/nodetool/truncatehints.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">truncatehints</span> <span class="o">-</span> <span class="n">Truncate</span> <span class="nb">all</span> <span class="n">hints</span> <span class="n">on</span> <span class="n">the</span> <span class="n">local</span> <span class="n">node</span><span class="p">,</span> <span class="ow">or</span>
         <span class="n">truncate</span> <span class="n">hints</span> <span class="k">for</span> <span class="n">the</span> <span class="n">endpoint</span><span class="p">(</span><span class="n">s</span><span class="p">)</span> <span class="n">specified</span><span class="o">.</span>
 
diff --git a/content/doc/stable/tools/nodetool/upgradesstables.html b/content/doc/stable/tools/nodetool/upgradesstables.html
index 8abf746..bbaf8dd 100644
--- a/content/doc/stable/tools/nodetool/upgradesstables.html
+++ b/content/doc/stable/tools/nodetool/upgradesstables.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">upgradesstables</span> <span class="o">-</span> <span class="n">Rewrite</span> <span class="n">sstables</span> <span class="p">(</span><span class="k">for</span> <span class="n">the</span> <span class="n">requested</span> <span class="n">tables</span><span class="p">)</span>
         <span class="n">that</span> <span class="n">are</span> <span class="ow">not</span> <span class="n">on</span> <span class="n">the</span> <span class="n">current</span> <span class="n">version</span> <span class="p">(</span><span class="n">thus</span> <span class="n">upgrading</span> <span class="n">them</span> <span class="n">to</span> <span class="n">said</span> <span class="n">current</span>
         <span class="n">version</span><span class="p">)</span>
diff --git a/content/doc/stable/tools/nodetool/verify.html b/content/doc/stable/tools/nodetool/verify.html
index 755fbd3..9e6a2dd 100644
--- a/content/doc/stable/tools/nodetool/verify.html
+++ b/content/doc/stable/tools/nodetool/verify.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">verify</span> <span class="o">-</span> <span class="n">Verify</span> <span class="p">(</span><span class="n">check</span> <span class="n">data</span> <span class="n">checksum</span> <span class="k">for</span><span class="p">)</span> <span class="n">one</span> <span class="ow">or</span> <span class="n">more</span> <span class="n">tables</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/version.html b/content/doc/stable/tools/nodetool/version.html
index b6f67fe..39fa449 100644
--- a/content/doc/stable/tools/nodetool/version.html
+++ b/content/doc/stable/tools/nodetool/version.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">version</span> <span class="o">-</span> <span class="n">Print</span> <span class="n">cassandra</span> <span class="n">version</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/tools/nodetool/viewbuildstatus.html b/content/doc/stable/tools/nodetool/viewbuildstatus.html
index 72648d3..ca872b8 100644
--- a/content/doc/stable/tools/nodetool/viewbuildstatus.html
+++ b/content/doc/stable/tools/nodetool/viewbuildstatus.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../../index.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../../index.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
@@ -151,7 +151,7 @@
 </div>
 <div class="section" id="usage">
 <h1>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h1>
-<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">NAME</span>
+<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">NAME</span>
         <span class="n">nodetool</span> <span class="n">viewbuildstatus</span> <span class="o">-</span> <span class="n">Show</span> <span class="n">progress</span> <span class="n">of</span> <span class="n">a</span> <span class="n">materialized</span> <span class="n">view</span> <span class="n">build</span>
 
 <span class="n">SYNOPSIS</span>
diff --git a/content/doc/stable/troubleshooting/index.html b/content/doc/stable/troubleshooting/index.html
index 66c6e21..4aabe59 100644
--- a/content/doc/stable/troubleshooting/index.html
+++ b/content/doc/stable/troubleshooting/index.html
@@ -24,7 +24,7 @@
   <link rel="stylesheet" href="./../../../css/sphinx.css">
   
 
-   <link rel="top" title="Apache Cassandra Documentation v3.11.3" href="../index.html"/> <link rel="next" title="Cassandra Development" href="../development/index.html"/> <link rel="prev" title="Nodetool" href="../tools/nodetool.html"/> 
+   <link rel="top" title="Apache Cassandra Documentation v3.11.7" href="../index.html"/> <link rel="next" title="Cassandra Development" href="../development/index.html"/> <link rel="prev" title="Nodetool" href="../tools/nodetool.html"/> 
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
   
   <link type="application/atom+xml" rel="alternate" href="http://cassandra.apache.org/feed.xml" title="Apache Cassandra Website" />
diff --git a/content/feed.xml b/content/feed.xml
index 3707a97..4d5c998 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.4.3">Jekyll</generator><link href="http://cassandra.apache.org/feed.xml" rel="self" type="application/atom+xml" /><link href="http://cassandra.apache.org/" rel="alternate" type="text/html" /><updated>2020-04-20T16:59:26+00:00</updated><id>http://cassandra.apache.org/</id><title type="html">Apache Cassandra Website</title><subtitle>The Apache Cassandra database is the right choice when you need scalability and high availability without compromising performance. Linear scalability and proven fault-tolerance on commodity hardware or cloud infrastructure make it the perfect platform for mission-critical data. Cassandra's support for replicating across multiple datacenters is best-in-class, providing lower latency for your users and the peace of mind of knowing that you can survive regional outages.
+<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.4.3">Jekyll</generator><link href="http://cassandra.apache.org/feed.xml" rel="self" type="application/atom+xml" /><link href="http://cassandra.apache.org/" rel="alternate" type="text/html" /><updated>2020-04-20T22:11:10+00:00</updated><id>http://cassandra.apache.org/</id><title type="html">Apache Cassandra Website</title><subtitle>The Apache Cassandra database is the right choice when you need scalability and high availability without compromising performance. Linear scalability and proven fault-tolerance on commodity hardware or cloud infrastructure make it the perfect platform for mission-critical data. Cassandra's support for replicating across multiple datacenters is best-in-class, providing lower latency for your users and the peace of mind of knowing that you can survive regional outages.
 </subtitle><entry><title type="html">Even Higher Availability with 5x Faster Streaming in Cassandra 4.0</title><link href="http://cassandra.apache.org/blog/2019/04/09/benchmarking_streaming.html" rel="alternate" type="text/html" title="Even Higher Availability with 5x Faster Streaming in Cassandra 4.0" /><published>2019-04-09T08:00:00+00:00</published><updated>2019-04-09T08:00:00+00:00</updated><id>http://cassandra.apache.org/blog/2019/04/09/benchmarking_streaming</id><content type="html" xml:base="http://cassandra.apache.org/blog/2019/04/09/benchmarking_streaming.html">&lt;p&gt;Streaming is a process where nodes of a cluster exchange data in the form of SSTables. Streaming can kick in during many situations such as bootstrap, repair, rebuild, range movement, cluster expansion, etc. In this post, we discuss the massive performance improvements made to the streaming process in Apache Cassandra 4.0.&lt;/p&gt;
 
 &lt;h2 id=&quot;high-availability&quot;&gt;High Availability&lt;/h2&gt;
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 02b5afd..658be92 100755
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -17,14 +17,9 @@
 
 
 # Make sure we have the latest commit of Cassandra 3.11
-pushd ${CASSANDRA_DIR}
-ant realclean
-git checkout cassandra-3.11
-git pull --rebase --prune
-popd
-
-# Now make the docs for 3.11
-make .build-doc
+pushd ${CASSANDRA_DIR} ; ant realclean ; git checkout cassandra-3.11.5 ; popd ; make .build-doc
+pushd ${CASSANDRA_DIR} ; ant realclean ; git checkout cassandra-4.0-alpha1 ; popd ; make .build-doc
+pushd ${CASSANDRA_DIR} ; ant realclean ; git checkout cassandra-4.0-alpha2 ; popd ; make .build-doc
 
 # Relink the 3.11 version
 LATEST_VERSION=$(basename $(find ./doc -iname 3.11* -type d | tail -n 1))
diff --git a/src/doc/3.11 b/src/doc/3.11
index 1ee6443..82920a3 120000
--- a/src/doc/3.11
+++ b/src/doc/3.11
@@ -1 +1 @@
-3.11.6
\ No newline at end of file
+3.11.7
\ No newline at end of file
diff --git a/src/doc/4.0-alpha4/_sources/development/patches.rst.txt b/src/doc/4.0-alpha4/_sources/development/patches.rst.txt
index f3a2cca..92c0553 100644
--- a/src/doc/4.0-alpha4/_sources/development/patches.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/development/patches.rst.txt
@@ -108,7 +108,7 @@
    a. Attach a patch to JIRA with a single squashed commit in it (per branch), or
    b. Squash the commits in-place in your branches into one
 
- 6. Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch as below.
+ 6. Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch as below. Please note that only user-impacting items `should <https://lists.apache.org/thread.html/rde1128131a621e43b0a9c88778398c053a234da0f4c654b82dcbbe0e%40%3Cdev.cassandra.apache.org%3E>`_ be listed in CHANGES.txt. If you fix a test that does not affect users and does not require changes in runtime code, then no CHANGES.txt entry is necessary.
  
     ::
 
diff --git a/src/doc/4.0-alpha4/_sources/getting_started/index.rst.txt b/src/doc/4.0-alpha4/_sources/getting_started/index.rst.txt
index 4ca9c4d..a699aee 100644
--- a/src/doc/4.0-alpha4/_sources/getting_started/index.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/getting_started/index.rst.txt
@@ -29,5 +29,6 @@
    configuring
    querying
    drivers
+   production
 
 
diff --git a/src/doc/4.0-alpha4/_sources/getting_started/installing.rst.txt b/src/doc/4.0-alpha4/_sources/getting_started/installing.rst.txt
index a87589d..f3a22f2 100644
--- a/src/doc/4.0-alpha4/_sources/getting_started/installing.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/getting_started/installing.rst.txt
@@ -19,88 +19,306 @@
 Installing Cassandra
 --------------------
 
+These are the instructions for deploying the supported releases of Apache Cassandra on Linux servers.
+
+Cassandra runs on a wide array of Linux distributions including (but not limited to):
+
+- Ubuntu, most notably LTS releases 16.04 to 18.04
+- CentOS & RedHat Enterprise Linux (RHEL) including 6.6 to 7.7
+- Amazon Linux AMIs including 2016.09 through to Linux 2
+- Debian versions 8 & 9
+- SUSE Enterprise Linux 12
+
+This is not an exhaustive list of operating system platforms, nor is it prescriptive. However users will be
+well-advised to conduct exhaustive tests of their own particularly for less-popular distributions of Linux.
+Deploying on older versions is not recommended unless you have previous experience with the older distribution
+in a production environment.
+
 Prerequisites
 ^^^^^^^^^^^^^
 
-- The latest version of Java 8, either the `Oracle Java Standard Edition 8
+- Install the latest version of Java 8, either the `Oracle Java Standard Edition 8
   <http://www.oracle.com/technetwork/java/javase/downloads/index.html>`__ or `OpenJDK 8 <http://openjdk.java.net/>`__. To
   verify that you have the correct version of java installed, type ``java -version``.
-
-- For using cqlsh, the latest version of `Python 2.7 <https://www.python.org/downloads/>`__. To verify that you have
+- **NOTE**: *Experimental* support for Java 11 was added in Cassandra 4.0 (`CASSANDRA-9608 <https://issues.apache.org/jira/browse/CASSANDRA-9608>`__).
+  Running Cassandra on Java 11 is *experimental*. Do so at your own risk. For more information, see
+  `NEWS.txt <https://github.com/apache/cassandra/blob/trunk/NEWS.txt>`__.
+- For using cqlsh, the latest version of `Python 2.7 <https://www.python.org/downloads/>`__ or Python 3.6+. To verify that you have
   the correct version of Python installed, type ``python --version``.
 
-Installation from binary tarball files
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Choosing an installation method
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-- Download the latest stable release from the `Apache Cassandra downloads website <http://cassandra.apache.org/download/>`__.
+For most users, installing the binary tarball is the simplest choice. The tarball unpacks all its contents
+into a single location with binaries and configuration files located in their own subdirectories. The most
+obvious attribute of the tarball installation is it does not require ``root`` permissions and can be
+installed on any Linux distribution.
 
-- Untar the file somewhere, for example:
+Packaged installations require ``root`` permissions. Install the RPM build on CentOS and RHEL-based
+distributions if you want to install Cassandra using YUM. Install the Debian build on Ubuntu and other
+Debian-based distributions if you want to install Cassandra using APT. Note that both the YUM and APT
+methods required ``root`` permissions and will install the binaries and configuration files as the
+``cassandra`` OS user.
+
+Installing the binary tarball
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+1. Verify the version of Java installed. For example:
 
 ::
 
-    tar -xzvf apache-cassandra-3.6-bin.tar.gz
+   $ java -version
+   openjdk version "1.8.0_222"
+   OpenJDK Runtime Environment (build 1.8.0_222-8u222-b10-1ubuntu1~16.04.1-b10)
+   OpenJDK 64-Bit Server VM (build 25.222-b10, mixed mode)
 
-The files will be extracted into ``apache-cassandra-3.6``, you need to substitute 3.6 with the release number that you
-have downloaded.
-
-- Optionally add ``apache-cassandra-3.6\bin`` to your path.
-- Start Cassandra in the foreground by invoking ``bin/cassandra -f`` from the command line. Press "Control-C" to stop
-  Cassandra. Start Cassandra in the background by invoking ``bin/cassandra`` from the command line. Invoke ``kill pid``
-  or ``pkill -f CassandraDaemon`` to stop Cassandra, where pid is the Cassandra process id, which you can find for
-  example by invoking ``pgrep -f CassandraDaemon``.
-- Verify that Cassandra is running by invoking ``bin/nodetool status`` from the command line.
-- Configuration files are located in the ``conf`` sub-directory.
-- Since Cassandra 2.1, log and data directories are located in the ``logs`` and ``data`` sub-directories respectively.
-  Older versions defaulted to ``/var/log/cassandra`` and ``/var/lib/cassandra``. Due to this, it is necessary to either
-  start Cassandra with root privileges or change ``conf/cassandra.yaml`` to use directories owned by the current user,
-  as explained below in the section on changing the location of directories.
-
-Installation from Debian packages
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-- Add the Apache repository of Cassandra to ``/etc/apt/sources.list.d/cassandra.sources.list``, for example for version
-  3.6:
+2. Download the binary tarball from one of the mirrors on the `Apache Cassandra Download <http://cassandra.apache.org/download/>`__
+   site. For example, to download 4.0:
 
 ::
 
-    echo "deb https://downloads.apache.org/cassandra/debian 36x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
+   $ curl -OL http://apache.mirror.digitalpacific.com.au/cassandra/4.0.0/apache-cassandra-4.0.0-bin.tar.gz
 
-- Add the Apache Cassandra repository keys:
+NOTE: The mirrors only host the latest versions of each major supported release. To download an earlier
+version of Cassandra, visit the `Apache Archives <http://archive.apache.org/dist/cassandra/>`__.
+
+3. OPTIONAL: Verify the integrity of the downloaded tarball using one of the methods `here <https://www.apache.org/dyn/closer.cgi#verify>`__.
+   For example, to verify the hash of the downloaded file using GPG:
 
 ::
 
-    curl https://downloads.apache.org/cassandra/KEYS | sudo apt-key add -
+   $ gpg --print-md SHA256 apache-cassandra-4.0.0-bin.tar.gz 
+   apache-cassandra-4.0.0-bin.tar.gz: 28757DDE 589F7041 0F9A6A95 C39EE7E6
+                                      CDE63440 E2B06B91 AE6B2006 14FA364D
 
-- Update the repositories:
+Compare the signature with the SHA256 file from the Downloads site:
 
 ::
 
-    sudo apt-get update
+   $ curl -L https://downloads.apache.org/cassandra/4.0.0/apache-cassandra-4.0.0-bin.tar.gz.sha256
+   28757dde589f70410f9a6a95c39ee7e6cde63440e2b06b91ae6b200614fa364d
 
-- If you encounter this error:
+4. Unpack the tarball:
 
 ::
 
-    GPG error: http://www.apache.org 36x InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA
+   $ tar xzvf apache-cassandra-4.0.0-bin.tar.gz
 
-Then add the public key A278B781FE4B2BDA as follows:
+The files will be extracted to the ``apache-cassandra-4.0.0/`` directory. This is the tarball installation
+location.
+
+5. Located in the tarball installation location are the directories for the scripts, binaries, utilities, configuration, data and log files:
 
 ::
 
-    sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-key A278B781FE4B2BDA
+   <tarball_installation>/
+       bin/
+       conf/
+       data/
+       doc/
+       interface/
+       javadoc/
+       lib/
+       logs/
+       pylib/
+       tools/
+       
+For information on how to configure your installation, see
+`Configuring Cassandra <http://cassandra.apache.org/doc/latest/getting_started/configuring.html>`__.
 
-and repeat ``sudo apt-get update``. The actual key may be different, you get it from the error message itself. For a
-full list of Apache contributors public keys, you can refer to `this link <https://downloads.apache.org/cassandra/KEYS>`__.
-
-- Install Cassandra:
+6. Start Cassandra:
 
 ::
 
-    sudo apt-get install cassandra
+   $ cd apache-cassandra-4.0.0/
+   $ bin/cassandra
 
-- You can start Cassandra with ``sudo service cassandra start`` and stop it with ``sudo service cassandra stop``.
-  However, normally the service will start automatically. For this reason be sure to stop it if you need to make any
-  configuration changes.
-- Verify that Cassandra is running by invoking ``nodetool status`` from the command line.
-- The default location of configuration files is ``/etc/cassandra``.
-- The default location of log and data directories is ``/var/log/cassandra/`` and ``/var/lib/cassandra``.
+NOTE: This will run Cassandra as the authenticated Linux user.
+
+You can monitor the progress of the startup with:
+
+::
+
+   $ tail -f logs/system.log
+
+Cassandra is ready when you see an entry like this in the ``system.log``:
+
+::
+
+   INFO  [main] 2019-12-17 03:03:37,526 Server.java:156 - Starting listening for CQL clients on localhost/127.0.0.1:9042 (unencrypted)...
+
+7. Check the status of Cassandra:
+
+::
+
+   $ bin/nodetool status
+
+The status column in the output should report UN which stands for "Up/Normal".
+
+Alternatively, connect to the database with:
+
+::
+
+   $ bin/cqlsh
+
+Installing the Debian packages
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+1. Verify the version of Java installed. For example:
+
+::
+
+   $ java -version
+   openjdk version "1.8.0_222"
+   OpenJDK Runtime Environment (build 1.8.0_222-8u222-b10-1ubuntu1~16.04.1-b10)
+   OpenJDK 64-Bit Server VM (build 25.222-b10, mixed mode)
+
+2. Add the Apache repository of Cassandra to the file ``cassandra.sources.list``. The latest major version
+   is 4.0 and the corresponding distribution name is ``40x`` (with an "x" as the suffix).
+   For older releases use ``311x`` for C* 3.11 series, ``30x`` for 3.0, ``22x`` for 2.2 and ``21x`` for 2.1.
+   For example, to add the repository for version 4.0 (``40x``):
+
+::
+
+   $ echo "deb http://www.apache.org/dist/cassandra/debian 40x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
+   deb http://www.apache.org/dist/cassandra/debian 40x main
+
+3. Add the Apache Cassandra repository keys to the list of trusted keys on the server:
+
+::
+
+   $ curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -
+     % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
+                                    Dload  Upload   Total   Spent    Left  Speed
+   100  266k  100  266k    0     0   320k      0 --:--:-- --:--:-- --:--:--  320k
+   OK
+
+4. Update the package index from sources:
+
+::
+
+   $ sudo apt-get update
+
+5. Install Cassandra with APT:
+
+::
+
+   $ sudo apt-get install cassandra
+
+
+NOTE: A new Linux user ``cassandra`` will get created as part of the installation. The Cassandra service
+will also be run as this user.
+
+6. The Cassandra service gets started automatically after installation. Monitor the progress of
+   the startup with:
+
+::
+
+   $ tail -f /var/log/cassandra/system.log
+
+Cassandra is ready when you see an entry like this in the ``system.log``:
+
+::
+
+   INFO  [main] 2019-12-17 03:03:37,526 Server.java:156 - Starting listening for CQL clients on localhost/127.0.0.1:9042 (unencrypted)...
+
+NOTE: For information on how to configure your installation, see
+`Configuring Cassandra <http://cassandra.apache.org/doc/latest/getting_started/configuring.html>`__.
+
+7. Check the status of Cassandra:
+
+::
+
+   $ nodetool status
+
+The status column in the output should report ``UN`` which stands for "Up/Normal".
+
+Alternatively, connect to the database with:
+
+::
+
+   $ cqlsh
+   
+Installing the RPM packages
+^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+1. Verify the version of Java installed. For example:
+
+::
+
+   $ java -version
+   openjdk version "1.8.0_222"
+   OpenJDK Runtime Environment (build 1.8.0_232-b09)
+   OpenJDK 64-Bit Server VM (build 25.232-b09, mixed mode)
+
+2. Add the Apache repository of Cassandra to the file ``/etc/yum.repos.d/cassandra.repo`` (as the ``root``
+   user). The latest major version is 4.0 and the corresponding distribution name is ``40x`` (with an "x" as the suffix).
+   For older releases use ``311x`` for C* 3.11 series, ``30x`` for 3.0, ``22x`` for 2.2 and ``21x`` for 2.1.
+   For example, to add the repository for version 4.0 (``40x``):
+
+::
+
+   [cassandra]
+   name=Apache Cassandra
+   baseurl=https://downloads.apache.org/cassandra/redhat/40x/
+   gpgcheck=1
+   repo_gpgcheck=1
+   gpgkey=https://downloads.apache.org/cassandra/KEYS
+
+3. Update the package index from sources:
+
+::
+
+   $ sudo yum update
+
+4. Install Cassandra with YUM:
+
+::
+
+   $ sudo yum install cassandra
+
+
+NOTE: A new Linux user ``cassandra`` will get created as part of the installation. The Cassandra service
+will also be run as this user.
+
+5. Start the Cassandra service:
+
+::
+
+   $ sudo service cassandra start
+
+6. Monitor the progress of the startup with:
+
+::
+
+   $ tail -f /var/log/cassandra/system.log
+
+Cassandra is ready when you see an entry like this in the ``system.log``:
+
+::
+
+   INFO  [main] 2019-12-17 03:03:37,526 Server.java:156 - Starting listening for CQL clients on localhost/127.0.0.1:9042 (unencrypted)...
+
+NOTE: For information on how to configure your installation, see
+`Configuring Cassandra <http://cassandra.apache.org/doc/latest/getting_started/configuring.html>`__.
+
+7. Check the status of Cassandra:
+
+::
+
+   $ nodetool status
+
+The status column in the output should report ``UN`` which stands for "Up/Normal".
+
+Alternatively, connect to the database with:
+
+::
+
+   $ cqlsh
+
+Further installation info
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+For help with installation issues, see the `Troubleshooting <http://cassandra.apache.org/doc/latest/troubleshooting/index.html>`__ section.
+
+
diff --git a/src/doc/4.0-alpha4/_sources/operating/compaction.rst.txt b/src/doc/4.0-alpha4/_sources/operating/compaction.rst.txt
deleted file mode 100644
index ace9aa9..0000000
--- a/src/doc/4.0-alpha4/_sources/operating/compaction.rst.txt
+++ /dev/null
@@ -1,447 +0,0 @@
-.. Licensed to the Apache Software Foundation (ASF) under one
-.. or more contributor license agreements.  See the NOTICE file
-.. distributed with this work for additional information
-.. regarding copyright ownership.  The ASF licenses this file
-.. to you under the Apache License, Version 2.0 (the
-.. "License"); you may not use this file except in compliance
-.. with the License.  You may obtain a copy of the License at
-..
-..     http://www.apache.org/licenses/LICENSE-2.0
-..
-.. Unless required by applicable law or agreed to in writing, software
-.. distributed under the License is distributed on an "AS IS" BASIS,
-.. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-.. See the License for the specific language governing permissions and
-.. limitations under the License.
-
-.. highlight:: none
-
-.. _compaction:
-
-Compaction
-----------
-
-Types of compaction
-^^^^^^^^^^^^^^^^^^^
-
-The concept of compaction is used for different kinds of operations in Cassandra, the common thing about these
-operations is that it takes one or more sstables and output new sstables. The types of compactions are;
-
-Minor compaction
-    triggered automatically in Cassandra.
-Major compaction
-    a user executes a compaction over all sstables on the node.
-User defined compaction
-    a user triggers a compaction on a given set of sstables.
-Scrub
-    try to fix any broken sstables. This can actually remove valid data if that data is corrupted, if that happens you
-    will need to run a full repair on the node.
-Upgradesstables
-    upgrade sstables to the latest version. Run this after upgrading to a new major version.
-Cleanup
-    remove any ranges this node does not own anymore, typically triggered on neighbouring nodes after a node has been
-    bootstrapped since that node will take ownership of some ranges from those nodes.
-Secondary index rebuild
-    rebuild the secondary indexes on the node.
-Anticompaction
-    after repair the ranges that were actually repaired are split out of the sstables that existed when repair started.
-Sub range compaction
-    It is possible to only compact a given sub range - this could be useful if you know a token that has been
-    misbehaving - either gathering many updates or many deletes. (``nodetool compact -st x -et y``) will pick
-    all sstables containing the range between x and y and issue a compaction for those sstables. For STCS this will
-    most likely include all sstables but with LCS it can issue the compaction for a subset of the sstables. With LCS
-    the resulting sstable will end up in L0.
-
-When is a minor compaction triggered?
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-#  When an sstable is added to the node through flushing/streaming etc.
-#  When autocompaction is enabled after being disabled (``nodetool enableautocompaction``)
-#  When compaction adds new sstables.
-#  A check for new minor compactions every 5 minutes.
-
-Merging sstables
-^^^^^^^^^^^^^^^^
-
-Compaction is about merging sstables, since partitions in sstables are sorted based on the hash of the partition key it
-is possible to efficiently merge separate sstables. Content of each partition is also sorted so each partition can be
-merged efficiently.
-
-Tombstones and Garbage Collection (GC) Grace
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Why Tombstones
-~~~~~~~~~~~~~~
-
-When a delete request is received by Cassandra it does not actually remove the data from the underlying store. Instead
-it writes a special piece of data known as a tombstone. The Tombstone represents the delete and causes all values which
-occurred before the tombstone to not appear in queries to the database. This approach is used instead of removing values
-because of the distributed nature of Cassandra.
-
-Deletes without tombstones
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Imagine a three node cluster which has the value [A] replicated to every node.::
-
-    [A], [A], [A]
-
-If one of the nodes fails and and our delete operation only removes existing values we can end up with a cluster that
-looks like::
-
-    [], [], [A]
-
-Then a repair operation would replace the value of [A] back onto the two
-nodes which are missing the value.::
-
-    [A], [A], [A]
-
-This would cause our data to be resurrected even though it had been
-deleted.
-
-Deletes with Tombstones
-~~~~~~~~~~~~~~~~~~~~~~~
-
-Starting again with a three node cluster which has the value [A] replicated to every node.::
-
-    [A], [A], [A]
-
-If instead of removing data we add a tombstone record, our single node failure situation will look like this.::
-
-    [A, Tombstone[A]], [A, Tombstone[A]], [A]
-
-Now when we issue a repair the Tombstone will be copied to the replica, rather than the deleted data being
-resurrected.::
-
-    [A, Tombstone[A]], [A, Tombstone[A]], [A, Tombstone[A]]
-
-Our repair operation will correctly put the state of the system to what we expect with the record [A] marked as deleted
-on all nodes. This does mean we will end up accruing Tombstones which will permanently accumulate disk space. To avoid
-keeping tombstones forever we have a parameter known as ``gc_grace_seconds`` for every table in Cassandra.
-
-The gc_grace_seconds parameter and Tombstone Removal
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-The table level ``gc_grace_seconds`` parameter controls how long Cassandra will retain tombstones through compaction
-events before finally removing them. This duration should directly reflect the amount of time a user expects to allow
-before recovering a failed node. After ``gc_grace_seconds`` has expired the tombstone may be removed (meaning there will
-no longer be any record that a certain piece of data was deleted), but as a tombstone can live in one sstable and the
-data it covers in another, a compaction must also include both sstable for a tombstone to be removed. More precisely, to
-be able to drop an actual tombstone the following needs to be true;
-
-- The tombstone must be older than ``gc_grace_seconds``
-- If partition X contains the tombstone, the sstable containing the partition plus all sstables containing data older
-  than the tombstone containing X must be included in the same compaction. We don't need to care if the partition is in
-  an sstable if we can guarantee that all data in that sstable is newer than the tombstone. If the tombstone is older
-  than the data it cannot shadow that data.
-- If the option ``only_purge_repaired_tombstones`` is enabled, tombstones are only removed if the data has also been
-  repaired.
-
-If a node remains down or disconnected for longer than ``gc_grace_seconds`` it's deleted data will be repaired back to
-the other nodes and re-appear in the cluster. This is basically the same as in the "Deletes without Tombstones" section.
-Note that tombstones will not be removed until a compaction event even if ``gc_grace_seconds`` has elapsed.
-
-The default value for ``gc_grace_seconds`` is 864000 which is equivalent to 10 days. This can be set when creating or
-altering a table using ``WITH gc_grace_seconds``.
-
-TTL
-^^^
-
-Data in Cassandra can have an additional property called time to live - this is used to automatically drop data that has
-expired once the time is reached. Once the TTL has expired the data is converted to a tombstone which stays around for
-at least ``gc_grace_seconds``. Note that if you mix data with TTL and data without TTL (or just different length of the
-TTL) Cassandra will have a hard time dropping the tombstones created since the partition might span many sstables and
-not all are compacted at once.
-
-Fully expired sstables
-^^^^^^^^^^^^^^^^^^^^^^
-
-If an sstable contains only tombstones and it is guaranteed that that sstable is not shadowing data in any other sstable
-compaction can drop that sstable. If you see sstables with only tombstones (note that TTL:ed data is considered
-tombstones once the time to live has expired) but it is not being dropped by compaction, it is likely that other
-sstables contain older data. There is a tool called ``sstableexpiredblockers`` that will list which sstables are
-droppable and which are blocking them from being dropped. This is especially useful for time series compaction with
-``TimeWindowCompactionStrategy`` (and the deprecated ``DateTieredCompactionStrategy``). With ``TimeWindowCompactionStrategy``
-it is possible to remove the guarantee (not check for shadowing data) by enabling ``unsafe_aggressive_sstable_expiration``.
-
-Repaired/unrepaired data
-^^^^^^^^^^^^^^^^^^^^^^^^
-
-With incremental repairs Cassandra must keep track of what data is repaired and what data is unrepaired. With
-anticompaction repaired data is split out into repaired and unrepaired sstables. To avoid mixing up the data again
-separate compaction strategy instances are run on the two sets of data, each instance only knowing about either the
-repaired or the unrepaired sstables. This means that if you only run incremental repair once and then never again, you
-might have very old data in the repaired sstables that block compaction from dropping tombstones in the unrepaired
-(probably newer) sstables.
-
-Data directories
-^^^^^^^^^^^^^^^^
-
-Since tombstones and data can live in different sstables it is important to realize that losing an sstable might lead to
-data becoming live again - the most common way of losing sstables is to have a hard drive break down. To avoid making
-data live tombstones and actual data are always in the same data directory. This way, if a disk is lost, all versions of
-a partition are lost and no data can get undeleted. To achieve this a compaction strategy instance per data directory is
-run in addition to the compaction strategy instances containing repaired/unrepaired data, this means that if you have 4
-data directories there will be 8 compaction strategy instances running. This has a few more benefits than just avoiding
-data getting undeleted:
-
-- It is possible to run more compactions in parallel - leveled compaction will have several totally separate levelings
-  and each one can run compactions independently from the others.
-- Users can backup and restore a single data directory.
-- Note though that currently all data directories are considered equal, so if you have a tiny disk and a big disk
-  backing two data directories, the big one will be limited the by the small one. One work around to this is to create
-  more data directories backed by the big disk.
-
-Single sstable tombstone compaction
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-When an sstable is written a histogram with the tombstone expiry times is created and this is used to try to find
-sstables with very many tombstones and run single sstable compaction on that sstable in hope of being able to drop
-tombstones in that sstable. Before starting this it is also checked how likely it is that any tombstones will actually
-will be able to be dropped how much this sstable overlaps with other sstables. To avoid most of these checks the
-compaction option ``unchecked_tombstone_compaction`` can be enabled.
-
-.. _compaction-options:
-
-Common options
-^^^^^^^^^^^^^^
-
-There is a number of common options for all the compaction strategies;
-
-``enabled`` (default: true)
-    Whether minor compactions should run. Note that you can have 'enabled': true as a compaction option and then do
-    'nodetool enableautocompaction' to start running compactions.
-``tombstone_threshold`` (default: 0.2)
-    How much of the sstable should be tombstones for us to consider doing a single sstable compaction of that sstable.
-``tombstone_compaction_interval`` (default: 86400s (1 day))
-    Since it might not be possible to drop any tombstones when doing a single sstable compaction we need to make sure
-    that one sstable is not constantly getting recompacted - this option states how often we should try for a given
-    sstable. 
-``log_all`` (default: false)
-    New detailed compaction logging, see :ref:`below <detailed-compaction-logging>`.
-``unchecked_tombstone_compaction`` (default: false)
-    The single sstable compaction has quite strict checks for whether it should be started, this option disables those
-    checks and for some usecases this might be needed.  Note that this does not change anything for the actual
-    compaction, tombstones are only dropped if it is safe to do so - it might just rewrite an sstable without being able
-    to drop any tombstones.
-``only_purge_repaired_tombstone`` (default: false)
-    Option to enable the extra safety of making sure that tombstones are only dropped if the data has been repaired.
-``min_threshold`` (default: 4)
-    Lower limit of number of sstables before a compaction is triggered. Not used for ``LeveledCompactionStrategy``.
-``max_threshold`` (default: 32)
-    Upper limit of number of sstables before a compaction is triggered. Not used for ``LeveledCompactionStrategy``.
-
-Further, see the section on each strategy for specific additional options.
-
-Compaction nodetool commands
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The :ref:`nodetool <nodetool>` utility provides a number of commands related to compaction:
-
-``enableautocompaction``
-    Enable compaction.
-``disableautocompaction``
-    Disable compaction.
-``setcompactionthroughput``
-    How fast compaction should run at most - defaults to 16MB/s, but note that it is likely not possible to reach this
-    throughput.
-``compactionstats``
-    Statistics about current and pending compactions.
-``compactionhistory``
-    List details about the last compactions.
-``setcompactionthreshold``
-    Set the min/max sstable count for when to trigger compaction, defaults to 4/32.
-
-Switching the compaction strategy and options using JMX
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-It is possible to switch compaction strategies and its options on just a single node using JMX, this is a great way to
-experiment with settings without affecting the whole cluster. The mbean is::
-
-    org.apache.cassandra.db:type=ColumnFamilies,keyspace=<keyspace_name>,columnfamily=<table_name>
-
-and the attribute to change is ``CompactionParameters`` or ``CompactionParametersJson`` if you use jconsole or jmc. The
-syntax for the json version is the same as you would use in an :ref:`ALTER TABLE <alter-table-statement>` statement -
-for example::
-
-    { 'class': 'LeveledCompactionStrategy', 'sstable_size_in_mb': 123, 'fanout_size': 10}
-
-The setting is kept until someone executes an :ref:`ALTER TABLE <alter-table-statement>` that touches the compaction
-settings or restarts the node.
-
-.. _detailed-compaction-logging:
-
-More detailed compaction logging
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Enable with the compaction option ``log_all`` and a more detailed compaction log file will be produced in your log
-directory.
-
-.. _STCS:
-
-Size Tiered Compaction Strategy
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The basic idea of ``SizeTieredCompactionStrategy`` (STCS) is to merge sstables of approximately the same size. All
-sstables are put in different buckets depending on their size. An sstable is added to the bucket if size of the sstable
-is within ``bucket_low`` and ``bucket_high`` of the current average size of the sstables already in the bucket. This
-will create several buckets and the most interesting of those buckets will be compacted. The most interesting one is
-decided by figuring out which bucket's sstables takes the most reads.
-
-Major compaction
-~~~~~~~~~~~~~~~~
-
-When running a major compaction with STCS you will end up with two sstables per data directory (one for repaired data
-and one for unrepaired data). There is also an option (-s) to do a major compaction that splits the output into several
-sstables. The sizes of the sstables are approximately 50%, 25%, 12.5%... of the total size.
-
-.. _stcs-options:
-
-STCS options
-~~~~~~~~~~~~
-
-``min_sstable_size`` (default: 50MB)
-    Sstables smaller than this are put in the same bucket.
-``bucket_low`` (default: 0.5)
-    How much smaller than the average size of a bucket a sstable should be before not being included in the bucket. That
-    is, if ``bucket_low * avg_bucket_size < sstable_size`` (and the ``bucket_high`` condition holds, see below), then
-    the sstable is added to the bucket.
-``bucket_high`` (default: 1.5)
-    How much bigger than the average size of a bucket a sstable should be before not being included in the bucket. That
-    is, if ``sstable_size < bucket_high * avg_bucket_size`` (and the ``bucket_low`` condition holds, see above), then
-    the sstable is added to the bucket.
-
-Defragmentation
-~~~~~~~~~~~~~~~
-
-Defragmentation is done when many sstables are touched during a read.  The result of the read is put in to the memtable
-so that the next read will not have to touch as many sstables. This can cause writes on a read-only-cluster.
-
-.. _LCS:
-
-Leveled Compaction Strategy
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The idea of ``LeveledCompactionStrategy`` (LCS) is that all sstables are put into different levels where we guarantee
-that no overlapping sstables are in the same level. By overlapping we mean that the first/last token of a single sstable
-are never overlapping with other sstables. This means that for a SELECT we will only have to look for the partition key
-in a single sstable per level. Each level is 10x the size of the previous one and each sstable is 160MB by default. L0
-is where sstables are streamed/flushed - no overlap guarantees are given here.
-
-When picking compaction candidates we have to make sure that the compaction does not create overlap in the target level.
-This is done by always including all overlapping sstables in the next level. For example if we select an sstable in L3,
-we need to guarantee that we pick all overlapping sstables in L4 and make sure that no currently ongoing compactions
-will create overlap if we start that compaction. We can start many parallel compactions in a level if we guarantee that
-we wont create overlap. For L0 -> L1 compactions we almost always need to include all L1 sstables since most L0 sstables
-cover the full range. We also can't compact all L0 sstables with all L1 sstables in a single compaction since that can
-use too much memory.
-
-When deciding which level to compact LCS checks the higher levels first (with LCS, a "higher" level is one with a higher
-number, L0 being the lowest one) and if the level is behind a compaction will be started in that level.
-
-Major compaction
-~~~~~~~~~~~~~~~~
-
-It is possible to do a major compaction with LCS - it will currently start by filling out L1 and then once L1 is full,
-it continues with L2 etc. This is sub optimal and will change to create all the sstables in a high level instead,
-CASSANDRA-11817.
-
-Bootstrapping
-~~~~~~~~~~~~~
-
-During bootstrap sstables are streamed from other nodes. The level of the remote sstable is kept to avoid many
-compactions after the bootstrap is done. During bootstrap the new node also takes writes while it is streaming the data
-from a remote node - these writes are flushed to L0 like all other writes and to avoid those sstables blocking the
-remote sstables from going to the correct level, we only do STCS in L0 until the bootstrap is done.
-
-STCS in L0
-~~~~~~~~~~
-
-If LCS gets very many L0 sstables reads are going to hit all (or most) of the L0 sstables since they are likely to be
-overlapping. To more quickly remedy this LCS does STCS compactions in L0 if there are more than 32 sstables there. This
-should improve read performance more quickly compared to letting LCS do its L0 -> L1 compactions. If you keep getting
-too many sstables in L0 it is likely that LCS is not the best fit for your workload and STCS could work out better.
-
-Starved sstables
-~~~~~~~~~~~~~~~~
-
-If a node ends up with a leveling where there are a few very high level sstables that are not getting compacted they
-might make it impossible for lower levels to drop tombstones etc. For example, if there are sstables in L6 but there is
-only enough data to actually get a L4 on the node the left over sstables in L6 will get starved and not compacted.  This
-can happen if a user changes sstable\_size\_in\_mb from 5MB to 160MB for example. To avoid this LCS tries to include
-those starved high level sstables in other compactions if there has been 25 compaction rounds where the highest level
-has not been involved.
-
-.. _lcs-options:
-
-LCS options
-~~~~~~~~~~~
-
-``sstable_size_in_mb`` (default: 160MB)
-    The target compressed (if using compression) sstable size - the sstables can end up being larger if there are very
-    large partitions on the node.
-
-``fanout_size`` (default: 10)
-    The target size of levels increases by this fanout_size multiplier. You can reduce the space amplification by tuning
-    this option.
-
-LCS also support the ``cassandra.disable_stcs_in_l0`` startup option (``-Dcassandra.disable_stcs_in_l0=true``) to avoid
-doing STCS in L0.
-
-.. _TWCS:
-
-Time Window CompactionStrategy
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-``TimeWindowCompactionStrategy`` (TWCS) is designed specifically for workloads where it's beneficial to have data on
-disk grouped by the timestamp of the data, a common goal when the workload is time-series in nature or when all data is
-written with a TTL. In an expiring/TTL workload, the contents of an entire SSTable likely expire at approximately the
-same time, allowing them to be dropped completely, and space reclaimed much more reliably than when using
-``SizeTieredCompactionStrategy`` or ``LeveledCompactionStrategy``. The basic concept is that
-``TimeWindowCompactionStrategy`` will create 1 sstable per file for a given window, where a window is simply calculated
-as the combination of two primary options:
-
-``compaction_window_unit`` (default: DAYS)
-    A Java TimeUnit (MINUTES, HOURS, or DAYS).
-``compaction_window_size`` (default: 1)
-    The number of units that make up a window.
-``unsafe_aggressive_sstable_expiration`` (default: false)
-    Expired sstables will be dropped without checking its data is shadowing other sstables. This is a potentially
-    risky option that can lead to data loss or deleted data re-appearing, going beyond what
-    `unchecked_tombstone_compaction` does for single  sstable compaction. Due to the risk the jvm must also be
-    started with `-Dcassandra.unsafe_aggressive_sstable_expiration=true`.
-
-Taken together, the operator can specify windows of virtually any size, and `TimeWindowCompactionStrategy` will work to
-create a single sstable for writes within that window. For efficiency during writing, the newest window will be
-compacted using `SizeTieredCompactionStrategy`.
-
-Ideally, operators should select a ``compaction_window_unit`` and ``compaction_window_size`` pair that produces
-approximately 20-30 windows - if writing with a 90 day TTL, for example, a 3 Day window would be a reasonable choice
-(``'compaction_window_unit':'DAYS','compaction_window_size':3``).
-
-TimeWindowCompactionStrategy Operational Concerns
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-The primary motivation for TWCS is to separate data on disk by timestamp and to allow fully expired SSTables to drop
-more efficiently. One potential way this optimal behavior can be subverted is if data is written to SSTables out of
-order, with new data and old data in the same SSTable. Out of order data can appear in two ways:
-
-- If the user mixes old data and new data in the traditional write path, the data will be comingled in the memtables
-  and flushed into the same SSTable, where it will remain comingled.
-- If the user's read requests for old data cause read repairs that pull old data into the current memtable, that data
-  will be comingled and flushed into the same SSTable.
-
-While TWCS tries to minimize the impact of comingled data, users should attempt to avoid this behavior.  Specifically,
-users should avoid queries that explicitly set the timestamp via CQL ``USING TIMESTAMP``. Additionally, users should run
-frequent repairs (which streams data in such a way that it does not become comingled).
-
-Changing TimeWindowCompactionStrategy Options
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Operators wishing to enable ``TimeWindowCompactionStrategy`` on existing data should consider running a major compaction
-first, placing all existing data into a single (old) window. Subsequent newer writes will then create typical SSTables
-as expected.
-
-Operators wishing to change ``compaction_window_unit`` or ``compaction_window_size`` can do so, but may trigger
-additional compactions as adjacent windows are joined together. If the window size is decrease d (for example, from 24
-hours to 12 hours), then the existing SSTables will not be modified - TWCS can not split existing SSTables into multiple
-windows.
diff --git a/src/doc/4.0-alpha4/_sources/operating/hardware.rst.txt b/src/doc/4.0-alpha4/_sources/operating/hardware.rst.txt
index ad3aa8d..d90550c 100644
--- a/src/doc/4.0-alpha4/_sources/operating/hardware.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/operating/hardware.rst.txt
@@ -77,8 +77,6 @@
 of these environments. Users should choose similar hardware to what would be needed in physical space. In EC2, popular
 options include:
 
-- m1.xlarge instances, which provide 1.6TB of local ephemeral spinning storage and sufficient RAM to run moderate
-  workloads
 - i2 instances, which provide both a high RAM:CPU ratio and local ephemeral SSDs
 - m4.2xlarge / c4.4xlarge instances, which provide modern CPUs, enhanced networking and work well with EBS GP2 (SSD)
   storage
diff --git a/src/doc/4.0-alpha4/_sources/operating/index.rst.txt b/src/doc/4.0-alpha4/_sources/operating/index.rst.txt
index e2cead2..78c7eb6 100644
--- a/src/doc/4.0-alpha4/_sources/operating/index.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/operating/index.rst.txt
@@ -27,7 +27,7 @@
    repair
    read_repair
    hints
-   compaction
+   compaction/index
    bloom_filters
    compression
    cdc
diff --git a/src/doc/4.0-alpha4/_sources/operating/snitch.rst.txt b/src/doc/4.0-alpha4/_sources/operating/snitch.rst.txt
index 85bd9e8..b716e82 100644
--- a/src/doc/4.0-alpha4/_sources/operating/snitch.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/operating/snitch.rst.txt
@@ -65,9 +65,11 @@
     ``cassandra-topology.properties``.
 
 Ec2Snitch
-    Appropriate for EC2 deployments in a single Region. Loads Region and Availability Zone information from the EC2 API.
-    The Region is treated as the datacenter, and the Availability Zone as the rack. Only private IPs are used, so this
-    will not work across multiple regions.
+    Appropriate for EC2 deployments in a single Region, or in multiple regions with inter-region VPC enabled (available
+    since the end of 2017, see `AWS announcement <https://aws.amazon.com/about-aws/whats-new/2017/11/announcing-support-for-inter-region-vpc-peering/>`_).
+    Loads Region and Availability Zone information from the EC2 API. The Region is treated as the datacenter, and the
+    Availability Zone as the rack. Only private IPs are used, so this will work across multiple regions only if
+    inter-region VPC is enabled.
 
 Ec2MultiRegionSnitch
     Uses public IPs as broadcast_address to allow cross-region connectivity (thus, you should set seed addresses to the
diff --git a/src/doc/4.0-alpha4/_sources/tools/cqlsh.rst.txt b/src/doc/4.0-alpha4/_sources/tools/cqlsh.rst.txt
index 45e2db8..b800b88 100644
--- a/src/doc/4.0-alpha4/_sources/tools/cqlsh.rst.txt
+++ b/src/doc/4.0-alpha4/_sources/tools/cqlsh.rst.txt
@@ -100,6 +100,9 @@
 ``--connect-timeout``
   Specify the connection timeout in seconds (defaults to 2s)
 
+``--python /path/to/python``
+  Specify the full path to Python interpreter to override default on systems with multiple interpreters installed
+
 ``--request-timeout``
   Specify the request timeout in seconds (defaults to 10s)
 
diff --git a/src/doc/4.0-alpha4/cql/ddl.html b/src/doc/4.0-alpha4/cql/ddl.html
index 92d679f..1f40366 100644
--- a/src/doc/4.0-alpha4/cql/ddl.html
+++ b/src/doc/4.0-alpha4/cql/ddl.html
@@ -690,12 +690,12 @@
 When in doubt, keep the default <code class="docutils literal notranslate"><span class="pre">99PERCENTILE</span></code>.</p>
 <p><code class="docutils literal notranslate"><span class="pre">additional_write_policy</span></code> specifies the threshold at which a cheap quorum write will be upgraded to include transient replicas.</p>
 <p>The <code class="docutils literal notranslate"><span class="pre">compaction</span></code> options must at least define the <code class="docutils literal notranslate"><span class="pre">'class'</span></code> sub-option, that defines the compaction strategy class
-to use. The supported class are <code class="docutils literal notranslate"><span class="pre">'SizeTieredCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#stcs"><span class="std std-ref">STCS</span></a>),
-<code class="docutils literal notranslate"><span class="pre">'LeveledCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#lcs"><span class="std std-ref">LCS</span></a>) and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>) (the
+to use. The supported class are <code class="docutils literal notranslate"><span class="pre">'SizeTieredCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction/stcs.html#stcs"><span class="std std-ref">STCS</span></a>),
+<code class="docutils literal notranslate"><span class="pre">'LeveledCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction/lcs.html#lcs"><span class="std std-ref">LCS</span></a>) and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> (<a class="reference internal" href="../operating/compaction/twcs.html#twcs"><span class="std std-ref">TWCS</span></a>) (the
 <code class="docutils literal notranslate"><span class="pre">'DateTieredCompactionStrategy'</span></code> is also supported but is deprecated and <code class="docutils literal notranslate"><span class="pre">'TimeWindowCompactionStrategy'</span></code> should be
 preferred instead). The default is <code class="docutils literal notranslate"><span class="pre">'SizeTieredCompactionStrategy'</span></code>. Custom strategy can be provided by specifying the full class name as a <a class="reference internal" href="definitions.html#constants"><span class="std std-ref">string constant</span></a>.</p>
-<p>All default strategies support a number of <a class="reference internal" href="../operating/compaction.html#compaction-options"><span class="std std-ref">common options</span></a>, as well as options specific to
-the strategy chosen (see the section corresponding to your strategy for details: <a class="reference internal" href="../operating/compaction.html#stcs-options"><span class="std std-ref">STCS</span></a>, <a class="reference internal" href="../operating/compaction.html#lcs-options"><span class="std std-ref">LCS</span></a> and <a class="reference internal" href="../operating/compaction.html#twcs"><span class="std std-ref">TWCS</span></a>).</p>
+<p>All default strategies support a number of <a class="reference internal" href="../operating/compaction/index.html#compaction-options"><span class="std std-ref">common options</span></a>, as well as options specific to
+the strategy chosen (see the section corresponding to your strategy for details: <a class="reference internal" href="../operating/compaction/stcs.html#stcs-options"><span class="std std-ref">STCS</span></a>, <a class="reference internal" href="../operating/compaction/lcs.html#lcs-options"><span class="std std-ref">LCS</span></a> and <a class="reference internal" href="../operating/compaction/twcs.html#twcs"><span class="std std-ref">TWCS</span></a>).</p>
 <p>The <code class="docutils literal notranslate"><span class="pre">compression</span></code> options define if and how the sstables of the table are compressed. Compression is configured on a per-table
 basis as an optional argument to <code class="docutils literal notranslate"><span class="pre">CREATE</span> <span class="pre">TABLE</span></code> or <code class="docutils literal notranslate"><span class="pre">ALTER</span> <span class="pre">TABLE</span></code>. The following sub-options are
 available:</p>
diff --git a/src/doc/4.0-alpha4/development/patches.html b/src/doc/4.0-alpha4/development/patches.html
index e6b39e9..7af9371 100644
--- a/src/doc/4.0-alpha4/development/patches.html
+++ b/src/doc/4.0-alpha4/development/patches.html
@@ -222,7 +222,7 @@
 </ol>
 </div></blockquote>
 <ol class="arabic" start="6">
-<li><p class="first">Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch as below.</p>
+<li><p class="first">Include a CHANGES.txt entry (put it at the top of the list), and format the commit message appropriately in your patch as below. Please note that only user-impacting items <a class="reference external" href="https://lists.apache.org/thread.html/rde1128131a621e43b0a9c88778398c053a234da0f4c654b82dcbbe0e%40%3Cdev.cassandra.apache.org%3E">should</a> be listed in CHANGES.txt. If you fix a test that does not affect users and does not require changes in runtime code, then no CHANGES.txt entry is necessary.</p>
 <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>&lt;One sentence description, usually Jira title and CHANGES.txt summary&gt;
 &lt;Optional lengthier description&gt;
 patch by &lt;Authors&gt;; reviewed by &lt;Reviewers&gt; for CASSANDRA-#####
diff --git a/src/doc/4.0-alpha4/faq/index.html b/src/doc/4.0-alpha4/faq/index.html
index b161046..af82035 100644
--- a/src/doc/4.0-alpha4/faq/index.html
+++ b/src/doc/4.0-alpha4/faq/index.html
@@ -149,7 +149,7 @@
 <p>Data you write to Cassandra gets persisted to SSTables. Since SSTables are immutable, the data can’t actually be removed
 when you perform a delete, instead, a marker (also called a “tombstone”) is written to indicate the value’s new status.
 Never fear though, on the first compaction that occurs between the data and the tombstone, the data will be expunged
-completely and the corresponding disk space recovered. See <a class="reference internal" href="../operating/compaction.html#compaction"><span class="std std-ref">Compaction</span></a> for more detail.</p>
+completely and the corresponding disk space recovered. See <a class="reference internal" href="../operating/compaction/index.html#compaction"><span class="std std-ref">Compaction</span></a> for more detail.</p>
 </div>
 <div class="section" id="why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring">
 <span id="one-entry-ring"></span><h2>Why does nodetool ring only show one entry, even though my nodes logged that they see each other joining the ring?<a class="headerlink" href="#why-does-nodetool-ring-only-show-one-entry-even-though-my-nodes-logged-that-they-see-each-other-joining-the-ring" title="Permalink to this headline">¶</a></h2>
diff --git a/src/doc/4.0-alpha4/getting_started/configuring.html b/src/doc/4.0-alpha4/getting_started/configuring.html
index ea71d2f..a72af56 100644
--- a/src/doc/4.0-alpha4/getting_started/configuring.html
+++ b/src/doc/4.0-alpha4/getting_started/configuring.html
@@ -67,6 +67,7 @@
 </li>
 <li class="toctree-l2"><a class="reference internal" href="querying.html">Inserting and querying</a></li>
 <li class="toctree-l2"><a class="reference internal" href="drivers.html">Client drivers</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html">Production Recommendations</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../new/index.html">New Features in Apache Cassandra 4.0</a></li>
diff --git a/src/doc/4.0-alpha4/getting_started/drivers.html b/src/doc/4.0-alpha4/getting_started/drivers.html
index c3b869f..f06c7cd 100644
--- a/src/doc/4.0-alpha4/getting_started/drivers.html
+++ b/src/doc/4.0-alpha4/getting_started/drivers.html
@@ -12,7 +12,7 @@
 doc-header-links: '
   <link rel="top" title="Apache Cassandra Documentation v4.0-alpha4" href="../index.html"/>
       <link rel="up" title="Getting Started" href="index.html"/>
-      <link rel="next" title="New Features in Apache Cassandra 4.0" href="../new/index.html"/>
+      <link rel="next" title="Production Recommendations" href="production.html"/>
       <link rel="prev" title="Inserting and querying" href="querying.html"/>
 '
 doc-search-path: "../search.html"
@@ -79,6 +79,7 @@
 <li class="toctree-l3"><a class="reference internal" href="#dart">Dart</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="production.html">Production Recommendations</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../new/index.html">New Features in Apache Cassandra 4.0</a></li>
@@ -233,7 +234,7 @@
           
           <div class="doc-prev-next-links" role="navigation" aria-label="footer navigation">
             
-            <a href="../new/index.html" class="btn btn-default pull-right " role="button" title="New Features in Apache Cassandra 4.0" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
+            <a href="production.html" class="btn btn-default pull-right " role="button" title="Production Recommendations" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
             
             
             <a href="querying.html" class="btn btn-default" role="button" title="Inserting and querying" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
diff --git a/src/doc/4.0-alpha4/getting_started/index.html b/src/doc/4.0-alpha4/getting_started/index.html
index 0713920..011d436 100644
--- a/src/doc/4.0-alpha4/getting_started/index.html
+++ b/src/doc/4.0-alpha4/getting_started/index.html
@@ -58,6 +58,7 @@
 <li class="toctree-l2"><a class="reference internal" href="configuring.html">Configuring Cassandra</a></li>
 <li class="toctree-l2"><a class="reference internal" href="querying.html">Inserting and querying</a></li>
 <li class="toctree-l2"><a class="reference internal" href="drivers.html">Client drivers</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html">Production Recommendations</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../new/index.html">New Features in Apache Cassandra 4.0</a></li>
@@ -93,8 +94,11 @@
 <ul>
 <li class="toctree-l1"><a class="reference internal" href="installing.html">Installing Cassandra</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="installing.html#prerequisites">Prerequisites</a></li>
-<li class="toctree-l2"><a class="reference internal" href="installing.html#installation-from-binary-tarball-files">Installation from binary tarball files</a></li>
-<li class="toctree-l2"><a class="reference internal" href="installing.html#installation-from-debian-packages">Installation from Debian packages</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installing.html#choosing-an-installation-method">Choosing an installation method</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installing.html#installing-the-binary-tarball">Installing the binary tarball</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installing.html#installing-the-debian-packages">Installing the Debian packages</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installing.html#installing-the-rpm-packages">Installing the RPM packages</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installing.html#further-installation-info">Further installation info</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="configuring.html">Configuring Cassandra</a><ul>
@@ -128,6 +132,16 @@
 <li class="toctree-l2"><a class="reference internal" href="drivers.html#dart">Dart</a></li>
 </ul>
 </li>
+<li class="toctree-l1"><a class="reference internal" href="production.html">Production Recommendations</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="production.html#tokens">Tokens</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html#read-ahead">Read Ahead</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html#compression">Compression</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html#compaction">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html#encryption">Encryption</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html#ensure-keyspaces-are-created-with-networktopologystrategy">Ensure Keyspaces are Created with NetworkTopologyStrategy</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html#configure-racks-and-snitch">Configure Racks and Snitch</a></li>
+</ul>
+</li>
 </ul>
 </div>
 </div>
diff --git a/src/doc/4.0-alpha4/getting_started/installing.html b/src/doc/4.0-alpha4/getting_started/installing.html
index 82c01a4..ff9b1a9 100644
--- a/src/doc/4.0-alpha4/getting_started/installing.html
+++ b/src/doc/4.0-alpha4/getting_started/installing.html
@@ -59,13 +59,17 @@
 <li class="toctree-l1 current"><a class="reference internal" href="index.html">Getting Started</a><ul class="current">
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Installing Cassandra</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#prerequisites">Prerequisites</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#installation-from-binary-tarball-files">Installation from binary tarball files</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#installation-from-debian-packages">Installation from Debian packages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#choosing-an-installation-method">Choosing an installation method</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#installing-the-binary-tarball">Installing the binary tarball</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#installing-the-debian-packages">Installing the Debian packages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#installing-the-rpm-packages">Installing the RPM packages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#further-installation-info">Further installation info</a></li>
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="configuring.html">Configuring Cassandra</a></li>
 <li class="toctree-l2"><a class="reference internal" href="querying.html">Inserting and querying</a></li>
 <li class="toctree-l2"><a class="reference internal" href="drivers.html">Client drivers</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html">Production Recommendations</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../new/index.html">New Features in Apache Cassandra 4.0</a></li>
@@ -95,87 +99,273 @@
           
   <div class="section" id="installing-cassandra">
 <h1>Installing Cassandra<a class="headerlink" href="#installing-cassandra" title="Permalink to this headline">¶</a></h1>
+<p>These are the instructions for deploying the supported releases of Apache Cassandra on Linux servers.</p>
+<p>Cassandra runs on a wide array of Linux distributions including (but not limited to):</p>
+<ul class="simple">
+<li>Ubuntu, most notably LTS releases 16.04 to 18.04</li>
+<li>CentOS &amp; RedHat Enterprise Linux (RHEL) including 6.6 to 7.7</li>
+<li>Amazon Linux AMIs including 2016.09 through to Linux 2</li>
+<li>Debian versions 8 &amp; 9</li>
+<li>SUSE Enterprise Linux 12</li>
+</ul>
+<p>This is not an exhaustive list of operating system platforms, nor is it prescriptive. However users will be
+well-advised to conduct exhaustive tests of their own particularly for less-popular distributions of Linux.
+Deploying on older versions is not recommended unless you have previous experience with the older distribution
+in a production environment.</p>
 <div class="section" id="prerequisites">
 <h2>Prerequisites<a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>The latest version of Java 8, either the <a class="reference external" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Oracle Java Standard Edition 8</a> or <a class="reference external" href="http://openjdk.java.net/">OpenJDK 8</a>. To
+<li>Install the latest version of Java 8, either the <a class="reference external" href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Oracle Java Standard Edition 8</a> or <a class="reference external" href="http://openjdk.java.net/">OpenJDK 8</a>. To
 verify that you have the correct version of java installed, type <code class="docutils literal notranslate"><span class="pre">java</span> <span class="pre">-version</span></code>.</li>
-<li>For using cqlsh, the latest version of <a class="reference external" href="https://www.python.org/downloads/">Python 2.7</a>. To verify that you have
+<li><strong>NOTE</strong>: <em>Experimental</em> support for Java 11 was added in Cassandra 4.0 (<a class="reference external" href="https://issues.apache.org/jira/browse/CASSANDRA-9608">CASSANDRA-9608</a>).
+Running Cassandra on Java 11 is <em>experimental</em>. Do so at your own risk. For more information, see
+<a class="reference external" href="https://github.com/apache/cassandra/blob/trunk/NEWS.txt">NEWS.txt</a>.</li>
+<li>For using cqlsh, the latest version of <a class="reference external" href="https://www.python.org/downloads/">Python 2.7</a> or Python 3.6+. To verify that you have
 the correct version of Python installed, type <code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">--version</span></code>.</li>
 </ul>
 </div>
-<div class="section" id="installation-from-binary-tarball-files">
-<h2>Installation from binary tarball files<a class="headerlink" href="#installation-from-binary-tarball-files" title="Permalink to this headline">¶</a></h2>
-<ul class="simple">
-<li>Download the latest stable release from the <a class="reference external" href="http://cassandra.apache.org/download/">Apache Cassandra downloads website</a>.</li>
-<li>Untar the file somewhere, for example:</li>
-</ul>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tar -xzvf apache-cassandra-3.6-bin.tar.gz
+<div class="section" id="choosing-an-installation-method">
+<h2>Choosing an installation method<a class="headerlink" href="#choosing-an-installation-method" title="Permalink to this headline">¶</a></h2>
+<p>For most users, installing the binary tarball is the simplest choice. The tarball unpacks all its contents
+into a single location with binaries and configuration files located in their own subdirectories. The most
+obvious attribute of the tarball installation is it does not require <code class="docutils literal notranslate"><span class="pre">root</span></code> permissions and can be
+installed on any Linux distribution.</p>
+<p>Packaged installations require <code class="docutils literal notranslate"><span class="pre">root</span></code> permissions. Install the RPM build on CentOS and RHEL-based
+distributions if you want to install Cassandra using YUM. Install the Debian build on Ubuntu and other
+Debian-based distributions if you want to install Cassandra using APT. Note that both the YUM and APT
+methods required <code class="docutils literal notranslate"><span class="pre">root</span></code> permissions and will install the binaries and configuration files as the
+<code class="docutils literal notranslate"><span class="pre">cassandra</span></code> OS user.</p>
+</div>
+<div class="section" id="installing-the-binary-tarball">
+<h2>Installing the binary tarball<a class="headerlink" href="#installing-the-binary-tarball" title="Permalink to this headline">¶</a></h2>
+<ol class="arabic simple">
+<li>Verify the version of Java installed. For example:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ java -version
+openjdk version &quot;1.8.0_222&quot;
+OpenJDK Runtime Environment (build 1.8.0_222-8u222-b10-1ubuntu1~16.04.1-b10)
+OpenJDK 64-Bit Server VM (build 25.222-b10, mixed mode)
 </pre></div>
 </div>
-<p>The files will be extracted into <code class="docutils literal notranslate"><span class="pre">apache-cassandra-3.6</span></code>, you need to substitute 3.6 with the release number that you
-have downloaded.</p>
-<ul class="simple">
-<li>Optionally add <code class="docutils literal notranslate"><span class="pre">apache-cassandra-3.6\bin</span></code> to your path.</li>
-<li>Start Cassandra in the foreground by invoking <code class="docutils literal notranslate"><span class="pre">bin/cassandra</span> <span class="pre">-f</span></code> from the command line. Press “Control-C” to stop
-Cassandra. Start Cassandra in the background by invoking <code class="docutils literal notranslate"><span class="pre">bin/cassandra</span></code> from the command line. Invoke <code class="docutils literal notranslate"><span class="pre">kill</span> <span class="pre">pid</span></code>
-or <code class="docutils literal notranslate"><span class="pre">pkill</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code> to stop Cassandra, where pid is the Cassandra process id, which you can find for
-example by invoking <code class="docutils literal notranslate"><span class="pre">pgrep</span> <span class="pre">-f</span> <span class="pre">CassandraDaemon</span></code>.</li>
-<li>Verify that Cassandra is running by invoking <code class="docutils literal notranslate"><span class="pre">bin/nodetool</span> <span class="pre">status</span></code> from the command line.</li>
-<li>Configuration files are located in the <code class="docutils literal notranslate"><span class="pre">conf</span></code> sub-directory.</li>
-<li>Since Cassandra 2.1, log and data directories are located in the <code class="docutils literal notranslate"><span class="pre">logs</span></code> and <code class="docutils literal notranslate"><span class="pre">data</span></code> sub-directories respectively.
-Older versions defaulted to <code class="docutils literal notranslate"><span class="pre">/var/log/cassandra</span></code> and <code class="docutils literal notranslate"><span class="pre">/var/lib/cassandra</span></code>. Due to this, it is necessary to either
-start Cassandra with root privileges or change <code class="docutils literal notranslate"><span class="pre">conf/cassandra.yaml</span></code> to use directories owned by the current user,
-as explained below in the section on changing the location of directories.</li>
-</ul>
-</div>
-<div class="section" id="installation-from-debian-packages">
-<h2>Installation from Debian packages<a class="headerlink" href="#installation-from-debian-packages" title="Permalink to this headline">¶</a></h2>
-<ul class="simple">
-<li>Add the Apache repository of Cassandra to <code class="docutils literal notranslate"><span class="pre">/etc/apt/sources.list.d/cassandra.sources.list</span></code>, for example for version
-3.6:</li>
-</ul>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>echo &quot;deb https://downloads.apache.org/cassandra/debian 36x main&quot; | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
+<ol class="arabic simple" start="2">
+<li>Download the binary tarball from one of the mirrors on the <a class="reference external" href="http://cassandra.apache.org/download/">Apache Cassandra Download</a>
+site. For example, to download 4.0:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ curl -OL http://apache.mirror.digitalpacific.com.au/cassandra/4.0.0/apache-cassandra-4.0.0-bin.tar.gz
 </pre></div>
 </div>
-<ul class="simple">
-<li>Add the Apache Cassandra repository keys:</li>
-</ul>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>curl https://downloads.apache.org/cassandra/KEYS | sudo apt-key add -
+<p>NOTE: The mirrors only host the latest versions of each major supported release. To download an earlier
+version of Cassandra, visit the <a class="reference external" href="http://archive.apache.org/dist/cassandra/">Apache Archives</a>.</p>
+<ol class="arabic simple" start="3">
+<li>OPTIONAL: Verify the integrity of the downloaded tarball using one of the methods <a class="reference external" href="https://www.apache.org/dyn/closer.cgi#verify">here</a>.
+For example, to verify the hash of the downloaded file using GPG:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ gpg --print-md SHA256 apache-cassandra-4.0.0-bin.tar.gz
+apache-cassandra-4.0.0-bin.tar.gz: 28757DDE 589F7041 0F9A6A95 C39EE7E6
+                                   CDE63440 E2B06B91 AE6B2006 14FA364D
 </pre></div>
 </div>
-<ul class="simple">
-<li>Update the repositories:</li>
-</ul>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-get update
+<p>Compare the signature with the SHA256 file from the Downloads site:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ curl -L https://downloads.apache.org/cassandra/4.0.0/apache-cassandra-4.0.0-bin.tar.gz.sha256
+28757dde589f70410f9a6a95c39ee7e6cde63440e2b06b91ae6b200614fa364d
 </pre></div>
 </div>
-<ul class="simple">
-<li>If you encounter this error:</li>
-</ul>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>GPG error: http://www.apache.org 36x InRelease: The following signatures couldn&#39;t be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA
+<ol class="arabic simple" start="4">
+<li>Unpack the tarball:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ tar xzvf apache-cassandra-4.0.0-bin.tar.gz
 </pre></div>
 </div>
-<p>Then add the public key A278B781FE4B2BDA as follows:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-key A278B781FE4B2BDA
+<p>The files will be extracted to the <code class="docutils literal notranslate"><span class="pre">apache-cassandra-4.0.0/</span></code> directory. This is the tarball installation
+location.</p>
+<ol class="arabic simple" start="5">
+<li>Located in the tarball installation location are the directories for the scripts, binaries, utilities, configuration, data and log files:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>&lt;tarball_installation&gt;/
+    bin/
+    conf/
+    data/
+    doc/
+    interface/
+    javadoc/
+    lib/
+    logs/
+    pylib/
+    tools/
 </pre></div>
 </div>
-<p>and repeat <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">apt-get</span> <span class="pre">update</span></code>. The actual key may be different, you get it from the error message itself. For a
-full list of Apache contributors public keys, you can refer to <a class="reference external" href="https://downloads.apache.org/cassandra/KEYS">this link</a>.</p>
-<ul class="simple">
-<li>Install Cassandra:</li>
-</ul>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>sudo apt-get install cassandra
+<p>For information on how to configure your installation, see
+<a class="reference external" href="http://cassandra.apache.org/doc/latest/getting_started/configuring.html">Configuring Cassandra</a>.</p>
+<ol class="arabic simple" start="6">
+<li>Start Cassandra:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ cd apache-cassandra-4.0.0/
+$ bin/cassandra
 </pre></div>
 </div>
-<ul class="simple">
-<li>You can start Cassandra with <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">start</span></code> and stop it with <code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">service</span> <span class="pre">cassandra</span> <span class="pre">stop</span></code>.
-However, normally the service will start automatically. For this reason be sure to stop it if you need to make any
-configuration changes.</li>
-<li>Verify that Cassandra is running by invoking <code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">status</span></code> from the command line.</li>
-<li>The default location of configuration files is <code class="docutils literal notranslate"><span class="pre">/etc/cassandra</span></code>.</li>
-<li>The default location of log and data directories is <code class="docutils literal notranslate"><span class="pre">/var/log/cassandra/</span></code> and <code class="docutils literal notranslate"><span class="pre">/var/lib/cassandra</span></code>.</li>
-</ul>
+<p>NOTE: This will run Cassandra as the authenticated Linux user.</p>
+<p>You can monitor the progress of the startup with:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ tail -f logs/system.log
+</pre></div>
+</div>
+<p>Cassandra is ready when you see an entry like this in the <code class="docutils literal notranslate"><span class="pre">system.log</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>INFO  [main] 2019-12-17 03:03:37,526 Server.java:156 - Starting listening for CQL clients on localhost/127.0.0.1:9042 (unencrypted)...
+</pre></div>
+</div>
+<ol class="arabic simple" start="7">
+<li>Check the status of Cassandra:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ bin/nodetool status
+</pre></div>
+</div>
+<p>The status column in the output should report UN which stands for “Up/Normal”.</p>
+<p>Alternatively, connect to the database with:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ bin/cqlsh
+</pre></div>
+</div>
+</div>
+<div class="section" id="installing-the-debian-packages">
+<h2>Installing the Debian packages<a class="headerlink" href="#installing-the-debian-packages" title="Permalink to this headline">¶</a></h2>
+<ol class="arabic simple">
+<li>Verify the version of Java installed. For example:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ java -version
+openjdk version &quot;1.8.0_222&quot;
+OpenJDK Runtime Environment (build 1.8.0_222-8u222-b10-1ubuntu1~16.04.1-b10)
+OpenJDK 64-Bit Server VM (build 25.222-b10, mixed mode)
+</pre></div>
+</div>
+<ol class="arabic simple" start="2">
+<li>Add the Apache repository of Cassandra to the file <code class="docutils literal notranslate"><span class="pre">cassandra.sources.list</span></code>. The latest major version
+is 4.0 and the corresponding distribution name is <code class="docutils literal notranslate"><span class="pre">40x</span></code> (with an “x” as the suffix).
+For older releases use <code class="docutils literal notranslate"><span class="pre">311x</span></code> for C* 3.11 series, <code class="docutils literal notranslate"><span class="pre">30x</span></code> for 3.0, <code class="docutils literal notranslate"><span class="pre">22x</span></code> for 2.2 and <code class="docutils literal notranslate"><span class="pre">21x</span></code> for 2.1.
+For example, to add the repository for version 4.0 (<code class="docutils literal notranslate"><span class="pre">40x</span></code>):</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ echo &quot;deb http://www.apache.org/dist/cassandra/debian 40x main&quot; | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
+deb http://www.apache.org/dist/cassandra/debian 40x main
+</pre></div>
+</div>
+<ol class="arabic simple" start="3">
+<li>Add the Apache Cassandra repository keys to the list of trusted keys on the server:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -
+  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
+                                 Dload  Upload   Total   Spent    Left  Speed
+100  266k  100  266k    0     0   320k      0 --:--:-- --:--:-- --:--:--  320k
+OK
+</pre></div>
+</div>
+<ol class="arabic simple" start="4">
+<li>Update the package index from sources:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ sudo apt-get update
+</pre></div>
+</div>
+<ol class="arabic simple" start="5">
+<li>Install Cassandra with APT:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ sudo apt-get install cassandra
+</pre></div>
+</div>
+<p>NOTE: A new Linux user <code class="docutils literal notranslate"><span class="pre">cassandra</span></code> will get created as part of the installation. The Cassandra service
+will also be run as this user.</p>
+<ol class="arabic simple" start="6">
+<li>The Cassandra service gets started automatically after installation. Monitor the progress of
+the startup with:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ tail -f /var/log/cassandra/system.log
+</pre></div>
+</div>
+<p>Cassandra is ready when you see an entry like this in the <code class="docutils literal notranslate"><span class="pre">system.log</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>INFO  [main] 2019-12-17 03:03:37,526 Server.java:156 - Starting listening for CQL clients on localhost/127.0.0.1:9042 (unencrypted)...
+</pre></div>
+</div>
+<p>NOTE: For information on how to configure your installation, see
+<a class="reference external" href="http://cassandra.apache.org/doc/latest/getting_started/configuring.html">Configuring Cassandra</a>.</p>
+<ol class="arabic simple" start="7">
+<li>Check the status of Cassandra:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ nodetool status
+</pre></div>
+</div>
+<p>The status column in the output should report <code class="docutils literal notranslate"><span class="pre">UN</span></code> which stands for “Up/Normal”.</p>
+<p>Alternatively, connect to the database with:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ cqlsh
+</pre></div>
+</div>
+</div>
+<div class="section" id="installing-the-rpm-packages">
+<h2>Installing the RPM packages<a class="headerlink" href="#installing-the-rpm-packages" title="Permalink to this headline">¶</a></h2>
+<ol class="arabic simple">
+<li>Verify the version of Java installed. For example:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ java -version
+openjdk version &quot;1.8.0_222&quot;
+OpenJDK Runtime Environment (build 1.8.0_232-b09)
+OpenJDK 64-Bit Server VM (build 25.232-b09, mixed mode)
+</pre></div>
+</div>
+<ol class="arabic simple" start="2">
+<li>Add the Apache repository of Cassandra to the file <code class="docutils literal notranslate"><span class="pre">/etc/yum.repos.d/cassandra.repo</span></code> (as the <code class="docutils literal notranslate"><span class="pre">root</span></code>
+user). The latest major version is 4.0 and the corresponding distribution name is <code class="docutils literal notranslate"><span class="pre">40x</span></code> (with an “x” as the suffix).
+For older releases use <code class="docutils literal notranslate"><span class="pre">311x</span></code> for C* 3.11 series, <code class="docutils literal notranslate"><span class="pre">30x</span></code> for 3.0, <code class="docutils literal notranslate"><span class="pre">22x</span></code> for 2.2 and <code class="docutils literal notranslate"><span class="pre">21x</span></code> for 2.1.
+For example, to add the repository for version 4.0 (<code class="docutils literal notranslate"><span class="pre">40x</span></code>):</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[cassandra]
+name=Apache Cassandra
+baseurl=https://downloads.apache.org/cassandra/redhat/40x/
+gpgcheck=1
+repo_gpgcheck=1
+gpgkey=https://downloads.apache.org/cassandra/KEYS
+</pre></div>
+</div>
+<ol class="arabic simple" start="3">
+<li>Update the package index from sources:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ sudo yum update
+</pre></div>
+</div>
+<ol class="arabic simple" start="4">
+<li>Install Cassandra with YUM:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ sudo yum install cassandra
+</pre></div>
+</div>
+<p>NOTE: A new Linux user <code class="docutils literal notranslate"><span class="pre">cassandra</span></code> will get created as part of the installation. The Cassandra service
+will also be run as this user.</p>
+<ol class="arabic simple" start="5">
+<li>Start the Cassandra service:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ sudo service cassandra start
+</pre></div>
+</div>
+<ol class="arabic simple" start="6">
+<li>Monitor the progress of the startup with:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ tail -f /var/log/cassandra/system.log
+</pre></div>
+</div>
+<p>Cassandra is ready when you see an entry like this in the <code class="docutils literal notranslate"><span class="pre">system.log</span></code>:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>INFO  [main] 2019-12-17 03:03:37,526 Server.java:156 - Starting listening for CQL clients on localhost/127.0.0.1:9042 (unencrypted)...
+</pre></div>
+</div>
+<p>NOTE: For information on how to configure your installation, see
+<a class="reference external" href="http://cassandra.apache.org/doc/latest/getting_started/configuring.html">Configuring Cassandra</a>.</p>
+<ol class="arabic simple" start="7">
+<li>Check the status of Cassandra:</li>
+</ol>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ nodetool status
+</pre></div>
+</div>
+<p>The status column in the output should report <code class="docutils literal notranslate"><span class="pre">UN</span></code> which stands for “Up/Normal”.</p>
+<p>Alternatively, connect to the database with:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ cqlsh
+</pre></div>
+</div>
+</div>
+<div class="section" id="further-installation-info">
+<h2>Further installation info<a class="headerlink" href="#further-installation-info" title="Permalink to this headline">¶</a></h2>
+<p>For help with installation issues, see the <a class="reference external" href="http://cassandra.apache.org/doc/latest/troubleshooting/index.html">Troubleshooting</a> section.</p>
 </div>
 </div>
 
diff --git a/src/doc/4.0-alpha4/getting_started/querying.html b/src/doc/4.0-alpha4/getting_started/querying.html
index d7a04c0..4083b7f 100644
--- a/src/doc/4.0-alpha4/getting_started/querying.html
+++ b/src/doc/4.0-alpha4/getting_started/querying.html
@@ -65,6 +65,7 @@
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="drivers.html">Client drivers</a></li>
+<li class="toctree-l2"><a class="reference internal" href="production.html">Production Recommendations</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="../new/index.html">New Features in Apache Cassandra 4.0</a></li>
diff --git a/src/doc/4.0-alpha4/new/index.html b/src/doc/4.0-alpha4/new/index.html
index 2038586..973a641 100644
--- a/src/doc/4.0-alpha4/new/index.html
+++ b/src/doc/4.0-alpha4/new/index.html
@@ -10,7 +10,7 @@
 doc-header-links: '
   <link rel="top" title="Apache Cassandra Documentation v4.0-alpha4" href="../index.html"/>
       <link rel="next" title="Support for Java 11" href="java11.html"/>
-      <link rel="prev" title="Client drivers" href="../getting_started/drivers.html"/>
+      <link rel="prev" title="Production Recommendations" href="../getting_started/production.html"/>
 '
 doc-search-path: "../search.html"
 
@@ -178,7 +178,7 @@
             <a href="java11.html" class="btn btn-default pull-right " role="button" title="Support for Java 11" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
             
             
-            <a href="../getting_started/drivers.html" class="btn btn-default" role="button" title="Client drivers" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
+            <a href="../getting_started/production.html" class="btn btn-default" role="button" title="Production Recommendations" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
             
           </div>
           
diff --git a/src/doc/4.0-alpha4/objects.inv b/src/doc/4.0-alpha4/objects.inv
index 78b8efa..44c041f 100644
--- a/src/doc/4.0-alpha4/objects.inv
+++ b/src/doc/4.0-alpha4/objects.inv
Binary files differ
diff --git a/src/doc/4.0-alpha4/operating/backups.html b/src/doc/4.0-alpha4/operating/backups.html
index 9fb6e4b..53393fc 100644
--- a/src/doc/4.0-alpha4/operating/backups.html
+++ b/src/doc/4.0-alpha4/operating/backups.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/operating/bloom_filters.html b/src/doc/4.0-alpha4/operating/bloom_filters.html
index f2c3509..7a933d7 100644
--- a/src/doc/4.0-alpha4/operating/bloom_filters.html
+++ b/src/doc/4.0-alpha4/operating/bloom_filters.html
@@ -13,7 +13,7 @@
   <link rel="top" title="Apache Cassandra Documentation v4.0-alpha4" href="../index.html"/>
       <link rel="up" title="Operating Cassandra" href="index.html"/>
       <link rel="next" title="Compression" href="compression.html"/>
-      <link rel="prev" title="Compaction" href="compaction.html"/>
+      <link rel="prev" title="Compaction" href="compaction/index.html"/>
 '
 doc-search-path: "../search.html"
 
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Bloom Filters</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#changing">Changing</a></li>
 </ul>
@@ -151,7 +151,7 @@
             <a href="compression.html" class="btn btn-default pull-right " role="button" title="Compression" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
             
             
-            <a href="compaction.html" class="btn btn-default" role="button" title="Compaction" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
+            <a href="compaction/index.html" class="btn btn-default" role="button" title="Compaction" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
             
           </div>
           
diff --git a/src/doc/4.0-alpha4/operating/bulk_loading.html b/src/doc/4.0-alpha4/operating/bulk_loading.html
index b1118a4..f73b281 100644
--- a/src/doc/4.0-alpha4/operating/bulk_loading.html
+++ b/src/doc/4.0-alpha4/operating/bulk_loading.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/operating/cdc.html b/src/doc/4.0-alpha4/operating/cdc.html
index 0dccb94..9626d57 100644
--- a/src/doc/4.0-alpha4/operating/cdc.html
+++ b/src/doc/4.0-alpha4/operating/cdc.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Change Data Capture</a><ul>
diff --git a/src/doc/4.0-alpha4/operating/compaction.html b/src/doc/4.0-alpha4/operating/compaction.html
deleted file mode 100644
index 08760d3..0000000
--- a/src/doc/4.0-alpha4/operating/compaction.html
+++ /dev/null
@@ -1,521 +0,0 @@
----
-layout: docpage
-
-title: "Documentation"
-
-is_homepage: false
-is_sphinx_doc: true
-
-doc-parent: "Operating Cassandra"
-
-doc-title: "Compaction"
-doc-header-links: '
-  <link rel="top" title="Apache Cassandra Documentation v4.0-alpha4" href="../index.html"/>
-      <link rel="up" title="Operating Cassandra" href="index.html"/>
-      <link rel="next" title="Bloom Filters" href="bloom_filters.html"/>
-      <link rel="prev" title="Hints" href="hints.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: ".txt"
-    };
-</script>
-'
-
----
-<div class="container-fluid">
-  <div class="row">
-    <div class="col-md-3">
-      <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="../new/index.html">New Features in Apache Cassandra 4.0</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="../cql/index.html">The Cassandra Query Language (CQL)</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="../configuration/index.html">Configuring Cassandra</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Operating Cassandra</a><ul class="current">
-<li class="toctree-l2"><a class="reference internal" href="snitch.html">Snitch</a></li>
-<li class="toctree-l2"><a class="reference internal" href="topo_changes.html">Adding, replacing, moving and removing nodes</a></li>
-<li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
-<li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
-<li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">Compaction</a><ul>
-<li class="toctree-l3"><a class="reference internal" href="#types-of-compaction">Types of compaction</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#when-is-a-minor-compaction-triggered">When is a minor compaction triggered?</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#merging-sstables">Merging sstables</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#tombstones-and-garbage-collection-gc-grace">Tombstones and Garbage Collection (GC) Grace</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#ttl">TTL</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#fully-expired-sstables">Fully expired sstables</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#repaired-unrepaired-data">Repaired/unrepaired data</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#data-directories">Data directories</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#single-sstable-tombstone-compaction">Single sstable tombstone compaction</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#common-options">Common options</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#compaction-nodetool-commands">Compaction nodetool commands</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#switching-the-compaction-strategy-and-options-using-jmx">Switching the compaction strategy and options using JMX</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#more-detailed-compaction-logging">More detailed compaction logging</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#size-tiered-compaction-strategy">Size Tiered Compaction Strategy</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#leveled-compaction-strategy">Leveled Compaction Strategy</a></li>
-<li class="toctree-l3"><a class="reference internal" href="#time-window-compactionstrategy">Time Window CompactionStrategy</a></li>
-</ul>
-</li>
-<li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
-<li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
-<li class="toctree-l2"><a class="reference internal" href="backups.html">Backups</a></li>
-<li class="toctree-l2"><a class="reference internal" href="bulk_loading.html">Bulk Loading</a></li>
-<li class="toctree-l2"><a class="reference internal" href="metrics.html">Monitoring</a></li>
-<li class="toctree-l2"><a class="reference internal" href="security.html">Security</a></li>
-<li class="toctree-l2"><a class="reference internal" href="hardware.html">Hardware Choices</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="../tools/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">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="../plugins/index.html">Third-Party Plugins</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../bugs.html">Reporting Bugs</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="content-container">
-          
-  <div class="section" id="compaction">
-<span id="id1"></span><h1>Compaction<a class="headerlink" href="#compaction" title="Permalink to this headline">¶</a></h1>
-<div class="section" id="types-of-compaction">
-<h2>Types of compaction<a class="headerlink" href="#types-of-compaction" title="Permalink to this headline">¶</a></h2>
-<p>The concept of compaction is used for different kinds of operations in Cassandra, the common thing about these
-operations is that it takes one or more sstables and output new sstables. The types of compactions are;</p>
-<dl class="docutils">
-<dt>Minor compaction</dt>
-<dd>triggered automatically in Cassandra.</dd>
-<dt>Major compaction</dt>
-<dd>a user executes a compaction over all sstables on the node.</dd>
-<dt>User defined compaction</dt>
-<dd>a user triggers a compaction on a given set of sstables.</dd>
-<dt>Scrub</dt>
-<dd>try to fix any broken sstables. This can actually remove valid data if that data is corrupted, if that happens you
-will need to run a full repair on the node.</dd>
-<dt>Upgradesstables</dt>
-<dd>upgrade sstables to the latest version. Run this after upgrading to a new major version.</dd>
-<dt>Cleanup</dt>
-<dd>remove any ranges this node does not own anymore, typically triggered on neighbouring nodes after a node has been
-bootstrapped since that node will take ownership of some ranges from those nodes.</dd>
-<dt>Secondary index rebuild</dt>
-<dd>rebuild the secondary indexes on the node.</dd>
-<dt>Anticompaction</dt>
-<dd>after repair the ranges that were actually repaired are split out of the sstables that existed when repair started.</dd>
-<dt>Sub range compaction</dt>
-<dd>It is possible to only compact a given sub range - this could be useful if you know a token that has been
-misbehaving - either gathering many updates or many deletes. (<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">compact</span> <span class="pre">-st</span> <span class="pre">x</span> <span class="pre">-et</span> <span class="pre">y</span></code>) will pick
-all sstables containing the range between x and y and issue a compaction for those sstables. For STCS this will
-most likely include all sstables but with LCS it can issue the compaction for a subset of the sstables. With LCS
-the resulting sstable will end up in L0.</dd>
-</dl>
-</div>
-<div class="section" id="when-is-a-minor-compaction-triggered">
-<h2>When is a minor compaction triggered?<a class="headerlink" href="#when-is-a-minor-compaction-triggered" title="Permalink to this headline">¶</a></h2>
-<p>#  When an sstable is added to the node through flushing/streaming etc.
-#  When autocompaction is enabled after being disabled (<code class="docutils literal notranslate"><span class="pre">nodetool</span> <span class="pre">enableautocompaction</span></code>)
-#  When compaction adds new sstables.
-#  A check for new minor compactions every 5 minutes.</p>
-</div>
-<div class="section" id="merging-sstables">
-<h2>Merging sstables<a class="headerlink" href="#merging-sstables" title="Permalink to this headline">¶</a></h2>
-<p>Compaction is about merging sstables, since partitions in sstables are sorted based on the hash of the partition key it
-is possible to efficiently merge separate sstables. Content of each partition is also sorted so each partition can be
-merged efficiently.</p>
-</div>
-<div class="section" id="tombstones-and-garbage-collection-gc-grace">
-<h2>Tombstones and Garbage Collection (GC) Grace<a class="headerlink" href="#tombstones-and-garbage-collection-gc-grace" title="Permalink to this headline">¶</a></h2>
-<div class="section" id="why-tombstones">
-<h3>Why Tombstones<a class="headerlink" href="#why-tombstones" title="Permalink to this headline">¶</a></h3>
-<p>When a delete request is received by Cassandra it does not actually remove the data from the underlying store. Instead
-it writes a special piece of data known as a tombstone. The Tombstone represents the delete and causes all values which
-occurred before the tombstone to not appear in queries to the database. This approach is used instead of removing values
-because of the distributed nature of Cassandra.</p>
-</div>
-<div class="section" id="deletes-without-tombstones">
-<h3>Deletes without tombstones<a class="headerlink" href="#deletes-without-tombstones" title="Permalink to this headline">¶</a></h3>
-<p>Imagine a three node cluster which has the value [A] replicated to every node.:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
-</pre></div>
-</div>
-<p>If one of the nodes fails and and our delete operation only removes existing values we can end up with a cluster that
-looks like:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[], [], [A]
-</pre></div>
-</div>
-<p>Then a repair operation would replace the value of [A] back onto the two
-nodes which are missing the value.:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
-</pre></div>
-</div>
-<p>This would cause our data to be resurrected even though it had been
-deleted.</p>
-</div>
-<div class="section" id="deletes-with-tombstones">
-<h3>Deletes with Tombstones<a class="headerlink" href="#deletes-with-tombstones" title="Permalink to this headline">¶</a></h3>
-<p>Starting again with a three node cluster which has the value [A] replicated to every node.:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A], [A], [A]
-</pre></div>
-</div>
-<p>If instead of removing data we add a tombstone record, our single node failure situation will look like this.:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A]
-</pre></div>
-</div>
-<p>Now when we issue a repair the Tombstone will be copied to the replica, rather than the deleted data being
-resurrected.:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[A, Tombstone[A]], [A, Tombstone[A]], [A, Tombstone[A]]
-</pre></div>
-</div>
-<p>Our repair operation will correctly put the state of the system to what we expect with the record [A] marked as deleted
-on all nodes. This does mean we will end up accruing Tombstones which will permanently accumulate disk space. To avoid
-keeping tombstones forever we have a parameter known as <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> for every table in Cassandra.</p>
-</div>
-<div class="section" id="the-gc-grace-seconds-parameter-and-tombstone-removal">
-<h3>The gc_grace_seconds parameter and Tombstone Removal<a class="headerlink" href="#the-gc-grace-seconds-parameter-and-tombstone-removal" title="Permalink to this headline">¶</a></h3>
-<p>The table level <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> parameter controls how long Cassandra will retain tombstones through compaction
-events before finally removing them. This duration should directly reflect the amount of time a user expects to allow
-before recovering a failed node. After <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> has expired the tombstone may be removed (meaning there will
-no longer be any record that a certain piece of data was deleted), but as a tombstone can live in one sstable and the
-data it covers in another, a compaction must also include both sstable for a tombstone to be removed. More precisely, to
-be able to drop an actual tombstone the following needs to be true;</p>
-<ul class="simple">
-<li>The tombstone must be older than <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code></li>
-<li>If partition X contains the tombstone, the sstable containing the partition plus all sstables containing data older
-than the tombstone containing X must be included in the same compaction. We don’t need to care if the partition is in
-an sstable if we can guarantee that all data in that sstable is newer than the tombstone. If the tombstone is older
-than the data it cannot shadow that data.</li>
-<li>If the option <code class="docutils literal notranslate"><span class="pre">only_purge_repaired_tombstones</span></code> is enabled, tombstones are only removed if the data has also been
-repaired.</li>
-</ul>
-<p>If a node remains down or disconnected for longer than <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> it’s deleted data will be repaired back to
-the other nodes and re-appear in the cluster. This is basically the same as in the “Deletes without Tombstones” section.
-Note that tombstones will not be removed until a compaction event even if <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> has elapsed.</p>
-<p>The default value for <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code> is 864000 which is equivalent to 10 days. This can be set when creating or
-altering a table using <code class="docutils literal notranslate"><span class="pre">WITH</span> <span class="pre">gc_grace_seconds</span></code>.</p>
-</div>
-</div>
-<div class="section" id="ttl">
-<h2>TTL<a class="headerlink" href="#ttl" title="Permalink to this headline">¶</a></h2>
-<p>Data in Cassandra can have an additional property called time to live - this is used to automatically drop data that has
-expired once the time is reached. Once the TTL has expired the data is converted to a tombstone which stays around for
-at least <code class="docutils literal notranslate"><span class="pre">gc_grace_seconds</span></code>. Note that if you mix data with TTL and data without TTL (or just different length of the
-TTL) Cassandra will have a hard time dropping the tombstones created since the partition might span many sstables and
-not all are compacted at once.</p>
-</div>
-<div class="section" id="fully-expired-sstables">
-<h2>Fully expired sstables<a class="headerlink" href="#fully-expired-sstables" title="Permalink to this headline">¶</a></h2>
-<p>If an sstable contains only tombstones and it is guaranteed that that sstable is not shadowing data in any other sstable
-compaction can drop that sstable. If you see sstables with only tombstones (note that TTL:ed data is considered
-tombstones once the time to live has expired) but it is not being dropped by compaction, it is likely that other
-sstables contain older data. There is a tool called <code class="docutils literal notranslate"><span class="pre">sstableexpiredblockers</span></code> that will list which sstables are
-droppable and which are blocking them from being dropped. This is especially useful for time series compaction with
-<code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> (and the deprecated <code class="docutils literal notranslate"><span class="pre">DateTieredCompactionStrategy</span></code>). With <code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code>
-it is possible to remove the guarantee (not check for shadowing data) by enabling <code class="docutils literal notranslate"><span class="pre">unsafe_aggressive_sstable_expiration</span></code>.</p>
-</div>
-<div class="section" id="repaired-unrepaired-data">
-<h2>Repaired/unrepaired data<a class="headerlink" href="#repaired-unrepaired-data" title="Permalink to this headline">¶</a></h2>
-<p>With incremental repairs Cassandra must keep track of what data is repaired and what data is unrepaired. With
-anticompaction repaired data is split out into repaired and unrepaired sstables. To avoid mixing up the data again
-separate compaction strategy instances are run on the two sets of data, each instance only knowing about either the
-repaired or the unrepaired sstables. This means that if you only run incremental repair once and then never again, you
-might have very old data in the repaired sstables that block compaction from dropping tombstones in the unrepaired
-(probably newer) sstables.</p>
-</div>
-<div class="section" id="data-directories">
-<h2>Data directories<a class="headerlink" href="#data-directories" title="Permalink to this headline">¶</a></h2>
-<p>Since tombstones and data can live in different sstables it is important to realize that losing an sstable might lead to
-data becoming live again - the most common way of losing sstables is to have a hard drive break down. To avoid making
-data live tombstones and actual data are always in the same data directory. This way, if a disk is lost, all versions of
-a partition are lost and no data can get undeleted. To achieve this a compaction strategy instance per data directory is
-run in addition to the compaction strategy instances containing repaired/unrepaired data, this means that if you have 4
-data directories there will be 8 compaction strategy instances running. This has a few more benefits than just avoiding
-data getting undeleted:</p>
-<ul class="simple">
-<li>It is possible to run more compactions in parallel - leveled compaction will have several totally separate levelings
-and each one can run compactions independently from the others.</li>
-<li>Users can backup and restore a single data directory.</li>
-<li>Note though that currently all data directories are considered equal, so if you have a tiny disk and a big disk
-backing two data directories, the big one will be limited the by the small one. One work around to this is to create
-more data directories backed by the big disk.</li>
-</ul>
-</div>
-<div class="section" id="single-sstable-tombstone-compaction">
-<h2>Single sstable tombstone compaction<a class="headerlink" href="#single-sstable-tombstone-compaction" title="Permalink to this headline">¶</a></h2>
-<p>When an sstable is written a histogram with the tombstone expiry times is created and this is used to try to find
-sstables with very many tombstones and run single sstable compaction on that sstable in hope of being able to drop
-tombstones in that sstable. Before starting this it is also checked how likely it is that any tombstones will actually
-will be able to be dropped how much this sstable overlaps with other sstables. To avoid most of these checks the
-compaction option <code class="docutils literal notranslate"><span class="pre">unchecked_tombstone_compaction</span></code> can be enabled.</p>
-</div>
-<div class="section" id="common-options">
-<span id="compaction-options"></span><h2>Common options<a class="headerlink" href="#common-options" title="Permalink to this headline">¶</a></h2>
-<p>There is a number of common options for all the compaction strategies;</p>
-<dl class="docutils">
-<dt><code class="docutils literal notranslate"><span class="pre">enabled</span></code> (default: true)</dt>
-<dd>Whether minor compactions should run. Note that you can have ‘enabled’: true as a compaction option and then do
-‘nodetool enableautocompaction’ to start running compactions.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">tombstone_threshold</span></code> (default: 0.2)</dt>
-<dd>How much of the sstable should be tombstones for us to consider doing a single sstable compaction of that sstable.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">tombstone_compaction_interval</span></code> (default: 86400s (1 day))</dt>
-<dd>Since it might not be possible to drop any tombstones when doing a single sstable compaction we need to make sure
-that one sstable is not constantly getting recompacted - this option states how often we should try for a given
-sstable.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">log_all</span></code> (default: false)</dt>
-<dd>New detailed compaction logging, see <a class="reference internal" href="#detailed-compaction-logging"><span class="std std-ref">below</span></a>.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">unchecked_tombstone_compaction</span></code> (default: false)</dt>
-<dd>The single sstable compaction has quite strict checks for whether it should be started, this option disables those
-checks and for some usecases this might be needed.  Note that this does not change anything for the actual
-compaction, tombstones are only dropped if it is safe to do so - it might just rewrite an sstable without being able
-to drop any tombstones.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">only_purge_repaired_tombstone</span></code> (default: false)</dt>
-<dd>Option to enable the extra safety of making sure that tombstones are only dropped if the data has been repaired.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">min_threshold</span></code> (default: 4)</dt>
-<dd>Lower limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">max_threshold</span></code> (default: 32)</dt>
-<dd>Upper limit of number of sstables before a compaction is triggered. Not used for <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>.</dd>
-</dl>
-<p>Further, see the section on each strategy for specific additional options.</p>
-</div>
-<div class="section" id="compaction-nodetool-commands">
-<h2>Compaction nodetool commands<a class="headerlink" href="#compaction-nodetool-commands" title="Permalink to this headline">¶</a></h2>
-<p>The <span class="xref std std-ref">nodetool</span> utility provides a number of commands related to compaction:</p>
-<dl class="docutils">
-<dt><code class="docutils literal notranslate"><span class="pre">enableautocompaction</span></code></dt>
-<dd>Enable compaction.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">disableautocompaction</span></code></dt>
-<dd>Disable compaction.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">setcompactionthroughput</span></code></dt>
-<dd>How fast compaction should run at most - defaults to 16MB/s, but note that it is likely not possible to reach this
-throughput.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">compactionstats</span></code></dt>
-<dd>Statistics about current and pending compactions.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">compactionhistory</span></code></dt>
-<dd>List details about the last compactions.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">setcompactionthreshold</span></code></dt>
-<dd>Set the min/max sstable count for when to trigger compaction, defaults to 4/32.</dd>
-</dl>
-</div>
-<div class="section" id="switching-the-compaction-strategy-and-options-using-jmx">
-<h2>Switching the compaction strategy and options using JMX<a class="headerlink" href="#switching-the-compaction-strategy-and-options-using-jmx" title="Permalink to this headline">¶</a></h2>
-<p>It is possible to switch compaction strategies and its options on just a single node using JMX, this is a great way to
-experiment with settings without affecting the whole cluster. The mbean is:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>org.apache.cassandra.db:type=ColumnFamilies,keyspace=&lt;keyspace_name&gt;,columnfamily=&lt;table_name&gt;
-</pre></div>
-</div>
-<p>and the attribute to change is <code class="docutils literal notranslate"><span class="pre">CompactionParameters</span></code> or <code class="docutils literal notranslate"><span class="pre">CompactionParametersJson</span></code> if you use jconsole or jmc. The
-syntax for the json version is the same as you would use in an <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">ALTER TABLE</span></a> statement -
-for example:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{ &#39;class&#39;: &#39;LeveledCompactionStrategy&#39;, &#39;sstable_size_in_mb&#39;: 123, &#39;fanout_size&#39;: 10}
-</pre></div>
-</div>
-<p>The setting is kept until someone executes an <a class="reference internal" href="../cql/ddl.html#alter-table-statement"><span class="std std-ref">ALTER TABLE</span></a> that touches the compaction
-settings or restarts the node.</p>
-</div>
-<div class="section" id="more-detailed-compaction-logging">
-<span id="detailed-compaction-logging"></span><h2>More detailed compaction logging<a class="headerlink" href="#more-detailed-compaction-logging" title="Permalink to this headline">¶</a></h2>
-<p>Enable with the compaction option <code class="docutils literal notranslate"><span class="pre">log_all</span></code> and a more detailed compaction log file will be produced in your log
-directory.</p>
-</div>
-<div class="section" id="size-tiered-compaction-strategy">
-<span id="stcs"></span><h2>Size Tiered Compaction Strategy<a class="headerlink" href="#size-tiered-compaction-strategy" title="Permalink to this headline">¶</a></h2>
-<p>The basic idea of <code class="docutils literal notranslate"><span class="pre">SizeTieredCompactionStrategy</span></code> (STCS) is to merge sstables of approximately the same size. All
-sstables are put in different buckets depending on their size. An sstable is added to the bucket if size of the sstable
-is within <code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> and <code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> of the current average size of the sstables already in the bucket. This
-will create several buckets and the most interesting of those buckets will be compacted. The most interesting one is
-decided by figuring out which bucket’s sstables takes the most reads.</p>
-<div class="section" id="major-compaction">
-<h3>Major compaction<a class="headerlink" href="#major-compaction" title="Permalink to this headline">¶</a></h3>
-<p>When running a major compaction with STCS you will end up with two sstables per data directory (one for repaired data
-and one for unrepaired data). There is also an option (-s) to do a major compaction that splits the output into several
-sstables. The sizes of the sstables are approximately 50%, 25%, 12.5%… of the total size.</p>
-</div>
-<div class="section" id="stcs-options">
-<span id="id2"></span><h3>STCS options<a class="headerlink" href="#stcs-options" title="Permalink to this headline">¶</a></h3>
-<dl class="docutils">
-<dt><code class="docutils literal notranslate"><span class="pre">min_sstable_size</span></code> (default: 50MB)</dt>
-<dd>Sstables smaller than this are put in the same bucket.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> (default: 0.5)</dt>
-<dd>How much smaller than the average size of a bucket a sstable should be before not being included in the bucket. That
-is, if <code class="docutils literal notranslate"><span class="pre">bucket_low</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span> <span class="pre">&lt;</span> <span class="pre">sstable_size</span></code> (and the <code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> condition holds, see below), then
-the sstable is added to the bucket.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">bucket_high</span></code> (default: 1.5)</dt>
-<dd>How much bigger than the average size of a bucket a sstable should be before not being included in the bucket. That
-is, if <code class="docutils literal notranslate"><span class="pre">sstable_size</span> <span class="pre">&lt;</span> <span class="pre">bucket_high</span> <span class="pre">*</span> <span class="pre">avg_bucket_size</span></code> (and the <code class="docutils literal notranslate"><span class="pre">bucket_low</span></code> condition holds, see above), then
-the sstable is added to the bucket.</dd>
-</dl>
-</div>
-<div class="section" id="defragmentation">
-<h3>Defragmentation<a class="headerlink" href="#defragmentation" title="Permalink to this headline">¶</a></h3>
-<p>Defragmentation is done when many sstables are touched during a read.  The result of the read is put in to the memtable
-so that the next read will not have to touch as many sstables. This can cause writes on a read-only-cluster.</p>
-</div>
-</div>
-<div class="section" id="leveled-compaction-strategy">
-<span id="lcs"></span><h2>Leveled Compaction Strategy<a class="headerlink" href="#leveled-compaction-strategy" title="Permalink to this headline">¶</a></h2>
-<p>The idea of <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code> (LCS) is that all sstables are put into different levels where we guarantee
-that no overlapping sstables are in the same level. By overlapping we mean that the first/last token of a single sstable
-are never overlapping with other sstables. This means that for a SELECT we will only have to look for the partition key
-in a single sstable per level. Each level is 10x the size of the previous one and each sstable is 160MB by default. L0
-is where sstables are streamed/flushed - no overlap guarantees are given here.</p>
-<p>When picking compaction candidates we have to make sure that the compaction does not create overlap in the target level.
-This is done by always including all overlapping sstables in the next level. For example if we select an sstable in L3,
-we need to guarantee that we pick all overlapping sstables in L4 and make sure that no currently ongoing compactions
-will create overlap if we start that compaction. We can start many parallel compactions in a level if we guarantee that
-we wont create overlap. For L0 -&gt; L1 compactions we almost always need to include all L1 sstables since most L0 sstables
-cover the full range. We also can’t compact all L0 sstables with all L1 sstables in a single compaction since that can
-use too much memory.</p>
-<p>When deciding which level to compact LCS checks the higher levels first (with LCS, a “higher” level is one with a higher
-number, L0 being the lowest one) and if the level is behind a compaction will be started in that level.</p>
-<div class="section" id="id3">
-<h3>Major compaction<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
-<p>It is possible to do a major compaction with LCS - it will currently start by filling out L1 and then once L1 is full,
-it continues with L2 etc. This is sub optimal and will change to create all the sstables in a high level instead,
-CASSANDRA-11817.</p>
-</div>
-<div class="section" id="bootstrapping">
-<h3>Bootstrapping<a class="headerlink" href="#bootstrapping" title="Permalink to this headline">¶</a></h3>
-<p>During bootstrap sstables are streamed from other nodes. The level of the remote sstable is kept to avoid many
-compactions after the bootstrap is done. During bootstrap the new node also takes writes while it is streaming the data
-from a remote node - these writes are flushed to L0 like all other writes and to avoid those sstables blocking the
-remote sstables from going to the correct level, we only do STCS in L0 until the bootstrap is done.</p>
-</div>
-<div class="section" id="stcs-in-l0">
-<h3>STCS in L0<a class="headerlink" href="#stcs-in-l0" title="Permalink to this headline">¶</a></h3>
-<p>If LCS gets very many L0 sstables reads are going to hit all (or most) of the L0 sstables since they are likely to be
-overlapping. To more quickly remedy this LCS does STCS compactions in L0 if there are more than 32 sstables there. This
-should improve read performance more quickly compared to letting LCS do its L0 -&gt; L1 compactions. If you keep getting
-too many sstables in L0 it is likely that LCS is not the best fit for your workload and STCS could work out better.</p>
-</div>
-<div class="section" id="starved-sstables">
-<h3>Starved sstables<a class="headerlink" href="#starved-sstables" title="Permalink to this headline">¶</a></h3>
-<p>If a node ends up with a leveling where there are a few very high level sstables that are not getting compacted they
-might make it impossible for lower levels to drop tombstones etc. For example, if there are sstables in L6 but there is
-only enough data to actually get a L4 on the node the left over sstables in L6 will get starved and not compacted.  This
-can happen if a user changes sstable_size_in_mb from 5MB to 160MB for example. To avoid this LCS tries to include
-those starved high level sstables in other compactions if there has been 25 compaction rounds where the highest level
-has not been involved.</p>
-</div>
-<div class="section" id="lcs-options">
-<span id="id4"></span><h3>LCS options<a class="headerlink" href="#lcs-options" title="Permalink to this headline">¶</a></h3>
-<dl class="docutils">
-<dt><code class="docutils literal notranslate"><span class="pre">sstable_size_in_mb</span></code> (default: 160MB)</dt>
-<dd>The target compressed (if using compression) sstable size - the sstables can end up being larger if there are very
-large partitions on the node.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">fanout_size</span></code> (default: 10)</dt>
-<dd>The target size of levels increases by this fanout_size multiplier. You can reduce the space amplification by tuning
-this option.</dd>
-</dl>
-<p>LCS also support the <code class="docutils literal notranslate"><span class="pre">cassandra.disable_stcs_in_l0</span></code> startup option (<code class="docutils literal notranslate"><span class="pre">-Dcassandra.disable_stcs_in_l0=true</span></code>) to avoid
-doing STCS in L0.</p>
-</div>
-</div>
-<div class="section" id="time-window-compactionstrategy">
-<span id="twcs"></span><h2>Time Window CompactionStrategy<a class="headerlink" href="#time-window-compactionstrategy" title="Permalink to this headline">¶</a></h2>
-<p><code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> (TWCS) is designed specifically for workloads where it’s beneficial to have data on
-disk grouped by the timestamp of the data, a common goal when the workload is time-series in nature or when all data is
-written with a TTL. In an expiring/TTL workload, the contents of an entire SSTable likely expire at approximately the
-same time, allowing them to be dropped completely, and space reclaimed much more reliably than when using
-<code class="docutils literal notranslate"><span class="pre">SizeTieredCompactionStrategy</span></code> or <code class="docutils literal notranslate"><span class="pre">LeveledCompactionStrategy</span></code>. The basic concept is that
-<code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> will create 1 sstable per file for a given window, where a window is simply calculated
-as the combination of two primary options:</p>
-<dl class="docutils">
-<dt><code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> (default: DAYS)</dt>
-<dd>A Java TimeUnit (MINUTES, HOURS, or DAYS).</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> (default: 1)</dt>
-<dd>The number of units that make up a window.</dd>
-<dt><code class="docutils literal notranslate"><span class="pre">unsafe_aggressive_sstable_expiration</span></code> (default: false)</dt>
-<dd>Expired sstables will be dropped without checking its data is shadowing other sstables. This is a potentially
-risky option that can lead to data loss or deleted data re-appearing, going beyond what
-<cite>unchecked_tombstone_compaction</cite> does for single  sstable compaction. Due to the risk the jvm must also be
-started with <cite>-Dcassandra.unsafe_aggressive_sstable_expiration=true</cite>.</dd>
-</dl>
-<p>Taken together, the operator can specify windows of virtually any size, and <cite>TimeWindowCompactionStrategy</cite> will work to
-create a single sstable for writes within that window. For efficiency during writing, the newest window will be
-compacted using <cite>SizeTieredCompactionStrategy</cite>.</p>
-<p>Ideally, operators should select a <code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> and <code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> pair that produces
-approximately 20-30 windows - if writing with a 90 day TTL, for example, a 3 Day window would be a reasonable choice
-(<code class="docutils literal notranslate"><span class="pre">'compaction_window_unit':'DAYS','compaction_window_size':3</span></code>).</p>
-<div class="section" id="timewindowcompactionstrategy-operational-concerns">
-<h3>TimeWindowCompactionStrategy Operational Concerns<a class="headerlink" href="#timewindowcompactionstrategy-operational-concerns" title="Permalink to this headline">¶</a></h3>
-<p>The primary motivation for TWCS is to separate data on disk by timestamp and to allow fully expired SSTables to drop
-more efficiently. One potential way this optimal behavior can be subverted is if data is written to SSTables out of
-order, with new data and old data in the same SSTable. Out of order data can appear in two ways:</p>
-<ul class="simple">
-<li>If the user mixes old data and new data in the traditional write path, the data will be comingled in the memtables
-and flushed into the same SSTable, where it will remain comingled.</li>
-<li>If the user’s read requests for old data cause read repairs that pull old data into the current memtable, that data
-will be comingled and flushed into the same SSTable.</li>
-</ul>
-<p>While TWCS tries to minimize the impact of comingled data, users should attempt to avoid this behavior.  Specifically,
-users should avoid queries that explicitly set the timestamp via CQL <code class="docutils literal notranslate"><span class="pre">USING</span> <span class="pre">TIMESTAMP</span></code>. Additionally, users should run
-frequent repairs (which streams data in such a way that it does not become comingled).</p>
-</div>
-<div class="section" id="changing-timewindowcompactionstrategy-options">
-<h3>Changing TimeWindowCompactionStrategy Options<a class="headerlink" href="#changing-timewindowcompactionstrategy-options" title="Permalink to this headline">¶</a></h3>
-<p>Operators wishing to enable <code class="docutils literal notranslate"><span class="pre">TimeWindowCompactionStrategy</span></code> on existing data should consider running a major compaction
-first, placing all existing data into a single (old) window. Subsequent newer writes will then create typical SSTables
-as expected.</p>
-<p>Operators wishing to change <code class="docutils literal notranslate"><span class="pre">compaction_window_unit</span></code> or <code class="docutils literal notranslate"><span class="pre">compaction_window_size</span></code> can do so, but may trigger
-additional compactions as adjacent windows are joined together. If the window size is decrease d (for example, from 24
-hours to 12 hours), then the existing SSTables will not be modified - TWCS can not split existing SSTables into multiple
-windows.</p>
-</div>
-</div>
-</div>
-
-
-
-          
-          <div class="doc-prev-next-links" role="navigation" aria-label="footer navigation">
-            
-            <a href="bloom_filters.html" class="btn btn-default pull-right " role="button" title="Bloom Filters" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
-            
-            
-            <a href="hints.html" class="btn btn-default" role="button" title="Hints" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
-            
-          </div>
-          
-        </div>
-      </div>
-    </div>
-  </div>
-</div>
\ No newline at end of file
diff --git a/src/doc/4.0-alpha4/operating/compression.html b/src/doc/4.0-alpha4/operating/compression.html
index 382cc79..b23af81 100644
--- a/src/doc/4.0-alpha4/operating/compression.html
+++ b/src/doc/4.0-alpha4/operating/compression.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Compression</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#configuring-compression">Configuring Compression</a></li>
diff --git a/src/doc/4.0-alpha4/operating/hardware.html b/src/doc/4.0-alpha4/operating/hardware.html
index 1f25f24..494f840 100644
--- a/src/doc/4.0-alpha4/operating/hardware.html
+++ b/src/doc/4.0-alpha4/operating/hardware.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
@@ -161,8 +161,6 @@
 of these environments. Users should choose similar hardware to what would be needed in physical space. In EC2, popular
 options include:</p>
 <ul class="simple">
-<li>m1.xlarge instances, which provide 1.6TB of local ephemeral spinning storage and sufficient RAM to run moderate
-workloads</li>
 <li>i2 instances, which provide both a high RAM:CPU ratio and local ephemeral SSDs</li>
 <li>m4.2xlarge / c4.4xlarge instances, which provide modern CPUs, enhanced networking and work well with EBS GP2 (SSD)
 storage</li>
diff --git a/src/doc/4.0-alpha4/operating/hints.html b/src/doc/4.0-alpha4/operating/hints.html
index 6544541..652f443 100644
--- a/src/doc/4.0-alpha4/operating/hints.html
+++ b/src/doc/4.0-alpha4/operating/hints.html
@@ -12,7 +12,7 @@
 doc-header-links: '
   <link rel="top" title="Apache Cassandra Documentation v4.0-alpha4" href="../index.html"/>
       <link rel="up" title="Operating Cassandra" href="index.html"/>
-      <link rel="next" title="Compaction" href="compaction.html"/>
+      <link rel="next" title="Compaction" href="compaction/index.html"/>
       <link rel="prev" title="Read repair" href="read_repair.html"/>
 '
 doc-search-path: "../search.html"
@@ -74,7 +74,7 @@
 <li class="toctree-l3"><a class="reference internal" href="#monitoring-hint-delivery">Monitoring Hint Delivery</a></li>
 </ul>
 </li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
@@ -388,7 +388,7 @@
           
           <div class="doc-prev-next-links" role="navigation" aria-label="footer navigation">
             
-            <a href="compaction.html" class="btn btn-default pull-right " role="button" title="Compaction" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
+            <a href="compaction/index.html" class="btn btn-default pull-right " role="button" title="Compaction" accesskey="n">Next <span class="glyphicon glyphicon-circle-arrow-right" aria-hidden="true"></span></a>
             
             
             <a href="read_repair.html" class="btn btn-default" role="button" title="Read repair" accesskey="p"><span class="glyphicon glyphicon-circle-arrow-left" aria-hidden="true"></span> Previous</a>
diff --git a/src/doc/4.0-alpha4/operating/index.html b/src/doc/4.0-alpha4/operating/index.html
index 1d38d72..61c95f3 100644
--- a/src/doc/4.0-alpha4/operating/index.html
+++ b/src/doc/4.0-alpha4/operating/index.html
@@ -65,7 +65,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
@@ -137,23 +137,21 @@
 <li class="toctree-l2"><a class="reference internal" href="hints.html#monitoring-hint-delivery">Monitoring Hint Delivery</a></li>
 </ul>
 </li>
-<li class="toctree-l1"><a class="reference internal" href="compaction.html">Compaction</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#types-of-compaction">Types of compaction</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#when-is-a-minor-compaction-triggered">When is a minor compaction triggered?</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#merging-sstables">Merging sstables</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#tombstones-and-garbage-collection-gc-grace">Tombstones and Garbage Collection (GC) Grace</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#ttl">TTL</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#fully-expired-sstables">Fully expired sstables</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#repaired-unrepaired-data">Repaired/unrepaired data</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#data-directories">Data directories</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#single-sstable-tombstone-compaction">Single sstable tombstone compaction</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#common-options">Common options</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#compaction-nodetool-commands">Compaction nodetool commands</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#switching-the-compaction-strategy-and-options-using-jmx">Switching the compaction strategy and options using JMX</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#more-detailed-compaction-logging">More detailed compaction logging</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#size-tiered-compaction-strategy">Size Tiered Compaction Strategy</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#leveled-compaction-strategy">Leveled Compaction Strategy</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html#time-window-compactionstrategy">Time Window CompactionStrategy</a></li>
+<li class="toctree-l1"><a class="reference internal" href="compaction/index.html">Compaction</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#strategies">Strategies</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#types-of-compaction">Types of compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#when-is-a-minor-compaction-triggered">When is a minor compaction triggered?</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#merging-sstables">Merging sstables</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#tombstones-and-garbage-collection-gc-grace">Tombstones and Garbage Collection (GC) Grace</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#ttl">TTL</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#fully-expired-sstables">Fully expired sstables</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#repaired-unrepaired-data">Repaired/unrepaired data</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#data-directories">Data directories</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#single-sstable-tombstone-compaction">Single sstable tombstone compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#common-options">Common options</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#compaction-nodetool-commands">Compaction nodetool commands</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#switching-the-compaction-strategy-and-options-using-jmx">Switching the compaction strategy and options using JMX</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html#more-detailed-compaction-logging">More detailed compaction logging</a></li>
 </ul>
 </li>
 <li class="toctree-l1"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a><ul>
diff --git a/src/doc/4.0-alpha4/operating/metrics.html b/src/doc/4.0-alpha4/operating/metrics.html
index c455574..0f119fb 100644
--- a/src/doc/4.0-alpha4/operating/metrics.html
+++ b/src/doc/4.0-alpha4/operating/metrics.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/operating/read_repair.html b/src/doc/4.0-alpha4/operating/read_repair.html
index 9b6da94..6ba6a88 100644
--- a/src/doc/4.0-alpha4/operating/read_repair.html
+++ b/src/doc/4.0-alpha4/operating/read_repair.html
@@ -77,7 +77,7 @@
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/operating/repair.html b/src/doc/4.0-alpha4/operating/repair.html
index 1d4f2fd..a40c7ed 100644
--- a/src/doc/4.0-alpha4/operating/repair.html
+++ b/src/doc/4.0-alpha4/operating/repair.html
@@ -74,7 +74,7 @@
 </li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/operating/security.html b/src/doc/4.0-alpha4/operating/security.html
index 53c7ff3..526289e 100644
--- a/src/doc/4.0-alpha4/operating/security.html
+++ b/src/doc/4.0-alpha4/operating/security.html
@@ -68,7 +68,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/operating/snitch.html b/src/doc/4.0-alpha4/operating/snitch.html
index 350d8bf..1cd3b28 100644
--- a/src/doc/4.0-alpha4/operating/snitch.html
+++ b/src/doc/4.0-alpha4/operating/snitch.html
@@ -72,7 +72,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
@@ -144,9 +144,11 @@
 <dd>Proximity is determined by rack and data center, which are explicitly configured in
 <code class="docutils literal notranslate"><span class="pre">cassandra-topology.properties</span></code>.</dd>
 <dt>Ec2Snitch</dt>
-<dd>Appropriate for EC2 deployments in a single Region. Loads Region and Availability Zone information from the EC2 API.
-The Region is treated as the datacenter, and the Availability Zone as the rack. Only private IPs are used, so this
-will not work across multiple regions.</dd>
+<dd>Appropriate for EC2 deployments in a single Region, or in multiple regions with inter-region VPC enabled (available
+since the end of 2017, see <a class="reference external" href="https://aws.amazon.com/about-aws/whats-new/2017/11/announcing-support-for-inter-region-vpc-peering/">AWS announcement</a>).
+Loads Region and Availability Zone information from the EC2 API. The Region is treated as the datacenter, and the
+Availability Zone as the rack. Only private IPs are used, so this will work across multiple regions only if
+inter-region VPC is enabled.</dd>
 <dt>Ec2MultiRegionSnitch</dt>
 <dd>Uses public IPs as broadcast_address to allow cross-region connectivity (thus, you should set seed addresses to the
 public IP as well). You will need to open the <code class="docutils literal notranslate"><span class="pre">storage_port</span></code> or <code class="docutils literal notranslate"><span class="pre">ssl_storage_port</span></code> on the public IP firewall
diff --git a/src/doc/4.0-alpha4/operating/topo_changes.html b/src/doc/4.0-alpha4/operating/topo_changes.html
index 1bff6fb..67aadb0 100644
--- a/src/doc/4.0-alpha4/operating/topo_changes.html
+++ b/src/doc/4.0-alpha4/operating/topo_changes.html
@@ -76,7 +76,7 @@
 <li class="toctree-l2"><a class="reference internal" href="repair.html">Repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="read_repair.html">Read repair</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hints.html">Hints</a></li>
-<li class="toctree-l2"><a class="reference internal" href="compaction.html">Compaction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="compaction/index.html">Compaction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="bloom_filters.html">Bloom Filters</a></li>
 <li class="toctree-l2"><a class="reference internal" href="compression.html">Compression</a></li>
 <li class="toctree-l2"><a class="reference internal" href="cdc.html">Change Data Capture</a></li>
diff --git a/src/doc/4.0-alpha4/searchindex.js b/src/doc/4.0-alpha4/searchindex.js
index e814ad2..c52c4d2 100644
--- a/src/doc/4.0-alpha4/searchindex.js
+++ b/src/doc/4.0-alpha4/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["architecture/dynamo","architecture/guarantees","architecture/index","architecture/overview","architecture/storage_engine","bugs","configuration/cassandra_config_file","configuration/index","contactus","cql/appendices","cql/changes","cql/ddl","cql/definitions","cql/dml","cql/functions","cql/index","cql/indexes","cql/json","cql/mvs","cql/operators","cql/security","cql/triggers","cql/types","data_modeling/data_modeling_conceptual","data_modeling/data_modeling_logical","data_modeling/data_modeling_physical","data_modeling/data_modeling_queries","data_modeling/data_modeling_rdbms","data_modeling/data_modeling_refining","data_modeling/data_modeling_schema","data_modeling/data_modeling_tools","data_modeling/index","data_modeling/intro","development/ci","development/code_style","development/dependencies","development/documentation","development/gettingstarted","development/how_to_commit","development/how_to_review","development/ide","development/index","development/patches","development/release_process","development/testing","faq/index","getting_started/configuring","getting_started/drivers","getting_started/index","getting_started/installing","getting_started/querying","index","new/auditlogging","new/fqllogging","new/index","new/java11","new/messaging","new/streaming","new/transientreplication","new/virtualtables","operating/audit_logging","operating/backups","operating/bloom_filters","operating/bulk_loading","operating/cdc","operating/compaction","operating/compression","operating/hardware","operating/hints","operating/index","operating/metrics","operating/read_repair","operating/repair","operating/security","operating/snitch","operating/topo_changes","plugins/index","tools/cassandra_stress","tools/cqlsh","tools/index","tools/nodetool/assassinate","tools/nodetool/bootstrap","tools/nodetool/cleanup","tools/nodetool/clearsnapshot","tools/nodetool/clientstats","tools/nodetool/compact","tools/nodetool/compactionhistory","tools/nodetool/compactionstats","tools/nodetool/decommission","tools/nodetool/describecluster","tools/nodetool/describering","tools/nodetool/disableauditlog","tools/nodetool/disableautocompaction","tools/nodetool/disablebackup","tools/nodetool/disablebinary","tools/nodetool/disablefullquerylog","tools/nodetool/disablegossip","tools/nodetool/disablehandoff","tools/nodetool/disablehintsfordc","tools/nodetool/disableoldprotocolversions","tools/nodetool/drain","tools/nodetool/enableauditlog","tools/nodetool/enableautocompaction","tools/nodetool/enablebackup","tools/nodetool/enablebinary","tools/nodetool/enablefullquerylog","tools/nodetool/enablegossip","tools/nodetool/enablehandoff","tools/nodetool/enablehintsfordc","tools/nodetool/enableoldprotocolversions","tools/nodetool/failuredetector","tools/nodetool/flush","tools/nodetool/garbagecollect","tools/nodetool/gcstats","tools/nodetool/getbatchlogreplaythrottle","tools/nodetool/getcompactionthreshold","tools/nodetool/getcompactionthroughput","tools/nodetool/getconcurrency","tools/nodetool/getconcurrentcompactors","tools/nodetool/getconcurrentviewbuilders","tools/nodetool/getendpoints","tools/nodetool/getinterdcstreamthroughput","tools/nodetool/getlogginglevels","tools/nodetool/getmaxhintwindow","tools/nodetool/getreplicas","tools/nodetool/getseeds","tools/nodetool/getsstables","tools/nodetool/getstreamthroughput","tools/nodetool/gettimeout","tools/nodetool/gettraceprobability","tools/nodetool/gossipinfo","tools/nodetool/handoffwindow","tools/nodetool/help","tools/nodetool/import","tools/nodetool/info","tools/nodetool/invalidatecountercache","tools/nodetool/invalidatekeycache","tools/nodetool/invalidaterowcache","tools/nodetool/join","tools/nodetool/listsnapshots","tools/nodetool/move","tools/nodetool/netstats","tools/nodetool/nodetool","tools/nodetool/pausehandoff","tools/nodetool/profileload","tools/nodetool/proxyhistograms","tools/nodetool/rangekeysample","tools/nodetool/rebuild","tools/nodetool/rebuild_index","tools/nodetool/refresh","tools/nodetool/refreshsizeestimates","tools/nodetool/reloadlocalschema","tools/nodetool/reloadseeds","tools/nodetool/reloadssl","tools/nodetool/reloadtriggers","tools/nodetool/relocatesstables","tools/nodetool/removenode","tools/nodetool/repair","tools/nodetool/repair_admin","tools/nodetool/replaybatchlog","tools/nodetool/resetfullquerylog","tools/nodetool/resetlocalschema","tools/nodetool/resumehandoff","tools/nodetool/ring","tools/nodetool/scrub","tools/nodetool/setbatchlogreplaythrottle","tools/nodetool/setcachecapacity","tools/nodetool/setcachekeystosave","tools/nodetool/setcompactionthreshold","tools/nodetool/setcompactionthroughput","tools/nodetool/setconcurrency","tools/nodetool/setconcurrentcompactors","tools/nodetool/setconcurrentviewbuilders","tools/nodetool/sethintedhandoffthrottlekb","tools/nodetool/setinterdcstreamthroughput","tools/nodetool/setlogginglevel","tools/nodetool/setmaxhintwindow","tools/nodetool/setstreamthroughput","tools/nodetool/settimeout","tools/nodetool/settraceprobability","tools/nodetool/sjk","tools/nodetool/snapshot","tools/nodetool/status","tools/nodetool/statusautocompaction","tools/nodetool/statusbackup","tools/nodetool/statusbinary","tools/nodetool/statusgossip","tools/nodetool/statushandoff","tools/nodetool/stop","tools/nodetool/stopdaemon","tools/nodetool/tablehistograms","tools/nodetool/tablestats","tools/nodetool/toppartitions","tools/nodetool/tpstats","tools/nodetool/truncatehints","tools/nodetool/upgradesstables","tools/nodetool/verify","tools/nodetool/version","tools/nodetool/viewbuildstatus","tools/sstable/index","tools/sstable/sstabledump","tools/sstable/sstableexpiredblockers","tools/sstable/sstablelevelreset","tools/sstable/sstableloader","tools/sstable/sstablemetadata","tools/sstable/sstableofflinerelevel","tools/sstable/sstablerepairedset","tools/sstable/sstablescrub","tools/sstable/sstablesplit","tools/sstable/sstableupgrade","tools/sstable/sstableutil","tools/sstable/sstableverify","troubleshooting/finding_nodes","troubleshooting/index","troubleshooting/reading_logs","troubleshooting/use_nodetool","troubleshooting/use_tools"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,"sphinx.ext.todo":1,sphinx:54},filenames:["architecture/dynamo.rst","architecture/guarantees.rst","architecture/index.rst","architecture/overview.rst","architecture/storage_engine.rst","bugs.rst","configuration/cassandra_config_file.rst","configuration/index.rst","contactus.rst","cql/appendices.rst","cql/changes.rst","cql/ddl.rst","cql/definitions.rst","cql/dml.rst","cql/functions.rst","cql/index.rst","cql/indexes.rst","cql/json.rst","cql/mvs.rst","cql/operators.rst","cql/security.rst","cql/triggers.rst","cql/types.rst","data_modeling/data_modeling_conceptual.rst","data_modeling/data_modeling_logical.rst","data_modeling/data_modeling_physical.rst","data_modeling/data_modeling_queries.rst","data_modeling/data_modeling_rdbms.rst","data_modeling/data_modeling_refining.rst","data_modeling/data_modeling_schema.rst","data_modeling/data_modeling_tools.rst","data_modeling/index.rst","data_modeling/intro.rst","development/ci.rst","development/code_style.rst","development/dependencies.rst","development/documentation.rst","development/gettingstarted.rst","development/how_to_commit.rst","development/how_to_review.rst","development/ide.rst","development/index.rst","development/patches.rst","development/release_process.rst","development/testing.rst","faq/index.rst","getting_started/configuring.rst","getting_started/drivers.rst","getting_started/index.rst","getting_started/installing.rst","getting_started/querying.rst","index.rst","new/auditlogging.rst","new/fqllogging.rst","new/index.rst","new/java11.rst","new/messaging.rst","new/streaming.rst","new/transientreplication.rst","new/virtualtables.rst","operating/audit_logging.rst","operating/backups.rst","operating/bloom_filters.rst","operating/bulk_loading.rst","operating/cdc.rst","operating/compaction.rst","operating/compression.rst","operating/hardware.rst","operating/hints.rst","operating/index.rst","operating/metrics.rst","operating/read_repair.rst","operating/repair.rst","operating/security.rst","operating/snitch.rst","operating/topo_changes.rst","plugins/index.rst","tools/cassandra_stress.rst","tools/cqlsh.rst","tools/index.rst","tools/nodetool/assassinate.rst","tools/nodetool/bootstrap.rst","tools/nodetool/cleanup.rst","tools/nodetool/clearsnapshot.rst","tools/nodetool/clientstats.rst","tools/nodetool/compact.rst","tools/nodetool/compactionhistory.rst","tools/nodetool/compactionstats.rst","tools/nodetool/decommission.rst","tools/nodetool/describecluster.rst","tools/nodetool/describering.rst","tools/nodetool/disableauditlog.rst","tools/nodetool/disableautocompaction.rst","tools/nodetool/disablebackup.rst","tools/nodetool/disablebinary.rst","tools/nodetool/disablefullquerylog.rst","tools/nodetool/disablegossip.rst","tools/nodetool/disablehandoff.rst","tools/nodetool/disablehintsfordc.rst","tools/nodetool/disableoldprotocolversions.rst","tools/nodetool/drain.rst","tools/nodetool/enableauditlog.rst","tools/nodetool/enableautocompaction.rst","tools/nodetool/enablebackup.rst","tools/nodetool/enablebinary.rst","tools/nodetool/enablefullquerylog.rst","tools/nodetool/enablegossip.rst","tools/nodetool/enablehandoff.rst","tools/nodetool/enablehintsfordc.rst","tools/nodetool/enableoldprotocolversions.rst","tools/nodetool/failuredetector.rst","tools/nodetool/flush.rst","tools/nodetool/garbagecollect.rst","tools/nodetool/gcstats.rst","tools/nodetool/getbatchlogreplaythrottle.rst","tools/nodetool/getcompactionthreshold.rst","tools/nodetool/getcompactionthroughput.rst","tools/nodetool/getconcurrency.rst","tools/nodetool/getconcurrentcompactors.rst","tools/nodetool/getconcurrentviewbuilders.rst","tools/nodetool/getendpoints.rst","tools/nodetool/getinterdcstreamthroughput.rst","tools/nodetool/getlogginglevels.rst","tools/nodetool/getmaxhintwindow.rst","tools/nodetool/getreplicas.rst","tools/nodetool/getseeds.rst","tools/nodetool/getsstables.rst","tools/nodetool/getstreamthroughput.rst","tools/nodetool/gettimeout.rst","tools/nodetool/gettraceprobability.rst","tools/nodetool/gossipinfo.rst","tools/nodetool/handoffwindow.rst","tools/nodetool/help.rst","tools/nodetool/import.rst","tools/nodetool/info.rst","tools/nodetool/invalidatecountercache.rst","tools/nodetool/invalidatekeycache.rst","tools/nodetool/invalidaterowcache.rst","tools/nodetool/join.rst","tools/nodetool/listsnapshots.rst","tools/nodetool/move.rst","tools/nodetool/netstats.rst","tools/nodetool/nodetool.rst","tools/nodetool/pausehandoff.rst","tools/nodetool/profileload.rst","tools/nodetool/proxyhistograms.rst","tools/nodetool/rangekeysample.rst","tools/nodetool/rebuild.rst","tools/nodetool/rebuild_index.rst","tools/nodetool/refresh.rst","tools/nodetool/refreshsizeestimates.rst","tools/nodetool/reloadlocalschema.rst","tools/nodetool/reloadseeds.rst","tools/nodetool/reloadssl.rst","tools/nodetool/reloadtriggers.rst","tools/nodetool/relocatesstables.rst","tools/nodetool/removenode.rst","tools/nodetool/repair.rst","tools/nodetool/repair_admin.rst","tools/nodetool/replaybatchlog.rst","tools/nodetool/resetfullquerylog.rst","tools/nodetool/resetlocalschema.rst","tools/nodetool/resumehandoff.rst","tools/nodetool/ring.rst","tools/nodetool/scrub.rst","tools/nodetool/setbatchlogreplaythrottle.rst","tools/nodetool/setcachecapacity.rst","tools/nodetool/setcachekeystosave.rst","tools/nodetool/setcompactionthreshold.rst","tools/nodetool/setcompactionthroughput.rst","tools/nodetool/setconcurrency.rst","tools/nodetool/setconcurrentcompactors.rst","tools/nodetool/setconcurrentviewbuilders.rst","tools/nodetool/sethintedhandoffthrottlekb.rst","tools/nodetool/setinterdcstreamthroughput.rst","tools/nodetool/setlogginglevel.rst","tools/nodetool/setmaxhintwindow.rst","tools/nodetool/setstreamthroughput.rst","tools/nodetool/settimeout.rst","tools/nodetool/settraceprobability.rst","tools/nodetool/sjk.rst","tools/nodetool/snapshot.rst","tools/nodetool/status.rst","tools/nodetool/statusautocompaction.rst","tools/nodetool/statusbackup.rst","tools/nodetool/statusbinary.rst","tools/nodetool/statusgossip.rst","tools/nodetool/statushandoff.rst","tools/nodetool/stop.rst","tools/nodetool/stopdaemon.rst","tools/nodetool/tablehistograms.rst","tools/nodetool/tablestats.rst","tools/nodetool/toppartitions.rst","tools/nodetool/tpstats.rst","tools/nodetool/truncatehints.rst","tools/nodetool/upgradesstables.rst","tools/nodetool/verify.rst","tools/nodetool/version.rst","tools/nodetool/viewbuildstatus.rst","tools/sstable/index.rst","tools/sstable/sstabledump.rst","tools/sstable/sstableexpiredblockers.rst","tools/sstable/sstablelevelreset.rst","tools/sstable/sstableloader.rst","tools/sstable/sstablemetadata.rst","tools/sstable/sstableofflinerelevel.rst","tools/sstable/sstablerepairedset.rst","tools/sstable/sstablescrub.rst","tools/sstable/sstablesplit.rst","tools/sstable/sstableupgrade.rst","tools/sstable/sstableutil.rst","tools/sstable/sstableverify.rst","troubleshooting/finding_nodes.rst","troubleshooting/index.rst","troubleshooting/reading_logs.rst","troubleshooting/use_nodetool.rst","troubleshooting/use_tools.rst"],objects:{},objnames:{},objtypes:{},terms:{"000kib":[63,203],"000mib":55,"00t89":22,"011mib":203,"014kib":63,"017kib":63,"018kib":[63,203],"01t02":214,"021kib":[63,203],"022kib":63,"024kib":63,"028809z":200,"029kib":63,"031mib":203,"033kib":63,"036kib":63,"03t04":22,"040kib":63,"044kib":63,"045kib":63,"049kib":63,"054mib":203,"055z":200,"056kib":203,"061kib":203,"062mib":203,"063kib":203,"064kib":203,"0665ae80b2d711e886c66d2c86545d91":201,"06t22":214,"077mib":203,"078kib":203,"081kib":203,"082kib":203,"090kib":203,"092mib":203,"096gib":211,"0974e5a0aa5811e8a0a06d2c86545d91":203,"099kib":203,"0d927649052c":63,"0ee8b91fdd0":215,"0f03de2d9ae1":59,"0h00m04":215,"0percentil":11,"0x0000000000000000":216,"0x0000000000000003":14,"0x00000004":13,"0x00007f829c001000":216,"0x00007f82d0856000":216,"0x00007f82e800e000":216,"0x00007f82e80cc000":216,"0x00007f82e80d7000":216,"0x00007f82e84d0800":216,"0x2a19":216,"0x2a29":216,"0x2a2a":216,"0x2a2c":216,"0x3a74":216,"100b":77,"100k":77,"100m":11,"100mb":[6,32],"1024l":60,"105kib":203,"10m":11,"10mb":6,"10s":[78,216],"10x":[6,65],"115kib":63,"115mib":203,"11e6":78,"11e8":215,"11e9":[59,63,72],"122kib":203,"128kb":216,"128mb":63,"128mib":[6,56],"128th":4,"12gb":67,"12h30m":22,"130mib":203,"142mib":207,"147mib":203,"14t00":214,"150kib":203,"1520e8c38f00":72,"155kib":203,"15m":70,"160mb":65,"162kib":203,"165kib":203,"167kb":216,"16l":60,"16mb":[45,65],"16th":6,"173kib":203,"176kib":203,"17t06":214,"184kb":216,"192kib":56,"19821dcea330":63,"19t03":[164,207],"1f20868b27c7":[53,72],"1gb":63,"1mo":22,"1n_r":28,"1st":[22,71],"200m":[214,216],"203mib":203,"2062b290":215,"20m":216,"20t20":200,"217kb":216,"217mib":203,"22z":200,"232kib":63,"232mib":203,"233kib":63,"23t06":214,"23z":200,"244m":216,"245mib":203,"247mib":203,"24h":22,"25005289beb2":200,"250m":6,"251m":216,"253mib":203,"256mb":6,"256th":6,"258mib":203,"25mb":216,"265kib":203,"270mib":203,"27t04":214,"280mib":203,"28t17":214,"295kib":203,"296a2d30":63,"296a2d30c22a11e9b1350d927649052c":[61,63],"299kib":203,"29d":22,"29t00":214,"2cc0":215,"2e10":10,"2gb":67,"2nd":[6,11,71,74],"2xlarg":67,"300mib":203,"300s":6,"307kib":203,"30kb":216,"30s":6,"30t23":214,"314kib":203,"322kib":203,"325kib":203,"327e":78,"32gb":67,"32mb":[6,45],"331mib":203,"333kib":203,"33m":214,"348mib":203,"353mib":211,"3578d7de":200,"35ea8c9f":215,"361kib":203,"366b":216,"36x":49,"370mib":203,"378711z":200,"383b":216,"384z":200,"385b":216,"386kib":203,"387mib":203,"388mib":203,"392kib":203,"392mib":203,"394kib":203,"3f22a07b2bc6":200,"3ff3e5109f22":13,"3gb":[66,216],"3ms":216,"3rd":[6,70,74],"401mib":203,"406mib":203,"40a7":215,"40f3":13,"40fa":215,"40s":216,"410kib":203,"412kib":203,"416mib":211,"41b52700b4ed11e896476d2c86545d91":204,"41f9":[53,72],"423b":216,"423kib":203,"4248dc9d790e":200,"431kib":203,"43kb":216,"440kib":203,"443kib":203,"446eae30c22a11e9b1350d927649052c":[61,63],"449mib":203,"452kib":203,"457mib":203,"458mib":203,"45f4":[53,72],"461mib":203,"465kib":203,"46b4":[53,72],"46e9":215,"476mib":203,"481mib":203,"482mib":207,"48d6":200,"4ae3":13,"4d40":200,"4dcdadd2":[53,72],"4f34":[53,72],"4f3438394e39374d3730":204,"4f58":215,"4kb":11,"4mib":[6,56],"4th":72,"4xlarg":67,"500m":216,"501mib":203,"50kb":[6,216],"50m":[11,216],"50mb":[6,60,65,208],"50th":212,"512mb":6,"512mib":[6,56],"513kib":203,"521kib":203,"522kib":63,"524kib":203,"536kib":203,"543mib":203,"545kib":203,"54kb":216,"550mib":203,"5573e5b09f14":13,"559kib":203,"561mib":203,"563kib":203,"563mib":203,"56m":214,"571kib":203,"576kb":216,"5850e9f0a63711e8a5c5091830ac5256":209,"591mib":203,"592kib":203,"5gb":60,"5kb":6,"5level":60,"5mb":65,"603kib":203,"606mib":203,"60m":11,"61111111111111e":204,"613mib":203,"619kib":203,"61de":215,"635kib":203,"6365332094dd11e88f324f9c503e4753":[202,205,207,208,210,211],"638mib":203,"640kib":203,"646mib":203,"64k":6,"64kb":66,"64kib":56,"650b":216,"65c429e08c5a11e8939edf4f403979ef":[200,202],"65kb":216,"663kib":203,"665kib":203,"669kb":216,"683kib":63,"684b":[53,72],"684mib":203,"688kib":203,"690mib":203,"6e630115fd75":215,"6gb":215,"6ms":6,"6tb":67,"701mib":203,"715b":216,"718mib":203,"71b0a49":214,"725mib":203,"730kib":203,"732mib":203,"734mib":203,"736kb":216,"7374e9b5ab08c1f1e612bf72293ea14c959b0c3c":38,"737mib":203,"738mib":203,"743kib":203,"744mib":203,"751mib":203,"752e278f":215,"75th":70,"771mib":203,"775mib":211,"780mib":203,"782kib":203,"783522z":200,"789z":200,"791mib":203,"793kib":203,"798mib":203,"79kb":216,"7f3a":215,"802kib":203,"807kib":63,"812mib":203,"813kib":203,"814kib":203,"832mib":203,"835kib":203,"840kib":203,"843mib":203,"845b":216,"846kib":203,"848kib":203,"84fc":200,"861mib":203,"86400s":65,"869kb":216,"872kib":203,"877mib":203,"880mib":203,"882kib":203,"889mib":203,"892kib":203,"894mib":203,"89h4m48":22,"8gb":[67,216],"8th":[6,64],"903mib":203,"90percentil":11,"90th":70,"911kib":203,"920kib":203,"920mib":203,"9328455af73f":215,"938kib":203,"954kib":203,"957mib":203,"95ac6470":78,"95th":70,"965kib":203,"9695b790a63211e8a6fb091830ac5256":209,"974b":215,"975kib":203,"983kib":203,"98th":70,"993mib":203,"996kib":203,"99f7":[53,72],"99p":[11,63],"99percentil":[11,58],"99th":[70,212],"9dc1a293":215,"9e6054da04a7":215,"9eeb":[53,72],"9gb":216,"9percentil":11,"9th":70,"\u00eatre":9,"abstract":[34,39],"boolean":[9,11,12,14,17,20,22,28,29,59,78],"break":[11,31,42,65,71,209,213,216],"byte":[4,6,9,13,22,28,53,56,59,70,87,105,141,191,203,215],"case":[4,6,10,11,12,13,14,16,17,18,22,24,26,27,28,35,38,39,42,44,45,56,58,62,63,67,68,73,75,77,78,203,214,215,216],"catch":[34,56,205],"class":[3,6,11,14,22,29,34,40,44,52,53,55,58,59,60,61,63,65,66,69,72,73,77,142,154,175,203,214],"default":[0,4,6,10,11,13,14,17,18,20,22,27,33,40,44,45,46,49,52,53,56,57,58,60,61,62,63,64,65,66,68,70,71,72,73,75,77,78,82,101,105,112,141,142,144,147,157,158,164,179,181,192,200,203,204,208,212,214,215,216],"enum":[9,57],"export":[40,55,70,78,216],"final":[14,20,24,28,34,36,40,43,53,60,63,64,65,67,73,79,158,199,216],"float":[9,10,11,12,14,17,19,22,62,66],"function":[0,3,6,9,10,11,12,15,16,18,20,22,28,32,39,47,51,52,53,59,60,73,74,76,78,199],"goto":33,"import":[1,11,14,22,23,24,27,32,40,41,44,46,57,58,61,65,67,68,69,70,72,78,142,212,215,216],"int":[4,9,10,11,13,14,17,18,19,20,22,32,44,53,59,61,63,64,66,70,71,72],"long":[4,6,13,22,27,38,39,45,52,55,61,65,68,70,71,77,206,207,214,216],"new":[0,1,3,4,6,10,11,14,16,17,18,19,20,21,22,24,27,28,32,33,34,36,37,39,40,42,43,44,48,51,52,53,55,56,57,59,60,61,62,63,65,67,68,71,73,75,77,133,140,142,202,203,205,207,210,212],"null":[9,10,12,13,14,17,18,22,34,59,78],"public":[6,14,32,34,35,43,44,45,49,63,73,74],"return":[6,9,11,13,14,16,17,18,19,20,22,24,27,39,53,57,58,59,68,71,77,157,201,202,216],"short":[4,22,25,28,36],"static":[6,9,10,11,18,24,25,28,36,63,70,74,204],"super":[4,24,73,76,77],"switch":[4,6,10,20,24,40,45,56,69,70,73,74],"throw":[6,14,34,44,53,212],"transient":[3,6,11,51,54],"true":[6,11,12,17,20,22,27,28,40,45,52,53,55,57,58,59,60,61,64,65,68,73,75,78,139,142,209],"try":[0,6,11,24,26,27,34,35,40,42,45,55,60,63,65,72,157,203,215,216],"var":[4,6,34,49,200,201,202,203,204,205,206,207,208,209,210,211,214,216],"void":44,"while":[0,4,6,10,11,12,13,22,25,28,30,38,42,43,52,53,56,57,58,62,63,65,66,67,68,72,73,78,203,212,214,215,216],AES:6,AND:[9,11,13,14,18,20,29,53,59,63,73,77,78,214],AWS:67,Added:[10,54],Adding:[6,11,20,22,28,45,51,53,56,69,73],And:[11,14,20,56,73],Are:39,Ave:22,BUT:34,Being:58,But:[13,20,22,27,33,34,42,45,63,71,78],CAS:[1,6,215],CCS:216,CFs:[157,164],CLS:78,CMS:216,DCs:[6,58],DNS:45,Doing:[10,79,199],EBS:67,For:[0,3,4,6,9,10,11,12,13,14,15,16,17,18,20,21,22,23,24,25,26,28,32,37,42,43,44,45,46,49,50,53,56,60,65,67,68,71,72,73,74,77,78,203,204,205,208,212,214,215,216],GCs:6,HDs:216,Has:39,IDE:[30,37,41,51],IDEs:[30,40,41],IDs:[25,27,142,182],INTO:[6,9,11,13,14,17,22,53,61,63,72],IPs:[6,74,163,182],Ids:188,Its:[53,63],JKS:6,JPS:216,KBs:[6,68],LCS:[11,204],LTS:55,MVs:32,NFS:67,NOT:[6,9,10,11,13,14,16,18,20,21,22,63],NTS:6,N_s:28,Not:[13,20,42,55,65,66],ONE:[0,6,11,70,71,77,78],One:[0,24,27,42,44,45,55,63,65,216],PFS:6,Pis:67,QPS:212,Such:22,THE:6,TLS:[6,63,69,203],That:[0,11,12,18,22,27,42,45,58,65,78,216],The:[0,1,3,4,6,8,9,10,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,32,33,34,36,37,38,40,42,43,44,45,46,49,50,51,52,53,54,55,56,57,58,61,62,63,64,66,67,68,70,71,72,73,74,75,76,77,78,82,85,90,92,98,102,108,111,112,115,120,124,126,128,133,140,142,144,148,149,155,157,164,167,168,175,181,182,183,190,192,195,196,198,202,203,204,205,207,208,209,210,213,214,215,216],Their:22,Then:[13,44,45,49,65,73,205,209,216],There:[6,10,11,12,13,14,22,25,27,28,30,40,42,44,45,56,65,68,70,72,73,77,206,208,212,215,216],These:[0,4,6,11,14,30,40,52,56,63,70,72,73,77,78,210,212,213,214,215,216],USE:[9,14,15,52,53,59,60,61],USING:[9,13,16,21,22,65],Use:[6,11,13,20,24,25,45,50,51,53,63,64,69,73,77,78,79,80,85,142,147,157,188,195,199,200,205,206,207,210,213],Used:[23,24,25,26,27,28,29,30,70,216],Useful:216,Uses:[6,17,69,74],Using:[1,11,13,31,36,44,45,53,54,69,73,79,199,200,203,207,210,214],WILL:6,WITH:[9,11,12,16,18,20,29,32,52,53,58,59,61,62,63,64,65,66,72,73,77,78],Will:[6,51,53,68,105,142,175,205],With:[0,1,6,13,17,45,57,58,63,65,71,72,75,81,214,216],Yes:45,_build:55,_build_java:55,_by_:24,_cache_max_entri:73,_cdc:64,_development_how_to_review:37,_if_:6,_main:55,_must_:6,_only_:214,_path_to_snapshot_fold:63,_trace:[70,215],_udt:14,_update_interval_in_m:73,_use:14,_validity_in_m:73,_x86_64_:216,a278b781fe4b2bda:49,a6fd:215,a8ed:59,abbrevi:43,abil:[14,20,30,45,66],abilityid:16,abl:[0,1,6,14,22,25,26,28,33,36,40,44,45,52,53,57,58,61,65,73,212,213],abort:33,about:[0,1,4,6,20,23,24,26,27,28,29,36,40,41,42,44,45,53,57,59,62,65,72,74,78,84,142,163,204,214,215,216],abov:[0,4,6,8,11,12,13,14,22,35,40,42,45,65,70,77,79,199,203,210,216],absenc:12,absent:0,abstracttyp:22,ac79:215,acceler:76,accept:[0,6,10,11,12,13,17,42,44,62,66,68,71,75,100,142],access:[3,6,10,11,20,22,24,26,30,32,40,42,59,60,63,67,68,69,70,76,203,204,212,213,216],accident:[24,202],accompani:6,accomplish:[26,53],accord:[0,1,4,6,24,45],accordingli:[6,14,45],account:[1,6,22,36,43,44,216],accru:[65,70],accrual:0,accumul:[6,65,68,70],accur:[6,24,28,45,62,75,163,204],accuraci:[62,144,192],acheiv:73,achiev:[0,1,6,32,53,65,70],achil:47,ack:[4,6,58,71],acknowledg:[0,25,68,71],acoount:70,acquir:[20,56,70],across:[0,1,6,11,20,25,27,28,32,42,57,68,70,72,73,74,77,142,146,204,211],act:[0,26,28,58,214],action:[6,13,20,40,68,211,216],activ:[4,6,30,37,42,52,53,56,59,64,70,72,78,142,144,192,212,214,215,216],active_task:59,active_tasks_limit:59,activetask:70,actor:73,actual:[0,4,6,13,21,28,30,34,36,39,43,45,49,56,57,59,60,65,72,74,77,157,207,216],acycl:20,adapt:[23,24,25,26,27,28,29,30],add:[0,6,9,10,11,22,24,25,28,32,33,36,37,38,39,41,42,43,46,49,51,52,53,55,57,58,60,61,63,65,68,71,72,73,77,205,210,214],addamsfamili:11,added:[0,1,3,4,6,10,11,14,19,24,36,39,53,56,57,59,61,63,64,65,68,71,72,208],adding:[0,6,13,14,24,28,32,39,53,67,72,78,205,211],addit:[0,1,3,6,9,11,13,19,20,22,24,25,26,27,28,32,40,42,46,52,56,57,58,59,60,61,65,67,68,70,71,73,78,214,216],addition:[11,13,33,58,65,72,77,214],additional_write_polici:[11,63],addr:56,address:[6,8,17,22,25,26,29,33,40,42,46,51,52,53,55,56,59,60,61,63,70,72,74,75,76,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,215,216],addressload:53,addrow:63,adher:10,adjac:[32,65],adjust:[6,11,25,62],adler32:4,adopt:56,adv:49,advanc:[0,3,6,36,59,60,69,73,213],advantag:[0,27,67],advers:[45,215],advic:[42,45],advis:[6,12,18,22,45],advoc:0,aefb:200,af08:13,afd:22,affect:[0,11,24,32,39,42,45,52,57,65,71,164,207,212,216],afford:6,afraid:27,after:[5,6,10,11,12,13,14,16,17,18,24,25,27,32,40,42,43,45,52,53,55,58,61,63,64,65,67,68,69,70,71,72,73,74,78,205,206,209],afterward:[33,36,40,44],afunct:14,again:[0,6,25,42,43,53,55,61,65,72,75,78,206,209],against:[6,11,14,18,27,30,36,42,44,45,53,57,59,67,68,72,75,77,78,157,204,216],agent:[24,52,53,61,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,216],agentlib:40,aggreg:[3,6,9,10,13,15,18,20,52,53,59,60,70,78],aggress:212,ago:206,agre:[0,71],aid:[3,12],aim:[6,214],akeyspac:14,akin:56,alg:[63,203],algorithm:[0,6,11,63,75,203,214],alia:[10,13,14,47],alias:[6,10,18],alic:20,align:34,aliv:[0,6],all:[0,1,3,4,6,9,11,12,13,14,17,18,19,22,23,24,25,26,27,28,29,30,32,33,34,35,36,38,39,40,42,44,51,52,53,55,56,57,58,59,60,62,63,64,65,68,70,71,72,73,75,77,78,79,82,83,84,100,112,117,133,134,139,142,144,146,155,158,164,179,181,183,192,194,195,196,199,201,205,207,211,212,214,215,216],allmemtableslivedatas:70,allmemtablesoffheaps:70,allmemtablesonheaps:70,alloc:[0,6,45,55,56,64,67,70],allocate_tokens_for_keyspac:[59,75],allow:[0,1,3,4,6,9,10,11,12,14,16,17,18,22,23,24,27,33,36,37,46,53,57,58,59,62,63,64,65,66,67,71,72,74,77,207,215,216],allowallauthent:[6,73],allowallauthor:[6,73],allowallinternodeauthent:6,allowallnetworkauthor:6,almost:[0,4,6,14,22,56,65,212,216],alon:[11,34],along:[0,6,13,27,37,43,55,60,68,139,142,214],alongsid:[50,78],alpha4:[11,22,51],alphabet:34,alphanumer:[11,20],alreadi:[6,11,14,16,18,22,24,26,27,42,45,53,55,56,63,65,73,77,79,195,199,208],also:[0,3,4,6,10,11,12,13,14,17,18,20,22,23,24,25,26,28,30,32,33,36,40,42,43,44,45,46,53,55,57,58,60,61,63,64,65,67,68,70,71,73,75,78,112,196,209,210,214,215,216],alter:[0,9,10,15,17,28,45,58,59,62,64,65,66,72,73],alter_keyspac:52,alter_keyspace_stat:12,alter_rol:52,alter_role_stat:12,alter_t:52,alter_table_instruct:11,alter_table_stat:12,alter_typ:52,alter_type_modif:22,alter_type_stat:[12,22],alter_user_stat:12,alter_view:52,altern:[10,11,12,13,17,22,40,42,46,63,67,68,71,73,203],although:[6,27,28,42,56,77,214,216],altogeth:56,alwai:[0,3,4,6,9,10,11,13,14,18,22,27,34,36,42,43,44,45,53,56,58,65,67,77,212,216],amazon:[0,3],amazonaw:55,amen:[24,26,27,29],amend:38,amenities_by_room:[24,29],amenity_nam:29,among:[32,71],amongst:11,amount:[0,6,11,13,22,28,40,42,44,45,57,58,65,66,67,68,70,72,75,78,157,216],amplif:[65,67],anaggreg:14,analogu:13,analysi:[24,28,31,213,214],analyt:[24,62],analyz:[25,28,32,44,216],ancestor:[4,210],ani:[0,4,6,10,11,12,13,14,17,18,20,21,22,24,25,27,30,33,35,36,38,39,40,42,43,44,46,49,51,52,53,55,56,57,58,59,63,65,67,68,70,71,72,73,75,77,78,80,133,139,142,147,164,179,200,204,207,209,210,213,214,215],annot:34,anonym:[12,22,52,59,60],anoth:[1,6,11,14,20,22,24,27,28,32,44,53,56,58,59,61,63,65,71,73,78,201,208,213,216],anotherarg:14,answer:[41,216],ant:[33,35,40,42,44,55],antclassload:44,anti:[0,6,22,31,58,68],anticip:[0,11,58],anticompact:[65,70,188,208],anticompactiontim:70,antientropystag:[59,70,215],antipattern:67,anymor:[38,65],anyon:34,anyth:[58,65],anywai:[6,55],anywher:[13,56,64],apach:[0,1,2,3,5,6,7,14,21,30,32,34,35,36,38,39,41,42,43,44,45,48,49,52,53,55,56,57,58,59,60,61,63,65,66,68,70,73,76,79,200,201,202,203,204,205,206,207,208,210,211,214],apart:60,api:[0,6,8,17,50,57,59,74],appar:24,appear:[6,11,12,14,24,53,65,71,78],append:[4,22,24,38,60,67,68,70,78,214],appendic:[15,51],appendix:[12,15],appl:22,appli:[0,4,6,9,10,11,12,13,20,22,38,42,44,45,56,68,70,71,75,77,78],applic:[0,1,3,6,11,20,23,24,25,27,28,29,31,32,34,37,39,40,51,52,54,55,58,59,60,63,66,73,77,214],appreci:42,approach:[4,24,25,26,27,28,32,56,65,75],appropri:[6,11,20,22,39,42,43,56,73,74,75,214],approv:33,approxim:[0,28,53,65,70,204],apt:[49,216],arbitrari:[11,12,22,61,77],architectur:[3,25,45,51,76],archiv:[4,6,43,53,64,105],archive_command:[52,53,105],archive_retri:[53,105],area:[3,37,216],aren:[13,72],arg:[14,53,142,180,200,204,210],argnam:14,argnum:14,argument:[6,11,13,14,16,17,45,46,52,53,61,63,66,77,78,80,81,82,83,85,90,92,98,102,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198],arguments_declar:14,arguments_signatur:14,arithmet:[10,12,15,51],arithmetic_oper:12,armor:43,around:[6,20,24,27,32,52,53,65,67,74,216],arrai:[6,23,45,56],arriv:[6,42,45,56],arrow:26,artem:24,artifact:[26,35,40,41],artifici:11,asap:10,asc:[9,11,13,29,59],ascend:[11,13],ascii:[9,14,17,22],asdf:200,asf:[8,40,43],ask:[5,28,42,43,44,51,73],aspect:[0,11,58],assassin:142,assertionerror:34,assertrow:44,assess:[215,216],assign:[0,6,13,20,25,27,45],assist:24,associ:[0,6,11,26,53,59,76,210,212],assum:[0,6,11,14,25,26,27,28,36,40,73,74,212,216],assumpt:[0,73],assur:54,asterisk:25,astyanax:47,async:[6,73],asynchron:[16,45,53,57,67],asynchroni:70,ata:27,atabl:14,atom:[3,11,13,21,38,71],atomiclong:70,attach:[37,42,73,76,216],attack:73,attemp:70,attempt:[0,6,11,16,18,20,22,24,45,52,56,58,60,65,68,70,71,72,73,78,79,158,199,209,214],attent:[34,35,42,43],attract:24,attribut:[23,24,25,32,52,53,60,65],audienc:[0,58],audit:[3,6,27,51,53,54,91,101,142],audit_log:6,audit_logging_opt:[52,60],audit_logging_options_en:59,audit_logs_dir:[52,60],auditlog:[52,101],auditlogentrytyp:52,auditlogkeyspac:[52,53],auditlogview:[3,52,60],audt:60,aug:[52,53,61,63,209],auth:[6,52,60,63,203],authent:[10,52,60,63,69,78,203],authenticatedus:6,author:[9,20,22,36,42,69,77],authorizationproxi:73,authprovid:[63,203],auto:[0,6,11,45,55,61,77,183],auto_bootstrap:75,auto_snapshot:[59,61],autocompact:[65,92,102,142,183],autom:[30,34,37],automat:[6,13,14,16,32,33,36,40,44,45,49,52,57,61,65,72,73,75,77],automatic_sstable_upgrad:59,avail:[0,2,3,6,8,11,14,20,23,24,25,26,27,28,29,30,33,40,42,43,44,49,53,55,56,58,60,64,68,71,72,73,74,76,78,82,112,155,164,175,195,212,214,216],availabil:6,available_rooms_by_hotel_d:[24,28,29],averag:[6,11,14,28,65,70,203,214,215,216],average_live_cells_per_slice_last_five_minut:191,average_s:11,average_tombstones_per_slice_last_five_minut:191,averagefin:14,averagest:14,avg:[28,63,203,216],avg_bucket_s:65,avgqu:216,avgrq:216,avoid:[0,6,11,12,27,32,34,39,42,53,56,57,58,62,65,67,70,73,74,78,196,203],awai:[40,75,78,215],await:216,awar:[0,6,11,42,56,62,66,68,163,212,215],awesom:77,axi:55,az123:25,azur:67,b00c:72,b124:13,b135:63,b2c5b10:214,b32a:[53,72],b64cb32a:[53,72],b70de1d0:13,b7a2:215,b7c5:215,b957:200,b9c5:215,back:[3,6,11,32,36,53,56,58,59,60,65,68,70,71,75,139,142,215],backend:6,background:[43,45,49,69,73,214,216],backlog:[6,56],backpressur:[6,56],backpressurestrategi:6,backup:[3,6,51,65,69,75,78,93,103,142,184,209,210],backward:[6,10,11,15,20,22],bad:[6,14,45,73,74,212,215],balanc:[0,3,6,24,57,68,75,212,215],banana:22,band:22,bandwidth:[6,56,57,76,216],bank:24,bar:[12,34,216],bardet:22,bare:6,base:[0,1,4,6,10,11,13,14,18,19,20,22,24,25,27,28,32,33,35,37,38,41,42,43,44,45,52,53,54,56,60,65,67,70,71,73,75,76,204,212,215],bash:[45,55,216],bashrc:55,basi:[0,6,11,33,45,53,56,66],basic:[0,6,11,24,25,32,56,59,65,67,77,79,199,210,213],batch:[0,2,4,6,9,11,15,27,44,51,52,53,58,59,69,71,77,78,212,216],batch_remov:[70,215],batch_stat:12,batch_stor:[70,215],batchlog:[1,13,70,114,142,159,165],batchtimemilli:53,batchtyp:77,bbee:63,bc9cf530b1da11e886c66d2c86545d91:207,be34:13,beatl:22,beca:78,becam:[0,3],becaus:[0,4,6,11,13,14,20,24,27,28,32,49,55,56,61,65,66,68,70,71,73,204,207,216],becom:[0,4,6,11,14,20,32,42,61,65,70,71,73,75],been:[0,1,4,6,10,11,13,14,15,20,22,24,32,39,42,43,53,55,56,57,58,59,61,63,65,67,71,72,73,164,207,210,212],befor:[0,4,6,10,11,13,14,16,19,21,22,25,26,28,33,36,37,40,41,43,44,47,52,53,56,58,59,60,61,63,65,68,70,71,73,74,75,77,78,105,181,199,200,201,202,203,204,205,206,207,208,209,210,211,212],began:3,begin:[9,12,13,24,26,27,44,73,78],beginn:42,begintoken:78,behalf:24,behav:[6,58],behavior:[0,6,10,11,14,17,22,34,39,62,65,69,75,158,212],behind:[6,34,44,45,52,53,60,65],being:[0,4,6,11,13,17,22,24,28,39,43,44,45,52,53,56,58,60,62,63,65,70,71,72,75,205,214,215,216],believ:[68,212],belong:[0,3,11,13,14,57,70,82,142],below:[6,11,12,13,17,20,22,23,24,25,26,27,28,32,35,42,49,54,56,60,65,70,78,88,203,205,212,214],benchmark:[53,57,67,77],benefici:65,benefit:[0,6,37,52,62,65,67,69,203],best:[0,3,6,24,27,29,30,32,36,43,44,65,68,69,73,74,212,216],best_effort:6,better:[6,34,36,37,42,56,65,67,68,203,215,216],between:[0,1,4,6,9,10,11,12,13,15,23,24,25,26,31,32,42,45,54,56,57,62,65,66,68,70,71,72,73,76,77,157,179,216],beyond:[6,58,65,78,196],big:[6,28,61,63,65,85,200,201,202,203,204,206,207,208,209,210,211],bigg:28,bigger:[11,65],biggest:14,bigint:[9,14,17,19,22,59],bigintasblob:14,bigtabl:3,bigtableread:[201,207,209,211],billion:28,bin:[40,49,50,53,55,63,78,214],binari:[14,43,48,52,53,60,73,94,104,142,185,214],binauditlogg:[52,101],bind:[6,10,12,14,45,53,63],bind_mark:[12,13,18,22],binlog:[53,60],biolat:216,biolog:11,biosnoop:216,birth:13,birth_year:13,bit:[14,17,22,28,35,42,45,55,58,66,67],bite:45,bitempor:76,bitstr:9,black:6,blank:[6,34,45,204],blindli:45,blob:[9,10,12,17,22,51,66,68,77],blob_plain:43,blobasbigint:14,blobastyp:14,block:[4,6,11,38,46,52,53,56,57,59,60,65,67,69,70,72,73,79,105,199,214,215,216],blocked_task:59,blocked_tasks_all_tim:59,blockedonalloc:6,blockingbufferhandl:56,blog:[6,13],blog_til:13,blog_titl:13,blogpost:77,bloom:[4,11,51,57,58,67,69,70,204],bloom_filter_false_posit:191,bloom_filter_false_ratio:191,bloom_filter_fp_ch:[4,11,62,63],bloom_filter_off_heap_memory_us:191,bloom_filter_space_us:191,bloomfilterdiskspaceus:70,bloomfilterfalseposit:70,bloomfilterfalseratio:70,bloomfilteroffheapmemoryus:70,blunt:73,bnf:12,bob:[13,20],bodi:[6,11,12,56,77],bog:23,boilerpl:41,book:[23,26],boolstyl:78,boost:6,boot:45,bootstrap:[0,6,51,55,57,66,69,70,73,142,147,175,205],born:13,borrow:56,both:[0,1,3,6,11,13,14,18,22,23,24,28,37,38,39,42,43,45,46,52,53,56,57,58,62,65,66,67,70,71,73,75,77,78,210,216],bottleneck:6,bottom:45,bound:[4,6,11,12,22,53,56,57,60,63,67,73],boundari:205,box:[3,6,26,73,74],brace:34,bracket:12,braket:12,branch:[33,36,38,39,40,43,44],branchnam:42,brand:0,breadcrumb:212,breakdown:[215,216],breakpoint:40,breed:44,brendangregg:216,breviti:56,brief:216,briefli:[1,215],bring:[0,6,55,57],brk:45,broadcast:6,broadcast_address:74,broken:[6,65,70,207],brows:[6,43,200,201,202,203,204,205,206,207,208,210,211],browser:[78,216],bucket:[0,28,65],bucket_high:65,bucket_low:65,buff:216,buffer:[4,6,53,55,56,63,64,68,70],bufferpool:[55,69],buffers_mb:216,bug:[10,38,41,43,44,45,51,72],build:[18,27,30,33,35,36,37,41,42,43,44,51,54,63,70,72,76,77,142,198],builder:[6,63,119,142,172],buildfil:55,built:[1,18,28,32,40,55,70],bulk:[51,57,68,69,203],bump:[4,10,205],bunch:34,burn:64,busi:[0,24,27],button:[36,40,45],bytebuff:[14,56],byteorderedpartition:[6,14],bytesanticompact:70,bytescompact:70,bytesflush:70,bytesmutatedanticompact:70,bytespendingrepair:70,bytesrepair:70,bytestyp:[9,204],bytesunrepair:70,bytesvalid:70,bz2:43,c09b:72,c217:63,c22a:63,c3909740:59,c60d:200,c73de1d3:13,c7556770:59,c_l:28,cach:[0,6,11,20,35,45,46,63,67,69,74,133,135,136,137,142,166,167,215],cachecleanupexecutor:[59,70,215],cached_mb:216,cachenam:70,cachestat:216,cadenc:55,calcul:[0,6,23,24,25,31,56,62,63,64,65,70,71,74,203,204],call:[0,9,11,12,13,14,20,24,34,36,41,46,51,53,58,60,61,63,65,66,67,70,75,142,175,216],callback:[56,70],caller:34,can:[0,3,4,5,6,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,30,33,34,35,36,37,38,39,40,42,43,44,46,49,50,51,52,53,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,77,78,80,82,83,85,90,92,98,102,105,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,200,201,202,203,205,206,207,208,209,212,213,214,215,216],cancel:[10,158],candid:65,cannot:[1,6,9,11,13,14,17,18,20,22,27,32,44,52,55,56,57,58,59,63,65,68,73,80,142,215],cap:[2,12,116,121,127,142,169,174,177],capabl:[0,6,45,76,78],capac:[0,6,28,32,52,53,56,64,70,74,76,142,144,166,192,211,212,214,216],capacit:212,capacity_byt:59,capi:51,captur:[6,11,24,51,53,69,73,79,214],cardin:204,care:[6,65,77,157,216],carefulli:35,carlo:20,carpent:[23,24,25,26,27,28,29,30],carri:[34,157],cascad:27,cascommit:70,cascontent:[128,178],casprepar:70,caspropos:70,casread:70,cassablanca:22,cassafort:47,cassanda:0,cassandra:[0,1,2,3,4,5,8,10,11,13,14,18,20,21,22,23,24,25,26,28,29,31,32,34,35,37,38,42,47,48,50,52,53,55,56,57,58,59,61,62,63,65,66,67,68,70,72,74,75,78,101,105,142,153,157,160,164,189,197,199,200,201,202,203,204,205,206,207,208,210,211,212,213,215,216],cassandra_flam:216,cassandra_hom:[4,6,55,64,68,73,214],cassandra_job_dsl_se:33,cassandra_stack:216,cassandra_use_jdk11:55,cassandraauthor:[6,73],cassandradaemon:[40,49,55],cassandrafullquerylog:53,cassandrakeyspacesimpl:58,cassandralogin:73,cassandranetworkauthor:6,cassandrarolemanag:[6,73],casser:47,cassi:47,cast:[10,13,18],caswrit:70,cat:[22,200,216],catalog:[61,63],catalogkeyspac:[61,63],catalokeyspac:61,categor:70,categori:[11,12,13,14,60,101],caught:[39,70],caus:[0,4,6,18,27,45,56,65,72,73,205,207,214,215,216],caution:[6,66],caveat:73,cbc:6,ccm:[39,44,216],ccmlib:44,cd941b956e60:215,cdc:[6,11,63],cdc_enabl:64,cdc_free_space_check_interval_m:64,cdc_free_space_in_mb:64,cdc_raw:[6,64],cdc_raw_directori:64,cdccompactor:6,cdf7:59,cell:[6,22,28,70,112,196,200,204,215],center:[6,11,20,22,24,45,68,74,75,98,108,142,157],central:[40,73,78,212],centric:[20,32,36],certain:[0,1,4,6,9,11,20,36,44,57,58,65,73,201],certainli:[14,24,26,28],certif:[69,142,153],cf188983:200,cfname:[126,144,192],cfs:34,chain:20,challeng:[3,37,76],chanc:[37,62,71,204],chang:[0,4,6,11,12,15,20,22,27,32,33,35,36,37,38,40,41,43,48,49,51,52,53,56,58,59,61,66,69,70,72,73,175,202,205,214,216],changelog:43,channel:0,charact:[11,12,13,17,20,22,28,34,77,78],character:6,chat:8,cheap:[6,11,53,54],chebotko:[24,25,30],check:[0,6,13,24,33,34,39,40,42,43,44,45,53,55,56,58,62,63,64,65,70,73,79,133,142,157,196,199,211,215],checklist:[41,42,51],checkout:[36,40,42,43],checksum:[4,6,11,57,66,142,196,210],chen:23,cherri:38,chess:13,child:78,chmod:[52,53,63,73],choic:[0,6,11,32,43,51,65,69,206],choos:[0,1,3,6,11,41,43,47,67,70],chord:0,chose:0,chosen:[0,6,11,14,215],chown:73,christoph:22,chrome:78,chronicl:[52,53,60],chunk:[4,6,11,45,56,57,59,66,78],chunk_length_in_kb:[11,63,66],chunk_length_kb:6,chunk_lenth_in_kb:11,chunkcach:70,chunksiz:78,churn:6,cipher:[6,63,73,203],cipher_suit:6,circular:20,circumst:[11,27,71],citi:[22,29],claim:30,clash:12,class_nam:[4,6],classload:[44,55],classpath:[6,14,22,70],claus:[10,11,14,16,17,18,20,34],clean:[6,34,53,70,79,82,142,160,199,203],cleanli:42,cleanup:[45,58,65,69,70,112,142,188,210],clear:[39,42,63,79,84,133],clearli:26,clearsnapshot:[61,142],click:[13,40,42,43,44,216],client:[0,1,4,6,8,10,11,13,17,20,22,27,32,39,45,46,48,51,52,60,63,64,67,68,69,71,78,84,142,203,207,213,214,215,216],client_encryption_opt:[63,73,203],clientrequest:70,clientstat:142,clock:[0,6],clockr:6,clockwis:0,clojur:48,clone:[40,43,45,55,78,216],close:[6,15,36,43,63,73,216],closer:62,closest:71,cloud:69,clue:[24,216],cluster:[1,2,3,4,6,9,10,11,13,14,21,22,24,27,28,29,30,32,39,44,46,50,51,53,55,56,57,58,59,61,63,65,67,68,70,71,72,73,74,75,77,78,79,89,110,114,130,142,165,182,199,204,211,212,213,214,216],cluster_nam:[46,50,59],clustering_column:11,clustering_ord:11,clusteringtyp:204,cmake:216,cmd:216,cmsparallelremarken:40,coalesc:6,coalescingstrategi:6,codd:27,code:[6,10,12,14,21,25,28,32,33,36,37,38,39,40,41,44,51,55,66,70,212,216],codestyl:34,coher:76,col:[14,77],cold:6,collat:6,collect:[0,3,6,10,11,12,13,14,15,17,23,25,30,67,69,70,71,77,112,214],collection_liter:12,collection_typ:22,collector:214,color:[22,78,216],column1:9,column:[0,1,3,4,6,9,10,11,12,13,14,15,16,17,18,20,22,24,25,27,28,29,30,32,53,56,59,61,66,70,71,72,76,77,78,126,144,164,181,192,204,207,209,214,215],column_count:53,column_definit:[11,53],column_nam:[11,13,16],columnfamili:[4,6,9,34,65,72,202,205],columnspec:77,colupdatetimedeltahistogram:70,com:[6,14,33,34,36,38,43,55,73,216],combin:[0,3,4,6,10,56,65,71],come:[6,9,26,28,73,216],comingl:65,comma:[6,11,12,13,46,52,60,63,73,75,78,101,144,147,192,203],command:[0,3,6,18,27,30,35,38,43,44,45,46,49,50,52,53,55,59,61,63,66,68,69,72,73,77,79,80,81,82,83,85,90,92,98,102,105,108,111,112,115,117,120,124,126,128,132,133,140,142,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,199,202,203,208,209,210,213,214,215,216],commandlin:61,comment:[4,6,11,15,18,29,34,36,37,39,63,73],commit:[4,6,8,11,36,41,42,43,51,56,70,210,216],commitlog:[2,6,45,46,67,69,204,214,215],commitlog_archiv:[4,6],commitlog_compress:4,commitlog_directori:[4,46,67],commitlog_segment_size_in_mb:[4,45],commitlog_sync:4,commitlog_sync_batch_window_in_m:4,commitlog_sync_period_in_m:4,commitlog_total_space_in_mb:4,commitlogposit:204,commitlogread:64,commitlogreadhandl:64,commitlogseg:[6,69,70],committ:[37,38,41,42,43,44],commod:[2,3],common:[0,14,15,24,25,27,34,36,39,42,52,54,56,57,69,72,78,212,213,216],common_nam:11,commonli:[53,68,142],commun:[0,6,8,24,37,39,40,42,45,46,50,56,60,63,73,203],commut:45,compact:[4,6,11,15,45,51,57,58,59,61,62,63,66,67,69,77,82,86,87,112,115,116,142,155,164,168,169,175,183,188,195,201,202,203,204,205,207,210,213,214,216],compacted_partition_maximum_byt:191,compacted_partition_mean_byt:191,compacted_partition_minimum_byt:191,compaction_:188,compaction_histori:214,compaction_throughput:215,compaction_window_s:65,compaction_window_unit:65,compactionbyteswritten:70,compactionexecutor:[59,70,215],compactionhistori:[65,142],compactionid:188,compactionparamet:65,compactionparametersjson:65,compactions_in_progress:210,compactionstat:[65,142,215],compactionstrategi:69,compactiontask:214,compactor:[118,142,171],compani:27,compar:[0,1,3,4,6,31,35,42,54,65,70,71,72,77,212,215],comparis:28,comparison:6,compat:[6,9,10,11,13,15,20,39,42,63,79,216],compatilibi:22,compet:6,compil:[34,35,40,55,78],compilerthread3:216,complain:40,complet:[1,6,13,14,24,29,30,42,43,45,53,56,57,58,59,61,64,65,68,70,71,72,73,75,78,142,156,158,207,209,210,215],completed_task:59,completedtask:70,complex:[0,4,6,9,14,22,23,25,27,28,32,42],complexarg:14,compliant:[6,14,73],complic:42,compon:[0,4,6,11,24,32,39,62,70,73,142,175,216],compos:[11,13,22],composit:[4,11,32],compound:[17,32],comprehens:39,compress:[0,4,6,11,44,51,56,59,63,65,67,68,69,70,77,204],compression_level:[11,66],compression_metadata_off_heap_memory_us:191,compressioninfo:[4,57,61,63],compressionmetadataoffheapmemoryus:70,compressionratio:70,compressor:[4,6,11,68,204],compris:[4,11,52,66],compromis:[1,43,73],comput:[0,4,6,11,14,28,53,55,211],concaten:[14,52,60],concentr:23,concept:[0,20,27,30,32,65],conceptu:[24,26,27,30,31,32,51],concern:[13,14,25,216],conclus:6,concret:[12,22],concurr:[0,1,6,33,56,63,67,77,117,118,119,142,157,170,171,172,203,215,216],concurrent_compactor:215,concurrent_materialized_view_build:18,concurrent_writ:4,concurrentmarksweep:67,condens:13,condit:[6,10,12,13,20,22,32,34,38,59,65,70,73,77,78,216],conditionnotmet:70,conf:[6,45,46,49,55,63,70,73,78,203,214],confid:0,config:[33,56,63,70,73,78,79,199],configu:[60,216],configur:[0,3,4,11,20,22,27,33,40,44,45,48,49,51,54,55,56,58,59,63,69,70,73,74,76,77,78,88,105,142,160,175,202,203,204,212,214,215],confirm:[6,8,25,26,29,33,39,40],confirm_numb:29,conflict:[0,13,22,38,41],conform:[18,39,63],confus:[10,12,45,216],congratul:36,conjunct:78,connect:[0,6,11,22,23,30,40,50,51,53,57,59,63,70,73,74,77,78,84,88,141,142,203,216],connectednativecli:70,connectednativeclientsbyus:70,connection_stag:59,connectionsperhost:[63,203],connector:[23,45,47,73],connnect:70,consecut:[28,46],consensu:[1,58,68],consequ:[11,13,19,22,67],conserv:[6,68],consid:[0,6,13,22,24,28,32,37,42,46,60,62,65,67,68,71,211],consider:[13,22,23,24,25,27,32,63],consist:[2,3,6,11,12,13,14,29,32,39,56,58,59,61,68,69,70,73,75,79,212,215],consol:[40,46,60,78],constant:[10,11,15,17,22,63],constantli:[0,6,65],constitut:32,constrain:27,constraint:1,construct:[0,12,71,216],constructor:[6,34],consum:[6,44,52,53,56,62,64,70,215],consumpt:64,contact:[0,6,11,45,51,71,212],contain:[0,1,3,6,8,9,10,11,12,13,15,16,18,20,22,24,25,35,40,42,44,53,56,59,61,65,66,68,70,73,76,78,181,201,206,210,212,214,215,216],contend:[6,70],content:[4,6,11,12,13,24,36,51,52,53,57,65,71,78,105,200,216],contentionhistogram:70,context:[4,6,9,20,22,26,40,42,45,73,214],contigu:13,continu:[0,1,6,28,34,44,52,55,56,57,60,65,68,73,74],contrarili:12,contrast:[0,24,27,32,44,73],contribut:[5,33,36,38,44,51],contributor:[36,38,42,49],control:[0,3,6,10,11,13,15,39,46,49,53,65,73,74,78],conveni:[9,12,14,17,44,75],convent:[6,11,14,15,25,36,38,41,42,44,73,74],converg:0,convers:10,convert:[10,13,14,65,216],convict:0,coordin:[0,1,3,6,11,13,14,22,32,45,56,61,68,70,71,158,212,213],coordinator_read:59,coordinator_scan:59,coordinator_writ:59,coordinatorreadlat:[70,212],coordinatorscanlat:70,coordinatorwritelat:[70,212],cop:34,copi:[0,1,3,6,28,35,45,54,55,56,61,63,65,71,79,203,212],copyright:[23,24,25,26,27,28,29,30],core:[6,14,60,67,76,170,215,216],correct:[0,6,10,35,39,49,53,63,65,66,73,142,155,202,208],correctli:[6,11,36,45,52,56,60,65,73],correl:[6,10,74,212,215],correspond:[0,4,6,9,11,13,14,18,22,36,42,44,45,57,58,63,64,68,74,203],corrupt:[6,59,63,65,66,67,72,79,164,196,199],corrupt_frames_recov:59,corrupt_frames_unrecov:59,cost:[6,13,22,66,72],couchbas:[61,63],could:[0,3,6,12,22,24,25,27,28,32,37,39,42,52,53,56,57,59,61,63,65,72,78,214,216],couldn:[49,68,70],count:[4,6,9,13,22,28,45,56,57,59,65,70,75,77,204,214,215,216],counter1:207,counter:[0,4,6,9,14,19,58,59,67,70,77,79,135,142,164,166,167,199],counter_mut:[70,215],counter_read:77,counter_writ:77,countercach:70,countermutationstag:[59,70,215],counterwrit:[77,128,178],countri:[13,22,25,29],country_cod:22,coupl:[0,6,25,27],cours:[13,72,211,216],cover:[11,25,36,39,42,44,45,48,54,65,70,71,204],coverag:[35,37,53],cph:[63,203],cpu:[0,6,11,64,66,69,212,214,215],cpu_idl:216,cq4:[52,53,214],cq4t:[52,53],cqerl:47,cqex:47,cql3:[14,39,44,78],cql:[0,3,6,10,11,12,13,14,16,17,19,20,22,25,27,28,29,30,32,43,44,47,50,51,52,54,59,60,61,63,65,69,73,77,79,175,200,216],cql_type:[11,12,13,14,20,22],cqlc:47,cqldefinit:14,cqlkeyspac:[61,63,72],cqlsh:[45,48,49,51,53,59,61,63,72,73,79],cqlshrc:79,cqltester:[39,44],cqltrace:216,craft:73,crash:67,crc32:[4,57,61,63,209,210],crc:[4,56,57,209,210],crc_check_chanc:[11,63,66],crdt:0,creat:[0,3,4,6,9,10,12,13,15,17,19,23,24,25,26,27,28,29,30,32,33,36,40,41,44,45,52,53,55,57,58,59,63,64,65,66,68,71,72,73,75,77,78,85,203,208,216],create_aggreg:52,create_aggregate_stat:12,create_funct:52,create_function_stat:12,create_index:52,create_index_stat:12,create_keyspac:52,create_keyspace_stat:12,create_materialized_view_stat:12,create_rol:52,create_role_stat:12,create_t:52,create_table_stat:12,create_trigg:52,create_trigger_stat:12,create_typ:52,create_type_stat:[12,22],create_user_stat:12,create_view:52,createkeystor:6,createrepo:43,createt:44,creation:[6,10,11,13,14,18,22,64,214],creator:20,credenti:[6,73],critic:[0,39,42,68,73,212,215],cross:[0,3,6,45,68,74],crossnodedroppedlat:70,crucial:[73,214,215,216],cryptographi:6,csv:[63,78],ctrl:216,cuddli:22,cue:25,culprit:212,cumul:[215,216],curent:204,curl:[38,49],current:[0,1,6,9,11,13,20,22,24,40,42,43,49,53,56,57,59,60,63,65,68,70,75,77,78,79,107,125,129,131,133,142,156,187,195,199,204,205,210,214,215],currentd:[10,14],currentlyblockedtask:70,currenttim:[10,14],currenttimestamp:[10,14],currenttimeuuid:[10,14],custom:[6,9,10,11,14,15,16,20,24,26,27,28,33,42,57,60,63,74,77,78,203],custom_option1:20,custom_option2:20,custom_typ:[14,22],cut:214,cute:22,cvh:39,cycl:[6,55,56,64,71,105],cython:79,d1006625dc9e:[53,72],d132e240:63,d132e240c21711e9bbee19821dcea330:[61,63],d18250c0:200,d85b:200,d936bd20a17c11e8bc92a55ed562cd82:206,d993a390c22911e9b1350d927649052c:61,daemon:[40,142,189,216],dai:[14,17,19,22,28,60,65,72],daili:[33,52,53,60,105],danger:6,dart:48,dart_cassandra_cql:47,dash:12,data:[1,2,3,4,6,10,12,14,15,16,18,26,27,29,39,46,49,51,53,56,57,58,59,62,66,67,68,69,70,71,72,73,74,76,77,78,80,85,98,105,108,112,133,142,147,157,181,196,200,201,202,203,204,205,206,207,208,209,210,211,214,215,216],data_file_directori:[46,67],data_read:20,data_writ:20,databas:[0,1,3,12,13,15,21,24,27,30,31,32,43,51,52,53,58,60,61,65,67,73,213,214,216],datacent:[0,1,3,6,11,53,56,57,59,63,72,74,98,108,121,142,157,174,203,212,215],datacenter1:[6,77],dataset:[2,3,6,72,216],datastax:[6,14,30,47,212],datastor:215,datatyp:14,date:[1,4,9,10,15,17,19,24,25,26,27,28,29,32,60,71,79,164,199,200,204],dateof:[10,14],datestamp:17,datetieredcompactionstrategi:[11,65],datetim:15,datum:3,daylight:22,db532690a63411e8b4ae091830ac5256:209,db_user:73,dba:[63,73],dbd:47,dc1:[6,11,20,58,68,73,215],dc1c1:211,dc2:[6,11,58,68,73,215],dc3:20,dcassandra:[65,70,73,75],dcawareroundrobin:212,dcl:[52,60],dclocal_read_repair_ch:71,dcom:73,dcpar:157,ddl:[11,52,59,60,61,63,78],ddl_statement:12,deactiv:6,dead:[0,6,69,80,142,216],dead_node_ip:75,deal:[56,79,199],deb:49,debian:[43,45,48,216],debug:[46,53,78,207,208,209,210,211,212,213,216],decai:212,decid:[9,36,56,63,65,68,74],decim:[9,14,17,19,22,78],decimalsep:78,decis:0,declar:[11,12,14,22,25],decod:[17,22,56,216],decommiss:[0,6,54,58,75,142],decompress:[66,216],decoupl:[0,57,58],decreas:[6,65,203,216],decrement:[13,22],decrypt:6,dedic:[4,6,24,53,57],dedupl:[139,142],deem:6,deep:[51,213,214],deeper:[42,216],default_time_to_l:[10,11,13,63],defend:45,defens:6,defer:[11,216],defin:[0,3,6,9,10,11,12,13,15,16,17,18,20,21,23,24,25,27,28,31,40,51,63,65,68,70,73,74,75,77,78,85,142,204],defineclass1:55,defineclass:55,definit:[9,13,14,15,18,22,23,24,25,26,27,28,29,30,32,51,54,61,62,63,77,204],deflat:[4,6,68],deflatecompressor:[11,66],degrad:[0,6,24],delai:[1,4,61,70,72],deleg:40,delet:[0,4,6,9,10,11,12,15,17,18,20,22,24,27,42,51,52,53,59,60,61,68,72,78,105,112,142,194,204,209,210,214],delete_stat:[12,13],deletiontim:4,delimit:6,deliv:[0,6,56,68,70],deliveri:[6,56,69,70,142,143,162,173],delta:[70,204],demand:[0,73],demo:54,demonstr:[52,53,55,61,63,72,213],deni:45,denorm:[22,24,25,32],denot:[6,12,25],dens:62,dep:35,departur:0,depend:[0,4,6,11,12,13,14,22,33,36,39,40,41,42,44,51,55,57,65,68,72,79,212],dependenic:35,depict:23,deploi:[35,45,46,216],deploy:[0,6,54,58,68,73,74,76],deprec:[6,10,11,14,15,63,65],depth:216,deriv:[56,63],desc:[9,11,13,32,53,59,78],descend:[11,13],describ:[2,6,7,9,10,11,12,13,14,15,17,20,22,26,27,30,39,40,42,43,53,54,62,73,79,142,199],describeclust:142,descript:[10,11,14,19,22,24,26,29,33,36,42,57,59,63,68,70,71,78],descriptor:[70,210],deseri:[54,211],design:[0,1,3,14,23,24,25,26,28,30,31,51,53,58,65,67,72],desir:[16,22,24,33,45,206],destin:[64,68,78],destroyjavavm:216,detach:43,detail:[5,6,10,11,12,13,14,22,23,24,25,26,33,36,37,45,55,59,61,69,73,76,77,78,79,199,209,214,215,216],detect:[1,2,6,38,45,56,73,211],detector:[0,110,142],determin:[0,6,11,13,20,24,27,28,32,57,61,62,66,71,74,157,212,215,216],determinist:[0,45],detractor:27,dev1:60,dev:[6,8,43,45,216],devcent:30,devel:55,develop:[3,8,30,36,37,40,42,44,55,67],devic:[4,76,216],df303ac7:215,dfb660d92ad8:78,dfp:196,dht:[6,204],diagnost:[6,54,69],diagram:[23,24,26,30,56],diagrammat:24,diamond:23,dictat:[6,73],did:[26,39,70,202],didn:[0,24],die:6,dies:[51,75],diff:[15,34,214],differ:[0,1,6,11,12,13,14,15,20,22,24,25,31,32,33,38,40,42,44,45,46,49,52,53,54,57,58,63,65,66,67,70,71,72,75,77,212,216],difficult:[0,6,44,216],difficulti:22,digest:[4,6,57,61,63,71,209,210],digit:[17,22,45],diminish:22,dinclud:35,dir:55,dir_path:[63,203],direct:[0,6,11,17,20,24,42,70,71,216],directli:[13,18,20,36,40,59,63,65,73,204,216],director:13,directori:[4,6,21,35,36,40,44,45,48,49,50,55,60,63,64,67,68,69,78,133,142,160,203,216],dirti:[4,6,53,216],disabl:[6,11,14,52,53,57,61,65,66,68,73,74,78,91,92,93,94,95,96,97,98,99,108,142,165,167,169,174,177,178,179],disable_stcs_in_l0:65,disableauditlog:[52,60,142],disableautocompact:[65,142],disablebackup:[61,142],disablebinari:142,disablefullquerylog:[53,142,214],disablegossip:142,disablehandoff:[68,142],disablehintsfordc:[68,142],disableoldprotocolvers:[59,142],disablesnapshot:164,disableuditlog:60,disadvantag:0,disagre:71,disallow:[6,54],disambigu:[52,53,61,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],disappear:[11,71],discard:[6,56,58],disconnect:[56,65],discourag:[11,22,42],discov:[45,72],discoveri:[0,63],discret:0,discuss:[8,11,22,24,26,28,42,52,53,55,56,59,61,63,71],disk:[4,6,11,24,27,31,32,46,51,52,53,57,59,60,61,62,64,65,66,69,70,72,105,139,142,155,196,201,205,208,209,214,215,216],disk_spac:59,disk_usag:59,dispar:[6,27],dispatch:56,displai:[11,24,52,53,59,60,63,78,79,81,87,117,132,134,141,142,191,199,203,207,208,209,210,211,216],displaystyl:28,disrupt:[45,73],dissect:216,dist:43,distanc:[23,76],distinct:[0,9,10,13],distinguish:[9,14,57,61],distribut:[1,2,3,6,23,32,35,42,44,45,59,65,70,72,73,75,76,77,204,205,213,214,215,216],distro:43,dive:[51,213,214],diverg:1,divid:[12,25,27],divis:19,djava:[40,45,73],dml:[21,52,59,60],dml_statement:12,dmx4jaddress:70,dmx4jport:70,dns:45,dobar:34,doc:[6,35,36,39,43,72,73,202,216],document:[5,12,14,15,17,24,25,27,29,30,33,39,41,42,50,53,73,77,78],doe:[0,3,6,11,13,14,16,17,18,20,22,27,32,38,39,42,51,53,54,57,58,61,62,63,65,66,68,71,72,73,74,75,139,142,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],doesn:[6,14,22,24,34,44,45,53,56,57,72,77,203,204,206,207,214,216],dofoo:34,doing:[6,13,18,27,44,45,65,70,75,216],dollar:[10,12],domain:[0,23,24,27,37,73,77,163,182],domin:216,don:[0,5,6,13,26,27,28,32,34,37,38,39,40,42,43,45,46,57,58,59,63,65,72,133,157,203,208,213,215,216],done:[6,11,13,22,25,27,33,36,37,42,43,44,46,50,53,56,65,77,205,208,209],dont:[59,60],doubl:[6,9,10,11,12,14,17,19,22,40,59,70,74],doubt:11,down:[0,6,20,23,28,53,57,65,70,72,74,75,96,142,157,205,212,214,215,216],downgrad:209,download:[6,30,33,40,43,49,55,70,76],downsampl:4,downstream:[26,215],downtim:[3,68],downward:20,dozen:215,dpkg:43,drag:11,drain:[4,56,68,142],draw:[0,25],drive:[0,6,65,67,214,215,216],driven:[3,27,31],driver:[6,12,14,20,28,30,44,48,51,59,78,212],driver_nam:59,driver_vers:59,drop:[1,6,10,15,51,52,53,54,56,58,59,60,61,63,65,70,72,73,105,201,204,205,207,212,215,216],drop_aggreg:52,drop_aggregate_stat:12,drop_funct:52,drop_function_stat:12,drop_index:52,drop_index_stat:12,drop_keyspac:52,drop_keyspace_stat:12,drop_materialized_view_stat:12,drop_rol:52,drop_role_stat:12,drop_tabl:52,drop_table_stat:12,drop_trigg:52,drop_trigger_stat:12,drop_typ:52,drop_type_stat:[12,22],drop_user_stat:12,drop_view:52,dropdown:216,droppabl:[6,56,65,204],dropped_mut:191,droppedmessag:69,droppedmut:70,dropwizard:70,drwxr:209,drwxrwxr:[61,63],dry:[79,199],dsl:33,dt_socket:40,dtest:[33,39,41],due:[0,1,11,13,22,35,45,49,56,61,65,68,70,75,212,216],dump:[52,53,60,78,79,199,214],duplic:[25,27,28,32,39,72,210],durabl:[0,2,4,61,64,68],durable_writ:11,durat:[6,10,15,19,20,65,68,70,77,144,192,203],dure:[6,11,14,21,23,35,42,44,45,57,58,59,63,65,66,68,70,71,73,75,77,78,164,201,207,211,214,216],duse:55,dverbos:35,dying:45,dynam:[6,23,68,69,71,73],dynamic_snitch:74,dynamic_snitch_badness_threshold:74,dynamic_snitch_reset_interval_in_m:74,dynamic_snitch_update_interval_in_m:74,dynamo:[2,3,51],e123fa8fc287:[53,72],each:[0,1,3,4,6,10,11,12,13,14,17,18,20,22,23,24,25,26,27,28,29,32,33,36,38,42,50,51,52,53,55,56,57,58,59,60,61,63,65,66,67,68,70,72,73,74,75,76,77,78,79,142,167,183,196,199,200,214,215,216],each_quorum:[0,6,54],eagerli:56,earli:[6,12,42],earlier:[42,52,55,71],eas:216,easi:[3,9,23,36,42,53,216],easier:[0,36,42,52,200],easiest:45,easili:[0,23,27,73],east:[53,72],eben:[23,24,25,26,27,28,29,30],ec2:[6,52,53,55,59,61,63,67,72,74],ec2multiregionsnitch:[6,74],ec2snitch:[6,74],ecc:67,echo:[49,55,204],eclips:[34,41,44],ecosystem:39,eden:216,edg:39,edit:[3,36,40,43,46,49,70,73,210],editor:36,effect:[0,3,6,11,22,25,27,42,45,53,56,58,62,66,73,96,142,212,215,216],effectiv:70,effici:[6,11,32,52,60,63,65,74,75],effort:[0,6,36,42,68,72],eight:0,either:[0,4,6,8,12,13,14,16,22,27,28,33,34,36,38,40,42,45,49,50,55,56,61,64,65,68,70,73,77,194,212,214,215,216],elaps:[65,70,216],elasticsearch:76,elder:40,element:[0,22,24,25,29,36,53,78],elig:6,elimin:[28,212],elixir:48,els:[11,13,34,42],elsewher:56,email:[8,16,22,29,43,51],embed:44,emerg:[3,35],emit:6,emploi:62,empti:[6,9,10,11,12,63,78,207],emptytyp:9,enabl:[0,6,11,14,17,20,44,45,54,55,59,61,65,66,68,74,75,78,101,102,103,105,108,109,142,179,203,204,214,216],enable_legacy_ssl_storage_port:6,enable_transient_repl:[58,59],enable_user_defined_funct:14,enableauditlog:[52,60,142],enableautocompact:[65,142],enablebackup:[61,142],enablebinari:142,enablefullquerylog:[6,53,142,214],enablegossip:142,enablehandoff:[68,142],enablehintsfordc:[68,142],enableoldprotocolvers:[59,142],encapsul:[34,70],enclos:[9,10,12,14,20,27,77],enclosur:12,encod:[15,22,39,56,60,78,204],encodingstat:204,encount:[0,5,13,43,49,56,70,77],encourag:[11,64],encrypt:[6,55,57,59,63,69,203],end:[22,24,27,33,45,52,53,60,65,71,73,78,85,120,142,157,205,210,216],end_dat:29,end_resultset:53,end_token:[85,157],end_token_1:147,end_token_2:147,end_token_n:147,endpoint:[0,6,56,58,68,70,71,74,80,120,142,157,194],endpoint_snitch:74,endpointsnitchinfo:73,endtoken:78,enforc:[17,27,56,73],engin:[0,2,3,11,28,42,51,70,76],enhac:37,enhanc:[37,56,67],enjoi:43,enough:[0,6,22,23,26,28,45,46,52,53,65,71,72,74,78,214,216],enqueu:[6,56,214],ensur:[1,13,18,21,28,45,53,56,58,64,66,68,71,73,202,214,215],entail:45,enter:[0,24,26,33,45,78,214,216],entir:[0,4,6,11,14,22,27,45,53,56,57,58,62,63,65,68,72,73,75,78,79,199,201,212,216],entiti:[23,24,25,26,27,32],entri:[4,6,9,13,16,33,42,43,51,52,53,70,73,78,204],entropi:[0,6,68],entry_count:59,entry_titl:13,enumer:[20,200],env:[45,46,55,70,73],environ:[0,1,5,6,30,35,40,41,44,45,48,51,55,63,67,206],envis:24,ephemer:67,epoch:[22,53,204],epol:6,equal:[0,6,10,11,13,22,24,28,34,65,77],equival:[10,11,12,13,14,20,38,65,213],eras:[11,56],erlang:48,erlcass:47,err:78,errfil:78,error:[1,6,11,12,14,16,18,20,22,24,30,33,34,39,40,43,44,49,51,52,55,59,60,72,77,78,158,202,207,211,213,214,215],error_byt:59,error_count:59,escap:[12,17,77],especi:[0,24,25,42,45,65,78,216],essenc:24,essenti:[14,45,55,61,78],establish:[6,20,56,63,74,203],estim:[4,28,57,70,72,204,215],estimatedcolumncounthistogram:70,estimatedpartitioncount:70,estimatedpartitionsizehistogram:70,etc:[6,18,22,34,39,45,46,49,53,57,60,65,70,73,77,203,216],eth0:6,eth1:6,ev1:22,evalu:[6,19,29,31,51],even:[0,1,6,10,11,12,13,14,17,22,24,25,26,27,29,32,37,42,51,53,56,57,58,59,61,65,68,71,72,73,78,88,164,195,212,214,215,216],evenli:[0,6,32],evenlog:[202,205],event:[1,3,4,6,13,22,54,56,60,65,69,77,78,157,200],event_typ:13,eventlog:[200,202,205,208,210,211],eventlog_dump_2018jul26:200,eventlog_dump_2018jul26_d:200,eventlog_dump_2018jul26_excludekei:200,eventlog_dump_2018jul26_justkei:200,eventlog_dump_2018jul26_justlin:200,eventlog_dump_2018jul26_singlekei:200,eventlog_dump_2018jul26_tim:200,eventlog_dump_2018jul26b:200,eventu:[0,2,3,4,13,36,56,68,72],ever:[34,44,45,67],everi:[0,1,4,6,11,13,14,18,20,21,22,24,28,50,52,55,56,57,58,60,62,63,65,67,72,77,78,212,215,216],everyon:[23,71],everyth:[4,12,34,40,45,76],evict:70,evil:[6,14],ex1:77,ex2:77,exact:[11,12,14,66,68,213],exactli:[11,14,18,53,73,200,216],examin:[25,28],exampl:[0,3,6,11,13,14,17,20,22,23,24,25,26,27,28,31,37,43,44,49,50,52,53,55,58,59,60,63,65,68,69,73,74,77,78,200,201,202,203,204,205,206,207,208,210,211,212,213,214,215,216],example2:77,exaust:6,excalibur:11,exce:[4,6,11,17,34,56,214],exceed:[6,56,67,205],excel:[11,28],excelsior:11,except:[0,6,13,14,17,39,41,42,44,45,53,55,56,60,63,70,200,205,214,216],excess:62,exchang:[0,6,45,57],exclud:[0,11,52,60,70,79,101,125,142,199],excluded_categori:[52,60,101],excluded_keyspac:[52,60,101],excluded_us:[52,60,101],exclus:[22,35,44,157],execut:[6,9,11,12,13,14,20,30,33,35,40,44,50,53,60,65,70,73,78,199,200,201,202,203,204,205,206,207,208,209,210,211,215,216],executor:33,exhaust:[6,55,212],exhibit:13,exist:[0,1,6,9,10,11,12,13,14,16,17,18,20,21,22,27,28,36,37,39,40,43,44,51,52,53,59,60,62,63,65,66,71,74,75,77,201],exit:[53,79,210],exp:77,expand:[11,79],expans:[11,57,58],expect:[0,1,4,6,10,12,22,27,32,34,39,42,43,56,63,65,68,69,72,73,205,215],expens:[6,53,62,74],experi:[6,24,56,65,215],experienc:[0,6,214],experiment:[0,3,25,32,55,58,157],expert:58,expir:[6,10,11,13,22,56,59,68,69,72,73,164,201,204,207],expired_byt:59,expired_count:59,expiri:65,explain:[26,34,36,39,42,49],explan:[79,199],explicit:[0,10,11,20,29,56],explicitli:[3,4,6,10,11,13,17,22,34,52,59,61,65,74,77],explor:[24,40],expon:10,exponenti:[70,77,212],expos:[6,9,56,59,71,73],express:[0,6,10,12,19,74],expung:45,extend:[22,42,44,56,63,76,79,133,196,199],extens:[6,11,24,63,73],extent:1,extern:[27,51,52,69,70,75,76,213],extra:[0,4,6,56,65],extract:[34,49],extrem:[6,13,24,77],f6845640a6cb11e8b6836d2c86545d91:204,f8a4fa30aa2a11e8af27091830ac5256:203,facebook:3,facilit:6,fact:[22,37,44,45,212],factor:[0,6,11,23,28,51,57,58,63,66,68,72,73],factori:77,fail:[0,1,6,11,13,14,22,28,33,35,51,52,53,55,56,57,65,68,70,71,78,142,158],failur:[1,2,6,42,51,57,58,61,65,67,68,70,74,110,142,196,212],failuredetector:142,fairli:[6,24,64,73,216],fake:14,fall:[0,6,24,52,53,60],fallback:[6,74],fals:[6,11,12,17,20,22,53,59,60,61,62,63,64,65,66,70,72,73,75,78,164],famili:[6,61,67,126,144,181,192,209],familiar:23,fanout_s:65,faq:79,far:[36,37,53],fare:216,fashion:0,fast:[0,6,24,28,32,62,65,76,214,216],faster:[0,6,32,42,57,58,66,67,142,167,215],fastest:[6,38,71,74],fatal:6,fault:[1,45,68],fav:[16,22],favor:55,favorit:216,fax:22,fct:14,fct_using_udt:14,fd576da0:72,fd8e5c20:72,fear:45,feasibl:22,featur:[0,2,25,27,29,30,37,39,40,42,51,52,53,55,56,57,58,73],fed:6,feed:53,feedback:42,feel:[36,38],felt:[26,28],fetch:[6,11,36,78],few:[0,6,25,61,65,67,212,214],fewer:[6,32,42,68],fffffffff:[17,22],fgc:216,fgct:216,field:[10,13,14,17,22,32,34,53,56,60,62,77,207],field_definit:22,field_nam:13,fifteen:70,fifteenminutecachehitr:70,fifth:215,figur:[0,1,24,25,26,27,28,32,37,61,65,71,201],file:[3,4,7,11,27,28,36,40,41,42,43,44,45,46,48,51,52,53,55,56,57,59,61,62,63,64,65,67,68,70,73,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,204,205,206,207,209,210,212,213,216],fileauditlogg:52,filenam:[4,11,78,126,142,204,208],filenamepattern:60,filesystem:[33,52,53,68,73],fill:[43,56,61,64,65],fillion:13,filter:[0,4,9,11,18,51,57,58,59,61,63,67,69,70,157,204,209,210],finalfunc:[9,14],finalis:43,find:[0,4,6,24,25,26,27,29,33,36,40,43,44,49,51,59,62,65,68,71,73,75,120,124,200,204,206,209,213,215,216],fine:[4,6,42,72,73],finer:[4,6],finish:[28,29,40,42,53,55,72,142,159,214],finish_releas:43,fip:[6,73],fire:[21,37],firefox:78,firewal:[6,45,46,74],first:[0,1,4,5,6,11,13,14,22,23,24,25,26,28,32,42,43,45,48,55,58,61,65,67,71,72,73,77,78,157,164,200,204,207,210,212,214,215,216],first_nam:29,firstnam:13,fit:[6,28,65,70],five:70,fiveminutecachehitr:70,fix:[6,10,11,12,18,27,33,36,38,41,43,45,56,65,67,71,72,77,207],fixm:43,flag:[6,13,38,39,42,56,64,70,72,75,202],flash:76,flat:68,flexibl:[0,3,11,53,54,73],flight:[6,56,73],flip:11,floor:6,flow:[6,20,26,39,41,60],fluent:47,flush:[4,6,11,56,61,63,64,65,67,68,70,100,142,181,210,214],fname:14,focu:[23,26,33,42],focus:77,focuss:216,folder:[40,63,188,208],follow:[0,1,3,4,5,6,8,9,10,11,12,13,14,17,18,19,20,22,26,28,32,33,34,35,36,37,38,39,40,42,43,44,45,46,49,51,52,53,55,56,57,58,59,60,61,63,64,65,66,68,70,71,72,73,74,75,78,82,85,92,102,111,112,148,157,164,178,183,195,196,201,206,207,210,212,216],font:12,foo:[11,12,64,216],footprint:[3,53,142,144],forc:[4,6,11,13,57,72,78,85,88,142,156,157,158,211],forcefulli:[80,142],foreground:[46,49,71],foreign:[3,27,32],forev:[56,65],forget:5,fork:[36,42],form:[0,6,10,11,12,14,20,24,27,57,63,87,141,191],formal:[0,12,36,43],format:[4,6,10,11,17,22,25,28,36,38,39,41,42,52,53,56,60,63,70,78,79,86,105,126,147,191,193,199,210,215],former:[6,70],formerli:58,formula:28,fortabl:63,forward:[6,11,35,71],found:[0,1,5,6,12,14,23,33,36,37,42,44,46,50,61,63,71,73,75,77,78,79,188,196,199,203,204,209,210],four:[0,13,28,56,59,66],fourth:[28,215],fqcn:44,fql:[54,214],fql_log:214,fqltool:[3,53,55,214],fraction:[0,6],frame:[6,59],framework:[39,44],franc:[13,22],free:[0,6,11,22,30,36,38,40,56,70,76,211,216],freed:4,freestyl:33,frequenc:[6,11,32,64,72],frequent:[6,11,24,25,27,51,55,65,73,212,216],fresh:75,fri:53,friendli:[6,11,22,44],from:[0,1,3,4,6,9,11,12,13,14,15,17,18,19,20,22,23,24,25,26,27,28,29,30,32,37,38,41,42,44,48,50,51,52,53,54,55,57,58,60,62,64,65,66,67,68,69,70,71,72,73,74,75,77,79,80,82,83,85,90,92,98,101,102,108,111,112,115,117,120,124,126,128,132,133,140,142,144,147,148,149,151,152,155,156,157,158,160,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,199,201,202,204,205,207,210,212,214,215,216],fromjson:15,front:[24,53],froom:22,frozen:[9,10,11,13,14,22,29],fruit:[22,42],fsync:[4,6,64,68,70,215],fulfil:77,full:[0,1,3,6,9,11,13,16,20,26,42,45,49,50,51,54,63,65,66,68,69,71,73,76,77,78,95,105,142,148,157,160,203,205,210,215],full_nam:191,full_query_log_dir:53,full_query_logging_opt:53,fulli:[0,1,6,11,12,14,32,43,58,63,69,70,73],function_cal:12,function_nam:[13,14,20],fundament:17,further:[5,11,18,22,32,56,65,69,73,76,215],furthermor:[0,10,13,73],futher:60,futur:[6,9,10,11,22,42,56,58,68,107,142,187],g1gc:67,gain:30,galleri:23,game:[14,22],garbag:[11,57,67,69,70,112,214],garbage_collect:188,garbagecollect:142,gather:65,gaug:70,gaurante:0,gaussian:77,gc_grace_second:[11,63,204],gc_type:70,gce:[45,67],gcg:6,gcinspector:214,gcstat:142,gct:216,gcutil:216,gcviewer:214,gear:24,gen:216,gener:[0,2,4,6,8,11,12,13,14,17,22,30,32,33,36,39,40,41,42,43,45,53,56,59,67,68,73,76,77,78,128,164,178,207,213,214,215,216],genuin:34,geoloc:23,geospati:76,get:[0,4,6,8,24,25,27,28,32,33,35,36,38,40,41,42,45,49,51,52,53,55,59,61,62,63,65,68,70,71,72,79,117,118,119,122,125,142,199,201,205,213,215,216],getbatchlogreplaythrottl:142,getcompactionthreshold:142,getcompactionthroughput:142,getconcurr:142,getconcurrentcompactor:142,getconcurrentviewbuild:[18,142],getendpoint:142,getint:14,getinterdcstreamthroughput:142,getlocalhost:[6,45],getlogginglevel:[142,214],getlong:14,getmaxhintwindow:[68,142],getpartition:34,getreplica:142,getse:142,getsstabl:142,getstr:14,getstreamthroughput:142,gettempsstablepath:34,getter:[20,34],gettimeout:142,gettraceprob:142,getudtyp:63,gib:[52,53,68,87,141,191,215],gigabyt:68,gist:[4,34],git1:43,git:[5,33,36,38,40,42,43,55,214,216],gitbox:[40,43],github:[33,34,38,41,42,43,44,55,76,216],give:[0,18,20,22,28,36,42,44,51,78,202,214,215],giveawai:216,given:[0,6,11,12,13,14,16,22,24,26,27,28,29,32,33,42,52,56,57,58,61,62,63,65,71,72,73,75,77,78,83,85,90,92,102,115,124,128,142,148,168,175,179,183,190,200,202,204,205,206,209,210],glanc:216,global:[0,3,6,25,33,55,56,78,142,166],gms:214,gmt:22,goal:[6,27,28,31,53,65,212],gocassa:47,gocql:47,goe:[11,27],going:[6,25,28,42,65,207,213,215,216],gone:[6,11],good:[6,28,34,36,42,44,45,53,56,72,78,206,212,214,215,216],googl:[3,34,78,216],gori:45,gossip:[1,6,45,55,56,68,70,74,96,106,130,142,186,214],gossipinfo:142,gossipingpropertyfilesnitch:[6,74],gossipstag:[59,70,214,215],got:6,gotcha:216,gp2:67,gpg:49,grace:[69,72,79,199],gracefulli:56,grafana:212,grai:22,grain:[27,73],grammar:[11,12,35],grant:[6,9,52,73],grant_permission_stat:12,grant_role_stat:12,granular:[4,6,11,71,112],graph:[20,79],graphit:212,gravesit:11,great:[26,37,42,65,213,214,215,216],greater:[0,6,22,45,74,171,172,214,216],greatest:59,greatli:[6,57],green:[22,40],grep:[4,202,204,206,214,215,216],groovi:33,group:[6,10,11,20,24,28,32,56,58,65,70,73,74,212],group_by_claus:13,grow:[22,24,76],growth:[0,3],guarante:[0,2,6,11,13,14,22,24,42,51,56,57,62,65,68,71,72,75,76,78,201],guard:57,guest:[23,24,25,26,27,29],guest_id:[25,29],guest_last_nam:29,gui:216,guid:[6,23,24,25,26,27,28,29,30,36,40],guidelin:[10,32,39,43,67],habit:43,hackolad:30,had:[0,3,6,9,10,24,56,63,65,71,207,213,215],half:[4,6,38,45,68],hand:[3,6,13,67,215],handi:[28,216],handl:[0,1,6,14,39,41,42,45,53,56,58,64,67,70,73,77,105,214],handler:56,handoff:[0,6,69,70,97,131,142,173],handoffwindow:[68,142],hang:42,happen:[0,6,13,34,38,42,51,65,68,70,74,212,214,215,216],happi:42,happili:67,hard:[3,6,14,27,28,61,64,65,67,209,214],harder:6,hardest:37,hardwar:[2,3,6,33,51,57,68,69,212],has:[0,1,3,4,6,10,11,12,13,14,18,20,22,25,27,28,30,32,34,42,43,45,53,55,56,57,58,59,60,61,63,64,65,67,68,70,71,73,74,75,77,78,79,199,203,212,214,215,216],hash:[2,4,6,32,59,65,68,71,72,211,216],hashcod:34,hashtabl:23,haskel:48,hasn:[0,53,58,105],have:[0,3,5,6,9,10,11,12,13,14,15,18,19,20,22,24,25,26,27,28,29,32,33,34,36,37,38,39,40,42,43,44,45,46,49,52,53,56,57,58,59,60,61,62,63,65,66,67,68,70,72,73,74,105,164,201,203,205,207,210,211,212,213,214,215,216],haven:42,hayt:47,hdd:[4,6,67],head:[36,42,56,216],header:[40,56,78],headroom:6,health:216,healthi:216,heap:[4,6,40,46,51,53,55,62,63,66,67,70,214,215,216],heap_buff:6,hear:27,heartbeat:[0,6,214],heavi:[0,6,214,215,216],heavili:67,held:[6,67,142,146],help:[0,5,6,10,24,25,26,28,30,35,37,42,44,50,52,53,60,61,63,68,77,79,81,142,180,203,207,208,209,210,211,212,213,214,215,216],helper:44,henc:[5,6,11,22],here:[6,23,24,26,27,28,29,35,36,38,43,44,45,47,65,70,73,77,215],hewitt:[23,24,25,26,27,28,29,30],hex:[12,17,126],hexadecim:[10,12,126],hibern:75,hidden:[75,216],hide:[34,39,59,79,199],hierarch:[0,20],hierarchi:[20,72],high:[0,2,6,11,32,36,43,45,65,67,68,76,212,214,215],higher:[0,19,20,42,62,65,70,71,75,144,192,214,216],highest:[65,204,205],highli:[1,3,42,45,67,73,214,215],highlight:[27,30],hint:[0,6,11,12,18,45,46,51,54,58,59,69,70,72,97,98,107,108,123,131,142,143,162,173,176,187,194,215],hint_delai:70,hinted_handoff_disabled_datacent:68,hinted_handoff_en:[59,68],hinted_handoff_throttl:68,hinted_handoff_throttle_in_kb:68,hintedhandoff:[6,69],hintedhandoffmanag:70,hints_compress:68,hints_creat:70,hints_directori:[46,59,68],hints_flush_period_in_m:68,hints_not_stor:70,hintsdispatch:[59,70,215],hintsfail:70,hintsservic:69,hintssucceed:70,hintstimedout:70,histogram:[4,65,68,70,142,145,190,204,214],histor:[11,27,42],histori:[27,33,34,60,84,86,142],hit:[6,65,70,216],hit_count:59,hit_ratio:59,hitrat:70,hoc:44,hold:[0,6,10,13,20,45,57,65,68,78,212,214,216],home:[0,22,55,59,77,78],honor:[6,40],hope:65,hopefulli:42,horizont:[0,55],hospit:25,host:[0,6,11,36,46,51,52,53,57,60,61,63,70,71,72,74,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,203,215,216],hostnam:[6,45,52,53,55,59,61,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,216],hot:[6,69,70,216],hotel:[23,26,27,28,29,31],hotel_id:[24,25,28,29],hotels_by_poi:[24,25,29],hotspot:[0,11],hotspotdiagnost:73,hottest:6,hour:[6,22,42,43,52,65,68],hourli:[52,53,60,105],how:[0,3,5,6,7,8,11,12,22,23,24,25,26,27,28,33,37,39,40,41,42,44,48,50,51,52,53,54,58,61,63,64,65,66,68,70,71,74,76,77,78,105,202,214,215,216],howev:[0,4,6,9,10,11,12,13,15,17,18,20,22,24,26,27,28,33,42,44,45,46,49,59,62,63,66,67,68,72,73,75,78],hoytech:216,html:[6,77,202],http:[6,33,34,36,38,40,43,49,55,70,200,201,202,203,204,205,206,207,208,210,211,216],httpadaptor:70,hub:45,hudson:33,huge:56,huge_daili:60,human:[11,52,60,64,87,141,191,215],hundr:28,hurt:11,hybrid:11,hypothet:38,iauthent:6,iauthor:6,ibm:76,icompressor:66,id1:32,id2:32,idct:[63,203],ide:40,idea:[6,14,28,30,36,41,42,44,45,53,65,78,215,216],ideal:[6,44,65,70,73],idealclwritelat:70,idempot:[13,22,68],idemptot:22,ident:[0,58,77],identifi:[0,3,6,9,10,11,13,14,15,16,20,21,22,23,24,25,26,28,30,32,59,68,77,212],idiomat:8,idl:6,idx:64,ieee:[17,22],iendpointsnitch:[6,74],iftop:216,ignor:[0,6,10,14,22,34,59,63,78,191,203],iinternodeauthent:6,illeg:14,illegalargumentexcept:205,illustr:[1,20,32,61,71,205],imag:[22,36,216],imagin:65,imbal:0,immedi:[4,6,11,22,24,42,56,58,62,66,73,82,142],immut:[4,45,61,66,67],impact:[6,11,39,52,53,56,65,69,73,214,216],imper:[0,3],implement:[0,1,3,4,6,10,13,14,18,20,28,29,32,33,34,44,45,52,53,56,58,59,60,64,66,68,73,74,76],implementor:6,impli:[0,1,11,12,22,32,52,57,58,71],implic:[0,73],implicitli:[14,20],import_:78,importantli:53,impos:[6,56],imposs:65,improv:[0,3,6,11,22,32,37,42,44,51,54,62,65,67,69,74,75,78,216],inaccur:216,inact:45,inam:206,inboundconnectioniniti:55,inboundmessagehandl:56,inc:[23,24,25,26,27,28,29,30],incast:216,includ:[0,3,4,6,10,11,12,13,18,20,22,23,24,25,26,27,28,30,32,33,34,35,36,42,43,52,53,55,56,57,58,59,60,61,63,65,67,68,70,71,73,76,78,79,101,158,195,199,206,212,213,214,215,216],included_categori:[52,60,101],included_keyspac:[52,60,101],included_us:[52,60,101],inclus:[42,157],incom:[6,56,60],incomingbyt:70,incompat:[6,10,56,59],incomplet:[39,210],inconsist:[45,68,71,72],incorrect:45,increas:[0,3,4,6,11,18,45,57,58,62,65,66,67,68,70,72,74,75,157,203,211,212],increment:[2,3,6,10,13,22,42,43,56,58,65,68,69,70,93,103,142,158,164,184,207,210],incremental_backup:[59,61],incur:[13,22,55,58,70],inde:0,indefinit:[52,60],indent:34,independ:[0,11,65,67,73,215],index:[2,4,6,9,10,11,12,13,15,22,25,32,51,53,57,58,59,61,63,64,65,69,78,142,148,203,209,210,214],index_build:188,index_identifi:16,index_nam:16,index_summari:188,index_summary_off_heap_memory_us:191,indexclass:16,indexedentrys:70,indexinfocount:70,indexinfoget:70,indexnam:148,indexsummaryoffheapmemoryus:70,indic:[0,3,5,6,12,13,24,26,34,42,45,55,60,63,64,72,157,204,205,212,214,215,216],indirectli:13,indirectori:63,individu:[0,6,10,14,22,24,28,42,44,56,57,67,73,203,211],induc:13,industri:25,inequ:[10,13],inet:[9,11,14,17,22,59],inetaddress:[6,45],inetaddressandport:52,inetworkauthor:6,inexpens:67,inf:55,infin:[9,10,12],influenc:11,info:[6,46,55,60,70,90,142,200,214],inform:[0,4,6,12,13,22,24,25,26,27,29,50,53,56,57,59,63,68,70,71,72,73,74,75,77,78,81,84,110,130,132,133,134,141,142,163,180,182,202,203,204,212,213],infrastructur:[42,76],ing:11,ingest:[6,68],ingestr:78,inher:[1,11,22],inherit:20,init:70,initcond:[9,14],initi:[3,6,14,18,34,39,41,43,56,58,59,60,63,70,71,73,75,78,142,175,203],initial_token:[59,75],inject:60,innov:76,input:[0,9,10,14,17,22,39,57,63,78,206,214],inputd:22,inreleas:49,insecur:6,insensit:[11,12],insert:[0,6,9,10,11,12,14,15,16,20,22,45,48,51,53,60,61,63,67,72,73,77,78,210],insert_stat:[12,13],insertedtimestamp:200,insertstmt:63,insid:[6,11,12,13,22,34,77,78],insight:[24,30,214,215],inspect:[0,6,40,77,78,211],instabl:6,instal:[6,21,33,35,44,45,48,51,55,63,73,78,209,216],instanc:[0,10,11,12,13,14,16,18,19,20,21,22,24,33,40,44,45,56,64,65,67,70],instantan:70,instanti:10,instantli:[6,56],instead:[0,4,10,11,13,18,22,24,27,28,30,34,36,43,45,52,59,60,63,65,163,182,200,216],instrospect:213,instruct:[0,6,8,11,36,37,38,40,51,68,216],instrument:[35,73],insuffic:212,insuffici:216,insufici:214,int16:53,int32:53,intact:56,intasblob:13,integ:[0,10,11,12,13,17,22,28,56,64,70,207],integr:[3,30,32,41,44,51,56,76],intellig:0,intellij:[30,34,41],intend:[11,27,32,39,58,73,203],intens:[6,44,45],intent:[0,39,57],intention:20,inter:[6,56,57,63,121,142,174,203],inter_dc_stream_throughput_outbound_megabits_per_sec:57,interact:[3,30,44,50,78,216],interest:[0,23,24,26,27,53,65,73,215],interfac:[3,6,10,14,26,34,36,45,46,53,59,66,73,76,216],interleav:77,intern:[6,9,11,13,18,22,36,39,45,55,59,67,68,70,79,199,212,216],internaldroppedlat:70,internalresponsestag:[59,70,215],internet:6,internod:[0,6,45,51,54,57,63,73,203,212,216],internode_application_receive_queue_capacity_in_byt:56,internode_application_receive_queue_reserve_endpoint_capacity_in_byt:56,internode_application_receive_queue_reserve_global_capacity_in_byt:56,internode_application_send_queue_capacity_in_byt:56,internode_application_send_queue_reserve_endpoint_capacity_in_byt:56,internode_application_send_queue_reserve_global_capacity_in_byt:56,internode_application_timeout_in_m:[6,56],internode_encrypt:[6,73],internode_inbound:[56,59],internode_outbound:[56,59],internode_tcp_connect_timeout_in_m:6,internode_tcp_user_timeout_in_m:6,internodeconnect:[128,178],internodeus:[128,178],interpret:[6,10,22,30,78],interrupt:[45,53],intersect:0,interv:[4,6,9,24,70,73,77,204],intra:[6,56,70,74,77],intrins:22,introduc:[0,1,6,10,17,24,28,37,53,56,58,60,68,75,210],introduct:[10,20,31,44,51],introspect:216,intrus:202,inttyp:63,intvalu:14,invalid:[0,6,13,20,39,56,63,73,133,135,136,137,142,205,211,215],invalidatecountercach:142,invalidatekeycach:142,invalidaterowcach:142,inventori:28,invert:77,invertedindex:21,investig:[6,41,213,214,215,216],invoc:[14,53],invoic:27,invok:[14,38,49,53,57,63,73,196],involv:[0,1,6,13,23,24,28,32,36,56,57,65,66,71,72,73,210,214,216],ioerror:34,ios:216,ip1:6,ip2:6,ip3:6,ip_address:80,ipaddressandport:56,ipartition:63,ipv4:[6,17,22,45,56],ipv6:[6,17,22,56],irolemanag:6,irrevers:[11,22],irrevoc:56,is_avail:[28,29],isn:[0,18,34,42,45],iso8601:[60,200],iso:22,isol:[1,6,11,13,56,70,212,213,215],issu:[0,6,20,28,33,35,36,37,38,42,43,44,45,53,54,56,62,65,66,157,200,201,202,203,204,205,206,207,208,210,211,212,214,215,216],item:[12,22,23,24,25,33,39,40,53],iter:[0,6,25,57,205],its:[0,1,4,6,11,12,13,14,22,24,26,40,45,52,53,55,56,57,60,61,63,65,68,70,73,74,75,76,77,201,205],itself:[6,11,16,27,45,49,52,56,68,75,215],iv_length:6,jaa:73,jacki:38,jamm:40,januari:22,jar:[14,34,35,40,44,55,70],java7:73,java8_hom:40,java:[3,6,14,21,22,34,40,42,48,49,51,53,54,64,65,67,70,73,142,180,205,213,214,216],java_hom:[55,216],javaag:40,javac:55,javadoc:[33,34,39],javas:6,javascript:[6,14],javax:73,jbod:67,jce8:6,jce:6,jcek:6,jconsol:[51,65,73],jdbc:30,jdk11:55,jdk:[6,33,55],jdwp:40,jeff:[23,24,25,26,27,28,29,30],jenkin:[35,41,51],jetbrain:40,jira:[5,6,35,37,39,41,42,44,64,200,201,202,203,204,205,206,207,208,210,211],jks:77,jkskeyprovid:6,jmap:216,jmc:[65,73],jmx:[6,18,20,51,52,53,56,59,61,63,69,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],jmx_password:73,jmx_user:73,jmxremot:73,jni:55,job:[42,72,82,112,155,157,164,195],job_thread:157,john:[13,22],join:[3,6,8,13,32,51,53,55,65,72,73,75,142,214,215],joss:13,journal:[61,63],jpg:22,jre:55,jre_hom:55,jsmith:22,json:[9,10,13,15,51,63,65,66,86,191,193,200],json_claus:13,jsonz:61,jsr:[6,14],jsse:6,jsserefguid:6,jstackjunit:44,jstackjunittask:44,judgement:34,jul:[55,216],jump:55,junit:[33,34,35,40,44],junittask:44,jurisdict:6,just:[0,6,14,20,24,25,27,37,40,42,44,45,52,56,59,64,65,72,73,77,212,216],jvm:[6,21,40,45,46,55,65,69,73,75,213,214],jvm_extra_opt:40,jvm_opt:[46,73],jvmstabilityinspector:39,k_i:28,kashlev:30,kbp:68,keep:[0,6,8,11,25,27,28,32,34,37,42,45,56,57,60,63,65,70,71,79,133,199,210,212,215,216],keepal:[6,45],kei:[0,3,4,6,9,10,11,13,14,17,22,24,25,26,27,28,29,30,32,44,45,49,53,56,57,59,61,63,64,65,66,67,68,70,71,72,73,76,77,79,82,120,124,126,136,142,146,166,167,191,199,204],kept:[1,4,6,32,63,65,70,210],kernel:[6,45,64,216],key_alia:6,key_password:6,key_provid:6,keycach:70,keycachehitr:70,keyserv:[43,49],keyspac:[0,3,6,9,10,12,14,15,16,20,22,25,28,29,51,53,54,58,60,62,65,66,68,69,72,73,75,77,78,79,82,83,85,90,92,101,102,111,112,115,120,124,126,133,142,144,146,147,148,149,155,157,163,164,168,181,182,183,190,191,192,195,196,198,199,200,201,202,203,206,207,208,209,210,211,214,215],keyspace1:[20,59,63,201,203,204,205,206,207,209,214],keyspace_definit:77,keyspace_nam:[11,14,20,22,53,59,63,65,72,214],keystor:[6,63,73,203],keystore_password:6,keystorepassword:73,keytyp:204,keyvalu:59,keyword:[10,11,13,14,15,16,17,22],kib:[53,61,68,72,87,141,191,215],kick:[142,159],kill:[6,49],kilobyt:66,kind:[0,3,11,12,22,33,42,56,59,61,64,65,71,212,215],kitten:22,knife:[142,180],know:[0,4,6,11,13,22,24,34,37,43,57,59,65,206,214,215,216],knowledg:37,known:[0,20,22,24,27,28,32,47,50,58,62,65],krumma:44,ks_owner:73,ks_user:73,kspw:[63,203],ktlist:[61,181],kundera:47,label:[22,33],lack:[70,214,215],lag:70,laid:27,land:66,landlin:22,lang:[51,55,70,73,205,216],languag:[3,6,9,10,12,14,21,22,32,36,47,50,51,78],larg:[0,1,3,6,11,13,14,22,31,33,44,51,56,58,63,65,67,70,73,76,78,200,206,208,212,214,215,216],large_daili:60,larger:[0,6,44,45,53,65,66,67],largest:[6,70],last:[0,6,12,13,14,15,19,36,53,55,65,70,80,142,204,205,206,212,214,216],last_nam:29,lastli:[13,22],lastnam:13,latenc:[0,1,3,6,11,32,45,52,53,58,59,70,74,76,77,213,214],latent:[0,212,216],later:[0,11,22,26,28,34,36,42,45,68],latest:[0,6,32,33,43,49,65,71,78,196,202,214],latest_ev:77,latter:[12,27],launch:0,law:27,layer:67,layout:[0,11,36],lazi:11,lazili:11,lead:[0,6,10,11,22,24,65,214,216],leak:53,learn:[6,23,24,26,44,45,78],least:[0,4,6,11,12,13,18,36,45,58,63,65,67,72],leav:[0,6,12,13,24,34,44,45,53,56,72,78,212,214,215],left:[6,17,19,65,210],legaci:[4,6,20,77],legal:10,len:56,length:[4,6,10,11,17,22,39,56,57,65],lengthier:42,less:[0,4,6,22,35,42,45,56,57,62,67,208,211,214,215,216],let:[6,23,24,25,26,27,28,37,43,65],letter:17,level:[1,4,6,10,11,13,19,20,34,39,46,57,58,59,60,63,66,67,68,69,70,73,78,79,122,133,142,175,199,204,205,207,212,214,215],leveledcompactionstrategi:[11,57,62,65,202,205,215],leverag:30,lexic:45,lib:[4,6,21,35,39,40,44,49,55,200,201,202,203,204,205,206,207,208,209,210,211,216],libqtcassandra:47,librari:[8,39,41,44,47,70,78],licenc:39,licens:[35,39,40,42],lie:212,lies:212,lieu:71,life:42,lifespan:67,light:56,lightweight:[0,2,3,27,32,58,79],like:[0,3,6,11,12,13,14,17,22,25,26,27,28,34,36,38,39,42,44,45,51,56,58,59,63,65,66,67,68,71,72,73,205,206,207,212,213,214,216],likewis:20,limit:[0,1,4,6,9,10,11,20,22,28,32,45,53,54,57,64,65,66,73,77,214,216],line:[6,12,24,27,34,42,44,46,49,50,53,55,56,61,63,64,73,79,80,82,83,85,90,92,98,102,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,200,203,205,210,214],linear:[0,3,67],lineariz:2,linearli:62,link:[6,8,11,12,42,44,49,53,56,61,64,209],linux:[6,36,43,45,55,213,214,216],list:[1,3,4,5,6,9,10,11,12,13,14,17,24,26,27,29,32,33,35,36,40,41,42,43,44,46,49,50,51,52,53,54,55,56,57,60,63,64,65,68,70,72,73,75,77,78,79,80,82,83,84,85,90,92,98,101,102,108,111,112,115,117,120,124,125,126,128,132,133,139,140,142,144,147,148,149,152,155,156,157,158,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,199,201,203,204,205,206,211],list_liter:[13,22],list_permiss:52,list_permissions_stat:12,list_rol:52,list_roles_stat:12,list_us:52,list_users_stat:12,listarg:14,listen:[6,51,55,70,216],listen_address:[46,50,51],listen_interfac:46,listsnapshot:[61,142,209],liter:[10,12,14,17,20,30,78],littl:[34,53,212,215],live:[0,3,13,30,36,51,65,70,75,204,209,210,214,216],live_scan:59,livediskspaceus:70,liveness_info:200,livescannedhistogram:70,livesstablecount:70,load:[0,3,6,11,21,22,37,51,55,57,68,69,70,72,73,74,75,77,79,134,142,149,157,182,199,212,215,216],loader:[63,203],loadm:203,local:[0,1,3,4,6,11,20,35,40,41,42,44,50,52,53,54,59,61,67,68,70,73,74,78,142,151,157,161,194,204,212,213,214,216],local_jmx:73,local_on:[0,71,73,78,212,215],local_quorum:[0,68,71,78,212,216],local_read:59,local_read_count:191,local_read_lat:59,local_read_latency_m:191,local_scan:59,local_seri:78,local_writ:59,local_write_latency_m:191,localhost:[6,50,53,55,59,60,73],localpartition:59,locat:[6,24,26,32,43,48,49,60,66,70,73,74,78,188,203,212,214,216],lock:[6,45,70,216],log:[0,3,4,6,11,13,36,39,44,48,49,51,54,56,58,59,64,69,70,73,77,79,91,95,101,105,122,142,157,160,175,188,199,213,216],log_al:65,log_dir:53,logback:[46,60,214],logdir:[52,60],logger:[34,46,54,60,101],loggernam:60,logic:[0,6,21,25,28,30,31,51,56,58,214,215],login:[6,9,20,43,44,52,53,55,60,73,79,212],login_error:52,login_success:52,logmessag:[52,60],lol:22,longer:[6,9,10,11,30,43,45,53,56,57,65,75,82,142,207,210,212],longest:214,look:[0,6,12,24,25,28,33,36,37,38,42,44,56,65,67,71,72,205,207,212,214,216],lookup:[26,32,70],loop:[34,56],lose:[0,4,6,27,56,65,75,210],loss:[0,6,22,56,65,72,216],lost:[1,57,60,61,65,75,207],lot:[6,24,27,28,36,50,51,53,72,79,199,208,214,215,216],low:[0,3,6,42,76,142,144,216],lower:[0,4,6,11,12,13,20,45,62,63,65,66,70,75,212,214],lowercas:12,lowest:[6,42,65,68,204],lsm:[0,215,216],lucen:51,luckili:213,lwt:[0,32,58],lww:0,lz4:[4,6,56,68],lz4compressor:[4,6,11,63,66,68,204],mac:216,macaddr:9,machin:[6,11,44,45,53,61,70,73,74,75,204,213,216],made:[0,3,6,22,32,43,51,52,55,56,57,58,62,67,68,71,73,214],magazin:[32,61,63],magazine_nam:32,magazine_publish:32,magic:56,magnet:[4,6],magnitud:13,mai:[0,1,4,6,9,10,11,13,14,16,17,18,20,22,25,26,27,28,32,33,35,36,39,40,42,44,45,49,52,53,55,56,57,58,59,60,61,62,63,65,68,70,71,73,74,75,77,78,164,205,207,212,213,214,215,216],mail:[5,37,42,43,51],main:[0,6,14,18,40,45,48,49,53,55,61,63,73,78,205,212,214],main_actor:13,mainli:[6,57],maintain:[0,6,11,23,37,42,56,68],mainten:[0,68,70],major:[0,4,10,36,42,71,73,85,142,209,215],make:[0,1,6,8,9,21,22,23,24,25,27,28,29,30,32,33,34,35,36,37,40,42,44,45,46,49,53,56,58,59,63,65,71,72,73,75,77,78,139,142,200,214,216],malform:212,malfunct:56,malici:73,man:6,manag:[0,3,6,20,24,25,27,28,30,33,36,40,41,43,44,51,58,59,70,73,75,79,81,142,199],mandatori:[3,11,14,63],mani:[0,3,6,11,23,24,25,27,30,34,39,42,53,58,59,63,65,66,67,68,70,71,73,77,78,79,82,85,92,102,105,111,112,157,164,183,195,196,199,205,211,212,215,216],manifest:[61,63,79,199],manipul:[3,12,15,18,44,51,200],manual:[6,25,35,38,45,210,216],map:[0,3,6,9,10,11,13,14,17,20,23,29,32,51,64,70,214,216],map_liter:[11,16,20,22],mar:22,mark:[0,6,20,24,42,53,65,72,75,96,142,204,206,210],marker:[4,6,11,12,39,45,210],markup:36,marshal:204,mashup:23,massiv:[37,216],master:[2,3],match:[0,4,6,12,13,14,17,20,70,71,74,204,209],materi:[0,3,6,10,11,12,15,23,24,25,26,27,28,29,30,31,51,58,59,70,78,142,198],materialized_view_stat:12,math:68,matrix:54,matter:[11,45,71,216],maven:35,max:[4,6,11,51,53,55,56,59,65,68,70,73,77,78,105,115,123,142,157,168,176,204,207,214,215],max_archive_retri:[52,53],max_hint_window_in_m:[68,75],max_hints_delivery_thread:68,max_hints_file_size_in_mb:68,max_index_interv:63,max_log_s:[52,53,60,105],max_m:59,max_map_count:45,max_mutation_size_in_kb:[4,6,45],max_partition_s:59,max_queue_weight:[52,53,60,105],max_threshold:[63,65],maxattempt:78,maxbatchs:78,maxfiledescriptorcount:70,maxfiles:60,maxhintwindow:176,maxhistori:60,maxim:67,maximum:[4,6,14,52,53,56,59,60,62,68,70,78,105,117,142,164,170,204,207,208,212,214,215],maximum_live_cells_per_slice_last_five_minut:191,maximum_tombstones_per_slice_last_five_minut:191,maxinserterror:78,maxldt:201,maxoutputs:78,maxparseerror:78,maxpartitions:70,maxpools:70,maxrequest:78,maxrow:78,maxt:201,maxtasksqueu:70,maxthreshold:168,maxtimestamp:4,maxtimeuuid:10,mayb:13,mbean:[6,20,65,70,73],mbeanserv:20,mbit:[63,203],mbp:[6,57,68],mct:6,mean:[0,6,9,11,12,13,14,17,18,22,27,51,53,58,63,65,68,70,71,74,77,78,157,212,213,214,215,216],meaning:[13,57],meanpartitions:70,meant:[0,22,45,68,70],measur:[6,24,28,32,39,42,44,56,70,75,77,78,216],mebibyt:59,mechan:[0,52,64],media:[23,24,25,26,27,28,29,30],median:[59,70,214],medium:216,meet:[0,1,3,6,39,71,73],megabit:[68,203],megabyt:[6,68,208,215],mem:216,member:[0,34,73,77],membership:[1,2,6],memlock:45,memor:53,memori:[0,4,6,11,51,52,53,56,60,62,64,65,66,69,76,211,214,216],memory_pool:70,memtabl:[2,6,11,61,62,63,64,65,66,67,70,181,214,216],memtable_allocation_typ:4,memtable_cell_count:191,memtable_cleanup_threshold:4,memtable_data_s:191,memtable_flush_period_in_m:[11,63],memtable_off_heap_memory_us:191,memtable_switch_count:191,memtablecolumnscount:70,memtableflushwrit:[59,70,215],memtablelivedatas:70,memtableoffheaps:70,memtableonheaps:70,memtablepool:6,memtablepostflush:[59,70,215],memtablereclaimmemori:[59,70,215],memtableswitchcount:70,mention:[6,22,27,42,55,70,73,203,212],menu:[0,40],mere:34,merg:[0,36,38,42,62,66,67,69,71,216],mergetool:38,merkl:[0,6,70,72],mess:[42,44],messag:[0,1,6,22,33,36,39,42,49,51,52,53,54,55,57,58,60,63,68,70,71,72,73,203,207,208,209,210,211,212,214,215],messagingservic:56,met:13,meta:[13,55,70,77],metadata:[0,4,20,28,43,57,66,67,70,79,199,207,210,211,214],metal:6,meter:70,method:[10,13,14,20,34,37,39,40,44,51,53,55,63,73,77],methodolog:30,metric:[6,54,59,68,69,77,213,215,216],metricnam:70,metricsreporterconfigfil:70,mib:[52,53,87,141,191],micro:215,microsecond:[6,11,13,22,70,204,215],microservic:25,midnight:22,midpoint:0,might:[0,6,11,13,23,24,25,26,27,28,43,53,61,63,65,70,71,80,82,83,85,90,92,98,102,105,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,211,212,215],migrat:[6,59,70,74],migrationstag:[59,70,215],milli:4,millisecond:[4,6,10,11,22,28,53,70,144,164,192,204,207,215,216],min:[4,6,11,45,64,65,70,77,78,115,142,168,204,214,215],min_index_interv:63,min_sstable_s:65,min_threshold:[63,65],minbatchs:78,mind:28,minim:[6,25,27,53,58,65,67],minimum:[6,11,14,28,32,46,70,72,202,204],minlocaldeletiontim:204,minor:[10,12,36,53,69,71],minpartitions:70,mint:201,minthreshold:168,mintimestamp:204,mintimeuuid:10,minttl:204,minu:28,minut:[6,22,27,52,53,55,60,65,68,70,73,77,105],mirror:36,misbehav:[51,65,213],misc:[128,178],miscelen:70,miscellan:6,miscstag:[59,70,215],mismatch:[0,6,53,56,71],misrepres:207,miss:[11,18,33,35,65,68,70,72,75,210,216],misslat:70,misspel:202,mistaken:[53,61,63,80,82,83,85,90,92,98,102,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198],mistun:214,mit:43,mitig:[6,73],mix:[6,53,65,77,216],mkdir:[52,53,55,63,214],mmap:45,mnt:16,mock:44,mode:[4,6,52,53,61,63,73,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,212],model:[3,11,15,20,26,27,29,42,51,55,57,73,77,216],moder:[28,67],modern:[67,68,216],modestli:6,modif:[13,20,214],modifi:[6,9,10,11,14,20,22,27,32,42,59,62,65,66,206],modification_stat:13,modul:78,modular:39,modulo:0,moment:[6,42],monitor:[45,51,52,69,73,74,81,142,212,216],monkeyspeci:[11,18],monkeyspecies_by_popul:18,monoton:[0,11,58,69],month:[22,28,55],monument:23,more:[0,1,4,6,10,11,12,13,22,23,24,25,28,29,32,34,36,37,42,44,46,50,51,52,53,55,56,57,58,59,60,61,62,63,66,67,68,69,70,71,73,74,75,77,79,85,111,112,142,144,157,164,180,192,196,199,204,205,211,213,215,216],moreov:[13,63],most:[0,1,6,11,12,13,22,24,27,28,36,37,40,42,44,45,46,53,56,59,60,65,66,67,68,70,71,73,78,84,142,192,204,205,212,214,215,216],mostli:[4,6,11,22,25,213,214],motiv:[44,65],mount:[6,216],move:[0,6,28,42,45,51,53,58,64,69,70,72,142,207,210,215],movement:[0,57,58,69,214],movi:[13,22],movingaverag:6,msg:60,mtime:[11,206],mtr:216,much:[0,5,6,11,23,24,27,28,57,59,62,63,64,65,74,203,212,214,216],multi:[1,2,3,6,12,39,54,61,68,214,216],multilin:41,multipl:[1,4,6,10,11,12,13,14,19,22,23,24,27,30,32,34,39,40,42,45,46,53,57,65,67,68,71,74,77,79,147,199,200,212,215],multipli:[28,65],multivari:76,murmur3:4,murmur3partit:4,murmur3partition:[6,14,63,78,204],museum:23,must:[0,1,3,4,6,10,11,13,14,17,18,20,24,27,28,32,34,35,40,42,44,45,46,52,53,55,56,57,58,61,63,65,70,71,73,75,77,78,181,199,200,201,202,203,204,205,206,207,208,209,210,211],mutant:16,mutat:[0,4,6,13,45,56,59,64,68,70,71,196,215],mutatedanticompactiongaug:70,mutationsizehistogram:70,mutationstag:[59,70,215],mv1:18,mvn:35,mx4j:70,mx4j_address:70,mx4j_port:70,mx4jtool:70,mxbean:20,myaggreg:14,mycolumn:17,mydir:78,myevent:13,myfunct:14,myid:12,mykei:17,mykeyspac:14,mytabl:[11,14,17,19,21],mytrigg:21,n_c:28,n_r:28,n_v:28,nairo:22,naiv:0,name:[4,6,9,10,11,12,13,14,16,17,18,20,21,22,24,26,29,30,32,33,36,39,40,42,43,44,45,46,52,53,59,60,61,70,72,73,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,202,203,206,209,212,214,215,216],names_valu:13,nan:[9,10,12,59],nano:[56,59],nanosecond:[22,70],narrow:[212,214,215,216],nathan:13,nativ:[4,6,10,12,15,17,30,39,45,50,52,53,55,59,60,63,70,78,94,104,142,148,185,203,215,216],native_transport_port:46,native_transport_port_ssl:73,native_typ:22,natur:[11,22,26,34,56,65,66,68,216],navig:36,nbproject:40,ncurs:216,nearli:40,neccessari:6,necessari:[6,11,14,20,27,42,49,52,53,56,60,66,73,200,204,207],necessarili:[6,12,25,46],need:[0,1,4,6,10,11,12,13,20,22,23,24,25,26,27,28,32,33,34,39,40,42,43,44,45,46,49,50,52,53,56,57,58,59,60,61,62,63,65,66,67,68,71,72,73,74,76,78,120,124,203,208,209,211,215,216],needlessli:0,neg:6,negat:[19,73],neglig:[13,216],neighbor:[0,57,212],neighbour:65,neither:[6,18,22,73],neon:40,nerdmovi:[13,16],nest:[12,13,34],net:[6,40,45,48,49,60,73],netbean:[30,41],netstat:[75,142],netti:[6,54,56],network:[0,1,6,13,45,56,57,61,67,68,71,72,73,74,141,142,145,214],network_author:20,network_permiss:6,networktopologystrategi:[58,73,77],never:[0,6,10,11,12,13,14,22,27,34,45,56,58,65,72,205],nevertheless:[13,32],new_rol:20,new_superus:73,newargtuplevalu:14,newargudtvalu:14,newer:[0,28,65,67,78,112,201,216],newest:[11,65,201],newli:[0,11,20,22,42,64,142,149],newreturntuplevalu:14,newreturnudtvalu:14,newtuplevalu:14,newudtvalu:14,newvalu:63,next:[0,6,24,45,50,53,55,58,59,61,63,65,68,71,78,213,214],ngem3b:13,ngem3c:13,nic:[55,216],nice:[28,56],nid:216,nifti:38,night:[24,28],ninth:0,nio:[6,14,54,57,70],nntp:216,no_pubkei:49,node:[1,3,4,6,11,13,14,21,22,27,28,32,39,44,46,47,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,67,69,70,71,72,74,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,203,204,205,213,214,215,216],nodej:48,nodetool:[3,4,6,18,49,51,53,54,55,57,58,59,61,62,66,69,72,73,75,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,206,209,211,212,213,214,216],nois:[6,214],noiser:214,noisi:214,nologin:9,nomenclatur:0,nomin:28,non:[0,6,9,10,11,12,13,14,20,22,25,45,55,56,57,59,62,66,70,73,78,204,207],nonblockingbufferhandl:56,none:[0,1,6,11,13,22,58,59,61,63,70,72,73,204],nonsens:20,noopauditlogg:52,nor:[6,11,18,22],norecurs:[9,20],norm:70,normal:[1,11,14,17,20,27,32,40,45,49,53,55,58,59,68,70,72,77,78,212,214,215,216],nosql:[3,30,76],nosuperus:[9,20],notabl:[14,17],notat:[10,12,13,24,25,28,78],note:[0,4,5,6,10,11,12,13,14,15,17,20,22,24,25,38,41,42,43,45,55,56,58,63,65,73,199,200,201,202,203,204,205,206,207,208,209,210,211,214,216],noth:[6,11,14,38,44,45,201],notic:[6,24,29,57,73,215,216],notif:8,notifi:56,notion:[0,11,12],notori:[0,23],noun:27,now:[10,24,25,26,29,33,34,36,40,65,75,216],nowinsecond:53,npercentil:11,ntp:[0,6],nullval:78,num_cor:78,num_token:75,number:[0,1,4,6,10,11,12,13,14,15,17,18,22,24,25,26,27,28,29,32,33,40,42,43,44,45,49,52,53,54,56,58,60,61,62,63,65,66,68,70,71,73,75,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,203,204,208,212,213,215,216],number_of_cor:6,number_of_dr:6,number_of_partitions_estim:191,numer:[3,15,19,33,62,77],numprocess:78,numsampl:214,ny229:25,object:[1,3,6,11,12,39,54,55,56,57,63,200],objectnam:20,observ:34,obsolet:[6,67,70,211],obtain:[12,24,26,28,61,63,73,216],obviou:[14,38],obvious:[11,23],occasion:[72,215],occup:[13,216],occupi:[6,56,70],occur:[0,6,10,12,13,21,22,45,55,56,65,67,70,72,199,200,201,202,203,204,205,206,207,208,209,210,211,216],occurr:22,octet:[6,74],odbc:30,oddli:6,off:[0,4,6,25,45,56,64,66,70,73,78,142,159,216],off_heap_memory_used_tot:191,offer:[0,15,44,53,66],offheap:[62,67],offheap_buff:6,offheap_object:6,offici:[36,42,51,76,78],offset:[4,11,57,64,70],often:[0,6,11,12,25,26,27,28,34,36,37,42,44,45,52,53,60,63,65,66,67,68,72,73,74,78,105,205,212,215,216],ohc:6,ohcprovid:6,okai:34,old:[0,4,6,53,56,59,65,75,79,99,109,142,199,210,216],older:[4,6,14,40,49,65,67,71,78,201,209],oldest:[4,6,11,52,53,60,201],omit:[4,6,10,11,13,17,22,24,53,68,175],onc:[0,4,6,11,12,14,22,25,28,29,33,38,40,42,44,45,53,56,61,64,65,66,67,70,72,73,75,77,78,205,212],one:[0,1,4,6,9,10,11,12,13,14,17,18,20,22,24,25,27,28,32,34,37,40,42,44,46,51,52,53,55,56,57,58,60,61,62,63,65,67,68,70,71,72,73,74,75,78,79,82,85,92,102,111,112,128,142,157,164,178,181,183,195,196,199,200,204,207,209,210,212,214,215,216],oneminutecachehitr:70,ones:[6,11,12,13,14,18,20,53,70,205],ongo:[37,65,70,75],onli:[0,4,6,9,11,12,13,14,17,18,20,22,24,26,27,28,32,34,36,42,43,44,46,51,53,55,56,57,58,59,61,62,63,64,65,66,67,70,71,72,73,74,75,77,78,79,157,181,191,199,201,203,206,207,208,209,211,212,215,216],onlin:[3,78],only_purge_repaired_tombston:65,onto:[0,4,65],open:[0,3,5,6,20,33,37,41,43,55,57,63,73,74,76,203,216],openfiledescriptorcount:70,openhft:60,openjdk:[49,55],openssl:55,oper:[0,1,2,6,10,11,12,13,15,16,18,20,22,27,34,41,51,52,53,54,56,58,59,60,61,62,63,64,67,68,70,72,73,75,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,202,209,210,212,213,214,215,216],operand:19,operatingsystem:70,operationtimedoutexcept:212,opertaion:6,oplog:210,opnam:77,opportun:[36,62],oppos:56,ops:[45,77],opt:14,optim:[0,4,6,11,12,13,28,32,45,54,57,58,65,67,75,204,214],optimis:[72,157],option1_valu:20,option:[0,3,4,6,9,10,11,12,13,14,16,20,22,24,27,28,30,36,40,42,44,45,49,54,55,56,57,59,61,66,67,69,71,73,75,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,203,204,205,206,207,208,209,210,211,214,215,216],oracl:[6,49,73,216],order:[0,1,4,6,9,10,11,14,18,22,24,25,26,27,28,29,32,34,42,45,53,58,59,62,63,64,65,74,75,77,78,204],ordering_claus:13,orderpreservingpartition:6,ordinari:6,org:[6,14,21,33,34,35,36,40,43,44,45,49,55,60,63,65,66,70,73,200,201,202,203,204,205,206,207,208,210,211,214],organ:[3,4,24,27,32,33,40,47],orgapachecassandra:43,orient:3,origin:[0,4,9,28,36,38,42,52,64,68,164,205,207,208,209],orign:13,os_prio:216,osx:36,other:[0,3,4,6,10,11,12,13,14,18,20,22,23,24,25,27,29,30,32,35,36,37,38,40,42,46,51,56,57,60,61,62,63,65,67,68,69,70,71,73,74,75,142,147,158,201,204,205,210,212,213,214,215,216],other_rol:20,otherwis:[0,6,9,12,13,16,22,24,57,68,72,117,201,212],our:[5,6,8,33,36,37,38,40,43,56,58,65,216],ourselv:38,out:[1,2,3,4,6,11,12,24,25,27,30,34,35,37,40,42,43,53,57,65,70,71,72,73,74,75,76,157,200,201,212,215,216],outag:0,outbound:[6,57,59],outboundtcpconnect:6,outdat:71,outgo:[6,56,216],outgoingbyt:70,outlin:[33,73],outofmemori:63,outofmemoryerror:51,output:[14,20,39,40,43,52,53,55,57,58,62,63,65,72,77,78,79,85,86,191,193,199,204,207,208,210,211],output_dir:63,outputdir:63,outsid:[11,21,22,56],outstand:[210,215],oval:23,over:[0,3,4,6,11,22,24,27,32,45,53,56,57,58,65,70,72,73,74,75,77,205,207,210],overal:[14,56],overflow:[17,79,164,199],overhead:[6,32,45,54,58,66,70,75],overidden:73,overlap:[0,65,205],overli:[27,28],overload:[6,14,45,203],overrid:[6,11,33,34,52,63,68,73,75,164,203,207],overridden:[6,11,53,59,60],overs:71,overview:[2,51,69],overwrit:[24,60,66,67,68,73],overwritten:[70,112],own:[0,11,12,14,22,37,41,42,45,49,53,55,56,63,65,66,70,72,73,76,77,120,126,133,142,196,205,215],owner:22,ownership:[0,65,163],ownersip:214,p0000:22,p50:215,p50th_m:59,p99:[11,216],p99th:11,p99th_m:59,pacif:22,packag:[33,40,44,45,46,48,50,78,214],packet:[6,214],page:[6,22,33,36,37,40,44,45,67,70,76,79,213,215],paged_rang:215,paged_slic:70,pages:78,pagetimeout:78,pai:[34,35,43],pair:[6,11,20,22,56,61,65,73],pane:30,paper:0,parallel:[18,44,54,65,72,157,215],param:[11,56],paramet:[4,6,11,14,32,33,34,39,40,46,53,56,60,62,67,74,75,142,175],parameter:33,params:56,paranoid:6,parent:[35,203],parenthes:[29,32,52],parenthesi:[11,77,78,212],park:23,parnew:67,pars:[6,12,52,56,60,64,78,216],parser:[9,10],part:[3,5,6,11,13,14,18,22,24,25,26,28,35,39,40,42,44,45,63,73,74,75,78,203,212],parti:[39,51,70,200],partial:[4,11,28,71,210],particip:[0,21,56],particular:[0,6,11,12,13,14,17,20,22,24,32,45,56,61,67,70,73,212,214,215,216],particularli:[12,22,73,214,215,216],partit:[1,2,3,4,6,10,11,13,14,24,27,29,30,31,45,53,57,59,61,62,63,65,67,68,70,71,77,112,120,124,142,164,192,200,204,212,214,215],partition:[4,10,13,14,59,63,72,78,89,142,157,204],partition_kei:[11,13],partitionspercounterbatch:70,partitionsperloggedbatch:70,partitionsperunloggedbatch:70,partitionsvalid:70,partli:13,pass:[39,42,46,78,180,203,204,215,216],password:[6,9,13,20,52,53,59,61,63,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,203],password_a:20,password_b:20,passwordauthent:[6,73],passwordfilepath:[52,53,61,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],past:[24,70],patch:[10,13,33,34,36,38,39,41,44,51,57],path1:[52,53,60],path2:[52,53,60],path:[0,5,6,16,27,39,49,52,53,55,57,58,61,62,63,65,66,67,70,73,76,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,203,207,209,211,214,216],pathn:[52,53,60],patter:20,pattern:[6,11,20,22,23,29,30,31,32,60,212,215,216],paus:[6,45,68,142,143,214,216],pausehandoff:[68,142],pauser:[52,53],paxo:[1,13,54,70,78],paxos_prepar:56,payload:56,payloads:56,pcap:216,peak:[203,216],peer:[0,6,20,53,55,56,70,216],peerip:70,pem:[53,55],penalti:[6,13],pend:[6,54,56,59,65,68,70,72,142,156,215],pending_flush:191,pending_task:59,pendingcompact:70,pendingflush:70,pendingrangecalcul:[59,70,215],pendingtask:70,pendingtasksbytablenam:70,pennsylvania:22,peopl:[36,42,43,45],per:[4,6,10,11,13,28,32,34,38,42,45,53,56,58,62,63,64,65,66,68,70,72,73,77,78,142,165,173,200,203,210,212,214,215,216],per_second:59,percent:70,percent_repair:191,percentag:[6,70,74,216],percentil:[11,70,212,215,216],percentrepair:70,perdiskmemtableflushwriter_0:[59,70,215],perf:216,perfdisablesharedmem:216,perfect:14,perfectli:[27,56],perform:[0,1,3,6,11,13,20,22,24,25,27,28,30,32,37,38,39,41,42,45,46,52,54,57,58,59,60,62,65,67,68,70,71,72,73,74,78,157,214,215,216],perhap:[24,28,56,212,214],period:[0,4,6,33,52,56,58,67,70,72,73,75,142,144,216],perl:48,perman:[11,45,65,67,68,214],permiss:[6,9,12,23,24,25,26,27,28,29,30,44,52,53,63,73],permit:[6,20,53,56,57,64,73],persist:[0,4,45,55,62,64,67,73,216],person:216,perspect:[24,26,45],pet:22,petabyt:[0,1],peter:23,pgp:43,pgrep:49,phantom:47,phase:[75,78,215],phi:[0,6],phone:[13,22,25,29],phone_numb:29,php:48,physic:[6,11,28,29,30,31,45,51,67,74],pib:0,pick:[6,38,42,45,57,65,73,75,77,147],pid:[45,49,216],piec:[0,12,65,70],pile:6,pin:[6,74],ping:[42,216],pkcs5pad:6,pkill:49,place:[5,6,16,21,23,32,34,38,42,53,64,65,70,72,73,78,142,149,203,208,214,216],placehold:[14,78],plai:[14,22],plain:4,plan:[11,28,38,42],plane:[0,36],platform:[20,33,76],platter:[6,67],player:[14,22],playorm:47,pleas:[5,6,11,13,14,22,33,34,36,40,43,44,45,55,60,73,77,211],plu:[14,28,65,70,215],plug:[6,28,33],pluggabl:[0,20,73],plugin:[30,51,70],pmc:43,poe:22,poi:[26,29],poi_nam:[24,29],point:[0,3,4,6,10,17,22,23,24,26,27,30,34,36,40,43,51,56,58,68,73,77,78,120,142,203,212,216],pointer:[14,57],pois_by_hotel:[24,29],polici:[6,11,42,43,73,196,212],poll:73,pom:41,pool:[6,49,55,70,72,142,170,193,215,216],poorli:24,pop:77,popul:[11,18,77],popular:[23,24,30,40,67],port:[0,6,40,46,51,52,53,59,60,61,63,70,73,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,203,216],portabl:61,portion:[0,24,67,78,208],posit:[0,4,6,10,11,19,22,57,62,70,75,200,204],possbili:6,possess:20,possibl:[0,1,6,10,11,13,14,17,20,22,28,33,39,42,44,45,56,57,58,62,65,67,68,70,73,75,77,205,212,214],post:[13,33,41,56,142,167],post_at:13,postal_cod:29,posted_at:13,posted_bi:11,posted_month:11,posted_tim:11,potenti:[0,6,9,11,12,14,24,28,39,53,60,65,67,73,75,164,205,207],power8:76,power:[6,11,76],pr3z1den7:22,practic:[0,6,11,12,13,27,29,30,43,56,58,68,69,73],pre:[6,11,17,22,53,56,57,67,73,207,208,210],preced:[19,32,45,61,63,77],precis:[10,17,22,65,204],precondit:70,predefin:11,predict:[13,28,53,205],prefer:[0,6,11,12,22,27,34,42,56,58,73,74],preferipv4stack:40,prefix:[11,12,22,204,210],prepar:[6,14,15,52,54,60,63,70],prepare_releas:43,prepare_stat:52,preparedstatementscount:70,preparedstatementsevict:70,preparedstatementsexecut:70,preparedstatementsratio:70,prepend:22,prerequisit:[41,48],presenc:6,presens:4,present:[0,3,12,13,18,30,46,59,64,70,73,207,216],preserv:[6,11,17,20,27,28,71],preserveframepoint:216,press:49,pressur:[6,57,70,215,216],presum:27,pretti:[24,28,78,216],prevent:[0,6,11,44,64,70,71,72,203,207,216],preview:[36,54,72,157],previewkind:72,previou:[0,6,10,11,22,28,43,60,65,72,75,209],previous:[6,24,28,56,68,210],previsouli:[108,142],price:27,primari:[0,3,9,10,11,13,14,22,24,25,27,28,29,32,44,53,59,61,63,64,65,66,71,72,73,75,77],primarili:[0,6,11],primary_kei:[11,18],print0:206,print:[52,53,61,63,68,72,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,214],prio:216,prior:[6,13,20,22,63,75],prioriti:[1,42,216],privat:[6,34,43,73,74],privileg:[20,49,73],proactiv:56,probabilist:[0,62,66],probabl:[0,4,6,11,24,44,62,65,72,129,142,179,214,215,216],problem:[0,5,6,11,14,24,27,38,39,43,45,68,73,212,213,215,216],problemat:[22,212],proc:[6,45],proce:[39,66,75,212],procedur:[13,73],proceed:211,process:[0,1,6,14,24,25,32,33,35,37,38,39,40,41,42,44,45,49,51,56,57,58,59,64,66,67,68,70,71,72,73,75,76,78,81,117,142,143,162,170,202,203,207,209,210,211,214,215,216],processed_byt:59,processed_count:59,processor:[3,52,53],prod_clust:78,produc:[13,14,26,37,53,56,65,105,212],product:[0,1,6,11,27,28,35,37,42,45,53,55,58,67,74],profil:[13,40,79,142,144,216],profileload:142,program:[14,44,213,216],programm:0,programmat:206,progress:[34,38,42,43,56,59,62,63,69,72,77,79,142,198,199,210,215],project:[26,33,34,35,36,37,43,44,70],promin:11,promot:4,prompt:78,propag:[0,6,14,34,39,56,68,74],proper:[0,11,22,36,45,53,73],properli:[6,27,39],properti:[4,6,11,18,20,25,32,40,43,48,52,53,58,64,65,71,73,74,75],propertyfilesnitch:[6,74],proport:[6,13],proportion:[6,68,114,142,165],propos:[6,24,43,54,70],protect:[6,11,24,56,58,67,72,73,210],protocol:[0,1,6,39,45,50,53,54,59,60,63,70,73,78,84,94,99,104,109,142,185,203,214,216],protocol_vers:59,prove:[25,216],provid:[0,1,3,4,5,6,11,12,13,14,15,17,22,24,27,28,30,32,40,42,43,50,52,53,56,57,60,63,64,65,66,67,68,70,71,72,73,74,75,76,77,79,141,142,152,156,203,204,205,208,210,211,212,214],provis:[63,216],proxim:[6,74],proxyhistogram:[142,215],prtcl:[63,203],prune:56,prv:[57,72,157],ps1:73,ps22dhd:13,pt89h8m53:22,publicationfrequ:32,publish:[23,24,25,26,27,28,29,30,32,35,61,63],published_d:77,pull:[0,27,36,44,65,70,72,157],pure:216,purg:67,purpos:[12,13,22,27,56,57,61,67,73],push:[38,42,43,70],put:[15,24,28,42,46,53,57,63,65,75,133,157,205,215],pwf:[52,53,61,63,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],python:[14,33,42,44,48,49,78],pytz:79,qos:60,quak:[14,22],qualifi:[11,14,42,63,215],qualiti:[36,54,73],quantiti:[1,22,58,215],queri:[1,3,6,10,11,12,13,14,16,18,20,24,25,28,29,30,31,48,51,52,54,56,58,59,60,61,63,65,70,72,76,77,78,95,105,142,160,213,216],query_fail:53,queryabl:1,queryopt:[52,53],queryst:[52,53],querytimemilli:53,queryvalidationexcept:212,question:[8,20,27,41,51,216],queu:[6,54,70],queue:[6,24,52,53,56,60,70,105,215,216],quick:[24,53,63,133,196,211],quickli:[24,45,57,61,65,68,215],quill:47,quintana:22,quit:[0,28,59,65,78,203,215,216],quorum:[0,11,54,68,69,73,78,212],quot:[9,10,11,12,14,17,20,77,78],quotat:20,quoted_identifi:12,quoted_nam:11,r_await:216,r_k:28,race:[22,38],rack1:6,rack:[0,6,53,59,72,73,74,212,215],rackdc:[6,74],rackinferringsnitch:[6,74],raid0:67,raid1:67,raid5:67,rain:12,rais:[6,12,45,52,68,212],raison:9,ram:[62,66,67,216],ran:206,random:[0,11,14,45,75],randomli:[6,75],randompartition:[6,13,14],rang:[0,6,10,11,13,22,24,26,39,54,57,65,69,70,72,77,78,85,90,128,142,147,157,178,212,215],range_slic:[70,215],rangekeysampl:142,rangelat:70,rangemov:75,rangeslic:70,rapid:[11,32,58,67],rapidli:216,rare:[10,27,62,63,212],raspberri:67,rate:[0,6,11,23,26,68,70,73,77,78,203,216],ratebasedbackpressur:6,ratefil:78,rather:[6,13,24,26,45,56,57,59,64,65,67,77],ratio:[6,66,67,70,77,204],ration:4,raw:[4,6,14,79,199,214],rdbm:[0,31,51],reacah:60,reach:[0,1,4,6,11,28,42,45,52,53,58,64,65,71,205],reachabl:53,read:[0,1,3,6,11,13,22,24,29,32,34,36,39,44,45,48,51,53,54,56,59,62,63,65,66,67,68,69,70,73,74,77,78,128,178,191,196,203,204,211,212,214,215,216],read_ahead_kb:216,read_lat:191,read_repair:[0,11,58,70,71,215],read_repair_ch:71,read_request_timeout:45,readabl:[11,25,52,53,60,64,87,141,191,215],reader:53,readi:[0,11,24,29,36,42,59,73],readlat:[70,212],readm:[36,43],readrepair:70,readrepairstag:[70,215],readstag:[59,70,72,215],readtimeoutexcept:212,readwrit:73,real:[1,4,8,11,23,25,27,34,45,76,214],realclean:35,realis:77,realiz:[27,65],realli:[6,27,28,44,57,59,202,206,212,216],realtim:64,reappear:72,reason:[0,4,6,11,13,14,15,18,27,28,45,46,49,52,56,63,65,67,72,73,75,215,216],rebas:36,rebuild:[0,57,58,62,65,66,70,142,148,164],rebuild_index:142,receiv:[0,1,6,14,18,42,45,56,57,58,59,65,67,68,71,75,212,216],received_byt:59,received_count:59,recent:[1,6,42,44,55,67,71,84,205,210],recent_hit_rate_per_second:59,recent_request_rate_per_second:59,reclaim:[53,56,58,60,65],recogn:[13,28,40,42,55],recommend:[4,6,11,22,27,36,45,53,55,58,59,60,63,67,73,75,214],recompact:65,recompress:66,reconcil:[0,1,11,71],reconnect:73,reconstruct:205,record:[4,6,11,13,19,22,23,24,26,27,28,42,52,53,60,65,70,77,216],recov:[6,45,54,57,59,65],recoveri:[6,57],recreat:[20,53,78],rectangl:23,recurs:[53,105],recv:49,recycl:[4,6,70],redhat:[43,55],redirect:60,redistribut:[6,72,214],redo:42,reduc:[4,6,11,25,28,37,45,53,56,57,58,61,65,66,68,71,72,79,88,114,142,157,165,199],reduct:6,redund:[0,32,34,39,42,56,58,67],reenabl:[104,106,107,142],ref:[43,60,200,201,202,203,204,205,206,207,208,210,211],refer:[1,6,11,12,13,14,22,24,25,26,27,28,32,33,34,35,44,45,49,50,58,60,75,77,78,212,214],referenc:[6,26,28,77],referenti:3,refin:[29,31,51],reflect:[64,65,200],refresh:[6,63,73,78,142,150],refreshsizeestim:142,refus:[51,56],regain:56,regard:[11,13],regardless:[0,6,20,42,58,68,216],regener:[57,62],regexp:12,region:[6,74],regist:22,registri:73,regress:[39,44],regular:[9,12,28,36,40,44,45,54,56,70,78],regularcolumn:204,regularli:72,regularstatementsexecut:70,regularupd:77,reifi:57,reilli:[23,24,25,26,27,28,29,30],reinforc:30,reinsert:[164,207],reject:[6,13,45,56,64,73,212],rel:[6,22,25,28,78,216],relat:[0,3,8,10,12,13,23,24,27,28,30,31,35,40,42,52,57,65,68,70,77,204,212,216],relationship:[6,23,24,27,32],releas:[6,10,27,28,32,41,42,49,51,55,58,78,216],relev:[13,20,22,42,63,66,73,76,203,204,207,216],relevel:[79,199],reli:[0,6,14,22,24,45],reliabl:[1,3,37,65],reload:[6,69,142,151,152,153,154],reloadlocalschema:142,reloadse:142,reloadssl:[73,142],reloadtrigg:142,reloc:[57,142,155,188,214],relocatesst:142,remain:[0,6,13,14,20,22,32,38,56,57,59,65,70,72,75,191,215],remaind:[17,19,66],remeb:60,remedi:65,rememb:[24,25,28,60,212],remind:24,remot:[0,4,36,38,40,51,52,53,61,63,65,73,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,212],remov:[0,1,4,6,10,11,12,13,14,15,17,18,20,22,35,39,45,51,53,56,58,63,64,69,71,73,80,83,112,142,156,205,210,211,216],removenod:[75,80,142],renam:[9,22],render:36,reorder:6,repair:[0,4,6,11,18,45,51,54,59,63,66,68,69,70,74,75,79,133,142,158,175,196,199,204,207,211,215],repair_admin:142,repairedat:206,repairpreparetim:70,repairtim:70,repeat:[12,49,53,66,73],replac:[0,6,9,14,20,22,35,39,43,45,51,52,53,56,57,58,65,69,71,72,105,209,210],replace_address_first_boot:[0,75],replai:[0,3,4,22,54,67,68,70,114,142,159,165,204],replaybatchlog:142,repli:[37,56],replic:[1,2,3,6,11,28,29,32,51,52,53,54,57,59,61,63,65,67,68,72,73,75,77,80,142],replica:[1,6,11,13,28,45,54,65,68,70,71,72,74,75,88,124,142,212,215,216],replica_2:68,replication_factor:[0,11,29,52,53,58,61,72,73,77],repo:[35,38,40,43],repodata:43,repomd:43,report:[6,27,35,41,42,51,69,212],report_writ:20,reportfrequ:78,repositori:[5,8,33,35,36,37,40,42,44,49,76],repres:[0,6,10,17,20,22,23,24,25,26,27,28,45,65,70,73,74,77,78,204,214],represent:[10,17,25,200],reproduc:[25,37],reproduct:37,request:[0,1,6,11,13,20,21,32,36,44,45,52,53,54,57,58,59,60,61,62,65,67,69,71,73,74,78,142,179,195,211,212,215,216],request_count:59,request_failur:52,request_respons:[56,70,215],requestresponsest:215,requestresponsestag:[59,70,72,215],requesttyp:70,requir:[0,1,3,6,11,13,14,20,24,27,28,32,34,36,38,39,40,41,42,43,45,52,53,57,58,62,63,66,67,71,73,77,202,203,206,209],require_client_auth:6,require_endpoint_verif:6,requisit:71,resampl:6,reserv:[6,10,12,15,23,26,27,28,29,30,31,56,59,216],reservations_by_confirm:29,reservations_by_guest:[24,29],reservations_by_hotel_d:29,reservoir:212,reset:[6,13,36,53,56,142,161,175,202],reset_bootstrap_progress:75,resetfullquerylog:[53,142],resetlocalschema:142,resid:[6,13,45,70,216],resolut:[0,6,13,41,45],resolv:[0,35,38,45,71,163,182],resort:[80,142],resourc:[0,20,53,54,73,203,215],resp:14,respect:[6,10,11,14,33,35,49,53,56,59,61,63,72,74,105,214],respond:[0,6,12,68,71,216],respons:[0,1,6,20,25,32,45,56,57,58,70,71,75,215],ressourc:22,rest:[6,11,12,22,32,33,39,75,212],restart:[3,45,65,68,73,75,142,149,167,202,214],restor:[57,63,65,69,75,78,203,209,210],restrict:[6,10,11,13,18,25,58,72],restructuredtext:36,result:[0,6,10,11,12,14,17,20,22,25,27,28,30,32,37,42,45,53,56,57,63,65,70,72,78,199,200,201,202,203,204,205,206,207,208,209,210,211,216],resum:[68,81,142,162],resumehandoff:[68,142],resurrect:65,resync:[142,161],retain:[20,45,52,53,60,65,68,207,209],retent:27,rethrow:34,retir:36,retri:[0,6,11,22,53,56,70,71,105],retriev:[0,11,13,20,24,32,35],reus:[28,39],reveal:28,revers:[11,13,24],revert:214,review:[11,34,36,41,42,44,51],revis:[25,77],revok:[9,52,73],revoke_permission_stat:12,revoke_role_stat:12,rewrit:[62,65,66,79,142,164,195,199,207],rewritten:[67,164,207],rfc:[14,22],rhel:51,rich:[22,214],rid:35,rider:22,riderresult:22,right:[6,19,23,24,25,26,27,28,29,30,40,43,45,72,78,215,216],ring:[6,51,55,58,63,68,72,73,75,78,138,140,142,175,203,212],rise:[0,212],risk:[0,1,11,24,65],riski:65,rmb:216,rmem_max:6,rmi:[45,73],robin:68,rogu:14,role:[6,9,10,12,15,69],role_a:20,role_admin:20,role_b:20,role_c:20,role_manag:73,role_nam:20,role_opt:20,role_or_permission_stat:12,role_permiss:6,roll:[45,60,68,73,105],roll_cycl:[52,53,60,105],rollcycl:60,rollingfileappend:60,rollingpolici:60,rollov:60,romain:22,room:[5,8,23,24,26,27,28,29,43],room_id:28,room_numb:[28,29],root:[6,38,42,49,53,55,63,211,214],rotat:[6,53,214],roughli:[0,6,63],round:[13,24,65,68,70],rout:[0,6,56,74],routin:[68,216],row:[0,3,4,6,10,11,13,14,15,17,18,24,28,32,44,50,53,57,59,61,62,63,66,67,70,71,72,77,78,79,112,133,137,142,164,166,167,199,204,207,211,216],row_column_count:53,rowcach:[51,70],rowcachehit:70,rowcachehitoutofrang:70,rowcachemiss:70,rowindexentri:70,rows_per_partit:[11,63],rpc:[6,70],rpc_address:[53,59],rpc_timeout_in_m:[128,178],rpm:43,rrqm:216,rsc:196,rst:36,rubi:[14,48],rule:[0,6,12,14,42,45,212,214],run:[0,4,5,6,12,22,24,28,30,33,35,38,40,42,43,45,46,49,52,54,55,56,57,58,59,61,63,65,67,68,70,71,72,73,75,76,77,79,133,142,157,180,199,202,203,204,206,208,209,213,214,215,216],runnabl:216,runtim:[3,6,18,28,48,55,69,122,142],runtimeexcept:34,rust:48,s_j:28,s_t:28,safe:[0,14,22,53,56,58,65,73,216],safeguard:67,safepoint:214,safeti:[11,53,65,75],sai:[51,56],said:[11,42,45,63,142,195,216],salient:59,same:[0,1,4,5,6,11,12,13,14,15,17,18,19,20,22,24,25,27,32,36,38,40,42,46,51,52,53,56,58,59,62,63,65,68,70,71,72,73,74,75,77,157,205,210,212,214,216],samerow:77,sampl:[4,6,12,14,25,53,57,63,70,77,78,105,142,144,146,192],sampler:[59,70,144,192,215],san:67,sandbox:[6,14],sasi:6,satisfi:[0,11,24,27,34,58,67,70,71,75],satur:[6,70,215,216],save:[6,13,22,33,35,45,46,56,62,66,67,75,77,142,167],saved_cach:6,saved_caches_directori:46,sbin:45,scala:[14,48],scalabl:[0,2,3,43,76],scalar:15,scale:[1,2,3,44,66,76,77],scan:[6,13,24,58,62,70],scenario:38,scene:45,schedul:[0,6,33,56,59],scheduled_byt:59,scheduled_count:59,schema:[0,3,9,11,14,17,30,31,51,53,59,61,63,70,71,73,77,78,89,142,151,161,202,204],schema_own:20,schema_vers:53,scheme:0,scientif:24,scope:[20,25,52,60,70,73],score:[6,14,22,74],script:[6,14,30,33,40,43,44,52,53,55,79,105,199,200,201,202,203,204,205,207,208,209,210,211,216],scrub:[62,65,66,70,79,142,188,199],sda:216,sdb:216,sdc1:216,sdc:216,search:[24,27,28,42,61,76,214],searchabl:216,second:[0,6,11,12,13,22,24,27,28,32,45,55,61,64,67,68,71,72,73,77,78,79,142,165,173,199,212,214,215,216],secondari:[0,2,3,10,12,13,15,25,27,51,58,59,65,70,76,142,148],secondary_index_stat:12,secondaryindexmanag:[59,70,215],section:[2,4,5,7,10,11,12,13,15,20,22,43,45,48,49,50,52,53,54,56,60,61,63,65,70,72,73,75,79,199,203,214,215],secur:[6,14,15,43,51,69],seda:3,see:[0,4,6,10,11,12,13,14,17,20,22,23,24,26,27,28,35,37,40,42,43,44,50,51,53,56,60,65,70,73,75,78,112,142,157,202,204,205,208,214,215,216],seed:[0,6,46,51,55,74,125,142,152],seedprovid:6,seek:[0,3,4,6,67,70],seem:24,seen:[6,11],segment:[4,6,53,60,64,68,70,78,105,214,215],segment_nam:64,segmentid:204,select:[0,6,9,10,11,12,14,15,19,20,24,26,27,29,30,33,40,43,44,45,50,52,53,57,58,59,60,61,62,63,65,71,72,73,77,78,147,214,215,216],select_claus:13,select_stat:[12,18],self:[24,39],selinux:45,semant:[3,10,13,14,27],semi:45,send:[0,6,8,11,32,45,56,57,58,59,68,71,77,212,216],sender:56,sendto:77,sens:[10,13,15,25,45],sensic:14,sensit:[11,12,14,17,59,216],sensor:[22,24,28],sent:[0,6,11,22,45,56,57,58,59,68,70,71,212,216],sentenc:42,separ:[0,4,6,11,13,24,25,27,28,32,34,36,42,46,52,53,56,57,58,60,61,63,65,67,73,75,78,80,82,83,85,90,92,98,101,102,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,200,203,207],septemb:42,seq:[6,157],sequenc:[12,53,56],sequenti:[1,6,57,67,157],seren:13,seri:[11,24,43,65,78],serial:[4,6,53,57,68,79],serializeds:56,serializingcacheprovid:6,seriou:[36,212,215],serv:[1,13,24,56,57,58,67,73,216],server:[6,12,13,22,27,40,41,43,44,45,55,56,63,67,70,73,76,77,203,212],server_encryption_opt:[63,73,203],servic:[0,6,25,40,49,55,68,70,73,75,214,216],session:[6,20,56,72,73,79,142,158],set:[0,1,3,4,6,9,10,11,12,13,14,17,18,24,27,29,32,36,39,41,42,44,46,51,55,56,57,58,60,62,63,64,65,66,67,68,70,71,73,74,75,77,78,79,82,101,112,142,155,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,195,199,200,202,203,209,211,212,213,214,215,216],set_liter:[20,22],setbatchlogreplaythrottl:142,setcachecapac:142,setcachekeystosav:142,setcompactionthreshold:[65,142],setcompactionthroughput:[65,142],setconcurr:142,setconcurrentcompactor:142,setconcurrentviewbuild:[18,142],sethintedhandoffthrottlekb:[68,142],setint:[14,63],setinterdcstreamthroughput:142,setlogginglevel:[142,214],setlong:14,setmaxhintwindow:[68,142],setstr:14,setstreamthroughput:142,setter:[20,33,34],settimeout:142,settraceprob:142,setup:[6,36,42,44,53,73],sever:[3,4,13,20,24,26,27,30,52,53,56,57,59,61,65,68,72,73,77,203],sfunc:[9,14],sha1:[43,209],sha:[38,43],shadow:[18,65],shall:[53,55,59,61,63,68],shape:77,shard:[4,28],share:[0,11,13,40,204,212,216],sharedpool:[56,78],sharp:47,shed:45,shelf:0,shell:[50,51,55,79],shift:22,ship:[35,44,50,73,78,214,216],shop:[23,24,26],shortcut:18,shorter:[36,73],shorthand:[26,78],shortli:28,shortlog:43,should:[0,4,5,6,10,11,12,13,14,17,20,22,24,27,32,33,35,36,39,40,42,44,45,46,47,48,50,52,53,55,56,58,60,61,62,63,65,66,67,68,70,72,73,74,75,77,78,147,157,178,208,210,212,216],shouldn:[11,46],show:[20,23,24,25,27,35,51,56,60,72,75,79,90,110,130,142,146,156,163,182,183,191,198,199,211,212,214,215,216],shown:[12,24,25,26,28,32,71,78,191,203],shrink:6,shuffl:56,shut:6,shutdown:[4,6,67],side:[6,11,13,17,22,27,32,56,57,73,212],sig:43,sign:[13,22,45],signal:[6,142,153],signatur:[49,64],signifi:216,signific:[6,36,40,42,44,56,57,67,71,212],significantli:[0,6,28,57,72,216],silent:14,similar:[0,6,13,14,24,26,52,55,56,58,63,66,67,211,212,216],similarli:[0,10,17,29,34,53,61,67,142,147],similiar:72,simpl:[6,11,23,24,25,27,28,35,37,40,44,58,68,73],simple_classnam:44,simple_select:13,simplequerytest:44,simpler:0,simplereplicationstrategi:73,simpleseedprovid:6,simplesnitch:[6,74],simplestrategi:[29,52,53,58,61,72,77],simpli:[0,4,6,11,13,14,17,22,27,28,32,40,44,56,65,67,70,75,196],simplic:53,simplifi:[25,28],simul:44,simultan:[0,1,6,56,57,67,68,78,82,112,155,164,195],sinc:[0,6,11,13,14,22,28,32,36,40,44,45,49,53,55,59,63,65,68,70,71,72,75,202,205,207,215,216],singl:[0,1,3,6,10,11,12,13,14,17,18,20,22,24,27,28,29,32,34,42,46,50,51,53,55,56,57,68,69,70,71,72,73,74,78,79,85,199,212,214,215,216],singleton:39,sit:53,site:[36,43],situat:[6,44,65,68,216],six:55,size:[0,4,6,11,22,25,31,32,34,45,46,52,53,54,55,58,59,60,61,62,63,64,66,67,68,69,70,73,77,78,79,105,139,142,199,202,204,205,206,209,214,215,216],size_byt:[57,59],size_estim:[142,150,214],sizeandtimebasedrollingpolici:60,sizeof:28,sizetieredcompactionstrategi:[11,63,65,215],sjk:142,skinni:215,skip:[0,6,13,45,53,56,61,70,75,78,79,164,181,199,202,208],skipcol:78,skipflush:61,skiprow:78,sks:49,sla:39,slack:[5,42,51,72],slash:12,slave:33,sleep:216,sleepi:[52,53],slf4j:[34,35,52,60],slf4jexceptionhandl:53,slight:0,slightli:6,slow:[0,3,6,11,57,58,74,212,214,215,216],slower:[6,11,62,68,215,216],slowest:6,slowli:[6,22],small:[0,4,6,11,13,22,28,45,56,65,67,79,199,203,212,216],smaller:[0,4,6,28,45,65,67,78,208],smallest:[0,11,14,70,205],smallint:[9,10,14,17,19,22,29],smith:22,smoother:10,smoothli:6,snappi:[4,6,68],snappycompressor:[11,66],snapshot:[3,4,6,27,35,53,55,69,70,79,83,139,142,164,199,207,211,216],snapshot_before_compact:61,snapshot_nam:[83,209],snapshotnam:[83,142],snippet:55,snitch:[0,6,51,69,71,89,142],snt:216,socket:[6,73,178],soft:[36,58],softwar:[24,35],sold:24,sole:[11,37],solid:[6,67],solr:76,solut:[33,52],solv:0,some:[0,1,3,6,9,11,12,13,14,22,24,25,26,27,28,30,35,36,37,40,42,43,44,45,46,52,53,56,57,58,59,61,63,64,65,66,68,70,71,73,75,78,204,206,212,214,215,216],some_funct:14,some_keysopac:[11,58],some_nam:12,someaggreg:14,somearg:14,somefunct:14,someon:[38,65],someth:[6,23,27,63,71,206,214,216],sometim:[6,12,13,24,56,68,212,213,214,215,216],someudt:14,somewher:[49,72],soon:[26,73],sooner:6,sophist:0,sort:[4,11,13,22,24,28,32,59,63,65,67,76,191,205,214],sort_kei:191,sound:28,sourc:[3,4,5,6,8,14,33,35,36,37,41,43,49,52,55,60,63,70,79,147,200,209,212],source_elaps:78,space:[0,4,6,28,32,34,45,53,56,57,58,61,64,65,67,70,208,216],space_used_by_snapshots_tot:191,space_used_l:191,space_used_tot:191,span:[0,6,13,65],spare:[33,214],sparingli:13,spark:47,spd:63,speak:[0,213,214,216],spec:[39,50,53,70,77,78],speci:[11,18],special:[0,12,13,44,45,56,59,65,70,79,210],specif:[0,9,11,12,13,22,24,28,32,36,40,42,45,47,52,53,56,59,61,63,64,65,70,72,73,77,78,142,147,157,203],specifc:70,specifi:[0,6,10,11,12,13,14,16,18,20,22,24,27,28,35,40,45,50,52,53,57,58,61,63,64,65,66,68,70,71,73,75,77,78,79,83,85,126,142,147,157,163,176,178,181,188,191,194,199,203,209,212],specific_dc:157,specific_host:157,specific_keyspac:147,specific_sourc:147,specific_token:147,specifii:20,specnam:77,specul:[0,11,54,70,71],speculative_retri:[11,63],speculative_write_threshold:58,speculativefailedretri:70,speculativeinsufficientreplica:70,speculativeretri:70,speculativesamplelatencynano:70,speed:[6,51,57,63,66,79,199,215],spend:216,spent:[70,216],sphinx:41,spike:45,spin:[6,67],spindl:[4,6],spirit:[6,74],split:[28,34,45,56,65,70,77,78,79,85,199],spread:[0,6,11,74],sql:[0,3,13,15,30],squar:12,squash:[36,42],src:[43,147],ssd:[6,16,67,216],ssh:[53,55,212],ssl:[6,45,59,63,69,77,78,79,142,153,199],ssl_cipher_suit:59,ssl_enabl:59,ssl_protocol:59,ssl_storage_port:[59,74],ssp:[63,203],sss:17,sstabl:[2,6,11,28,45,51,61,62,66,67,69,72,79,82,85,112,126,133,139,142,149,155,164,195,196,200,204,205,207,208,209,211,214,215,216],sstable_act:214,sstable_compression_ratio:191,sstable_count:191,sstable_s:65,sstable_size_in_mb:65,sstable_task:[59,214],sstabledump:[79,199],sstableexpiredblock:[65,79,199],sstablelevelreset:[79,199],sstableload:[61,69,73,79,199],sstablemetadata:[79,199,202,206],sstableofflinerelevel:[79,199],sstablerepairedset:[79,199,204],sstablerepairset:206,sstablescrub:[79,199],sstablesperreadhistogram:70,sstablesplit:[79,199],sstableupgrad:[79,199],sstableutil:[79,199,200,204],sstableverifi:[79,199],sstablewrit:34,stabil:[33,42,56],stabl:[49,78,214],stack:[6,56,207,208,209,210,211,216],stackcollaps:216,staff:[24,26,77],staff_act:77,stage:[3,42,43,54,59,117,142,170,212,215],staging_numb:43,stai:[23,24,51,58,65],stakehold:[24,26],stale:73,stall:[6,75],stamp:60,stand:44,standalon:44,standard1:[59,63,201,203,204,206,207,209,214],standard:[6,22,33,37,45,49,52,70,77,200,204,214],start:[0,6,9,13,24,25,26,27,28,30,36,41,45,46,49,51,53,55,58,61,65,67,68,70,71,72,73,75,85,157,188,205,209,212,214,215,216],start_dat:29,start_native_transport:59,start_token:[85,157],start_token_1:147,start_token_2:147,start_token_n:147,starter:42,starttl:63,startup:[4,6,21,40,45,59,65,70,75,210],startupcheck:214,starvat:6,stat:204,state:[0,1,6,11,14,52,53,55,58,62,65,67,70,72,75,142,182,213,214],state_or_provinc:29,statement:[6,9,10,11,13,14,15,16,17,20,21,22,27,39,41,54,59,60,61,62,63,65,70,71,73,77,78,212,216],static0:11,static1:11,staticcolumn:204,statist:[4,57,61,63,65,70,78,87,113,142,145,190,191,193,203,204,209,210,215],statu:[20,33,39,42,45,49,53,61,68,72,73,78,79,142,156,183,184,185,186,187,196,199,212,213],statusautocompact:142,statusbackup:[61,142],statusbinari:142,statusgossip:142,statushandoff:[68,142],stc:11,stdev:[77,216],stdin:78,stdout:78,stdvrng:77,steadi:58,step:[0,6,26,28,33,36,40,41,43,73,213,214],still:[0,1,6,10,11,13,14,17,20,22,27,28,30,33,34,43,53,56,68,72,73,75,78,201,212,216],stop:[0,4,6,49,53,55,56,78,100,142,160,189,199,200,201,202,203,204,205,206,207,208,209,210,211,214],stop_commit:6,stop_paranoid:6,stopdaemon:[55,142],storag:[0,1,2,3,11,15,16,28,32,42,45,51,53,58,61,63,66,67,69,76,203,204],storage_port:[46,59,74],storageservic:[6,34,55,73],store:[1,4,6,10,11,12,13,22,24,26,27,28,29,32,51,52,53,56,57,58,59,61,62,63,65,66,67,68,70,73,76,78,97,105,107,142,187,203,204,207],store_queri:53,store_typ:6,stort:205,straggler:53,straight:[35,75,216],straightforward:[28,64],strain:28,strategi:[6,11,28,57,61,63,68,69,74,77,202,215],stratio:51,stream:[4,6,51,54,56,58,61,63,65,66,68,69,72,81,121,127,142,147,157,174,175,177,178,203,210,216],stream_entire_sst:[57,59],stream_throughput_outbound_megabits_per_sec:[57,63,203],streamer:57,street:[22,29],strength:6,stress:[51,55,79,216],stresscql:77,strict:[10,56,65],strictli:[8,11,14],string:[4,6,10,11,12,13,14,16,17,20,21,22,33,52,56,63,70,78,126,200],strong:0,strongli:[6,11,12,28,73],structur:[0,4,6,9,20,23,27,32,36,39,62,63,69,70,79,199,216],struggl:[0,3],stub:73,stuck:205,style:[0,6,24,25,28,39,40,41,42,44,51],stype:[9,14],sub:[0,11,13,22,49,53,61,65,216],subclass:6,subdirectori:[6,21,61],subject:[6,14,20,57,73],submiss:[6,42],submit:[41,42,44,51,85],subopt:77,subqueri:27,subrang:6,subscrib:[8,37,52],subscript:8,subsequ:[0,6,11,13,20,26,45,53,55,61,63,65,66,71,73],subset:[0,20,58,65,78,212],substanti:[57,216],substitut:49,substract:19,subsystem:73,subtract:204,subvert:65,succe:[0,1],succed:70,succeed:211,succesfulli:70,success:[26,28,43,52,55,56,60,71,78],successfulli:[0,1,43,53,56,58,60,68,70,72,211],sudden:6,sudo:[45,49,52,53,55,63,216],suffer:216,suffici:[0,6,28,53,56,58,67,73],suggest:[12,27,36,37,42,67,211],suit:[6,32,33,42,44,63,73,203],suitabl:[13,14,28,39,42,58],sum:[28,64],sum_i:28,sum_j:28,sum_k:28,sum_l:28,summari:[4,6,42,57,61,63,70,203,204,209,210],sun:[34,73,216],sunx509:203,supercolumn:9,supersed:[10,164,207],superus:[9,20,73],suppli:[3,11,13,27,38,63,200,212],supplier:24,support:[0,3,4,6,9,10,11,12,13,14,15,16,18,19,20,22,24,25,27,29,30,32,37,40,42,44,45,47,51,52,53,54,57,59,61,63,65,68,71,73,78,79,164,188,207,214,216],suppos:13,sure:[0,6,8,24,30,33,34,35,36,37,40,42,44,45,46,49,65,77,216],surfac:[0,73],surplu:45,surpris:[0,58],surprisingli:6,surround:[17,29,78],suscept:14,suspect:[5,42,216],suspend:40,svctm:216,svg:216,svn:43,svnpubsub:43,swamp:45,swap:[0,4,6,216],swiss:[142,180],symbol:[24,216],symlink:63,symmetri:17,symptom:45,sync:[0,4,6,27,36,45,68,70,72,157,216],synchron:[52,57,72],synctim:70,synonym:20,synopsi:[53,61,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],syntact:[11,20],syntax:[10,12,13,14,20,22,30,36,52,53,61,65,66,77],syntaxerror:212,sys:6,sysctl:[6,45],sysf:216,sysintern:6,system:[0,1,3,6,11,14,20,25,28,33,40,44,45,46,50,52,53,56,59,60,61,65,67,70,73,76,78,116,118,119,121,127,133,142,149,150,151,169,171,172,174,177,203,208,210,212,213,216],system_auth:[6,53,59,73],system_distribut:[53,59],system_schema:[20,52,53,59,60],system_trac:[53,59,157],system_view:[53,59,214],system_virtual_schema:[52,53,54,60,214],tab:[34,40],tabl:[0,1,3,4,6,9,10,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,29,32,44,51,52,53,54,55,57,58,60,62,63,65,66,68,69,72,73,77,78,79,82,85,92,100,102,111,112,115,120,124,133,142,148,149,151,155,157,164,168,181,183,188,190,191,195,196,199,201,203,204,206,210,211,212,214,215],table1:[20,72],table2:72,table_definit:77,table_nam:[11,13,16,20,21,53,59,63,65,191,214],table_opt:[11,18],tablehistogram:[142,215],tablestat:142,tag:[22,39,43,61,181],tail:[11,53,58,214],take:[0,3,6,10,11,13,14,22,27,28,36,39,40,42,43,45,53,56,57,58,62,65,66,67,68,75,142,181,206,208,211,214,215,216],taken:[1,6,64,65,70,77,209],talk:26,tar:49,tarbal:[46,48,78],target:[11,20,35,40,44,53,60,65,68,203],task:[0,6,26,33,35,37,40,42,57,70,72,78,214,215,216],task_id:59,taskdef:44,taught:27,tbl:71,tcp:[6,45,56,216],tcp_keepalive_intvl:45,tcp_keepalive_prob:45,tcp_keepalive_tim:45,tcp_nodelai:6,tcp_retries2:6,tcp_wmem:6,tcpdump:216,teach:[0,6,74],team:[24,43,45],technetwork:6,technic:[11,15],techniqu:[0,3,27,28,32,68,213,216],technot:6,tee:49,tell:[6,13,39,45,46,70,216],templat:[33,43],tempor:6,temporari:[68,73,79,199],temporarili:[0,1,6,58],tempt:[24,28],ten:28,tend:[4,6,28,45,67,68],tendenc:[6,26],tension:26,tent:43,terabyt:66,term:[0,6,13,14,15,18,22,26,27,28,53,55,76],termin:[12,20,78],ternari:34,test:[0,6,25,34,35,39,41,42,43,50,51,53,55,57,59,67,77,78],test_keyspac:[73,214],testabl:[39,42],testbatchandlist:44,testmethod1:44,testmethod2:44,testsom:44,teststaticcompactt:44,text:[4,9,11,12,13,14,17,22,25,28,29,32,36,43,53,59,60,61,63,64,66,72,73,76,77,216],than:[0,1,4,6,11,12,13,14,15,18,19,22,24,28,34,42,51,52,53,56,57,64,65,66,67,68,71,73,74,75,77,158,171,172,201,203,205,208,209,212,214,215,216],thei:[0,1,3,6,9,10,11,12,13,14,15,18,19,20,22,23,24,25,26,27,30,32,34,39,42,44,51,53,55,57,58,59,60,61,62,63,65,66,67,68,70,73,201,205,210,211,212,214,215,216],them:[0,6,10,11,13,14,22,23,26,27,32,33,34,37,42,43,44,45,50,53,56,58,60,62,65,68,70,71,73,142,195,203,210,212,214,216],themselv:[0,13,20],theorem:1,theoret:11,therefor:[0,24,28,36,42,44,73,202,210],theses:73,thi:[0,1,2,4,5,6,7,10,11,12,13,14,15,17,18,20,22,23,24,25,26,27,28,29,30,33,34,35,36,37,38,39,40,42,43,44,45,46,48,49,51,52,53,54,55,56,57,58,60,61,62,63,65,66,67,68,70,71,72,73,74,75,77,78,79,80,82,83,85,88,90,92,98,102,108,111,112,114,115,117,120,124,126,128,132,133,140,142,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216],thing:[6,22,24,28,37,38,42,45,48,56,65,72,216],think:[6,26,27],third:[22,28,39,51,70,215],thobb:78,those:[11,12,13,14,16,17,18,20,22,23,24,27,42,45,64,65,68,73,78,195,203,207,208,210,212,216],though:[10,12,22,29,32,51,56,59,61,65,66,70],thought:208,thousand:78,thousandssep:78,thread:[4,6,18,53,55,56,57,60,67,68,70,72,73,77,82,112,142,155,157,164,173,193,195,205,214,215],thread_pool:59,threaddump:216,threadpool:[69,213],threadpoolnam:70,threadprioritypolici:40,three:[0,6,11,25,28,53,56,57,59,61,62,65,66,68,71,72,73,78,212,214,215],threshold:[4,11,52,58,64,67,74,115,142,168,175,216],thrift:[9,77],throttl:[6,33,56,57,59,63,68,79,114,142,165,169,173,174,177,199],throttled_count:59,throttled_nano:59,through:[0,5,9,10,11,12,13,18,24,25,26,33,36,40,42,45,50,56,59,60,64,65,78,216],throughout:[26,73],throughput:[0,3,6,32,57,63,65,66,67,70,116,121,127,142,169,174,177,203,214,215],throwabl:[39,44],thrown:[22,63,205],thu:[6,10,11,12,13,18,22,45,70,71,74,75,142,195],thumb:[6,42],thusli:22,tib:[87,141,191],tick:42,ticket:[5,36,37,38,39,42,43,44,64],tid:216,tie:45,tier:69,ties:[13,215],tighter:6,tightli:6,tild:78,time:[0,1,3,4,6,8,9,10,11,12,13,15,16,17,18,24,26,27,28,32,34,36,39,40,42,43,44,45,53,55,56,57,58,59,60,61,62,64,66,69,70,71,72,73,76,77,78,142,144,204,206,211,212,214,215,216],timefram:75,timehorizon:6,timelin:11,timeout:[6,22,45,54,68,70,78,128,142,178,212,215],timeout_in_m:178,timeout_typ:[128,178],timer:[6,70],timestamp:[0,4,9,10,11,13,14,15,17,19,24,28,51,52,53,56,60,61,65,68,71,78,79,164,199,201,204,207],timeunit:65,timeuuid:[9,10,11,17,22,77],timewindowcompactionstrategi:11,timezon:[17,78],tini:[6,65],tinyint:[9,10,14,17,19,22],tip:212,titl:[24,29,42,77],tjake:34,tlp_stress:59,tls_dhe_rsa_with_aes_128_cbc_sha:6,tls_dhe_rsa_with_aes_256_cbc_sha:6,tls_ecdhe_rsa_with_aes_128_cbc_sha:6,tls_ecdhe_rsa_with_aes_256_cbc_sha:6,tls_rsa_with_aes_128_cbc_sha:6,tls_rsa_with_aes_256_cbc_sha:6,tmp:[53,209,210,214,216],tmpf:216,tmplink:210,toc:[4,57,61,63,209,210],tock:42,todai:12,todat:14,todo:39,togeth:[0,6,11,13,14,27,28,32,33,65,212,215,216],toggl:73,tojson:15,token:[4,6,9,10,12,13,45,53,56,57,58,63,65,68,70,72,77,78,85,90,133,134,140,142,147,157,163,196,204,205,212,214,215],tokenawar:212,tokenrang:77,toler:[0,1,62,68],tom:13,tombston:[4,6,11,17,24,45,69,70,72,112,164,201,204,207,216],tombstone_compact:188,tombstone_compaction_interv:65,tombstone_threshold:65,tombstones_scan:59,tombstonescannedhistogram:70,ton:44,too:[6,11,12,14,22,28,39,59,65,77,212,215,216],took:[212,214],tool:[3,6,12,31,33,35,36,42,43,45,51,52,55,60,61,65,69,70,73,75,77,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215],toolset:216,top:[13,22,33,42,43,51,70,144,191,192,205],topcount:[144,192],topic:78,topolog:[6,74,163],toppartit:142,total:[4,6,13,28,52,53,55,57,59,61,63,64,65,70,71,77,139,142,203,214,215,216],total_replica:[0,11,58],totalblockedtask:70,totalcolumnsset:204,totalcommitlogs:70,totalcompactionscomplet:70,totaldiskspaceus:70,totalhint:70,totalhintsinprogress:70,totallat:70,totalrow:204,totalsizecap:60,totimestamp:14,touch:[8,23,28,45,65],tough:44,tounixtimestamp:14,tour:22,tpstat:[72,142,215],trace:[6,30,56,70,79,129,142,157,179,207,208,209,210,211,214,216],tracerout:216,track:[0,4,6,53,56,65,68,70],trackeddatainputplu:56,tracker:[36,42],trade:25,tradeoff:[0,1,6,216],tradit:[65,66],traffic:[6,53,57,58,71,73,74,216],trail:34,trailer:56,transact:[0,2,3,13,21,24,27,32,56,58,70,79,188,199],transfer:[6,45,57,61,73,203],transform:13,transient_replica:[0,11,58],transit:[10,20,35,54],translat:216,transmit:[57,71],transpar:[6,27,45],transport:[6,40,52,59,63,70,77,94,104,142,185,203,215],trap:24,treat:[0,6,10,27,45,74],tree:[0,6,35,40,70,72],tri:[6,52,57,65,212],trigger:[4,6,9,11,12,15,33,51,53,59,60,62,66,68,69,73,82,142,154],trigger_nam:21,trigger_stat:12,trip:[6,13],trivial:73,troubl:[28,214],troubleshoot:[6,39,41,51,72,212,214,215,216],truediskspaceus:[61,139,142],truesnapshotss:70,truli:9,truncat:[4,6,9,10,15,20,52,53,59,61,68,73,77,128,142,178,194],truncate_stat:12,truncatehint:[68,142],trunk:[36,38,39,40,42,44],trust:73,trusti:216,trustor:6,truststor:[6,59,63,73,77,203],truststore_password:6,truststorepassword:73,tspw:[63,203],tstamp:200,ttl:[4,6,9,10,11,14,17,22,28,69,164,204,207],tty:78,tunabl:2,tune:[0,11,45,62,65,67,71,214,215],tupl:[0,6,9,10,12,13,14,15,17],tuple_liter:[12,13],tuple_typ:22,tuplevalu:[10,14],turn:[0,6,24,42,45,53,73,212],twc:[11,65],twice:[4,6,22,56],two:[0,1,3,6,11,12,13,14,17,19,27,28,32,40,51,52,53,55,56,59,60,61,62,63,65,67,68,71,73,74,78,204,215,216],txt:[4,14,38,39,42,43,57,61,63,209,210],type:[0,3,4,6,10,11,12,13,14,15,19,20,24,25,28,29,30,39,41,49,51,52,53,54,58,59,60,63,67,69,72,73,77,78,128,142,178,188,200,203,204,208,210,214,215],type_hint:12,typeasblob:14,typecodec:14,typic:[0,3,6,11,13,23,25,27,28,30,32,45,61,62,63,65,67,70,72,73,76,78,209,212,214,215,216],typo:36,ubuntu:40,udf:[6,14],udf_stat:12,udfcontext:[10,14],udt:[14,17,25,30],udt_liter:12,udt_nam:22,udt_stat:12,udtarg:14,udtnam:14,udtvalu:[10,14],ulimit:45,ultim:[0,27],ultra:66,unabl:[4,39,51,55,215],unacknowledg:6,unaffect:22,unari:19,unauthorized_attempt:52,unavail:[0,6,11,58,68,70,73,75,216],unavailableexcept:212,unblock:70,unbootstrap:57,unbound:[6,22],uncaught:214,unchecked_tombstone_compact:65,uncom:[6,70,73],uncommit:1,uncommon:[24,42],uncompress:[4,6,11,57,66,68,70],unconfirm:6,undecor:4,undelet:65,under:[0,6,22,33,34,44,60,70,73,216],underli:[6,18,56,65,73,216],underlin:23,undersold:24,understand:[1,6,23,42,45,68,72,73,214,216],understood:23,undropp:56,unencrypt:[6,73],uneven:0,unexpect:[4,56,199,200,201,202,203,204,205,206,207,208,209,210,211],unexpectedli:22,unfinishedcommit:70,unflush:[61,181],unfortun:[44,68],unifi:1,uniform:77,uniq:214,uniqu:[0,3,11,14,22,23,24,25,26,30,54,56,77,204],unit:[22,27,39,41,53,59,65,142,166,203,208,215],unix:[60,213],unixtimestampof:[10,14],unknown:[54,205],unknowncfexcept:56,unless:[6,11,13,16,18,20,22,34,56,58,64,73,74,204,208,216],unlik:[0,6,10,13,22,32],unlimit:[6,45,63,78,203],unlock:26,unlog:[9,70,77],unmodifi:68,unnecessari:[39,57,75],unnecessarili:[56,64],unpredict:13,unprepar:70,unprocess:56,unprotect:56,unquot:12,unquoted_identifi:12,unquoted_nam:11,unreach:[0,72],unrecogn:53,unrecov:[56,59],unrecover:1,unrel:[42,212],unrepair:[6,58,69,70,72,79,199],unrespons:[11,58],unsafe_aggressive_sstable_expir:65,unsecur:73,unselected_column:18,unset:[6,10,13,17,57,68,206],unsign:22,unspecifi:6,unsubscrib:[8,51],unsuccess:60,unsupportedclassversionerror:55,unsupportedoperationexcept:53,untar:49,until:[0,4,6,11,18,22,53,56,58,62,64,65,66,68,71,73,74],unus:[6,56],unusu:39,unwrit:[6,56],upcom:24,updat:[0,1,3,6,9,10,11,12,14,15,17,18,20,22,24,27,32,36,39,41,42,44,49,51,52,59,60,63,65,66,68,70,71,73,77,78,214,215],update_paramet:13,update_stat:[12,13],updatewithlwt:77,upgrad:[4,6,11,58,59,65,142,195,209,210],upgrade_sst:188,upgradesst:[62,65,66,142],upload:[42,63],upload_bintrai:43,upon:[6,22,52,60,62,64,66],upper:[12,17,65,73],ups:67,upstream:42,uptim:[134,142],urgent:[6,43,56],url:[36,38,77],usag:[0,4,6,11,22,51,52,53,56,58,59,61,62,63,64,66,69,70,78,79,199],use:[0,4,6,9,10,11,12,13,14,16,17,18,20,22,23,24,25,26,27,28,32,33,34,36,39,40,42,43,44,46,49,50,51,52,53,55,57,58,59,60,61,62,63,64,65,67,68,70,71,72,73,74,75,77,78,82,112,125,142,144,155,164,192,195,200,203,204,206,207,208,210,212,213,214,215,216],use_k:60,use_keyspac:52,use_stat:12,usec:216,usecas:65,useconcmarksweepgc:40,usecondcardmark:40,used:[0,1,3,4,6,9,10,11,12,13,14,15,16,17,18,20,22,24,25,26,28,30,32,35,39,40,42,43,44,45,52,53,55,56,57,58,59,60,61,63,65,66,67,68,70,71,73,74,75,77,78,80,82,83,85,90,92,98,101,102,108,111,112,115,117,120,124,126,128,132,133,140,142,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,200,201,202,203,204,205,206,208,209,210,212,215,216],useecassandra:73,useful:[0,4,6,11,14,24,28,30,35,42,53,58,59,61,63,65,66,68,70,72,75,78,80,82,83,85,90,92,98,102,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,202,204,214,215,216],useparnewgc:40,user1:13,user2:13,user3:13,user4:13,user:[0,3,5,6,8,9,10,11,12,13,15,16,17,18,24,25,26,27,33,39,41,42,43,45,49,53,54,55,57,58,59,60,61,62,63,65,66,67,72,73,78,79,85,101,142,201,209,214,216],user_count:13,user_defined_typ:22,user_funct:20,user_nam:13,user_occup:13,user_opt:20,useract:13,userid:[11,13,14],userindex:16,usernam:[6,13,14,52,53,59,61,63,70,73,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,203],usertyp:63,uses:[0,4,6,11,12,13,14,16,20,21,24,25,36,44,45,52,53,55,59,71,73,77,211,215,216],usethreadprior:40,using:[1,3,4,6,10,11,12,13,14,18,20,22,23,25,27,28,29,30,32,33,40,41,42,44,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,66,67,68,69,70,71,73,75,78,85,147,164,181,200,202,204,205,206,207,210,212,213,214,215,216],using_byt:59,using_reserve_byt:59,usr:[55,78,216],usual:[0,6,13,22,27,38,42,44,62,73,157,207,212,214],utc:[17,78],utd:11,utf8:[22,78],utf8typ:[9,204],utf:[56,78],util:[4,14,39,53,56,65,78,214,216],uuid:[9,10,11,12,17,22,25,29,52],val0:[11,53,61,63,72],val1:[11,53,61,63,72],val2:[61,63,72],val:[14,77],valid:[0,6,10,11,12,13,14,17,22,24,25,43,45,55,56,58,65,66,70,72,73,78,79,157,164,188,199,211],validationexecutor:[59,70,215],validationtim:70,valu:[0,1,4,6,9,10,11,12,13,14,16,17,19,22,25,28,32,39,40,43,45,52,53,56,57,58,59,60,61,62,63,65,66,68,70,71,72,73,74,76,77,78,79,101,129,133,142,165,169,171,172,173,174,176,177,178,179,199,200,211,212,214,216],valuabl:214,value1:13,value2:13,value_in_kb_per_sec:[165,173],value_in_m:176,value_in_mb:[169,174,177],valueof:14,varchar:[9,11,14,17,22],vari:[11,28,32,66],variabl:[6,10,12,17,22,28,33,40,43,48,55,63,206],varianc:[25,214],variant:[0,12,32],variat:32,varieti:64,varint:[9,11,14,17,19,22],variou:[6,11,23,24,25,26,33,40,44,67,71,73,77,199,213,214],vector:[0,73],vendor:55,verb:56,verbatim:56,verbos:[63,203,207,210,211],veri:[0,6,11,13,27,32,36,42,44,45,62,65,66,67,206,211,212,214,215,216],verif:[79,199],verifi:[11,42,45,47,49,63,66,72,133,142,188,199,200,201,202,203,204,205,206,207,208,209,210,211],versa:210,version:[1,2,5,6,9,11,14,15,22,35,40,42,47,49,53,55,56,57,58,59,63,65,68,70,75,79,84,89,99,109,142,195,196,199,207,210,214],versu:27,vertic:[55,78],via:[0,4,6,8,10,18,20,24,27,35,39,40,45,46,53,56,59,60,61,63,65,66,67,68,70,72,73,74,204,206,216],vice:210,view:[0,3,6,10,11,12,15,20,24,25,26,27,30,31,51,54,58,59,70,78,119,142,172,198,206,214,215,216],view_build:188,view_nam:[18,53],viewbuildexecutor:[59,70,215],viewbuildstatu:142,viewlockacquiretim:70,viewmutationstag:[59,70,215],viewpendingmut:70,viewreadtim:70,viewreplicasattempt:70,viewreplicassuccess:70,viewwrit:70,viewwritelat:70,vint:56,violat:[0,27,53],virtual:[0,3,6,45,51,54,65,70,75],virtualenv:33,visibl:[0,11,20,34,62,68,71],visit:[23,77],visual:[0,24,25,36,214],vnode:[6,58,66],volum:[3,4,6,64,66,211,215,216],vote:41,vulner:[6,43,73],w_await:216,wai:[0,4,6,12,15,17,18,22,24,27,28,33,37,38,40,44,45,52,60,65,66,68,157,204,205,206,207,214,216],wait:[0,4,6,11,42,45,52,53,55,56,57,58,60,61,68,70,71,142,159,214,215,216],waitingoncommit:70,waitingonfreememtablespac:70,waitingonsegmentalloc:70,walk:[0,25],want:[0,4,6,11,13,23,26,27,28,30,33,40,42,43,44,45,60,68,72,73,75,77,202,203,206,214,216],warmup:[77,142,167],warn:[6,11,34,44,52,53,69,72,157,211,214],warrant:215,washington:22,wasn:10,wast:6,watch:[44,216],weaker:0,web:[1,36],websit:[24,44,49,216],wed:55,week:[22,72,206],weibul:77,weigh:[11,53],weight:[52,53,56,60,70,105],weightedqueuetest:53,welcom:8,well:[0,6,11,13,14,17,22,24,26,27,28,30,39,40,52,53,56,58,60,61,64,66,67,73,74,142,160,209,214,216],went:70,were:[0,3,6,9,10,20,24,30,39,40,43,53,63,65,70,71,207,210,214,215],west:43,what:[0,2,11,13,22,23,24,31,36,37,41,44,46,51,54,56,57,65,67,71,73,77,78,204,212,213,214,215,216],whatev:[10,13,45],whedon:13,wheel:209,when:[0,1,4,6,9,10,11,12,13,14,15,16,17,20,22,24,26,27,28,33,34,36,39,42,43,44,46,51,52,53,54,55,58,60,61,62,63,64,66,67,68,69,70,71,72,73,74,75,77,78,80,82,83,85,88,90,92,98,102,108,111,112,115,117,120,124,126,128,132,133,140,144,147,148,149,155,156,157,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,190,191,192,194,195,196,198,204,205,210,212,214,215,216],whenev:[205,216],where:[0,3,4,6,9,10,11,12,14,16,17,18,19,20,22,24,26,28,39,44,46,49,52,53,56,58,59,60,62,63,65,66,68,73,75,77,78,105,157,212,214,216],where_claus:13,wherea:[22,73,215],whether:[0,6,9,11,13,27,28,40,52,53,56,61,65,71,74,78,105],which:[0,1,3,4,5,6,10,11,12,13,14,15,16,18,19,20,21,22,23,24,25,26,27,28,32,36,42,43,44,45,46,49,50,52,53,55,56,57,58,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,77,85,120,124,133,139,142,147,157,210,212,213,214,215,216],whichev:[0,6],whilst:6,whitelist:73,whitespac:41,who:[20,33,42,45,58,68],whole:[0,6,13,14,22,57,65,72],whose:[11,22,27,188],why:[0,24,39,42,51,201,212,214,216],wide2:59,wide:[0,3,4,23,24,28,64,215],wider:58,width:12,wiki:[6,36,40],wildcard:[13,20,53,208],wildli:11,win:[0,6],window:[0,4,6,68,69,70,73,123,131,142,176,213],winner:45,wip:42,wipe:[45,75],wire:[6,45,53,56],wirefram:26,wireshark:216,wise:11,wish:[6,24,43,65,70,214],withbuffersizeinmb:63,within:[0,3,4,6,11,12,13,16,24,32,40,42,43,45,53,57,61,65,67,70,73],withing:6,without:[0,1,6,11,12,13,14,20,22,38,40,42,43,44,45,53,55,56,57,58,63,64,67,68,70,73,78,79,80,133,142,149,199,200],withpartition:63,withtyp:63,wmb:216,wmem_max:6,wnen:30,won:[4,6,13,36,38,56,71,72,216],wont:[60,65],word:[10,11,12,18,20,22,45,64,73],work:[0,4,6,10,11,14,15,17,23,24,25,27,30,33,34,37,38,40,41,43,44,45,51,58,65,67,70,72,73,74,75,78,203,216],workaround:[203,207],worker:[56,78],workflow:[24,26],workload:[0,6,37,39,53,62,65,67,77,215,216],workspac:40,worktre:40,world:[23,27],worri:[26,42,45],wors:[6,74],worst:[6,28,42],worth:[6,27,56,60],worthwhil:[6,24],would:[0,6,12,13,14,17,20,23,24,25,26,27,28,32,36,40,42,44,51,52,53,56,57,58,59,63,65,66,67,68,71,72,73,74,204,206,210,214,216],wouldn:11,wrap:[24,56,74],wrapper:53,writabl:63,write:[0,2,3,4,6,10,11,13,22,24,27,32,34,36,37,39,44,45,53,54,59,63,64,65,66,67,70,71,72,73,74,75,77,78,100,128,142,178,191,204,207,210,212,214,215,216],write_lat:191,write_request_timeout:45,write_request_timeout_in_m:68,writefailedideacl:70,writelat:[70,212],writer:[4,6,34,63],writetim:[9,14],writetimeoutexcept:[6,212],written:[0,1,3,4,6,11,21,26,27,33,45,52,53,56,58,60,62,63,65,66,68,70,71,72],wrong:[6,27,43,215],wrqm:216,wrst:216,wrte:70,www:[6,49,216],x86:76,xandra:47,xarg:[206,214],xdm:216,xlarg:67,xlarge_daili:60,xml:[35,40,43,44,46,55,63,214],xmn220m:40,xms1024m:40,xmx1024m:40,xmx:67,xss256k:40,xzvf:49,yaml:[0,3,4,6,14,18,20,46,49,52,53,56,57,58,59,61,63,68,70,71,73,74,75,77,86,101,105,142,160,191,193,203,204,212],year:[13,22,27,28,55],yes:[9,11],yet:[0,6,11,33,37,61,64,70,210],ygc:216,ygct:216,yield:[13,27,28,60,75,216],ymmv:214,you:[0,4,5,6,8,10,11,12,13,14,16,17,18,20,21,22,23,24,25,26,27,28,29,30,33,34,35,36,37,38,40,41,43,44,45,46,47,48,49,50,51,53,58,60,61,63,64,65,68,70,71,72,73,74,75,76,77,78,80,142,181,200,202,203,204,206,207,208,210,211,212,213,214,215,216],young:216,younger:14,your:[0,5,6,8,10,11,12,24,25,26,27,28,29,30,34,36,37,40,41,42,44,45,46,49,51,55,58,65,67,72,73,74,77,78,203,208,211,213,214,215,216],yourself:[37,38,44,68],yum:[43,55],yyyi:[17,22,60],z_0:[11,16,18],zero:[3,6,10,11,45,54,70,74,214],zerocopi:57,zgrep:214,zip:[22,60],zipcod:22,zone:[0,6,22,74],zoomabl:216,zstd:4,zstdcompressor:[11,66]},titles:["Dynamo","Guarantees","Architecture","Overview","Storage Engine","Reporting Bugs","Cassandra Configuration File","Configuring Cassandra","Contact us","Appendices","Changes","Data Definition","Definitions","Data Manipulation","Functions","The Cassandra Query Language (CQL)","Secondary Indexes","JSON Support","Materialized Views","Arithmetic Operators","Security","Triggers","Data Types","Conceptual Data Modeling","Logical Data Modeling","Physical Data Modeling","Defining Application Queries","RDBMS Design","Evaluating and Refining Data Models","Defining Database Schema","Cassandra Data Modeling Tools","Data Modeling","Introduction","Jenkins CI Environment","Code Style","Dependency Management","Working on Documentation","Getting Started","How-to Commit","Review Checklist","Building and IDE Integration","Contributing to Cassandra","Contributing Code Changes","Release Process","Testing","Frequently Asked Questions","Configuring Cassandra","Client drivers","Getting Started","Installing Cassandra","Inserting and querying","Welcome to Apache Cassandra\u2019s documentation!","Audit Logging","Full Query Logging","New Features in Apache Cassandra 4.0","Support for Java 11","Improved Internode Messaging","Improved Streaming","Transient Replication","Virtual Tables","Audit Logging","Backups","Bloom Filters","Bulk Loading","Change Data Capture","Compaction","Compression","Hardware Choices","Hints","Operating Cassandra","Monitoring","Read repair","Repair","Security","Snitch","Adding, replacing, moving and removing nodes","Third-Party Plugins","Cassandra Stress","cqlsh: the CQL shell","Cassandra Tools","assassinate","bootstrap","cleanup","clearsnapshot","clientstats","compact","compactionhistory","compactionstats","decommission","describecluster","describering","disableauditlog","disableautocompaction","disablebackup","disablebinary","disablefullquerylog","disablegossip","disablehandoff","disablehintsfordc","disableoldprotocolversions","drain","enableauditlog","enableautocompaction","enablebackup","enablebinary","enablefullquerylog","enablegossip","enablehandoff","enablehintsfordc","enableoldprotocolversions","failuredetector","flush","garbagecollect","gcstats","getbatchlogreplaythrottle","getcompactionthreshold","getcompactionthroughput","getconcurrency","getconcurrentcompactors","getconcurrentviewbuilders","getendpoints","getinterdcstreamthroughput","getlogginglevels","getmaxhintwindow","getreplicas","getseeds","getsstables","getstreamthroughput","gettimeout","gettraceprobability","gossipinfo","handoffwindow","help","import","info","invalidatecountercache","invalidatekeycache","invalidaterowcache","join","listsnapshots","move","netstats","Nodetool","pausehandoff","profileload","proxyhistograms","rangekeysample","rebuild","rebuild_index","refresh","refreshsizeestimates","reloadlocalschema","reloadseeds","reloadssl","reloadtriggers","relocatesstables","removenode","repair","repair_admin","replaybatchlog","resetfullquerylog","resetlocalschema","resumehandoff","ring","scrub","setbatchlogreplaythrottle","setcachecapacity","setcachekeystosave","setcompactionthreshold","setcompactionthroughput","setconcurrency","setconcurrentcompactors","setconcurrentviewbuilders","sethintedhandoffthrottlekb","setinterdcstreamthroughput","setlogginglevel","setmaxhintwindow","setstreamthroughput","settimeout","settraceprobability","sjk","snapshot","status","statusautocompaction","statusbackup","statusbinary","statusgossip","statushandoff","stop","stopdaemon","tablehistograms","tablestats","toppartitions","tpstats","truncatehints","upgradesstables","verify","version","viewbuildstatus","SSTable Tools","sstabledump","sstableexpiredblockers","sstablelevelreset","sstableloader","sstablemetadata","sstableofflinerelevel","sstablerepairedset","sstablescrub","sstablesplit","sstableupgrade","sstableutil","sstableverify","Find The Misbehaving Nodes","Troubleshooting","Cassandra Logs","Use Nodetool","Diving Deep, Use External Tools"],titleterms:{"break":28,"class":74,"final":210,"function":[13,14,17],"import":[34,63,133],"long":44,"new":[45,54],"switch":65,"transient":[0,58],Added:56,Adding:75,Doing:205,IDE:40,IDEs:34,LCS:65,QoS:56,TLS:73,The:[13,15,17,59,65,212],USE:11,Use:[66,203,215,216],Uses:66,Using:[32,40,52,55,63,206],Will:45,With:73,about:33,abov:204,accept:63,access:73,adcanc:60,add:[35,45],address:45,advanc:[66,216],after:75,aggreg:14,alias:13,all:[20,45,61,204,210],alloc:75,allocate_tokens_for_keyspac:6,allocate_tokens_for_local_replication_factor:6,allow:[13,68],alreadi:202,alter:[11,18,20,22],analysi:32,ani:45,announc:43,answer:37,anti:24,apach:[33,40,51,54],api:63,appendic:9,appendix:9,applic:[26,56,68],architectur:2,archiv:52,arithmet:19,artifact:43,ask:45,assassin:80,assign:75,assur:56,attempt:208,audit:[52,60],audit_logging_opt:6,auditlog:60,auth:73,authent:[6,20,73],author:[6,73],auto_snapshot:6,automat:20,automatic_sstable_upgrad:6,avail:[1,57],avg:14,back_pressure_en:6,back_pressure_strategi:6,background:71,backup:[61,63],base:[36,57],basic:[207,211,216],batch:[1,13,45,70],batch_size_fail_threshold_in_kb:6,batch_size_warn_threshold_in_kb:6,batchlog_replay_throttle_in_kb:6,bcc:216,befor:42,behavior:71,below:57,benefit:[57,66],best:72,between:[27,58],binari:49,binauditlogg:60,bintrai:43,blob:[14,45],block:[71,201],bloom:62,boilerpl:34,bootstrap:[45,65,75,81],branch:42,broadcast_address:6,broadcast_rpc_address:6,buffer_pool_use_heap_if_exhaust:6,bufferpool:70,bug:[5,37,42],build:[40,55],bulk:[45,63],cach:[59,70,73,216],calcul:28,call:[43,45],can:45,cap:1,capi:76,captur:[60,64,78,216],cas_contention_timeout_in_m:6,cassandra:[6,7,15,17,27,30,33,36,40,41,43,44,45,46,49,51,54,60,64,69,71,73,76,77,79,209,214],cast:14,categori:52,cdc:64,cdc_enabl:6,cdc_free_space_check_interval_m:6,cdc_raw_directori:6,cdc_total_space_in_mb:6,certif:73,chang:[10,42,45,46,62,64,65],characterist:22,cheap:58,check:207,checklist:39,choic:67,choos:42,circleci:44,claus:13,clean:210,cleanup:[75,82],clear:[61,78],clearsnapshot:83,client:[47,50,59,70,73,212],client_encryption_opt:6,clientstat:84,clojur:47,close:56,cloud:67,cluster:[0,45,203,215],cluster_nam:6,code:[4,34,42],collect:[22,65,216],column_index_cache_size_in_kb:6,column_index_size_in_kb:6,command:[40,60,65,78,206],comment:12,commit:38,commit_failure_polici:6,commitlog:[4,70],commitlog_compress:6,commitlog_directori:6,commitlog_segment_size_in_mb:6,commitlog_sync:6,commitlog_sync_batch_window_in_m:6,commitlog_sync_group_window_in_m:6,commitlog_sync_period_in_m:6,commitlog_total_space_in_mb:6,commitlogseg:64,committ:36,commod:0,common:[11,55,65,67,214],compact:[9,65,70,85,215],compaction_large_partition_warning_threshold_mb:6,compaction_throughput_mb_per_sec:6,compactionhistori:86,compactionstat:87,compactionstrategi:65,compar:[32,53],compat:78,compon:57,compress:66,conceptu:23,concern:65,concurrent_compactor:6,concurrent_counter_writ:6,concurrent_materialized_view_build:6,concurrent_materialized_view_writ:6,concurrent_read:6,concurrent_valid:6,concurrent_writ:6,condition:20,config:203,configur:[6,7,46,52,53,57,60,61,64,66,68,71],conflict:35,connect:[20,45,56],consist:[0,1,71,78],constant:12,contact:8,content:[43,60],contribut:[37,41,42],control:20,convent:[12,34],convers:14,coordin:215,copi:[57,78],corrupt:[56,207,211],corrupted_tombstone_strategi:6,count:14,counter:[13,22,207],counter_cache_keys_to_sav:6,counter_cache_save_period:6,counter_cache_size_in_mb:6,counter_write_request_timeout_in_m:6,cpu:[67,216],cql:[9,15,53,70,78],cqlsh:[50,78],cqlshrc:78,cqlsstablewrit:63,creat:[11,14,16,18,20,21,22,37,42,43,61],credenti:20,credentials_update_interval_in_m:6,credentials_validity_in_m:6,cross_node_timeout:6,cstar_perf:44,current:[14,209],custom:22,cycl:53,cython:78,dart:47,data:[0,11,13,17,20,22,23,24,25,28,30,31,32,45,61,63,64,65,75],data_file_directori:6,databas:[20,29],datacent:20,dataset:0,date:[14,22,207],datetim:[14,19],dead:75,deal:207,debian:49,debug:[40,214],decis:27,decommiss:[57,88],deep:216,defin:[14,22,26,29],definit:[11,12,59],defragment:65,delet:[13,43,45,65],deliveri:68,demo:[52,63],denorm:27,depend:[35,78],deploy:57,describ:[59,78,90],describeclust:89,deseri:56,design:[27,32],detail:[65,203],detect:0,develop:43,diagnost:[52,71],diagnostic_events_en:6,dies:45,differ:[27,59,61],directori:[46,52,53,61,65],disabl:[60,64],disableauditlog:91,disableautocompact:92,disablebackup:93,disablebinari:94,disablefullquerylog:95,disablegossip:96,disablehandoff:97,disablehintsfordc:98,disableoldprotocolvers:99,disallow:57,disk:[28,45,67,68],disk_failure_polici:6,disk_optimization_strategi:6,displai:200,distribut:[0,43],dive:216,document:[36,37,51],doe:[45,52,60],down:68,drain:100,driven:32,driver:[47,50],drop:[9,11,14,16,18,20,21,22,45,57],droppedmessag:70,dry:205,dtest:[37,44],dump:200,durabl:1,durat:22,dynam:74,dynamic_snitch_badness_threshold:6,dynamic_snitch_reset_interval_in_m:6,dynamic_snitch_update_interval_in_m:6,dynamo:0,each:[45,204],each_quorum:58,eclips:40,effici:56,elig:57,elixir:47,email:45,enabl:[52,53,57,58,60,64,73],enable_materialized_view:6,enable_sasi_index:6,enable_scripted_user_defined_funct:6,enable_transient_repl:6,enable_user_defined_funct:6,enableauditlog:101,enableautocompact:102,enablebackup:103,enablebinari:104,enablefullquerylog:105,enablegossip:106,enablehandoff:107,enablehintsfordc:108,enableoldprotocolvers:109,encod:17,encrypt:73,endpoint_snitch:6,engin:4,entir:200,entri:45,environ:[33,46],erlang:47,error:[45,56,212],evalu:28,even:45,event:[52,71],eventu:1,exampl:[4,32,61,71,72],except:34,exclud:200,exist:45,exit:78,expand:78,expect:71,experiment:6,expir:65,expiri:56,explan:204,extend:211,extern:[63,216],factor:45,fail:[45,75],failur:[0,45,56],failuredetector:110,faq:77,faster:68,featur:[3,6,54],file:[6,34,35,49,60,203,208,211,214],file_cache_size_in_mb:6,fileauditlogg:60,filedescriptorratio:70,filter:[13,60,62],find:[61,212],first:27,fix:[37,42],flamegraph:216,flexibl:52,flow:36,flush:111,format:[34,200],found:[202,205],fql:53,frame:56,freez:42,frequenc:52,frequent:45,from:[40,43,45,49,56,59,61,63,78,203],fromjson:17,full:[53,58,72,214],full_query_logging_opt:6,fulli:65,further:64,garbag:[65,216],garbagecollect:112,garbagecollector:70,gc_grace_second:65,gc_log_threshold_in_m:6,gc_warn_threshold_in_m:6,gcstat:113,gener:[34,63],get:[37,48,203,214],getbatchlogreplaythrottl:114,getcompactionthreshold:115,getcompactionthroughput:116,getconcurr:117,getconcurrentcompactor:118,getconcurrentviewbuild:119,getendpoint:120,getinterdcstreamthroughput:121,getlogginglevel:122,getmaxhintwindow:123,getreplica:124,getse:125,getsstabl:126,getstreamthroughput:127,gettimeout:128,gettraceprob:129,github:36,give:45,goal:32,gossip:0,gossipinfo:130,gpg:43,grace:[65,204],grant:20,graph:77,group:13,guarante:1,handl:34,handoff:68,handoffwindow:131,hang:75,happen:45,hardwar:[0,67],has:202,hash:0,haskel:47,heap:45,help:[78,132],hide:203,high:[1,57,216],hint:[56,68],hinted_handoff_disabled_datacent:6,hinted_handoff_en:6,hinted_handoff_throttle_in_kb:6,hintedhandoff:70,hints_compress:6,hints_directori:6,hints_flush_period_in_m:6,hintsservic:70,host:[45,78],hot:73,hotel:[24,25],how:[36,38,45,59,60],htop:216,idea:40,ideal_consistency_level:6,identifi:12,impact:66,improv:[56,57,71],inbound:[56,59],includ:210,increment:[0,61,63,72],incremental_backup:6,index:[1,16,70,76],index_summary_capacity_in_mb:6,index_summary_resize_interval_in_minut:6,info:134,inform:[214,216],initi:37,initial_token:6,insert:[13,17,50],instal:49,integr:[27,40,73],intellij:40,inter:73,inter_dc_stream_throughput_outbound_megabits_per_sec:6,inter_dc_tcp_nodelai:6,interfac:0,intern:[20,73,200],internod:[56,59],internode_application_receive_queue_capacity_in_byt:6,internode_application_receive_queue_reserve_endpoint_capacity_in_byt:6,internode_application_receive_queue_reserve_global_capacity_in_byt:6,internode_application_send_queue_capacity_in_byt:6,internode_application_send_queue_reserve_endpoint_capacity_in_byt:6,internode_application_send_queue_reserve_global_capacity_in_byt:6,internode_authent:6,internode_compress:6,internode_recv_buff_size_in_byt:6,internode_send_buff_size_in_byt:6,introduct:32,invalidatecountercach:135,invalidatekeycach:136,invalidaterowcach:137,investig:[37,212],iostat:216,issu:55,java:[45,47,55,63],jconsol:45,jenkin:33,jira:[36,43],jmx:[45,65,70,73],job:33,join:[27,45,138],json:17,jstack:216,jstat:216,jvm:[70,216],keep:209,kei:[16,18,43,200],key_cache_keys_to_sav:6,key_cache_save_period:6,key_cache_size_in_mb:6,keyspac:[11,45,52,57,59,61,63,70,205],keyword:[9,12],lang:45,languag:15,larg:[28,45],latenc:[212,215,216],level:[0,65,71,202,216],librari:35,lightweight:[1,77],limit:[13,18,56,59,60],line:[40,78],lineariz:1,list:[8,20,22,37,45,59,61,210],listen:45,listen_address:[6,45],listen_interfac:6,listen_interface_prefer_ipv6:6,listen_on_broadcast_address:6,listsnapshot:139,liter:22,live:45,load:[45,63,203],local:[36,56,215],locat:46,log:[45,46,52,53,60,65,210,212,214],logger:[52,53,214],logic:24,login:78,longer:68,lot:[45,206],lucen:76,made:45,mail:8,main:46,major:65,make:68,manag:[35,200],mani:206,manifest:207,manipul:13,manual:75,map:[16,22,45],master:0,materi:[18,32],matrix:55,max:[14,45],max_concurrent_automatic_sstable_upgrad:6,max_hint_window_in_m:6,max_hints_delivery_thread:6,max_hints_file_size_in_mb:6,max_value_size_in_mb:6,maxtimeuuid:14,mean:45,membership:0,memori:[45,67,70],memorypool:70,memtabl:4,memtable_allocation_typ:6,memtable_cleanup_threshold:6,memtable_flush_writ:6,memtable_heap_space_in_mb:6,memtable_offheap_space_in_mb:6,merg:65,messag:[45,56,59],metadata:[204,206],method:45,metric:[56,70,212],min:14,minor:65,mintimeuuid:14,misbehav:212,mode:77,model:[0,23,24,25,28,30,31,32],monitor:[68,70,75],monoton:71,more:[45,65,200,203,214],move:[75,140],movement:75,multi:[0,57],multilin:34,multipl:[0,61,208],name:63,nativ:[14,22],native_transport_allow_older_protocol:6,native_transport_flush_in_batches_legaci:6,native_transport_frame_block_size_in_kb:6,native_transport_idle_timeout_in_m:6,native_transport_max_concurrent_connect:6,native_transport_max_concurrent_connections_per_ip:6,native_transport_max_frame_size_in_mb:6,native_transport_max_thread:6,native_transport_port:6,native_transport_port_ssl:6,net:47,netbean:40,netstat:141,netti:57,network:216,network_author:6,networktopologystrategi:[0,11],newer:40,next:[43,212],nexu:43,nio:56,node:[0,45,57,68,73,75,212],nodej:47,nodetool:[45,52,60,63,65,68,142,215],none:71,note:36,noteworthi:22,now:14,num_token:6,number:[19,57],object:[53,58,59],old:[43,209],one:[45,206],onli:[45,200,210],open:[40,56],oper:[3,19,43,45,57,65,66,69],optim:[27,56],option:[18,52,53,58,60,63,65,72,78],order:13,otc_backlog_expiration_interval_m:6,otc_coalescing_enough_coalesced_messag:6,otc_coalescing_strategi:6,otc_coalescing_window_u:6,other:[45,52,53,59,72],out:[0,68],outbound:56,outofmemoryerror:45,output:[60,200,201,203],overflow:207,overhead:53,overload:56,overview:[3,64],own:33,packag:[43,49],packet:216,page:[78,216],parallel:57,paramet:[13,64,65],parti:76,partit:[0,28,32],partition:6,password:73,patch:[37,42],path:56,pattern:24,pausehandoff:143,paxo:56,pend:58,per:0,perform:[43,44,53],periodic_commitlog_sync_lag_block_in_m:6,perl:47,permiss:20,permissions_update_interval_in_m:6,permissions_validity_in_m:6,phi_convict_threshold:6,php:47,physic:[0,25],pick:0,plai:68,plugin:[33,76],point:45,pom:35,pool:59,port:45,post:43,practic:72,prepar:[12,56],prepared_statements_cache_size_mb:6,prerequisit:[43,49],prevent:56,preview:57,primari:18,print:[204,206],process:43,profil:77,profileload:144,progress:[75,203],project:40,promot:43,properti:46,propos:56,protocol:56,proxyhistogram:145,publish:[36,43],python:47,pytz:78,qualiti:56,queri:[0,15,26,27,32,50,53,212,214,215],question:[37,45],queu:56,quorum:[58,71],rang:[58,75],range_request_timeout_in_m:6,rangekeysampl:146,rate:212,raw:200,rdbm:27,read:[58,64,71],read_request_timeout_in_m:6,rebuild:147,rebuild_index:148,reconnect:56,record:0,recov:56,reduc:202,referenti:27,refin:28,refresh:149,refreshsizeestim:150,refus:45,regular:59,relat:32,releas:43,relevel:205,reliabl:216,reload:[60,73],reloadlocalschema:151,reloadse:152,reloadssl:153,reloadtrigg:154,relocatesst:155,remot:45,remov:[65,75],removenod:156,repair:[57,58,65,71,72,157,206],repair_admin:158,repair_session_space_in_mb:6,repaired_data_tracking_for_partition_reads_en:6,repaired_data_tracking_for_range_reads_en:6,replac:75,replai:53,replaybatchlog:159,replic:[0,45,58],replica:[0,57,58],report:[5,37,45,70],report_unconfirmed_repaired_data_mismatch:6,repositori:43,request:[56,68,70],request_timeout_in_m:6,requir:[33,35],reserv:[9,24,25],resetfullquerylog:160,resetlocalschema:161,resili:56,resolut:35,resourc:[56,216],restor:61,restrict:20,result:13,resum:75,resumehandoff:162,retriev:14,review:[37,39],revok:20,rewrit:209,rhel:45,right:42,ring:[0,45,163],role:[20,73],role_manag:6,roles_update_interval_in_m:6,roles_validity_in_m:6,roll:[52,53],row:200,row_cache_class_nam:6,row_cache_keys_to_sav:6,row_cache_save_period:6,row_cache_size_in_mb:6,rowcach:76,rpc_address:6,rpc_interfac:6,rpc_interface_prefer_ipv6:6,rpc_keepal:6,rubi:47,run:[44,53,205],runtim:[46,68],rust:47,safeti:6,sai:45,same:[45,61],sampl:60,saved_caches_directori:6,scala:47,scalabl:1,scalar:14,scale:0,schema:[29,32],script:206,scrub:[164,207],second:204,secondari:[1,16],secur:[20,73],see:45,seed:[33,45],seed_provid:6,select:[13,17,18],selector:13,send:43,serial:[56,78],server:33,server_encryption_opt:6,session:78,set:[20,22,33,40,45,52,53,59,61,206],setbatchlogreplaythrottl:165,setcachecapac:166,setcachekeystosav:167,setcompactionthreshold:168,setcompactionthroughput:169,setconcurr:170,setconcurrentcompactor:171,setconcurrentviewbuild:172,sethintedhandoffthrottlekb:173,setinterdcstreamthroughput:174,setlogginglevel:175,setmaxhintwindow:176,setstreamthroughput:177,settimeout:178,settraceprob:179,setup:[33,40],share:78,shell:78,show:[45,78,206],sign:43,signatur:14,simpl:0,simplestrategi:[0,11],singl:[45,61,65,200],size:[28,56,65,208],sjk:180,skip:207,slack:[8,43],slow_query_log_timeout_in_m:6,small:208,snapshot:[61,63,181,203,208,209],snapshot_before_compact:6,snitch:74,sort:27,sourc:[40,78],special:78,specif:20,specifi:[204,208],specul:58,speed:[45,203],sphinx:36,split:208,ssl:[73,203],ssl_storage_port:6,sstabl:[4,57,59,63,65,70,199,201,202,203,206,210],sstable_preemptive_open_interval_in_mb:6,sstabledump:200,sstableexpiredblock:201,sstablelevelreset:202,sstableload:[63,203],sstablemetadata:204,sstableofflinerelevel:205,sstablerepairedset:206,sstablescrub:207,sstablesplit:208,sstableupgrad:209,sstableutil:210,sstableverifi:211,stage:56,stai:45,standard:73,start:[37,40,42,48],start_native_transport:6,starv:65,state:[215,216],statement:[12,18,34,53],statu:[182,206,215],statusautocompact:183,statusbackup:184,statusbinari:185,statusgossip:186,statushandoff:187,stc:65,step:[35,212],stop:188,stopdaemon:189,storag:[4,9,27,68,70],storage_port:6,store:[0,45],strategi:[0,65],stratio:76,stream:[45,57,70,75],stream_entire_sst:6,stream_throughput_outbound_megabits_per_sec:6,streaming_connections_per_host:6,streaming_keep_alive_period_in_sec:6,stress:[44,77],structur:[61,200],style:34,submit:37,sum:14,support:[17,55,58,77],sync:43,synchron:0,system:214,system_virtual_schema:59,tabl:[11,56,59,61,64,70,71,200,202,205,207,209],tablehistogram:190,tablestat:191,take:61,tarbal:49,target:63,task:59,temporari:210,term:12,test:[33,37,40,44],than:45,thei:45,third:76,though:45,thread:[59,216],threadpool:[70,215],threshold:6,throttl:203,throughput:216,tier:65,time:[14,22,65,68],timeout:56,timestamp:[22,45,200],timeuuid:14,timewindowcompactionstrategi:65,todo:11,tojson:17,token:[0,14,75],tombston:65,tombstone_failure_threshold:6,tombstone_warn_threshold:6,tool:[30,44,63,79,199,216],top:[45,216],topic:43,toppartit:192,tpstat:193,trace:78,tracetype_query_ttl:6,tracetype_repair_ttl:6,transact:[1,77,210],transit:58,transparent_data_encryption_opt:6,trickle_fsync:6,trickle_fsync_interval_in_kb:6,trigger:[21,65],troubleshoot:[35,213],truncat:11,truncate_request_timeout_in_m:6,truncatehint:194,ttl:[13,65],tunabl:0,tupl:22,tweet:43,two:45,type:[9,17,22,35,57,61,65,70],udt:22,unabl:45,uniqu:57,unit:[37,40,44],unknown:56,unlog:13,unlogged_batch_across_partitions_warn_threshold:6,unrepair:[65,206],unsubscrib:45,updat:[13,35,37,43,45],upgradesst:195,upload:43,usag:[45,72,77,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,216],use:45,user:[14,20,22,37,52,77],using:[0,36,45,65],uuid:14,valid:207,valu:204,variabl:46,verif:211,verifi:196,version:[0,4,10,43,78,197,209],view:[18,32,52,53,60],viewbuildstatu:198,virtual:[56,59],vmtouch:216,vnode:0,vote:43,wait:43,warn:64,websit:43,welcom:51,what:[1,32,42,45,52,60],when:[45,56,57,65],where:13,whitespac:34,why:[45,65],window:65,windows_timer_interv:6,without:[65,207,208],work:[22,36,42],write:[1,58,68],write_request_timeout_in_m:6,writetim:13,yaml:[60,64],you:42,your:[33,43],zero:57}})
\ No newline at end of file
+Search.setIndex({docnames:["architecture/dynamo","architecture/guarantees","architecture/index","architecture/overview","architecture/storage_engine","bugs","configuration/cassandra_config_file","configuration/index","contactus","cql/appendices","cql/changes","cql/ddl","cql/definitions","cql/dml","cql/functions","cql/index","cql/indexes","cql/json","cql/mvs","cql/operators","cql/security","cql/triggers","cql/types","data_modeling/data_modeling_conceptual","data_modeling/data_modeling_logical","data_modeling/data_modeling_physical","data_modeling/data_modeling_queries","data_modeling/data_modeling_rdbms","data_modeling/data_modeling_refining","data_modeling/data_modeling_schema","data_modeling/data_modeling_tools","data_modeling/index","data_modeling/intro","development/ci","development/code_style","development/dependencies","development/documentation","development/gettingstarted","development/how_to_commit","development/how_to_review","development/ide","development/index","development/patches","development/release_process","development/testing","faq/index","getting_started/configuring","getting_started/drivers","getting_started/index","getting_started/installing","getting_started/production","getting_started/querying","index","new/auditlogging","new/fqllogging","new/index","new/java11","new/messaging","new/streaming","new/transientreplication","new/virtualtables","operating/audit_logging","operating/backups","operating/bloom_filters","operating/bulk_loading","operating/cdc","operating/compaction/index","operating/compaction/lcs","operating/compaction/stcs","operating/compaction/twcs","operating/compression","operating/hardware","operating/hints","operating/index","operating/metrics","operating/read_repair","operating/repair","operating/security","operating/snitch","operating/topo_changes","plugins/index","tools/cassandra_stress","tools/cqlsh","tools/index","tools/nodetool/assassinate","tools/nodetool/bootstrap","tools/nodetool/cleanup","tools/nodetool/clearsnapshot","tools/nodetool/clientstats","tools/nodetool/compact","tools/nodetool/compactionhistory","tools/nodetool/compactionstats","tools/nodetool/decommission","tools/nodetool/describecluster","tools/nodetool/describering","tools/nodetool/disableauditlog","tools/nodetool/disableautocompaction","tools/nodetool/disablebackup","tools/nodetool/disablebinary","tools/nodetool/disablefullquerylog","tools/nodetool/disablegossip","tools/nodetool/disablehandoff","tools/nodetool/disablehintsfordc","tools/nodetool/disableoldprotocolversions","tools/nodetool/drain","tools/nodetool/enableauditlog","tools/nodetool/enableautocompaction","tools/nodetool/enablebackup","tools/nodetool/enablebinary","tools/nodetool/enablefullquerylog","tools/nodetool/enablegossip","tools/nodetool/enablehandoff","tools/nodetool/enablehintsfordc","tools/nodetool/enableoldprotocolversions","tools/nodetool/failuredetector","tools/nodetool/flush","tools/nodetool/garbagecollect","tools/nodetool/gcstats","tools/nodetool/getbatchlogreplaythrottle","tools/nodetool/getcompactionthreshold","tools/nodetool/getcompactionthroughput","tools/nodetool/getconcurrency","tools/nodetool/getconcurrentcompactors","tools/nodetool/getconcurrentviewbuilders","tools/nodetool/getendpoints","tools/nodetool/getinterdcstreamthroughput","tools/nodetool/getlogginglevels","tools/nodetool/getmaxhintwindow","tools/nodetool/getreplicas","tools/nodetool/getseeds","tools/nodetool/getsstables","tools/nodetool/getstreamthroughput","tools/nodetool/gettimeout","tools/nodetool/gettraceprobability","tools/nodetool/gossipinfo","tools/nodetool/handoffwindow","tools/nodetool/help","tools/nodetool/import","tools/nodetool/info","tools/nodetool/invalidatecountercache","tools/nodetool/invalidatekeycache","tools/nodetool/invalidaterowcache","tools/nodetool/join","tools/nodetool/listsnapshots","tools/nodetool/move","tools/nodetool/netstats","tools/nodetool/nodetool","tools/nodetool/pausehandoff","tools/nodetool/profileload","tools/nodetool/proxyhistograms","tools/nodetool/rangekeysample","tools/nodetool/rebuild","tools/nodetool/rebuild_index","tools/nodetool/refresh","tools/nodetool/refreshsizeestimates","tools/nodetool/reloadlocalschema","tools/nodetool/reloadseeds","tools/nodetool/reloadssl","tools/nodetool/reloadtriggers","tools/nodetool/relocatesstables","tools/nodetool/removenode","tools/nodetool/repair","tools/nodetool/repair_admin","tools/nodetool/replaybatchlog","tools/nodetool/resetfullquerylog","tools/nodetool/resetlocalschema","tools/nodetool/resumehandoff","tools/nodetool/ring","tools/nodetool/scrub","tools/nodetool/setbatchlogreplaythrottle","tools/nodetool/setcachecapacity","tools/nodetool/setcachekeystosave","tools/nodetool/setcompactionthreshold","tools/nodetool/setcompactionthroughput","tools/nodetool/setconcurrency","tools/nodetool/setconcurrentcompactors","tools/nodetool/setconcurrentviewbuilders","tools/nodetool/sethintedhandoffthrottlekb","tools/nodetool/setinterdcstreamthroughput","tools/nodetool/setlogginglevel","tools/nodetool/setmaxhintwindow","tools/nodetool/setstreamthroughput","tools/nodetool/settimeout","tools/nodetool/settraceprobability","tools/nodetool/sjk","tools/nodetool/snapshot","tools/nodetool/status","tools/nodetool/statusautocompaction","tools/nodetool/statusbackup","tools/nodetool/statusbinary","tools/nodetool/statusgossip","tools/nodetool/statushandoff","tools/nodetool/stop","tools/nodetool/stopdaemon","tools/nodetool/tablehistograms","tools/nodetool/tablestats","tools/nodetool/toppartitions","tools/nodetool/tpstats","tools/nodetool/truncatehints","tools/nodetool/upgradesstables","tools/nodetool/verify","tools/nodetool/version","tools/nodetool/viewbuildstatus","tools/sstable/index","tools/sstable/sstabledump","tools/sstable/sstableexpiredblockers","tools/sstable/sstablelevelreset","tools/sstable/sstableloader","tools/sstable/sstablemetadata","tools/sstable/sstableofflinerelevel","tools/sstable/sstablerepairedset","tools/sstable/sstablescrub","tools/sstable/sstablesplit","tools/sstable/sstableupgrade","tools/sstable/sstableutil","tools/sstable/sstableverify","troubleshooting/finding_nodes","troubleshooting/index","troubleshooting/reading_logs","troubleshooting/use_nodetool","troubleshooting/use_tools"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,"sphinx.ext.todo":1,sphinx:54},filenames:["architecture/dynamo.rst","architecture/guarantees.rst","architecture/index.rst","architecture/overview.rst","architecture/storage_engine.rst","bugs.rst","configuration/cassandra_config_file.rst","configuration/index.rst","contactus.rst","cql/appendices.rst","cql/changes.rst","cql/ddl.rst","cql/definitions.rst","cql/dml.rst","cql/functions.rst","cql/index.rst","cql/indexes.rst","cql/json.rst","cql/mvs.rst","cql/operators.rst","cql/security.rst","cql/triggers.rst","cql/types.rst","data_modeling/data_modeling_conceptual.rst","data_modeling/data_modeling_logical.rst","data_modeling/data_modeling_physical.rst","data_modeling/data_modeling_queries.rst","data_modeling/data_modeling_rdbms.rst","data_modeling/data_modeling_refining.rst","data_modeling/data_modeling_schema.rst","data_modeling/data_modeling_tools.rst","data_modeling/index.rst","data_modeling/intro.rst","development/ci.rst","development/code_style.rst","development/dependencies.rst","development/documentation.rst","development/gettingstarted.rst","development/how_to_commit.rst","development/how_to_review.rst","development/ide.rst","development/index.rst","development/patches.rst","development/release_process.rst","development/testing.rst","faq/index.rst","getting_started/configuring.rst","getting_started/drivers.rst","getting_started/index.rst","getting_started/installing.rst","getting_started/production.rst","getting_started/querying.rst","index.rst","new/auditlogging.rst","new/fqllogging.rst","new/index.rst","new/java11.rst","new/messaging.rst","new/streaming.rst","new/transientreplication.rst","new/virtualtables.rst","operating/audit_logging.rst","operating/backups.rst","operating/bloom_filters.rst","operating/bulk_loading.rst","operating/cdc.rst","operating/compaction/index.rst","operating/compaction/lcs.rst","operating/compaction/stcs.rst","operating/compaction/twcs.rst","operating/compression.rst","operating/hardware.rst","operating/hints.rst","operating/index.rst","operating/metrics.rst","operating/read_repair.rst","operating/repair.rst","operating/security.rst","operating/snitch.rst","operating/topo_changes.rst","plugins/index.rst","tools/cassandra_stress.rst","tools/cqlsh.rst","tools/index.rst","tools/nodetool/assassinate.rst","tools/nodetool/bootstrap.rst","tools/nodetool/cleanup.rst","tools/nodetool/clearsnapshot.rst","tools/nodetool/clientstats.rst","tools/nodetool/compact.rst","tools/nodetool/compactionhistory.rst","tools/nodetool/compactionstats.rst","tools/nodetool/decommission.rst","tools/nodetool/describecluster.rst","tools/nodetool/describering.rst","tools/nodetool/disableauditlog.rst","tools/nodetool/disableautocompaction.rst","tools/nodetool/disablebackup.rst","tools/nodetool/disablebinary.rst","tools/nodetool/disablefullquerylog.rst","tools/nodetool/disablegossip.rst","tools/nodetool/disablehandoff.rst","tools/nodetool/disablehintsfordc.rst","tools/nodetool/disableoldprotocolversions.rst","tools/nodetool/drain.rst","tools/nodetool/enableauditlog.rst","tools/nodetool/enableautocompaction.rst","tools/nodetool/enablebackup.rst","tools/nodetool/enablebinary.rst","tools/nodetool/enablefullquerylog.rst","tools/nodetool/enablegossip.rst","tools/nodetool/enablehandoff.rst","tools/nodetool/enablehintsfordc.rst","tools/nodetool/enableoldprotocolversions.rst","tools/nodetool/failuredetector.rst","tools/nodetool/flush.rst","tools/nodetool/garbagecollect.rst","tools/nodetool/gcstats.rst","tools/nodetool/getbatchlogreplaythrottle.rst","tools/nodetool/getcompactionthreshold.rst","tools/nodetool/getcompactionthroughput.rst","tools/nodetool/getconcurrency.rst","tools/nodetool/getconcurrentcompactors.rst","tools/nodetool/getconcurrentviewbuilders.rst","tools/nodetool/getendpoints.rst","tools/nodetool/getinterdcstreamthroughput.rst","tools/nodetool/getlogginglevels.rst","tools/nodetool/getmaxhintwindow.rst","tools/nodetool/getreplicas.rst","tools/nodetool/getseeds.rst","tools/nodetool/getsstables.rst","tools/nodetool/getstreamthroughput.rst","tools/nodetool/gettimeout.rst","tools/nodetool/gettraceprobability.rst","tools/nodetool/gossipinfo.rst","tools/nodetool/handoffwindow.rst","tools/nodetool/help.rst","tools/nodetool/import.rst","tools/nodetool/info.rst","tools/nodetool/invalidatecountercache.rst","tools/nodetool/invalidatekeycache.rst","tools/nodetool/invalidaterowcache.rst","tools/nodetool/join.rst","tools/nodetool/listsnapshots.rst","tools/nodetool/move.rst","tools/nodetool/netstats.rst","tools/nodetool/nodetool.rst","tools/nodetool/pausehandoff.rst","tools/nodetool/profileload.rst","tools/nodetool/proxyhistograms.rst","tools/nodetool/rangekeysample.rst","tools/nodetool/rebuild.rst","tools/nodetool/rebuild_index.rst","tools/nodetool/refresh.rst","tools/nodetool/refreshsizeestimates.rst","tools/nodetool/reloadlocalschema.rst","tools/nodetool/reloadseeds.rst","tools/nodetool/reloadssl.rst","tools/nodetool/reloadtriggers.rst","tools/nodetool/relocatesstables.rst","tools/nodetool/removenode.rst","tools/nodetool/repair.rst","tools/nodetool/repair_admin.rst","tools/nodetool/replaybatchlog.rst","tools/nodetool/resetfullquerylog.rst","tools/nodetool/resetlocalschema.rst","tools/nodetool/resumehandoff.rst","tools/nodetool/ring.rst","tools/nodetool/scrub.rst","tools/nodetool/setbatchlogreplaythrottle.rst","tools/nodetool/setcachecapacity.rst","tools/nodetool/setcachekeystosave.rst","tools/nodetool/setcompactionthreshold.rst","tools/nodetool/setcompactionthroughput.rst","tools/nodetool/setconcurrency.rst","tools/nodetool/setconcurrentcompactors.rst","tools/nodetool/setconcurrentviewbuilders.rst","tools/nodetool/sethintedhandoffthrottlekb.rst","tools/nodetool/setinterdcstreamthroughput.rst","tools/nodetool/setlogginglevel.rst","tools/nodetool/setmaxhintwindow.rst","tools/nodetool/setstreamthroughput.rst","tools/nodetool/settimeout.rst","tools/nodetool/settraceprobability.rst","tools/nodetool/sjk.rst","tools/nodetool/snapshot.rst","tools/nodetool/status.rst","tools/nodetool/statusautocompaction.rst","tools/nodetool/statusbackup.rst","tools/nodetool/statusbinary.rst","tools/nodetool/statusgossip.rst","tools/nodetool/statushandoff.rst","tools/nodetool/stop.rst","tools/nodetool/stopdaemon.rst","tools/nodetool/tablehistograms.rst","tools/nodetool/tablestats.rst","tools/nodetool/toppartitions.rst","tools/nodetool/tpstats.rst","tools/nodetool/truncatehints.rst","tools/nodetool/upgradesstables.rst","tools/nodetool/verify.rst","tools/nodetool/version.rst","tools/nodetool/viewbuildstatus.rst","tools/sstable/index.rst","tools/sstable/sstabledump.rst","tools/sstable/sstableexpiredblockers.rst","tools/sstable/sstablelevelreset.rst","tools/sstable/sstableloader.rst","tools/sstable/sstablemetadata.rst","tools/sstable/sstableofflinerelevel.rst","tools/sstable/sstablerepairedset.rst","tools/sstable/sstablescrub.rst","tools/sstable/sstablesplit.rst","tools/sstable/sstableupgrade.rst","tools/sstable/sstableutil.rst","tools/sstable/sstableverify.rst","troubleshooting/finding_nodes.rst","troubleshooting/index.rst","troubleshooting/reading_logs.rst","troubleshooting/use_nodetool.rst","troubleshooting/use_tools.rst"],objects:{},objnames:{},objtypes:{},terms:{"000kib":[64,207],"000mib":56,"00t89":22,"011mib":207,"014kib":64,"017kib":64,"018kib":[64,207],"01t02":218,"021kib":[64,207],"022kib":64,"024kib":64,"028809z":204,"029kib":64,"031mib":207,"033kib":64,"036kib":64,"03t04":22,"040kib":64,"044kib":64,"045kib":64,"049kib":64,"054mib":207,"055z":204,"056kib":207,"061kib":207,"062mib":207,"063kib":207,"064kib":207,"0665ae80b2d711e886c66d2c86545d91":205,"06t22":218,"077mib":207,"078kib":207,"081kib":207,"082kib":207,"090kib":207,"092mib":207,"096gib":215,"0974e5a0aa5811e8a0a06d2c86545d91":207,"099kib":207,"0_222":49,"0_232":49,"0d927649052c":64,"0ee8b91fdd0":219,"0f03de2d9ae1":60,"0f9a6a95":49,"0h00m04":219,"0percentil":11,"0x0000000000000000":220,"0x0000000000000003":14,"0x00000004":13,"0x00007f829c001000":220,"0x00007f82d0856000":220,"0x00007f82e800e000":220,"0x00007f82e80cc000":220,"0x00007f82e80d7000":220,"0x00007f82e84d0800":220,"0x2a19":220,"0x2a29":220,"0x2a2a":220,"0x2a2c":220,"0x3a74":220,"100b":81,"100k":81,"100m":11,"100mb":[6,32],"1024l":61,"105kib":207,"10m":11,"10mb":6,"10s":[82,220],"10x":[6,67],"115kib":64,"115mib":207,"11e6":82,"11e8":219,"11e9":[60,64,76],"122kib":207,"128kb":220,"128mb":64,"128mib":[6,57],"128th":4,"12gb":71,"12h30m":22,"130mib":207,"142mib":211,"147mib":207,"14fa364d":49,"14t00":218,"150kib":207,"1520e8c38f00":76,"155kib":207,"15m":74,"160mb":67,"162kib":207,"165kib":207,"167kb":220,"16kb":50,"16l":61,"16mb":[45,66],"16th":6,"173kib":207,"176kib":207,"17t06":218,"184kb":220,"192kib":57,"19821dcea330":64,"19t03":[168,211],"1f20868b27c7":[54,76],"1gb":64,"1kb":50,"1mo":22,"1n_r":28,"1st":[22,75],"1ubuntu1":49,"200m":[218,220],"203mib":207,"2062b290":219,"20m":220,"20t20":204,"217kb":220,"217mib":207,"21x":49,"22x":49,"22z":204,"232kib":64,"232mib":207,"233kib":64,"23t06":218,"23z":204,"244m":220,"245mib":207,"247mib":207,"24h":22,"25005289beb2":204,"250m":6,"251m":220,"253mib":207,"256mb":6,"256th":6,"258mib":207,"25mb":220,"265kib":207,"266k":49,"270mib":207,"27t04":218,"280mib":207,"28757dde":49,"28757dde589f70410f9a6a95c39ee7e6cde63440e2b06b91ae6b200614fa364d":49,"28t17":218,"295kib":207,"296a2d30":64,"296a2d30c22a11e9b1350d927649052c":[62,64],"299kib":207,"29d":22,"29t00":218,"2cc0":219,"2e10":10,"2gb":71,"2nd":[6,11,75,78],"2xlarg":71,"300mib":207,"300s":6,"307kib":207,"30kb":220,"30s":6,"30t23":218,"30x":49,"311x":49,"314kib":207,"320k":49,"322kib":207,"325kib":207,"327e":82,"32gb":71,"32mb":[6,45],"331mib":207,"333kib":207,"33m":218,"348mib":207,"353mib":215,"3578d7de":204,"35ea8c9f":219,"361kib":207,"366b":220,"370mib":207,"378711z":204,"383b":220,"384z":204,"385b":220,"386kib":207,"387mib":207,"388mib":207,"392kib":207,"392mib":207,"394kib":207,"3f22a07b2bc6":204,"3ff3e5109f22":13,"3gb":[70,220],"3ms":220,"3rd":[6,74,78],"401mib":207,"406mib":207,"40a7":219,"40f3":13,"40fa":219,"40s":220,"40x":49,"410kib":207,"412kib":207,"416mib":215,"41b52700b4ed11e896476d2c86545d91":208,"41f9":[54,76],"423b":220,"423kib":207,"4248dc9d790e":204,"431kib":207,"43kb":220,"440kib":207,"443kib":207,"446eae30c22a11e9b1350d927649052c":[62,64],"449mib":207,"452kib":207,"457mib":207,"458mib":207,"45f4":[54,76],"461mib":207,"465kib":207,"46b4":[54,76],"46e9":219,"476mib":207,"481mib":207,"482mib":211,"48d6":204,"4ae3":13,"4d40":204,"4dcdadd2":[54,76],"4f34":[54,76],"4f3438394e39374d3730":208,"4f58":219,"4kb":[11,50],"4mib":[6,57],"4th":76,"4xlarg":71,"500m":220,"501mib":207,"50kb":[6,220],"50m":[11,220],"50mb":[6,61,68,212],"50th":216,"512mb":6,"512mib":[6,57],"513kib":207,"521kib":207,"522kib":64,"524kib":207,"536kib":207,"543mib":207,"545kib":207,"54kb":220,"550mib":207,"5573e5b09f14":13,"559kib":207,"561mib":207,"563kib":207,"563mib":207,"56m":218,"571kib":207,"576kb":220,"5850e9f0a63711e8a5c5091830ac5256":213,"589f7041":49,"591mib":207,"592kib":207,"5gb":61,"5kb":6,"5level":61,"5mb":67,"603kib":207,"606mib":207,"60m":11,"61111111111111e":208,"613mib":207,"619kib":207,"61de":219,"635kib":207,"6365332094dd11e88f324f9c503e4753":[206,209,211,212,214,215],"638mib":207,"640kib":207,"646mib":207,"64k":6,"64kb":[50,70],"64kib":57,"650b":220,"65c429e08c5a11e8939edf4f403979ef":[204,206],"65kb":220,"663kib":207,"665kib":207,"669kb":220,"683kib":64,"684b":[54,76],"684mib":207,"688kib":207,"690mib":207,"6e630115fd75":219,"6gb":219,"6ms":6,"701mib":207,"715b":220,"718mib":207,"71b0a49":218,"725mib":207,"730kib":207,"732mib":207,"734mib":207,"736kb":220,"7374e9b5ab08c1f1e612bf72293ea14c959b0c3c":38,"737mib":207,"738mib":207,"743kib":207,"744mib":207,"751mib":207,"752e278f":219,"75th":74,"771mib":207,"775mib":215,"780mib":207,"782kib":207,"783522z":204,"789z":204,"791mib":207,"793kib":207,"798mib":207,"79kb":220,"7f3a":219,"802kib":207,"807kib":64,"812mib":207,"813kib":207,"814kib":207,"832mib":207,"835kib":207,"840kib":207,"843mib":207,"845b":220,"846kib":207,"848kib":207,"84fc":204,"861mib":207,"86400s":66,"869kb":220,"872kib":207,"877mib":207,"880mib":207,"882kib":207,"889mib":207,"892kib":207,"894mib":207,"89h4m48":22,"8gb":[71,220],"8th":[6,65],"8u222":49,"903mib":207,"90percentil":11,"90th":74,"911kib":207,"920kib":207,"920mib":207,"9328455af73f":219,"938kib":207,"954kib":207,"957mib":207,"95ac6470":82,"95th":74,"965kib":207,"9695b790a63211e8a6fb091830ac5256":213,"974b":219,"975kib":207,"983kib":207,"98th":74,"993mib":207,"996kib":207,"99f7":[54,76],"99p":[11,64],"99percentil":[11,59],"99th":[74,216],"9dc1a293":219,"9e6054da04a7":219,"9eeb":[54,76],"9gb":220,"9percentil":11,"9th":74,"\u00eatre":9,"abstract":[34,39],"boolean":[9,11,12,14,17,20,22,28,29,60,82],"break":[11,31,42,66,75,213,217,220],"byte":[4,6,9,13,22,28,50,54,57,60,74,91,109,145,195,207,219],"case":[4,6,10,11,12,13,14,16,17,18,22,24,26,27,28,35,38,39,42,44,45,50,57,59,63,64,71,72,77,79,81,82,207,218,219,220],"catch":[34,57,209],"class":[3,6,11,14,22,29,34,40,44,50,53,54,56,59,60,61,62,64,66,70,73,76,77,81,146,158,179,207,218],"default":[0,4,6,10,11,13,14,17,18,20,22,27,33,40,44,45,46,50,53,54,57,58,59,61,62,63,64,65,66,67,68,69,70,72,74,75,76,77,79,81,82,86,105,109,116,145,146,148,151,161,162,168,183,185,196,204,207,208,212,216,218,219,220],"enum":[9,58],"export":[40,56,74,82,220],"final":[14,20,24,28,34,36,40,43,54,61,64,65,66,71,77,83,162,203,220],"float":[9,10,11,12,14,17,19,22,63,70],"function":[0,3,6,9,10,11,12,15,16,18,20,22,28,32,39,47,52,53,54,60,61,77,78,80,82,203],"goto":33,"import":[1,11,14,22,23,24,27,32,40,41,44,46,50,58,59,62,66,71,72,73,74,76,82,146,216,219,220],"int":[4,9,10,11,13,14,17,18,19,20,22,32,44,54,60,62,64,65,70,74,75,76],"long":[4,6,13,22,27,38,39,45,53,56,62,66,72,74,75,81,210,211,218,220],"new":[0,1,3,4,6,10,11,14,16,17,18,19,20,21,22,24,27,28,32,33,34,36,37,39,40,42,43,44,48,49,50,52,53,54,56,57,58,60,61,62,63,64,66,67,69,71,72,75,77,79,81,137,144,146,206,207,209,211,214,216],"null":[9,10,12,13,14,17,18,22,34,60,82],"public":[6,14,32,34,35,43,44,45,64,77,78],"return":[6,9,11,13,14,16,17,18,19,20,22,24,27,39,54,58,59,60,72,75,81,161,205,206,220],"short":[4,22,25,28,36],"static":[6,9,10,11,18,24,25,28,36,64,74,78,208],"super":[4,24,77,80,81],"switch":[4,6,10,20,24,40,45,57,73,74,77,78],"throw":[6,14,34,44,54,216],"transient":[3,6,11,52,55],"true":[6,11,12,17,20,22,27,28,40,45,53,54,56,58,59,60,61,62,65,66,67,69,72,77,79,82,143,146,213],"try":[0,6,11,24,26,27,34,35,40,42,45,56,61,64,66,76,161,207,219,220],"var":[4,6,34,49,204,205,206,207,208,209,210,211,212,213,214,215,218,220],"void":44,"while":[0,4,6,10,11,12,13,22,25,28,30,38,42,43,53,54,57,58,59,63,64,67,69,70,71,72,76,77,82,207,216,218,219,220],AES:6,AND:[9,11,13,14,18,20,29,54,60,64,77,81,82,218],AWS:[50,71,78],Added:[10,55],Adding:[6,11,20,22,28,45,52,54,57,73,77],And:[11,14,20,57,77],Are:39,Ave:22,BUT:34,Being:59,But:[13,20,22,27,33,34,42,45,64,75,82],CAS:[1,6,219],CCS:220,CFs:[161,168],CLS:82,CMS:220,DCs:[6,59],DNS:45,Doing:[10,83,203],EBS:71,For:[0,3,4,6,9,10,11,12,13,14,15,16,17,18,20,21,22,23,24,25,26,28,32,37,42,43,44,45,46,49,50,51,54,57,61,66,67,69,71,72,75,76,77,78,81,82,207,208,209,212,216,218,219,220],GCs:6,HDs:220,Has:39,IDE:[30,37,41,52],IDEs:[30,40,41],IDs:[25,27,146,186],INTO:[6,9,11,13,14,17,22,54,62,64,76],IPs:[6,78,167,186],Ids:192,Its:[54,64],JKS:6,JPS:220,KBs:[6,72],LCS:[11,66,208],LTS:[49,56],MVs:32,NFS:71,NOT:[6,9,10,11,13,14,16,18,20,21,22,64],NTS:[6,50],N_s:28,Not:[13,20,42,50,56,66,70],ONE:[0,6,11,74,75,81,82],One:[0,24,27,42,44,45,56,64,66,69,220],PFS:6,Pis:71,QPS:216,Such:22,THE:6,TLS:[6,64,73,207],That:[0,11,12,18,22,27,42,45,59,68,82,220],The:[0,1,3,4,6,8,9,10,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,32,33,34,36,37,38,40,42,43,44,45,46,49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82,86,89,94,96,102,106,112,115,116,119,124,128,130,132,137,144,146,148,152,153,159,161,168,171,172,179,185,186,187,194,196,199,200,202,206,207,208,209,211,212,213,214,217,218,219,220],Their:22,Then:[13,44,45,66,77,209,213,220],There:[6,10,11,12,13,14,22,25,27,28,30,40,42,44,45,50,57,66,68,72,74,76,77,81,210,212,216,219,220],These:[0,4,6,11,14,30,40,49,53,57,64,74,76,77,81,82,214,216,217,218,219,220],USE:[9,14,15,53,54,60,61,62],USING:[9,13,16,21,22,69],Use:[6,11,13,20,24,25,45,51,52,54,64,65,73,77,81,82,83,84,89,146,151,161,192,199,203,204,209,210,211,214,217],Used:[23,24,25,26,27,28,29,30,74,220],Useful:[66,220],Uses:[6,17,73,78],Using:[1,11,13,31,36,44,45,50,54,55,73,77,83,203,204,207,211,214,218],WILL:6,WITH:[9,11,12,16,18,20,29,32,50,53,54,59,60,62,63,64,65,66,70,76,77,81,82],Will:[6,52,54,72,109,146,179,209],With:[0,1,6,13,17,45,50,58,59,64,66,75,76,79,85,218,220],Yes:45,_build:56,_build_java:56,_by_:24,_cache_max_entri:77,_cdc:65,_development_how_to_review:37,_if_:6,_main:56,_must_:6,_only_:218,_path_to_snapshot_fold:64,_trace:[74,219],_udt:14,_update_interval_in_m:77,_use:14,_validity_in_m:77,_x86_64_:220,a6fd:219,a8ed:60,abbrevi:43,abil:[14,20,30,45,70],abilityid:16,abl:[0,1,6,14,22,25,26,28,33,36,40,44,45,53,54,58,59,62,66,77,216,217],abort:33,about:[0,1,4,6,20,23,24,26,27,28,29,36,40,41,42,44,45,50,54,58,60,63,66,76,78,82,88,146,167,208,218,219,220],abov:[0,4,6,8,11,12,13,14,22,35,40,42,45,50,68,74,81,83,203,207,214,220],absenc:12,absent:0,abstracttyp:22,ac79:219,acceler:80,accept:[0,6,10,11,12,13,17,42,44,50,63,70,72,75,79,104,146],access:[3,6,10,11,20,22,24,26,30,32,40,42,60,61,64,71,72,73,74,80,207,208,216,217,220],accident:[24,206],accompani:6,accomplish:[26,54],accord:[0,1,4,6,24,45],accordingli:[6,14,45],account:[1,6,22,36,43,44,220],accru:[66,74],accrual:0,accumul:[6,66,72,74],accur:[6,24,28,45,63,79,167,208],accuraci:[63,148,196],acheiv:77,achiev:[0,1,6,32,54,66,74],achil:47,ack:[4,6,59,75],acknowledg:[0,25,72,75],acoount:74,acquir:[20,57,74],across:[0,1,6,11,20,25,27,28,32,42,58,72,74,76,77,78,81,146,150,208,215],act:[0,26,28,59,218],action:[6,13,20,40,72,215,220],activ:[4,6,30,37,42,53,54,57,60,65,74,76,82,146,148,196,216,218,219,220],active_task:60,active_tasks_limit:60,activetask:74,actor:77,actual:[0,4,6,13,21,28,30,34,36,39,43,45,57,58,60,61,66,67,76,78,81,161,211,220],acycl:20,adapt:[23,24,25,26,27,28,29,30],add:[0,6,9,10,11,22,24,25,28,32,33,36,37,38,39,41,42,43,46,49,52,53,54,56,58,59,61,62,64,66,72,75,76,77,81,209,214,218],addamsfamili:11,added:[0,1,3,4,6,10,11,14,19,24,36,39,49,54,57,58,60,62,64,65,66,68,72,75,76,212],adding:[0,6,13,14,24,28,32,39,50,54,71,76,82,209,215],addit:[0,1,3,6,9,11,13,19,20,22,24,25,26,27,28,32,40,42,46,50,53,57,58,59,60,61,62,66,69,71,72,74,75,77,82,218,220],addition:[11,13,33,59,69,76,81,218],additional_write_polici:[11,64],addr:57,address:[6,8,17,22,25,26,29,33,40,42,46,52,53,54,56,57,60,61,62,64,74,76,78,79,80,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,219,220],addressload:54,addrow:64,adher:10,adjac:[32,69],adjust:[6,11,25,50,63],adler32:4,adopt:57,advanc:[0,3,6,36,60,61,73,77,217],advantag:[0,27,50,71],advers:[45,219],advic:[42,45],advis:[6,12,18,22,45,49],advoc:0,ae6b2006:49,aefb:204,af08:13,afd:22,affect:[0,11,24,32,39,42,45,53,58,66,75,168,211,216,220],afford:6,afraid:27,after:[5,6,10,11,12,13,14,16,17,18,24,25,27,32,40,42,43,45,49,50,53,54,56,59,62,64,65,66,67,71,72,73,74,75,76,77,78,82,209,210,213],afterward:[33,36,40,44],afunct:14,again:[0,6,25,42,43,54,56,62,66,76,79,82,210,213],against:[6,11,14,18,27,30,36,42,44,45,54,58,60,71,72,76,79,81,82,161,208,220],agent:[24,53,54,62,64,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,220],agentlib:40,aggreg:[3,6,9,10,13,15,18,20,53,54,60,61,74,82],aggress:216,ago:210,agre:[0,75],ahead:48,aid:[3,12],aim:[6,218],akeyspac:14,akin:57,alg:[64,207],algorithm:[0,6,11,50,64,79,207,218],alia:[10,13,14,47],alias:[6,10,18],alic:20,align:34,aliv:[0,6],all:[0,1,3,4,6,9,11,12,13,14,17,18,19,22,23,24,25,26,27,28,29,30,32,33,34,35,36,38,39,40,42,44,49,52,53,54,56,57,58,59,60,61,63,64,65,66,67,68,69,72,74,75,76,77,79,81,82,83,86,87,88,104,116,121,137,138,143,146,148,150,159,162,168,183,185,187,196,198,199,200,203,205,209,211,215,216,218,219,220],allmemtableslivedatas:74,allmemtablesoffheaps:74,allmemtablesonheaps:74,alloc:[0,6,45,50,56,57,65,71,74],allocate_tokens_for_keyspac:[60,79],allocate_tokens_for_local_replication_factor:50,allow:[0,1,3,4,6,9,10,11,12,14,16,17,18,22,23,24,27,33,36,37,46,50,54,58,59,60,63,64,65,66,69,70,71,75,76,78,81,211,219,220],allowallauthent:[6,77],allowallauthor:[6,77],allowallinternodeauthent:6,allowallnetworkauthor:6,almost:[0,4,6,14,22,57,67,216,220],alon:[11,34],along:[0,6,13,27,37,43,56,61,72,143,146,218],alongsid:[51,82],alpha4:[11,22,52],alphabet:34,alphanumer:[11,20],alreadi:[6,11,14,16,18,22,24,26,27,42,45,50,54,56,57,64,68,77,81,83,199,203,212],also:[0,3,4,6,10,11,12,13,14,17,18,20,22,23,24,25,26,28,30,32,33,36,40,42,43,44,45,46,49,50,54,56,58,59,61,62,64,65,66,67,68,69,71,72,74,75,77,79,82,116,200,213,214,218,219,220],alter:[0,9,10,15,17,28,45,59,60,63,65,66,70,76,77],alter_keyspac:53,alter_keyspace_stat:12,alter_rol:53,alter_role_stat:12,alter_t:53,alter_table_instruct:11,alter_table_stat:12,alter_typ:53,alter_type_modif:22,alter_type_stat:[12,22],alter_user_stat:12,alter_view:53,altern:[10,11,12,13,17,22,40,42,46,49,64,71,72,75,77,207],although:[6,27,28,42,57,81,218,220],altogeth:57,alwai:[0,3,4,6,9,10,11,13,14,18,22,27,34,36,42,43,44,45,50,54,57,59,66,67,71,81,216,220],amazon:[0,3,49],amazonaw:56,amen:[24,26,27,29],amend:38,amenities_by_room:[24,29],amenity_nam:29,ami:49,among:[32,75],amongst:11,amount:[0,6,11,13,22,28,40,42,44,45,58,59,66,70,71,72,74,76,79,82,161,220],amplif:[50,67,71],anaggreg:14,analogu:13,analysi:[24,28,31,217,218],analyt:[24,63],analyz:[25,28,32,44,220],ancestor:[4,214],ani:[0,4,6,10,11,12,13,14,17,18,20,21,22,24,25,27,30,33,35,36,38,39,40,42,43,44,46,49,50,52,53,54,56,57,58,59,60,64,66,69,71,72,74,75,76,77,79,81,82,84,137,143,146,151,168,183,204,208,211,213,214,217,218,219],annot:34,announc:78,anonym:[12,22,53,60,61],anoth:[1,6,11,14,20,22,24,27,28,32,44,54,57,59,60,62,64,66,75,77,82,205,212,217,220],anotherarg:14,answer:[41,220],ant:[33,35,40,42,44,56],antclassload:44,anti:[0,6,22,31,59,72],anticip:[0,11,59],anticompact:[66,74,192,212],anticompactiontim:74,antientropystag:[60,74,219],antipattern:71,anymor:[38,66],anyon:34,anyth:[59,66],anywai:[6,56],anywher:[13,57,65],apach:[0,1,2,3,5,6,7,14,21,30,32,34,35,36,38,39,41,42,43,44,45,48,49,53,54,56,57,58,59,60,61,62,64,66,70,72,74,77,80,83,204,205,206,207,208,209,210,211,212,214,215,218],apart:61,api:[0,6,8,17,51,58,60,78],appar:24,appear:[6,11,12,14,24,54,66,69,75,82],append:[4,22,24,38,61,71,72,74,82,218],appendic:[15,52],appendix:[12,15],appl:22,appli:[0,4,6,9,10,11,12,13,20,22,38,42,44,45,57,72,74,75,79,81,82],applic:[0,1,3,6,11,20,23,24,25,27,28,29,31,32,34,37,39,40,52,53,55,56,59,60,61,64,70,77,81,218],appreci:42,approach:[4,24,25,26,27,28,32,57,66,79],appropri:[6,11,20,22,39,42,43,57,77,78,79,218],approv:33,approxim:[0,28,50,54,68,69,74,208],apt:[49,220],arbitrari:[11,12,22,62,81],architectur:[3,25,45,52,80],archiv:[4,6,43,49,54,65,109],archive_command:[53,54,109],archive_retri:[54,109],area:[3,37,220],aren:[13,76],arg:[14,54,146,184,204,208,214],argnam:14,argnum:14,argument:[6,11,13,14,16,17,45,46,50,53,54,62,64,70,81,82,84,85,86,87,89,94,96,102,106,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202],arguments_declar:14,arguments_signatur:14,arithmet:[10,12,15,52],arithmetic_oper:12,armor:43,around:[6,20,24,27,32,53,54,66,71,78,220],arrai:[6,23,45,49,57],arriv:[6,42,45,57],arrow:26,artem:24,artifact:[26,35,40,41],artifici:11,asap:10,asc:[9,11,13,29,60],ascend:[11,13],ascii:[9,14,17,22],asdf:204,asf:[8,40,43],ask:[5,28,42,43,44,52,77],aspect:[0,11,59],assassin:146,assertionerror:34,assertrow:44,assess:[219,220],assign:[0,6,13,20,25,27,45],assist:24,associ:[0,6,11,26,54,60,80,214,216],assum:[0,6,11,14,25,26,27,28,36,40,77,78,216,220],assumpt:[0,77],assur:55,asterisk:25,astyanax:47,async:[6,77],asynchron:[16,45,54,58,71],asynchroni:74,ata:27,atabl:14,atom:[3,11,13,21,38,75],atomiclong:74,attach:[37,42,77,80,220],attack:77,attemp:74,attempt:[0,6,11,16,18,20,22,24,45,50,53,57,59,61,69,72,74,75,76,77,82,83,162,203,213,218],attent:[34,35,42,43],attract:24,attribut:[23,24,25,32,49,53,54,61,66],audienc:[0,59],audit:[3,6,27,52,54,55,95,105,146],audit_log:6,audit_logging_opt:[53,61],audit_logging_options_en:60,audit_logs_dir:[53,61],auditlog:[53,105],auditlogentrytyp:53,auditlogkeyspac:[53,54],auditlogview:[3,53,61],audt:61,aug:[53,54,62,64,213],auth:[6,53,61,64,207],authent:[10,49,53,61,64,73,82,207],authenticatedus:6,author:[9,20,22,36,42,73,81],authorizationproxi:77,authprovid:[64,207],auto:[0,6,11,45,56,62,81,187],auto_bootstrap:79,auto_snapshot:[60,62],autocompact:[66,96,106,146,187],autom:[30,34,37],automat:[6,13,14,16,32,33,36,40,44,45,49,53,58,62,66,76,77,79,81],automatic_sstable_upgrad:60,avail:[0,2,3,6,8,11,14,20,23,24,25,26,27,28,29,30,33,40,42,43,44,50,54,56,57,59,61,65,72,75,76,77,78,80,82,86,116,159,168,179,199,216,218,220],availabil:6,available_rooms_by_hotel_d:[24,28,29],availablil:50,averag:[6,11,14,28,49,68,74,207,218,219,220],average_live_cells_per_slice_last_five_minut:195,average_s:11,average_tombstones_per_slice_last_five_minut:195,averagefin:14,averagest:14,avg:[28,64,207,220],avg_bucket_s:68,avgqu:220,avgrq:220,avoid:[0,6,11,12,27,32,34,39,42,54,57,58,59,63,66,67,69,71,74,77,78,82,200,207],awai:[40,79,82,219],await:220,awar:[0,6,11,42,57,63,70,72,167,216,219],awesom:81,axi:56,az123:25,azur:71,b00c:76,b09:49,b10:49,b124:13,b135:64,b2c5b10:218,b32a:[54,76],b64cb32a:[54,76],b70de1d0:13,b7a2:219,b7c5:219,b957:204,b9c5:219,back:[3,6,11,32,36,54,57,59,60,61,66,72,74,75,79,143,146,219],backend:6,background:[43,45,73,77,218,220],backlog:[6,57],backpressur:[6,57],backpressurestrategi:6,backup:[3,6,52,66,73,79,82,97,107,146,188,213,214],backward:[6,10,11,15,20,22],bad:[6,14,45,77,78,216,219],balanc:[0,3,6,24,50,58,72,79,216,219],banana:22,band:22,bandwidth:[6,57,58,80,220],bank:24,bar:[12,34,220],bardet:22,bare:6,base:[0,1,4,6,10,11,13,14,18,19,20,22,24,25,27,28,32,33,35,37,38,41,42,43,44,45,49,50,53,54,55,57,61,66,71,74,75,77,79,80,208,216,219],baseurl:49,bash:[45,56,220],bashrc:56,basi:[0,6,11,33,45,54,57,70],basic:[0,6,11,24,25,32,57,60,66,68,69,71,81,83,203,214,217],batch:[0,2,4,6,9,11,15,27,44,52,53,54,59,60,73,75,81,82,216,220],batch_remov:[74,219],batch_stat:12,batch_stor:[74,219],batchlog:[1,13,74,118,146,163,169],batchtimemilli:54,batchtyp:81,bbee:64,bc9cf530b1da11e886c66d2c86545d91:211,be34:13,beatl:22,beca:82,becam:[0,3],becaus:[0,4,6,11,13,14,20,24,27,28,32,56,57,62,66,70,72,74,75,77,208,211,220],becom:[0,4,6,11,14,20,32,42,62,66,69,74,75,77,79],been:[0,1,4,6,10,11,13,14,15,20,22,24,32,39,42,43,50,54,56,57,58,59,60,62,64,66,67,71,75,76,77,168,211,214,216],befor:[0,4,6,10,11,13,14,16,19,21,22,25,26,28,33,36,37,40,41,43,44,47,53,54,57,59,60,61,62,64,66,68,72,74,75,77,78,79,81,82,109,185,203,204,205,206,207,208,209,210,211,212,213,214,215,216],began:3,begin:[9,12,13,24,26,27,44,77,82],beginn:42,begintoken:82,behalf:24,behav:[6,59],behavior:[0,6,10,11,14,17,22,34,39,63,69,73,79,162,216],behind:[6,34,44,45,53,54,61,67],being:[0,4,6,11,13,17,22,24,28,39,43,44,45,53,54,57,59,61,63,64,66,67,68,74,75,76,79,209,218,219,220],believ:[72,216],belong:[0,3,11,13,14,58,74,86,146],below:[6,11,12,13,17,20,22,23,24,25,26,27,28,32,35,42,55,57,61,66,68,74,82,92,207,209,216,218],benchmark:[54,58,71,81],benefici:69,benefit:[0,6,37,50,53,63,66,71,73,207],best:[0,3,6,24,27,29,30,32,36,43,44,50,66,67,72,73,77,78,216,220],best_effort:6,better:[6,34,36,37,42,57,67,71,72,207,219,220],between:[0,1,4,6,9,10,11,12,13,15,23,24,25,26,31,32,42,45,55,57,58,63,66,70,72,74,75,76,77,80,81,161,183,220],beyond:[6,59,69,82,200],big:[6,28,62,64,66,89,204,205,206,207,208,210,211,212,213,214,215],bigg:28,bigger:[11,50,68],biggest:14,bigint:[9,14,17,19,22,60],bigintasblob:14,bigtabl:3,bigtableread:[205,211,213,215],billion:28,bin:[40,49,51,54,56,64,82,218],binari:[14,43,48,53,54,61,77,98,108,146,189,218],binauditlogg:[53,105],bind:[6,10,12,14,45,54,64],bind_mark:[12,13,18,22],binlog:[54,61],biolat:220,biolog:11,biosnoop:220,birth:13,birth_year:13,bit:[14,17,22,28,35,42,45,49,56,59,70,71],bite:45,bitempor:80,bitstr:9,black:6,blank:[6,34,45,208],blindli:45,blob:[9,10,12,17,22,52,70,72,81],blob_plain:43,blobasbigint:14,blobastyp:14,block:[4,6,11,38,46,53,54,57,58,60,61,66,67,71,73,74,76,77,83,109,203,218,219,220],blockdev:50,blocked_task:60,blocked_tasks_all_tim:60,blockedonalloc:6,blockingbufferhandl:57,blog:[6,13,50],blog_til:13,blog_titl:13,blogpost:81,bloom:[4,11,52,58,59,71,73,74,208],bloom_filter_false_posit:195,bloom_filter_false_ratio:195,bloom_filter_fp_ch:[4,11,63,64],bloom_filter_off_heap_memory_us:195,bloom_filter_space_us:195,bloomfilterdiskspaceus:74,bloomfilterfalseposit:74,bloomfilterfalseratio:74,bloomfilteroffheapmemoryus:74,blunt:77,bnf:12,bob:[13,20],bodi:[6,11,12,57,81],bog:23,boilerpl:41,book:[23,26],boolstyl:82,boost:6,boot:45,bootstrap:[0,6,50,52,56,58,66,70,73,74,77,146,151,179,209],born:13,borrow:57,both:[0,1,3,6,11,13,14,18,22,23,24,28,37,38,39,42,43,45,46,49,53,54,57,58,59,63,66,70,71,74,75,77,79,81,82,214,220],bottleneck:6,bottom:45,bound:[4,6,11,12,22,54,57,58,61,64,71,77],boundari:209,box:[3,6,26,77,78],brace:34,bracket:12,braket:12,branch:[33,36,38,39,40,43,44],branchnam:42,brand:0,breadcrumb:216,breakdown:[219,220],breakpoint:40,breed:44,brendangregg:220,breviti:57,brief:[50,220],briefli:[1,219],bring:[0,6,56,58],brk:45,broadcast:6,broadcast_address:78,broken:[6,66,74,211],brows:[6,43,204,205,206,207,208,209,210,211,212,214,215],browser:[82,220],bucket:[0,28,68],bucket_high:68,bucket_low:68,buff:220,buffer:[4,6,50,54,56,57,64,65,72,74],bufferpool:[56,73],buffers_mb:220,bug:[10,38,41,43,44,45,52,76],build:[18,27,30,33,35,36,37,41,42,43,44,49,52,55,64,74,76,80,81,146,202],builder:[6,64,123,146,176],buildfil:56,built:[1,18,28,32,40,56,74],bulk:[52,58,72,73,207],bump:[4,10,209],bunch:34,burn:65,busi:[0,24,27],button:[36,40,45],bytebuff:[14,57],byteorderedpartition:[6,14],bytesanticompact:74,bytescompact:74,bytesflush:74,bytesmutatedanticompact:74,bytespendingrepair:74,bytesrepair:74,bytestyp:[9,208],bytesunrepair:74,bytesvalid:74,bz2:43,c09b:76,c217:64,c22a:64,c3909740:60,c39ee7e6:49,c60d:204,c73de1d3:13,c7556770:60,c_l:28,cach:[0,6,11,20,35,45,46,50,64,71,73,78,137,139,140,141,146,170,171,219],cachecleanupexecutor:[60,74,219],cached_mb:220,cachenam:74,cachestat:220,cadenc:56,calcul:[0,6,23,24,25,31,57,63,64,65,69,74,75,78,207,208],call:[0,9,11,12,13,14,20,24,34,36,41,46,52,54,59,61,62,64,66,70,71,74,79,146,179,220],callback:[57,74],caller:34,can:[0,3,4,5,6,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,30,33,34,35,36,37,38,39,40,42,43,44,46,49,50,51,52,53,54,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,84,86,87,89,94,96,102,106,109,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,204,205,206,207,209,210,211,212,213,216,217,218,219,220],cancel:[10,162],candid:67,cannot:[1,6,9,11,13,14,17,18,20,22,27,32,44,53,56,57,58,59,60,64,66,72,77,84,146,219],cap:[2,12,120,125,131,146,173,178,181],capabl:[0,6,45,80,82],capac:[0,6,28,32,53,54,57,65,74,78,80,146,148,170,196,215,216,218,220],capacit:216,capacity_byt:60,capi:52,captur:[6,11,24,52,54,73,77,83,218],cardin:208,care:[6,66,81,161,220],carefulli:[35,50],carlo:20,carpent:[23,24,25,26,27,28,29,30],carri:[34,161],cascad:27,cascommit:74,cascontent:[132,182],casprepar:74,caspropos:74,casread:74,cassablanca:22,cassafort:47,cassanda:0,cassandra:[0,1,2,3,4,5,8,10,11,13,14,18,20,21,22,23,24,25,26,28,29,31,32,34,35,37,38,42,47,48,50,51,53,54,56,57,58,59,60,62,63,64,66,67,70,71,72,74,76,78,79,82,105,109,146,157,161,164,168,193,201,203,204,205,206,207,208,209,210,211,212,214,215,216,217,219,220],cassandra_flam:220,cassandra_hom:[4,6,56,65,72,77,218],cassandra_job_dsl_se:33,cassandra_stack:220,cassandra_use_jdk11:56,cassandraauthor:[6,77],cassandradaemon:[40,56],cassandrafullquerylog:54,cassandrakeyspacesimpl:59,cassandralogin:77,cassandranetworkauthor:6,cassandrarolemanag:[6,77],casser:47,cassi:47,cast:[10,13,18],caswrit:74,cat:[22,204,220],catalog:[62,64],catalogkeyspac:[62,64],catalokeyspac:62,categor:74,categori:[11,12,13,14,61,105],caught:[39,74],caus:[0,4,6,18,27,45,57,66,68,69,76,77,209,211,218,219,220],caution:[6,70],caveat:77,cbc:6,ccm:[39,44,220],ccmlib:44,cd941b956e60:219,cdc:[6,11,64],cdc_enabl:65,cdc_free_space_check_interval_m:65,cdc_free_space_in_mb:65,cdc_raw:[6,65],cdc_raw_directori:65,cdccompactor:6,cde63440:49,cdf7:60,cell:[6,22,28,74,116,200,204,208,219],center:[6,11,20,22,24,45,50,72,78,79,102,112,146,161],cento:49,central:[40,77,82,216],centric:[20,32,36],certain:[0,1,4,6,9,11,20,36,44,50,58,59,66,77,205],certainli:[14,24,26,28],certif:[73,146,157],cf188983:204,cfname:[130,148,196],cfs:34,chain:20,challeng:[3,37,80],chanc:[37,63,75,208],chang:[0,4,6,11,12,15,20,22,27,32,33,35,36,37,38,40,41,43,48,50,52,53,54,57,59,60,62,66,67,70,73,74,76,77,179,206,209,218,220],changelog:43,channel:0,charact:[11,12,13,17,20,22,28,34,81,82],character:6,chat:8,cheap:[6,11,54,55],chebotko:[24,25,30],check:[0,6,13,24,33,34,39,40,42,43,44,45,49,54,56,57,59,63,64,65,66,67,69,74,77,83,137,146,161,200,203,215,219],checklist:[41,42,52],checkout:[36,40,42,43],checksum:[4,6,11,58,70,146,200,214],chen:23,cherri:38,chess:13,child:82,chmod:[53,54,64,77],choic:[0,6,11,32,43,49,52,66,69,73,210],choos:[0,1,3,6,11,41,43,47,48,71,74],chord:0,chose:0,chosen:[0,6,11,14,219],chown:77,christoph:22,chrome:82,chronicl:[53,54,61],chunk:[4,6,11,45,50,57,58,60,70,82],chunk_length_in_kb:[11,50,64,70],chunk_length_kb:6,chunk_lenth_in_kb:11,chunkcach:74,chunksiz:82,churn:6,cipher:[6,64,77,207],cipher_suit:6,circular:20,circumst:[11,27,75],citi:[22,29],claim:30,clash:12,class_nam:[4,6],classload:[44,56],classpath:[6,14,22,74],claus:[10,11,14,16,17,18,20,34],clean:[6,34,54,74,83,86,146,164,203,207],cleanli:42,cleanup:[45,59,66,73,74,116,146,192,214],clear:[39,42,64,83,88,137],clearli:26,clearsnapshot:[62,146],click:[13,40,42,43,44,220],client:[0,1,4,6,8,10,11,13,17,20,22,27,32,39,45,46,48,49,50,52,53,61,64,65,71,72,73,75,82,88,146,207,211,217,218,219,220],client_encryption_opt:[64,77,207],clientrequest:74,clientstat:146,clock:[0,6],clockr:6,clockwis:0,clojur:48,clone:[40,43,45,56,82,220],close:[6,15,36,43,64,77,220],closer:63,closest:75,cloud:[50,73],clue:[24,220],cluster:[1,2,3,4,6,9,10,11,13,14,21,22,24,27,28,29,30,32,39,44,46,50,51,52,54,56,57,58,59,60,62,64,66,68,71,72,74,75,76,77,78,79,81,82,83,93,114,118,134,146,169,186,203,208,215,216,217,218,220],cluster_nam:[46,51,60],clustering_column:11,clustering_ord:11,clusteringtyp:208,cmake:220,cmd:220,cmsparallelremarken:40,coalesc:6,coalescingstrategi:6,codd:27,code:[6,10,12,14,21,25,28,32,33,36,37,38,39,40,41,44,52,56,70,74,216,220],codestyl:34,coher:80,col:[14,81],cold:6,collat:6,collect:[0,3,6,10,11,12,13,14,15,17,23,25,30,71,73,74,75,81,116,218],collection_liter:12,collection_typ:22,collector:218,color:[22,82,220],column1:9,column:[0,1,3,4,6,9,10,11,12,13,14,15,16,17,18,20,22,24,25,27,28,29,30,32,49,54,57,60,62,70,74,75,76,80,81,82,130,148,168,185,196,208,211,213,218,219],column_count:54,column_definit:[11,54],column_nam:[11,13,16],columnfamili:[4,6,9,34,66,76,206,209],columnspec:81,colupdatetimedeltahistogram:74,com:[6,14,33,34,36,38,43,49,56,77,220],combin:[0,3,4,6,10,50,57,69,75],come:[6,9,26,28,77,220],comingl:69,comma:[6,11,12,13,46,53,61,64,77,79,82,105,148,151,196,207],command:[0,3,6,18,27,30,35,38,43,44,45,46,51,53,54,56,60,62,64,70,72,73,76,77,81,83,84,85,86,87,89,94,96,102,106,109,112,115,116,119,121,124,128,130,132,136,137,144,146,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,203,206,207,212,213,214,217,218,219,220],commandlin:62,comment:[4,6,11,15,18,29,34,36,37,39,64,77],commit:[4,6,8,11,36,41,42,43,52,57,74,214,220],commitlog:[2,6,45,46,71,73,208,218,219],commitlog_archiv:[4,6],commitlog_compress:4,commitlog_directori:[4,46,71],commitlog_segment_size_in_mb:[4,45],commitlog_sync:4,commitlog_sync_batch_window_in_m:4,commitlog_sync_period_in_m:4,commitlog_total_space_in_mb:4,commitlogposit:208,commitlogread:65,commitlogreadhandl:65,commitlogseg:[6,73,74],committ:[37,38,41,42,43,44],commod:[2,3],common:[0,14,15,24,25,27,34,36,39,42,50,53,55,57,58,69,73,76,82,216,217,220],common_nam:11,commonli:[54,72,146],commun:[0,6,8,24,37,39,40,42,45,46,51,57,61,64,77,207],commut:45,compact:[4,6,11,15,45,48,52,58,59,60,62,63,64,69,70,71,73,81,86,90,91,116,119,120,146,159,168,172,173,179,187,192,199,205,206,207,208,209,211,214,217,218,220],compacted_partition_maximum_byt:195,compacted_partition_mean_byt:195,compacted_partition_minimum_byt:195,compaction_:192,compaction_histori:218,compaction_throughput:219,compaction_window_s:69,compaction_window_unit:69,compactionbyteswritten:74,compactionexecutor:[60,74,219],compactionhistori:[66,146],compactionid:192,compactionparamet:66,compactionparametersjson:66,compactions_in_progress:214,compactionstat:[66,146,219],compactiontask:218,compactor:[122,146,175],compani:27,compar:[0,1,3,4,6,31,35,42,49,55,67,74,75,76,81,216,219],comparis:28,comparison:6,compat:[6,9,10,11,13,15,20,39,42,64,83,220],compatilibi:22,compet:6,compil:[34,35,40,56,82],compilerthread3:220,complain:40,complet:[1,6,13,14,24,29,30,42,43,45,54,57,58,59,60,62,65,69,72,74,75,76,77,79,82,146,160,162,211,213,214,219],completed_task:60,completedtask:74,complex:[0,4,6,9,14,22,23,25,27,28,32,42],complexarg:14,compliant:[6,14,77],complic:42,compon:[0,4,6,11,24,32,39,63,74,77,146,179,220],compos:[11,13,22],composit:[4,11,32],compound:[17,32],comprehens:39,compress:[0,4,6,11,44,48,52,57,60,64,67,71,72,73,74,81,208],compression_level:[11,70],compression_metadata_off_heap_memory_us:195,compressioninfo:[4,58,62,64],compressionmetadataoffheapmemoryus:74,compressionratio:74,compressor:[4,6,11,72,208],compris:[4,11,53,70],compromis:[1,43,77],comput:[0,4,6,11,14,28,54,56,215],concaten:[14,53,61],concentr:23,concept:[0,20,27,30,32,66,69],conceptu:[24,26,27,30,31,32,52],concern:[13,14,25,220],conclus:6,concret:[12,22],concurr:[0,1,6,33,57,64,71,81,121,122,123,146,161,174,175,176,207,219,220],concurrent_compactor:219,concurrent_materialized_view_build:18,concurrent_writ:4,concurrentmarksweep:71,condens:13,condit:[6,10,12,13,20,22,32,34,38,60,68,74,77,81,82,220],conditionnotmet:74,conduct:49,conf:[6,45,46,49,56,64,74,77,82,207,218],confid:0,config:[33,57,64,74,77,82,83,203],configu:[61,220],configur:[0,3,4,11,20,22,27,33,40,44,45,48,49,52,55,56,57,59,60,64,73,74,77,78,80,81,82,92,109,146,164,179,206,207,208,216,218,219],confirm:[6,8,25,26,29,33,39,40],confirm_numb:29,conflict:[0,13,22,38,41],conform:[18,39,64],confus:[10,12,45,220],congratul:36,conjunct:82,connect:[0,6,11,22,23,30,40,49,51,52,54,58,60,64,74,77,78,81,82,88,92,145,146,207,220],connectednativecli:74,connectednativeclientsbyus:74,connection_stag:60,connectionsperhost:[64,207],connector:[23,45,47,77],connnect:74,consecut:[28,46],consensu:[1,59,72],consequ:[11,13,19,22,71],conserv:[6,72],consid:[0,6,13,22,24,28,32,37,42,46,61,63,66,69,71,72,75,215],consider:[13,22,23,24,25,27,32,64],consist:[2,3,6,11,12,13,14,29,32,39,57,59,60,62,72,73,74,77,79,83,216,219],consol:[40,46,61,82],constant:[10,11,15,17,22,64],constantli:[0,6,66],constitut:32,constrain:27,constraint:1,construct:[0,12,75,220],constructor:[6,34],consum:[6,44,53,54,57,63,65,74,219],consumpt:65,contact:[0,6,11,45,52,75,216],contain:[0,1,3,6,8,9,10,11,12,13,15,16,18,20,22,24,25,35,40,42,44,54,57,60,62,66,70,72,74,77,80,82,185,205,210,214,216,218,219,220],contend:[6,74],content:[4,6,11,12,13,24,36,49,52,53,54,58,66,69,75,82,109,204,220],contentionhistogram:74,context:[4,6,9,20,22,26,40,42,45,77,218],contigu:13,continu:[0,1,6,28,34,44,53,56,57,58,61,67,72,77,78],contrarili:12,contrast:[0,24,27,32,44,77],contribut:[5,33,36,38,44,52],contributor:[36,38,42],control:[0,3,6,10,11,13,15,39,46,54,66,77,78,82],conveni:[9,12,14,17,44,79],convent:[6,11,14,15,25,36,38,41,42,44,77,78],converg:0,convers:10,convert:[10,13,14,66,220],convict:0,coordin:[0,1,3,6,11,13,14,22,32,45,57,62,72,74,75,162,216,217],coordinator_read:60,coordinator_scan:60,coordinator_writ:60,coordinatorreadlat:[74,216],coordinatorscanlat:74,coordinatorwritelat:[74,216],cop:34,copi:[0,1,3,6,28,35,45,55,56,57,62,64,66,75,83,207,216],copyright:[23,24,25,26,27,28,29,30],core:[6,14,61,71,80,174,219,220],correct:[0,6,10,35,39,49,54,64,67,70,77,146,159,206,212],correctli:[6,11,36,45,50,53,57,61,66,77],correl:[6,10,78,216,219],correspond:[0,4,6,9,11,13,14,18,22,36,42,44,45,49,58,59,64,65,72,78,207],corrupt:[6,60,64,66,70,71,76,83,168,200,203],corrupt_frames_recov:60,corrupt_frames_unrecov:60,cost:[6,13,22,50,70,76],couchbas:[62,64],could:[0,3,6,12,22,24,25,27,28,32,37,39,42,53,54,57,58,60,62,64,66,67,76,82,218,220],couldn:[72,74],count:[4,6,9,13,22,28,45,50,57,58,60,66,74,79,81,208,218,219,220],counter1:211,counter:[0,4,6,9,14,19,59,60,71,74,81,83,139,146,168,170,171,203],counter_mut:[74,219],counter_read:81,counter_writ:81,countercach:74,countermutationstag:[60,74,219],counterwrit:[81,132,182],countri:[13,22,25,29],country_cod:22,coupl:[0,6,25,27],cours:[13,76,215,220],cover:[11,25,36,39,42,44,45,48,55,66,67,74,75,208],coverag:[35,37,54],cph:[64,207],cpu:[0,6,11,50,65,70,73,216,218,219],cpu_idl:220,cq4:[53,54,218],cq4t:[53,54],cqerl:47,cqex:47,cql3:[14,39,44,82],cql:[0,3,6,10,11,12,13,14,16,17,19,20,22,25,27,28,29,30,32,43,44,47,49,51,52,53,55,60,61,62,64,69,73,77,81,83,179,204,220],cql_type:[11,12,13,14,20,22],cqlc:47,cqldefinit:14,cqlkeyspac:[62,64,76],cqlsh:[45,48,49,52,54,60,62,64,76,77,83],cqlshrc:83,cqltester:[39,44],cqltrace:220,craft:77,crash:71,crc32:[4,58,62,64,213,214],crc:[4,57,58,213,214],crc_check_chanc:[11,64,70],crdt:0,creat:[0,3,4,6,9,10,12,13,15,17,19,23,24,25,26,27,28,29,30,32,33,36,40,41,44,45,48,49,53,54,56,58,59,60,64,65,66,67,68,69,70,72,75,76,77,79,81,82,89,207,212,220],create_aggreg:53,create_aggregate_stat:12,create_funct:53,create_function_stat:12,create_index:53,create_index_stat:12,create_keyspac:53,create_keyspace_stat:12,create_materialized_view_stat:12,create_rol:53,create_role_stat:12,create_t:53,create_table_stat:12,create_trigg:53,create_trigger_stat:12,create_typ:53,create_type_stat:[12,22],create_user_stat:12,create_view:53,createkeystor:6,createrepo:43,createt:44,creation:[6,10,11,13,14,18,22,65,218],creator:20,credenti:[6,77],critic:[0,39,42,72,77,216,219],cross:[0,3,6,45,72,78],crossnodedroppedlat:74,crucial:[77,218,219,220],cryptographi:6,csv:[64,82],ctrl:220,cuddli:22,cue:25,culprit:216,cumul:[219,220],curent:208,curl:[38,49],current:[0,1,6,9,11,13,20,22,24,40,42,43,49,54,57,58,60,61,64,66,67,68,69,72,74,79,81,82,83,111,129,133,135,137,146,160,191,199,203,208,209,214,218,219],currentd:[10,14],currentlyblockedtask:74,currenttim:[10,14],currenttimestamp:[10,14],currenttimeuuid:[10,14],custom:[6,9,10,11,14,15,16,20,24,26,27,28,33,42,58,61,64,78,81,82,207],custom_option1:20,custom_option2:20,custom_typ:[14,22],cut:218,cute:22,cvh:39,cycl:[6,56,57,65,75,109],cython:83,d1006625dc9e:[54,76],d132e240:64,d132e240c21711e9bbee19821dcea330:[62,64],d18250c0:204,d85b:204,d936bd20a17c11e8bc92a55ed562cd82:210,d993a390c22911e9b1350d927649052c:62,daemon:[40,146,193,220],dai:[14,17,19,22,28,61,66,69,76],daili:[33,53,54,61,109],danger:6,dart:48,dart_cassandra_cql:47,dash:12,data:[1,2,3,4,6,10,12,14,15,16,18,26,27,29,39,46,49,50,52,54,57,58,59,60,63,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,84,89,102,109,112,116,137,146,151,161,185,200,204,205,206,207,208,209,210,211,212,213,214,215,218,219,220],data_file_directori:[46,71],data_read:20,data_writ:20,databas:[0,1,3,12,13,15,21,24,27,30,31,32,43,49,52,53,54,59,61,62,66,71,77,217,218,220],datacent:[0,1,3,6,11,54,57,58,60,64,76,78,102,112,125,146,161,178,207,216,219],datacenter1:[6,50,81],dataset:[2,3,6,50,76,220],datastax:[6,14,30,47,216],datastor:219,datatyp:14,date:[1,4,9,10,15,17,19,24,25,26,27,28,29,32,61,75,83,168,203,204,208],dateof:[10,14],datestamp:17,datetieredcompactionstrategi:[11,66],datetim:15,datum:3,daylight:22,db532690a63411e8b4ae091830ac5256:213,db_user:77,dba:[64,77],dbd:47,dc1:[6,11,20,59,72,77,219],dc1c1:215,dc2:[6,11,59,72,77,219],dc3:20,dcassandra:[67,69,74,77,79],dcawareroundrobin:216,dcl:[53,61],dclocal_read_repair_ch:75,dcom:77,dcpar:161,ddl:[11,53,60,61,62,64,82],ddl_statement:12,deactiv:6,dead:[0,6,73,84,146,220],dead_node_ip:79,deal:[57,83,203],deb:49,debian:[43,45,48,220],debug:[46,54,82,211,212,213,214,215,216,217,220],decai:216,decid:[9,36,57,64,67,68,72,78],decim:[9,14,17,19,22,82],decimalsep:82,decis:0,declar:[11,12,14,22,25],decod:[17,22,57,220],decommiss:[0,6,55,59,79,146],decompress:[70,220],decoupl:[0,58,59],decreas:[6,50,69,207,220],decrement:[13,22],decrypt:6,dedic:[4,6,24,54,58],dedupl:[143,146],deem:6,deep:[52,217,218],deeper:[42,220],default_time_to_l:[10,11,13,64],defend:45,defens:6,defer:[11,220],defin:[0,3,6,9,10,11,12,13,15,16,17,18,20,21,23,24,25,27,28,31,40,52,64,66,72,74,77,78,79,81,82,89,146,208],defineclass1:56,defineclass:56,definit:[9,13,14,15,18,22,23,24,25,26,27,28,29,30,32,52,55,62,63,64,81,208],deflat:[4,6,72],deflatecompressor:[11,70],degrad:[0,6,24],delai:[1,4,62,74,76],deleg:40,delet:[0,4,6,9,10,11,12,15,17,18,20,22,24,27,42,52,53,54,60,61,62,69,72,76,82,109,116,146,198,208,213,214,218],delete_stat:[12,13],deletiontim:4,delimit:6,deliv:[0,6,57,72,74],deliveri:[6,57,73,74,146,147,166,177],delta:[74,208],demand:[0,77],demo:55,demonstr:[53,54,56,62,64,76,217],deni:45,denorm:[22,24,25,32],denot:[6,12,25],dens:63,dep:35,departur:0,depend:[0,4,6,11,12,13,14,22,33,36,39,40,41,42,44,52,56,58,68,72,76,83,216],dependenic:35,depict:23,deploi:[35,45,46,49,220],deploy:[0,6,55,59,72,77,78,80],deprec:[6,10,11,14,15,64,66],depth:220,deriv:[57,64],desc:[9,11,13,32,54,60,82],descend:[11,13],describ:[2,6,7,9,10,11,12,13,14,15,17,20,22,26,27,30,39,40,42,43,54,55,63,77,83,146,203],describeclust:146,descript:[10,11,14,19,22,24,26,29,33,36,42,50,58,60,64,72,74,75,82],descriptor:[74,214],deseri:[55,215],design:[0,1,3,14,23,24,25,26,28,30,31,52,54,59,66,69,71,76],desir:[16,22,24,33,45,210],destin:[65,72,82],destroyjavavm:220,detach:43,detail:[5,6,10,11,12,13,14,22,23,24,25,26,33,36,37,45,56,60,62,73,77,80,81,82,83,203,213,218,219,220],detect:[1,2,6,38,45,57,77,215],detector:[0,114,146],determin:[0,6,11,13,20,24,27,28,32,50,58,62,63,70,75,78,161,216,219,220],determinist:[0,45],detractor:27,dev1:61,dev:[6,8,43,45,50,220],devcent:30,devel:56,develop:[3,8,30,36,37,40,42,44,56,71],devic:[4,80,220],df303ac7:219,dfb660d92ad8:82,dfp:200,dht:[6,208],diagnost:[6,55,73],diagram:[23,24,26,30,57],diagrammat:24,diamond:23,dictat:[6,77],did:[26,39,74,206],didn:[0,24],die:6,dies:[52,79],diff:[15,34,218],differ:[0,1,6,11,12,13,14,15,20,22,24,25,31,32,33,38,40,42,44,45,46,50,53,54,55,58,59,64,66,67,68,70,71,74,75,76,79,81,216,220],difficult:[0,6,44,220],difficulti:22,digest:[4,6,58,62,64,75,213,214],digit:[17,22,45],digitalpacif:49,diminish:22,dinclud:35,dir:56,dir_path:[64,207],direct:[0,6,11,17,20,24,42,74,75,220],directli:[13,18,20,36,40,60,64,66,77,208,220],director:13,directori:[4,6,21,35,36,40,44,45,48,49,51,56,61,64,65,68,71,72,73,82,137,146,164,207,220],dirti:[4,6,54,220],disabl:[6,11,14,53,54,58,62,66,70,72,77,78,82,95,96,97,98,99,100,101,102,103,112,146,169,171,173,178,181,182,183],disable_stcs_in_l0:67,disableauditlog:[53,61,146],disableautocompact:[66,146],disablebackup:[62,146],disablebinari:146,disablefullquerylog:[54,146,218],disablegossip:146,disablehandoff:[72,146],disablehintsfordc:[72,146],disableoldprotocolvers:[60,146],disablesnapshot:168,disableuditlog:61,disadvantag:0,disagre:75,disallow:[6,55],disambigu:[53,54,62,64,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],disappear:[11,75],discard:[6,57,59],disconnect:[57,66],discourag:[11,22,42],discov:[45,76],discoveri:[0,64],discret:0,discuss:[8,11,22,24,26,28,42,53,54,56,57,60,62,64,75],disk:[4,6,11,24,27,31,32,46,50,52,53,54,58,60,61,62,63,65,66,69,70,73,74,76,109,143,146,159,200,205,209,212,213,218,219,220],disk_spac:60,disk_usag:60,dispar:[6,27],dispatch:57,displai:[11,24,53,54,60,61,64,82,83,85,91,121,136,138,145,146,195,203,207,211,212,213,214,215,220],displaystyl:28,disrupt:[45,77],dissect:220,dist:[43,49],distanc:[23,80],distinct:[0,9,10,13],distinguish:[9,14,58,62],distribut:[1,2,3,6,23,32,35,42,44,45,49,60,66,74,76,77,79,80,81,208,209,217,218,219,220],distro:43,dive:[52,217,218],diverg:1,divid:[12,25,27],divis:19,djava:[40,45,77],dload:49,dml:[21,53,60,61],dml_statement:12,dmx4jaddress:74,dmx4jport:74,dns:45,dobar:34,doc:[6,35,36,39,43,49,76,77,206,220],document:[5,12,14,15,17,24,25,27,29,30,33,39,41,42,50,51,54,77,81,82],doe:[0,3,6,11,13,14,16,17,18,20,22,27,32,38,39,42,49,52,54,55,58,59,62,63,64,66,67,69,70,72,75,76,77,78,79,143,146,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220],doesn:[6,14,22,24,34,44,45,54,57,58,76,81,207,208,210,211,218,220],dofoo:34,doing:[6,13,18,27,44,45,50,66,67,74,79,220],dollar:[10,12],domain:[0,23,24,27,37,77,81,167,186],domin:220,don:[0,5,6,13,26,27,28,32,34,37,38,39,40,42,43,45,46,58,59,60,64,66,76,137,161,207,212,217,219,220],done:[6,11,13,22,25,27,33,36,37,42,43,44,46,51,54,57,67,68,81,209,212,213],dont:[60,61],doubl:[6,9,10,11,12,14,17,19,22,40,50,60,74,78],doubt:11,down:[0,6,20,23,28,50,54,58,66,74,76,78,79,100,146,161,209,216,218,219,220],downgrad:213,download:[6,30,33,40,43,49,56,74,80],downsampl:4,downstream:[26,219],downtim:[3,50,72],downward:20,dozen:219,dpkg:43,drag:11,drain:[4,57,72,146],draw:[0,25],drive:[0,6,50,66,71,218,219,220],driven:[3,27,31],driver:[6,12,14,20,28,30,44,48,52,60,82,216],driver_nam:60,driver_vers:60,drop:[1,6,10,15,52,53,54,55,57,59,60,61,62,64,66,67,69,74,76,77,109,205,208,209,211,216,219,220],drop_aggreg:53,drop_aggregate_stat:12,drop_funct:53,drop_function_stat:12,drop_index:53,drop_index_stat:12,drop_keyspac:53,drop_keyspace_stat:12,drop_materialized_view_stat:12,drop_rol:53,drop_role_stat:12,drop_tabl:53,drop_table_stat:12,drop_trigg:53,drop_trigger_stat:12,drop_typ:53,drop_type_stat:[12,22],drop_user_stat:12,drop_view:53,dropdown:220,droppabl:[6,57,66,208],dropped_mut:195,droppedmessag:73,droppedmut:74,dropwizard:74,drwxr:213,drwxrwxr:[62,64],dry:[83,203],dsl:33,dt_socket:40,dtest:[33,39,41],due:[0,1,11,13,22,35,45,50,57,62,69,72,74,79,216,220],dump:[53,54,61,82,83,203,218],duplic:[25,27,28,32,39,76,214],durabl:[0,2,4,62,65,72],durable_writ:11,durat:[6,10,15,19,20,66,72,74,81,148,196,207],dure:[6,11,14,21,23,35,42,44,45,58,59,60,64,67,68,69,70,72,74,75,77,79,81,82,168,205,211,215,218,220],duse:56,dverbos:35,dying:45,dynam:[6,23,72,73,75,77],dynamic_snitch:78,dynamic_snitch_badness_threshold:78,dynamic_snitch_reset_interval_in_m:78,dynamic_snitch_update_interval_in_m:78,dynamo:[2,3,52],e123fa8fc287:[54,76],e2b06b91:49,each:[0,1,3,4,6,10,11,12,13,14,17,18,20,22,23,24,25,26,27,28,29,32,33,36,38,42,49,50,51,52,53,54,56,57,58,59,60,61,62,64,66,67,70,71,72,74,76,77,78,79,80,81,82,83,146,171,187,200,203,204,218,219,220],each_quorum:[0,6,55],eagerli:57,earli:[6,12,42],earlier:[42,49,53,56,75],eas:220,easi:[3,9,23,36,42,54,220],easier:[0,36,42,50,53,204],easiest:45,easili:[0,23,27,77],east:[54,76],eben:[23,24,25,26,27,28,29,30],ec2:[6,50,53,54,56,60,62,64,71,76,78],ec2multiregionsnitch:[6,78],ec2snitch:[6,50,78],ecc:71,echo:[49,56,208],eclips:[34,41,44],ecosystem:39,eden:220,edg:39,edit:[3,36,40,43,46,49,74,77,214],editor:36,effect:[0,3,6,11,22,25,27,42,45,54,57,59,63,70,77,100,146,216,219,220],effectiv:74,effici:[6,11,32,53,61,64,66,69,78,79],effort:[0,6,36,42,72,76],eight:0,either:[0,4,6,8,12,13,14,16,22,27,28,33,34,36,38,40,42,45,49,51,56,57,62,65,66,72,74,77,81,198,216,218,219,220],elaps:[66,74,220],elast:50,elasticsearch:80,elder:40,element:[0,22,24,25,29,36,50,54,82],elig:6,elimin:[28,216],elixir:48,els:[11,13,34,42],elsewher:57,email:[8,16,22,29,43,52],embed:44,emerg:[3,35],emit:6,emploi:63,empti:[6,9,10,11,12,64,82,211],emptytyp:9,enabl:[0,6,11,14,17,20,44,45,55,56,60,62,66,69,70,72,78,79,82,105,106,107,109,112,113,146,183,207,208,218,220],enable_legacy_ssl_storage_port:6,enable_transient_repl:[59,60],enable_user_defined_funct:14,enableauditlog:[53,61,146],enableautocompact:[66,146],enablebackup:[62,146],enablebinari:146,enablefullquerylog:[6,54,146,218],enablegossip:146,enablehandoff:[72,146],enablehintsfordc:[72,146],enableoldprotocolvers:[60,146],encapsul:[34,74],enclos:[9,10,12,14,20,27,81],enclosur:12,encod:[15,22,39,57,61,82,208],encodingstat:208,encount:[0,5,13,43,57,74,81],encourag:[11,65],encrypt:[6,48,56,58,60,64,73,207],end:[22,24,27,33,45,53,54,61,66,67,68,75,77,78,82,89,124,146,161,209,214,220],end_dat:29,end_resultset:54,end_token:[89,161],end_token_1:151,end_token_2:151,end_token_n:151,endpoint:[0,6,57,59,72,74,75,78,84,124,146,161,198],endpoint_snitch:78,endpointsnitchinfo:77,endtoken:82,enforc:[17,27,57,77],engin:[0,2,3,11,28,42,52,74,80],enhac:37,enhanc:[37,57,71],enjoi:43,enough:[0,6,22,23,26,28,45,46,53,54,67,75,76,78,82,218,220],enqueu:[6,57,218],ensur:[1,13,18,21,28,45,48,54,57,59,65,66,70,72,75,77,206,218,219],entail:45,enter:[0,24,26,33,45,82,218,220],enterpris:49,entir:[0,4,6,11,14,22,27,45,50,54,57,58,59,63,64,69,72,76,77,79,82,83,203,205,216,220],entiti:[23,24,25,26,27,32],entri:[4,6,9,13,16,33,42,43,49,52,53,54,74,77,82,208],entropi:[0,6,72],entry_count:60,entry_titl:13,enumer:[20,204],env:[45,46,56,74,77],environ:[0,1,5,6,30,35,40,41,44,45,48,49,50,52,56,64,71,210],envis:24,ephemer:71,epoch:[22,54,208],epol:6,equal:[0,6,10,11,13,22,24,28,34,66,81],equival:[10,11,12,13,14,20,38,66,217],equivil:50,eras:[11,57],erlang:48,erlcass:47,err:82,errfil:82,error:[1,6,11,12,14,16,18,20,22,24,30,33,34,39,40,43,44,52,53,56,60,61,76,81,82,162,206,211,215,217,218,219],error_byt:60,error_count:60,escap:[12,17,81],especi:[0,24,25,42,45,50,66,82,220],essenc:24,essenti:[14,45,56,62,82],establish:[6,20,57,64,78,207],estim:[4,28,58,74,76,208,219],estimatedcolumncounthistogram:74,estimatedpartitioncount:74,estimatedpartitionsizehistogram:74,etc:[6,18,22,34,39,45,46,49,54,58,61,66,67,74,77,81,207,220],eth0:6,eth1:6,ev1:22,evalu:[6,19,29,31,52],even:[0,1,6,10,11,12,13,14,17,22,24,25,26,27,29,32,37,42,50,52,54,57,58,59,60,62,66,72,75,76,77,82,92,168,199,216,218,219,220],evenli:[0,6,32],evenlog:[206,209],event:[1,3,4,6,13,22,55,57,61,66,73,81,82,161,204],event_typ:13,eventlog:[204,206,209,212,214,215],eventlog_dump_2018jul26:204,eventlog_dump_2018jul26_d:204,eventlog_dump_2018jul26_excludekei:204,eventlog_dump_2018jul26_justkei:204,eventlog_dump_2018jul26_justlin:204,eventlog_dump_2018jul26_singlekei:204,eventlog_dump_2018jul26_tim:204,eventlog_dump_2018jul26b:204,eventu:[0,2,3,4,13,36,50,57,72,76],ever:[34,44,45,71],everi:[0,1,4,6,11,13,14,18,20,21,22,24,28,51,53,56,57,58,59,61,63,64,66,71,76,81,82,216,219,220],everyon:[23,75],everyth:[4,12,34,40,45,80],evict:74,evil:[6,14],ex1:81,ex2:81,exact:[11,12,14,70,72,217],exactli:[11,14,18,54,77,204,220],examin:[25,28],exampl:[0,3,6,11,13,14,17,20,22,23,24,25,26,27,28,31,37,43,44,49,50,51,53,54,56,59,60,61,64,66,67,69,72,73,77,78,81,82,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220],example2:81,exaust:6,excalibur:11,exce:[4,6,11,17,34,57,218],exceed:[6,57,71,209],excel:[11,28],excelsior:11,except:[0,6,13,14,17,39,41,42,44,45,54,56,57,61,64,74,204,209,218,220],excess:63,exchang:[0,6,45,58],exclud:[0,11,53,61,74,83,105,129,146,203],excluded_categori:[53,61,105],excluded_keyspac:[53,61,105],excluded_us:[53,61,105],exclus:[22,35,44,161],execut:[6,9,11,12,13,14,20,30,33,35,40,44,51,54,61,66,74,77,82,203,204,205,206,207,208,209,210,211,212,213,214,215,219,220],executor:33,exhaust:[6,49,56,216],exhibit:13,exist:[0,1,6,9,10,11,12,13,14,16,17,18,20,21,22,27,28,36,37,39,40,43,44,52,53,54,60,61,63,64,66,69,70,75,78,79,81,205],exit:[54,83,214],exp:81,expand:[11,50,83],expans:[11,50,58,59],expect:[0,1,4,6,10,12,22,27,32,34,39,42,43,57,64,66,69,72,73,76,77,209,219],expens:[6,54,63,78],experi:[6,24,49,57,66,219],experienc:[0,6,218],experiment:[0,3,25,32,49,56,59,161],expert:59,expir:[6,10,11,13,22,57,60,69,72,73,76,77,168,205,208,211],expired_byt:60,expired_count:60,expiri:66,explain:[26,34,36,39,42],explan:[50,83,203],explicit:[0,10,11,20,29,57],explicitli:[3,4,6,10,11,13,17,22,34,53,60,62,69,78,81],explor:[24,40],expon:10,exponenti:[74,81,216],expos:[6,9,57,60,75,77],express:[0,6,10,12,19,78],expung:45,extend:[22,42,44,57,64,80,83,137,200,203],extens:[6,11,24,64,77],extent:1,extern:[27,52,53,73,74,79,80,217],extra:[0,4,6,57,66],extract:[34,49],extrem:[6,13,24,50,81],f6845640a6cb11e8b6836d2c86545d91:208,f8a4fa30aa2a11e8af27091830ac5256:207,facebook:3,facilit:6,fact:[22,37,44,45,216],factor:[0,6,11,23,28,52,58,59,64,70,72,76,77],factori:81,fail:[0,1,6,11,13,14,22,28,33,35,52,53,54,56,57,58,66,72,74,75,82,146,162],failur:[1,2,6,42,52,58,59,62,66,71,72,74,78,114,146,200,216],failuredetector:146,fairli:[6,24,65,77,220],fake:14,fall:[0,6,24,53,54,61],fallback:[6,66,78],fals:[6,11,12,17,20,22,54,60,61,62,63,64,65,66,69,70,74,76,77,79,82,168],famili:[6,62,71,130,148,185,196,213],familiar:23,fanout_s:[66,67],faq:83,far:[36,37,54],fare:220,fashion:0,fast:[0,6,24,28,32,63,66,80,218,220],faster:[0,6,32,42,58,59,70,71,146,171,219],fastest:[6,38,75,78],fatal:6,fault:[1,45,72],fav:[16,22],favor:56,favorit:220,fax:22,fct:14,fct_using_udt:14,fd576da0:76,fd8e5c20:76,fear:45,feasibl:22,featur:[0,2,25,27,29,30,37,39,40,42,50,52,53,54,56,57,58,59,77],fed:6,feed:54,feedback:42,feel:[36,38],felt:[26,28],fetch:[6,11,36,82],few:[0,6,25,62,66,67,71,216,218],fewer:[6,32,42,72],fewest:50,fffffffff:[17,22],fgc:220,fgct:220,field:[10,13,14,17,22,32,34,54,57,61,63,81,211],field_definit:22,field_nam:13,fifteen:74,fifteenminutecachehitr:74,fifth:219,figur:[0,1,24,25,26,27,28,32,37,62,68,75,205],file:[3,4,7,11,27,28,36,40,41,42,43,44,45,46,49,50,52,53,54,56,57,58,60,62,63,64,65,66,69,71,72,74,77,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,208,209,210,211,213,214,216,217,220],fileauditlogg:53,filenam:[4,11,82,130,146,208,212],filenamepattern:61,filesystem:[33,53,54,72,77],fill:[43,57,62,65,67],fillion:13,filter:[0,4,9,11,18,52,58,59,60,62,64,71,73,74,161,208,213,214],finalfunc:[9,14],finalis:43,find:[0,4,6,24,25,26,27,29,33,36,40,43,44,52,60,63,66,72,75,77,79,124,128,204,208,210,213,217,219,220],fine:[4,6,42,76,77],finer:[4,6],finish:[28,29,40,42,54,56,76,146,163,218],finish_releas:43,fip:[6,77],fire:[21,37],firefox:82,firewal:[6,45,46,78],first:[0,1,4,5,6,11,13,14,22,23,24,25,26,28,32,42,43,45,48,56,59,62,67,69,71,75,76,77,81,82,161,168,204,208,211,214,216,218,219,220],first_nam:29,firstnam:13,fit:[6,28,66,67,74],five:74,fiveminutecachehitr:74,fix:[6,10,11,12,18,27,33,36,38,41,43,45,50,57,66,71,75,76,81,211],fixm:43,flag:[6,13,38,39,42,57,65,74,76,79,206],flash:80,flat:72,flexibl:[0,3,11,50,54,55,77],flight:[6,57,77],flip:11,floor:6,flow:[6,20,26,39,41,61],fluent:47,flush:[4,6,11,57,62,64,65,66,67,69,71,72,74,104,146,185,214,218],fname:14,focu:[23,26,33,42],focus:81,focuss:220,folder:[40,64,192,212],follow:[0,1,3,4,5,6,8,9,10,11,12,13,14,17,18,19,20,22,26,28,32,33,34,35,36,37,38,39,40,42,43,44,45,46,50,52,53,54,56,57,58,59,60,61,62,64,65,66,70,72,74,75,76,77,78,79,82,86,89,96,106,115,116,152,161,168,182,187,199,200,205,210,211,214,216,220],font:12,foo:[11,12,65,220],footprint:[3,54,146,148],forc:[4,6,11,13,58,76,82,89,92,146,160,161,162,215],forcefulli:[84,146],foreground:[46,75],foreign:[3,27,32],forev:[57,66],forget:5,fork:[36,42],form:[0,6,10,11,12,14,20,24,27,50,58,64,91,145,195],formal:[0,12,36,43],format:[4,6,10,11,17,22,25,28,36,38,39,41,42,53,54,57,61,64,74,82,83,90,109,130,151,195,197,203,214,219],former:[6,74],formerli:59,formula:28,fortabl:64,forward:[6,11,35,75],found:[0,1,5,6,12,14,23,33,36,37,42,44,46,51,62,64,75,77,79,81,82,83,192,200,203,207,208,213,214],four:[0,13,28,57,60,70],fourth:[28,219],fqcn:44,fql:[55,218],fql_log:218,fqltool:[3,54,56,218],fraction:[0,6],frame:[6,60],framework:[39,44],franc:[13,22],free:[0,6,11,22,30,36,38,40,57,74,80,215,220],freed:4,freestyl:33,frequenc:[6,11,32,65,76],frequent:[6,11,24,25,27,50,52,56,69,77,216,220],fresh:79,fri:54,friendli:[6,11,22,44],from:[0,1,3,4,6,9,11,12,13,14,15,17,18,19,20,22,23,24,25,26,27,28,29,30,32,37,38,41,42,44,49,50,51,52,53,54,55,56,58,59,61,63,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,83,84,86,87,89,94,96,102,105,106,112,115,116,119,121,124,128,130,132,136,137,144,146,148,151,152,153,155,156,159,160,161,162,164,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,203,205,206,208,209,211,214,216,218,219,220],fromjson:15,front:[24,54],froom:22,frozen:[9,10,11,13,14,22,29],fruit:[22,42],fsync:[4,6,65,72,74,219],fulfil:81,full:[0,1,3,6,9,11,13,16,20,26,42,45,51,52,55,64,66,67,70,72,73,75,77,80,81,82,99,109,146,152,161,164,207,209,214,219],full_nam:195,full_query_log_dir:54,full_query_logging_opt:54,fulli:[0,1,6,11,12,14,32,43,59,64,69,73,74,77],function_cal:12,function_nam:[13,14,20],fundament:17,further:[5,11,18,22,32,48,57,66,73,77,80,219],furthermor:[0,10,13,77],futher:61,futur:[6,9,10,11,22,42,57,59,72,111,146,191],g1gc:71,gain:30,galleri:23,game:[14,22],garbag:[11,58,71,73,74,116,218],garbage_collect:192,garbagecollect:146,gather:66,gaug:74,gaurante:0,gaussian:81,gc_grace_second:[11,64,208],gc_type:74,gce:[45,71],gcg:6,gcinspector:218,gcstat:146,gct:220,gcutil:220,gcviewer:218,gear:24,gen:220,gener:[0,2,4,6,8,11,12,13,14,17,22,30,32,33,36,39,40,41,42,43,45,54,57,60,71,72,77,80,81,82,132,168,182,211,217,218,219,220],genuin:34,geoloc:23,geospati:80,get:[0,4,6,8,24,25,27,28,32,33,35,36,38,40,41,42,45,49,50,52,53,54,56,60,62,63,64,66,67,72,74,75,76,83,121,122,123,126,129,146,203,205,209,217,219,220],getbatchlogreplaythrottl:146,getcompactionthreshold:146,getcompactionthroughput:146,getconcurr:146,getconcurrentcompactor:146,getconcurrentviewbuild:[18,146],getendpoint:146,getint:14,getinterdcstreamthroughput:146,getlocalhost:[6,45],getlogginglevel:[146,218],getlong:14,getmaxhintwindow:[72,146],getpartition:34,getreplica:146,getse:146,getsstabl:146,getstr:14,getstreamthroughput:146,gettempsstablepath:34,getter:[20,34],gettimeout:146,gettraceprob:146,getudtyp:64,gib:[53,54,72,91,145,195,219],gigabyt:72,gist:[4,34],git1:43,git:[5,33,36,38,40,42,43,56,218,220],gitbox:[40,43],github:[33,34,38,41,42,43,44,56,80,220],give:[0,18,20,22,28,36,42,44,52,82,206,218,219],giveawai:220,given:[0,6,11,12,13,14,16,22,24,26,27,28,29,32,33,42,53,57,58,59,62,63,64,66,67,69,75,76,77,79,81,82,87,89,94,96,106,119,128,132,146,152,172,179,183,187,194,204,206,208,209,210,213,214],glanc:220,global:[0,3,6,25,33,56,57,82,146,170],gms:218,gmt:22,goal:[6,27,28,31,50,54,69,216],gocassa:47,gocql:47,goe:[11,27],going:[6,25,28,42,67,69,211,217,219,220],gone:[6,11],good:[6,28,34,36,42,44,45,54,57,66,76,82,210,216,218,219,220],googl:[3,34,82,220],gori:45,gossip:[1,6,45,56,57,72,74,78,100,110,134,146,190,218],gossipinfo:146,gossipingpropertyfilesnitch:[6,50,78],gossipstag:[60,74,218,219],got:6,gotcha:220,gp2:71,gpg:49,gpgcheck:49,gpgkei:49,grace:[73,76,83,203],gracefulli:57,grafana:216,grai:22,grain:[27,77],grammar:[11,12,35],grant:[6,9,53,77],grant_permission_stat:12,grant_role_stat:12,granular:[4,6,11,75,116],graph:[20,83],graphit:216,gravesit:11,great:[26,37,42,66,217,218,219,220],greater:[0,6,22,45,50,78,175,176,218,220],greatest:60,greatli:[6,58],green:[22,40],grep:[4,206,208,210,218,219,220],groovi:33,group:[6,10,11,20,24,28,32,57,59,69,74,77,78,216],group_by_claus:13,grow:[22,24,80],growth:[0,3],guarante:[0,2,6,11,13,14,22,24,42,52,57,58,63,66,67,72,75,76,79,80,82,205],guard:58,guest:[23,24,25,26,27,29],guest_id:[25,29],guest_last_nam:29,gui:220,guid:[6,23,24,25,26,27,28,29,30,36,40],guidelin:[10,32,39,43,71],habit:43,hackolad:30,had:[0,3,6,9,10,24,57,64,66,75,211,217,219],half:[4,6,38,45,72],hand:[3,6,13,71,219],handi:[28,220],handl:[0,1,6,14,39,41,42,45,54,57,59,65,71,74,77,81,109,218],handler:57,handoff:[0,6,73,74,101,135,146,177],handoffwindow:[72,146],hang:42,happen:[0,6,13,34,38,42,52,66,67,72,74,78,216,218,219,220],happi:42,happili:71,hard:[3,6,14,27,28,62,65,66,71,213,218],harder:6,hardest:37,hardwar:[2,3,6,33,50,52,58,72,73,216],has:[0,1,3,4,6,10,11,12,13,14,18,20,22,25,27,28,30,32,34,42,43,45,50,54,56,57,58,59,60,61,62,64,65,66,67,71,72,74,75,77,78,79,81,82,83,203,207,216,218,219,220],hash:[2,4,6,32,49,60,66,72,75,76,215,220],hashcod:34,hashtabl:23,haskel:48,hasn:[0,54,59,109],have:[0,3,5,6,9,10,11,12,13,14,15,18,19,20,22,24,25,26,27,28,29,32,33,34,36,37,38,39,40,42,43,44,45,46,49,50,53,54,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,74,76,77,78,109,168,205,207,209,211,214,215,216,217,218,219,220],haven:42,hayt:47,hdd:[4,6,71],head:[36,42,57,220],header:[40,57,82],headroom:6,health:220,healthi:[50,220],heap:[4,6,40,46,52,54,56,63,64,70,71,74,218,219,220],heap_buff:6,hear:27,heartbeat:[0,6,218],heavi:[0,6,50,66,218,219,220],heavili:[50,71],held:[6,71,146,150],help:[0,5,6,10,24,25,26,28,30,35,37,42,44,49,51,53,54,61,62,64,72,81,83,85,146,184,207,211,212,213,214,215,216,217,218,219,220],helper:44,henc:[5,6,11,22],here:[6,23,24,26,27,28,29,35,36,38,43,44,45,47,49,50,67,74,77,81,219],hewitt:[23,24,25,26,27,28,29,30],hex:[12,17,130],hexadecim:[10,12,130],hibern:79,hidden:[79,220],hide:[34,39,60,83,203],hierarch:[0,20],hierarchi:[20,76],high:[0,2,6,11,32,36,43,45,50,66,67,71,72,80,216,218,219],higher:[0,19,20,42,63,67,74,75,79,148,196,218,220],highest:[67,208,209],highli:[1,3,42,45,71,77,218,219],highlight:[27,30],hint:[0,6,11,12,18,45,46,52,55,59,60,73,74,76,101,102,111,112,127,135,146,147,166,177,180,191,198,219],hint_delai:74,hinted_handoff_disabled_datacent:72,hinted_handoff_en:[60,72],hinted_handoff_throttl:72,hinted_handoff_throttle_in_kb:72,hintedhandoff:[6,73],hintedhandoffmanag:74,hints_compress:72,hints_creat:74,hints_directori:[46,60,72],hints_flush_period_in_m:72,hints_not_stor:74,hintsdispatch:[60,74,219],hintsfail:74,hintsservic:73,hintssucceed:74,hintstimedout:74,histogram:[4,66,72,74,146,149,194,208,218],histor:[11,27,42],histori:[27,33,34,61,88,90,146],hit:[6,67,74,220],hit_count:60,hit_ratio:60,hitrat:74,hoc:44,hold:[0,6,10,13,20,45,58,68,72,82,216,218,220],home:[0,22,56,60,81,82],honor:[6,40],hope:66,hopefulli:42,horizont:[0,56],hospit:25,host:[0,6,11,36,46,49,52,53,54,58,61,62,64,74,75,76,78,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,207,219,220],hostnam:[6,45,53,54,56,60,62,64,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,220],hot:[6,50,73,74,220],hotel:[23,26,27,28,29,31],hotel_id:[24,25,28,29],hotels_by_poi:[24,25,29],hotspot:[0,11],hotspotdiagnost:77,hottest:6,hour:[6,22,42,43,53,69,72],hourli:[53,54,61,109],how:[0,3,5,6,7,8,11,12,22,23,24,25,26,27,28,33,37,39,40,41,42,44,48,49,50,51,52,53,54,55,59,62,64,65,66,68,70,72,74,75,78,80,81,82,109,206,218,219,220],howev:[0,4,6,9,10,11,12,13,15,17,18,20,22,24,26,27,28,33,42,44,45,46,49,60,63,64,70,71,72,76,77,79,82],hoytech:220,html:[6,81,206],http:[6,33,34,36,38,40,43,49,56,74,204,205,206,207,208,209,210,211,212,214,215,220],httpadaptor:74,hub:45,hudson:33,huge:57,huge_daili:61,human:[11,53,61,65,91,145,195,219],hundr:28,hurt:11,hybrid:11,hypothet:38,iauthent:6,iauthor:6,ibm:80,icompressor:70,id1:32,id2:32,idct:[64,207],ide:40,idea:[6,14,28,30,36,41,42,44,45,54,67,68,82,219,220],ideal:[6,44,69,74,77],idealclwritelat:74,idempot:[13,22,72],idemptot:22,ident:[0,59,81],identifi:[0,3,6,9,10,11,13,14,15,16,20,21,22,23,24,25,26,28,30,32,60,72,81,216],idiomat:8,idl:6,idx:65,ieee:[17,22],iendpointsnitch:[6,78],iftop:220,ignor:[0,6,10,14,22,34,60,64,82,195,207],iinternodeauthent:6,illeg:14,illegalargumentexcept:209,illustr:[1,20,32,62,75,209],imag:[22,36,220],imagin:66,imbal:[0,50],immedi:[4,6,11,22,24,42,57,59,63,70,77,86,146],immut:[4,45,62,66,70,71],impact:[6,11,39,42,50,53,54,57,69,73,77,218,220],imper:[0,3],implement:[0,1,3,4,6,10,13,14,18,20,28,29,32,33,34,44,45,53,54,57,59,60,61,65,70,72,77,78,80],implementor:6,impli:[0,1,11,12,22,32,53,58,59,75],implic:[0,77],implicitli:[14,20],import_:82,importantli:54,impos:[6,57],imposs:[50,67],improv:[0,3,6,11,22,32,37,42,44,52,55,63,67,71,73,78,79,82,220],inaccur:220,inact:45,inam:210,inboundconnectioniniti:56,inboundmessagehandl:57,inc:[23,24,25,26,27,28,29,30],incast:220,includ:[0,3,4,6,10,11,12,13,18,20,22,23,24,25,26,27,28,30,32,33,34,35,36,42,43,49,53,54,56,57,58,59,60,61,62,64,66,67,68,71,72,74,75,77,80,82,83,105,162,199,203,210,216,217,218,219,220],included_categori:[53,61,105],included_keyspac:[53,61,105],included_us:[53,61,105],inclus:[42,161],incom:[6,57,61],incomingbyt:74,incompat:[6,10,57,60],incomplet:[39,214],inconsist:[45,72,75,76],incorrect:45,increas:[0,3,4,6,11,18,45,50,58,59,63,67,70,71,72,74,76,78,79,161,207,215,216],increment:[2,3,6,10,13,22,42,43,50,57,59,66,72,73,74,97,107,146,162,168,188,211,214],incremental_backup:[60,62],incur:[13,22,56,59,74],inde:0,indefinit:[53,61],indent:34,independ:[0,11,66,71,77,219],index:[2,4,6,9,10,11,12,13,15,22,25,32,49,52,54,58,59,60,62,64,65,66,73,82,146,152,207,213,214,218],index_build:192,index_identifi:16,index_nam:16,index_summari:192,index_summary_off_heap_memory_us:195,indexclass:16,indexedentrys:74,indexinfocount:74,indexinfoget:74,indexnam:152,indexsummaryoffheapmemoryus:74,indic:[0,3,5,6,12,13,24,26,34,42,45,56,61,64,65,76,161,208,209,216,218,219,220],indirectli:13,indirectori:64,individu:[0,6,10,14,22,24,28,42,44,57,58,71,77,207,215],induc:13,industri:25,inequ:[10,13],inet:[9,11,14,17,22,60],inetaddress:[6,45],inetaddressandport:53,inetworkauthor:6,inexpens:71,inf:56,infin:[9,10,12],inflex:50,influenc:11,info:[6,46,48,56,61,74,94,146,204,218],inform:[0,4,6,12,13,22,24,25,26,27,29,49,50,51,54,57,58,60,64,72,74,75,76,77,78,79,81,82,85,88,114,134,136,137,138,145,146,167,184,186,206,207,208,216,217],infrastructur:[42,80],ing:11,ingest:[6,72],ingestr:82,inher:[1,11,22],inherit:20,init:74,initcond:[9,14],initi:[3,6,14,18,34,39,41,43,50,57,59,60,61,64,74,75,77,79,82,146,179,207],initial_token:[60,79],inject:61,innov:80,input:[0,9,10,14,17,22,39,58,64,82,210,218],inputd:22,insecur:6,insensit:[11,12],insert:[0,6,9,10,11,12,14,15,16,20,22,45,48,52,54,61,62,64,71,76,77,81,82,214],insert_stat:[12,13],insertedtimestamp:204,insertstmt:64,insid:[6,11,12,13,22,34,81,82],insight:[24,30,218,219],inspect:[0,6,40,81,82,215],instabl:6,instal:[6,21,33,35,44,45,48,52,56,64,77,82,213,220],instanc:[0,10,11,12,13,14,16,18,19,20,21,22,24,33,40,44,45,57,65,66,71,74],instantan:74,instanti:10,instantli:[6,57],instead:[0,4,10,11,13,18,22,24,27,28,30,34,36,43,45,53,60,61,64,66,67,167,186,204,220],instrospect:217,instruct:[0,6,8,11,36,37,38,40,49,52,72,220],instrument:[35,77],insuffic:216,insuffici:220,insufici:218,int16:54,int32:54,intact:57,intasblob:13,integ:[0,10,11,12,13,17,22,28,57,65,74,211],integr:[3,30,32,41,44,49,52,57,80],intellig:0,intellij:[30,34,41],intend:[11,27,32,39,59,77,207],intens:[6,44,45],intent:[0,39,58],intention:20,inter:[6,57,58,64,78,125,146,178,207],inter_dc_stream_throughput_outbound_megabits_per_sec:58,interact:[3,30,44,51,82,220],interest:[0,23,24,26,27,54,68,77,219],interfac:[3,6,10,14,26,34,36,45,46,49,54,60,70,77,80,220],interleav:81,intern:[6,9,11,13,18,22,36,39,45,56,60,71,72,74,83,203,216,220],internaldroppedlat:74,internalresponsestag:[60,74,219],internet:6,internod:[0,6,45,52,55,58,64,77,207,216,220],internode_application_receive_queue_capacity_in_byt:57,internode_application_receive_queue_reserve_endpoint_capacity_in_byt:57,internode_application_receive_queue_reserve_global_capacity_in_byt:57,internode_application_send_queue_capacity_in_byt:57,internode_application_send_queue_reserve_endpoint_capacity_in_byt:57,internode_application_send_queue_reserve_global_capacity_in_byt:57,internode_application_timeout_in_m:[6,57],internode_encrypt:[6,77],internode_inbound:[57,60],internode_outbound:[57,60],internode_tcp_connect_timeout_in_m:6,internode_tcp_user_timeout_in_m:6,internodeconnect:[132,182],internodeus:[132,182],interpret:[6,10,22,30,82],interrupt:[45,54],intersect:0,interv:[4,6,9,24,74,77,81,208],intra:[6,57,74,78,81],intrins:22,introduc:[0,1,6,10,17,24,28,37,54,57,59,61,72,79,214],introduct:[10,20,31,44,52],introspect:220,intrus:206,inttyp:64,intvalu:14,invalid:[0,6,13,20,39,57,64,77,137,139,140,141,146,209,215,219],invalidatecountercach:146,invalidatekeycach:146,invalidaterowcach:146,inventori:28,invert:81,invertedindex:21,investig:[6,41,217,218,219,220],invoc:[14,54],invoic:27,invok:[14,38,54,58,64,77,200],involv:[0,1,6,13,23,24,28,32,36,57,58,67,70,75,76,77,214,218,220],ioerror:34,ios:220,ip1:6,ip2:6,ip3:6,ip_address:84,ipaddressandport:57,ipartition:64,ipv4:[6,17,22,45,57],ipv6:[6,17,22,57],irolemanag:6,irrevers:[11,22],irrevoc:57,is_avail:[28,29],isn:[0,18,34,42,45],iso8601:[61,204],iso:22,isol:[1,6,11,13,57,74,216,217,219],issu:[0,6,20,28,33,35,36,37,38,42,43,44,45,49,50,54,55,57,63,66,70,161,204,205,206,207,208,209,210,211,212,214,215,216,218,219,220],item:[12,22,23,24,25,33,39,40,42,54],iter:[0,6,25,58,209],its:[0,1,4,6,11,12,13,14,22,24,26,40,45,49,53,54,56,57,58,61,62,64,66,67,69,72,74,77,78,79,80,81,205,209],itself:[6,11,16,27,45,53,57,66,72,79,219],iv_length:6,jaa:77,jacki:38,jamm:40,januari:22,jar:[14,34,35,40,44,56,74],java7:77,java8_hom:40,java:[3,6,14,21,22,34,40,42,48,49,52,54,55,65,69,71,74,77,146,184,209,217,218,220],java_hom:[56,220],javaag:40,javac:56,javadoc:[33,34,39,49],javas:6,javascript:[6,14],javax:77,jbod:71,jce8:6,jce:6,jcek:6,jconsol:[52,66,77],jdbc:30,jdk11:56,jdk:[6,33,56],jdwp:40,jeff:[23,24,25,26,27,28,29,30],jenkin:[35,41,52],jetbrain:40,jira:[5,6,35,37,39,41,42,44,65,204,205,206,207,208,209,210,211,212,214,215],jks:81,jkskeyprovid:6,jmap:220,jmc:[66,77],jmx:[6,18,20,52,53,54,57,60,62,64,73,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],jmx_password:77,jmx_user:77,jmxremot:77,jni:56,job:[42,76,86,116,159,161,168,199],job_thread:161,john:[13,22],join:[3,6,8,13,32,52,54,56,69,76,77,79,146,218,219],joss:13,journal:[62,64],jpg:22,jre:56,jre_hom:56,jsmith:22,json:[9,10,13,15,52,64,66,70,90,195,197,204],json_claus:13,jsonz:62,jsr:[6,14],jsse:6,jsserefguid:6,jstackjunit:44,jstackjunittask:44,judgement:34,jul:[56,220],jump:56,junit:[33,34,35,40,44],junittask:44,jurisdict:6,just:[0,6,14,20,24,25,27,37,40,42,44,45,53,57,60,65,66,76,77,81,216,220],jvm:[6,21,40,45,46,50,56,69,73,77,79,217,218],jvm_extra_opt:40,jvm_opt:[46,77],jvmstabilityinspector:39,k_i:28,kashlev:30,kbp:72,keep:[0,6,8,11,25,27,28,32,34,37,42,45,50,57,58,61,64,66,67,74,75,83,137,203,214,216,219,220],keepal:[6,45],kei:[0,3,4,6,9,10,11,13,14,17,22,24,25,26,27,28,29,30,32,44,45,49,50,54,57,58,60,62,64,65,66,67,70,71,72,74,75,76,77,80,81,83,86,124,128,130,140,146,150,170,171,195,203,208],kept:[1,4,6,32,64,66,67,74,214],kernel:[6,45,65,220],key_alia:6,key_password:6,key_provid:6,keycach:74,keycachehitr:74,keyserv:43,keyspac:[0,3,6,9,10,12,14,15,16,20,22,25,28,29,48,52,54,55,59,61,63,66,70,72,73,76,77,79,81,82,83,86,87,89,94,96,105,106,115,116,119,124,128,130,137,146,148,150,151,152,153,159,161,167,168,172,185,186,187,194,195,196,199,200,202,203,204,205,206,207,210,211,212,213,214,215,218,219],keyspace1:[20,60,64,205,207,208,209,210,211,213,218],keyspace_definit:81,keyspace_nam:[11,14,20,22,54,60,64,66,76,218],keystor:[6,64,77,207],keystore_password:6,keystorepassword:77,keytyp:208,keyvalu:60,keyword:[10,11,13,14,15,16,17,22],kib:[54,62,72,76,91,145,195,219],kick:[146,163],kill:6,kilobyt:70,kind:[0,3,11,12,22,33,42,57,60,62,65,66,75,216,219],kitten:22,knife:[146,184],know:[0,4,6,11,13,22,24,34,37,43,58,60,66,210,218,219,220],knowledg:37,known:[0,20,22,24,27,28,32,47,51,59,63,66],krumma:44,ks_owner:77,ks_user:77,kspw:[64,207],ktlist:[62,185],kundera:47,label:[22,33],lack:[74,218,219],lag:74,laid:27,land:70,landlin:22,lang:[52,56,74,77,209,220],languag:[3,6,9,10,12,14,21,22,32,36,47,51,52,82],larg:[0,1,3,6,11,13,14,22,31,33,44,52,57,59,64,67,71,74,77,80,82,204,210,212,216,218,219,220],large_daili:61,larger:[0,6,44,45,50,54,67,70,71],largest:[6,74],last:[0,6,12,13,14,15,19,36,50,54,56,66,67,74,84,146,208,209,210,216,218,220],last_nam:29,lastli:[13,22],lastnam:13,latenc:[0,1,3,6,11,32,45,50,53,54,59,60,74,78,80,81,217,218],latent:[0,216,220],later:[0,11,22,26,28,34,36,42,45,72],latest:[0,6,32,33,43,49,66,75,82,200,206,218],latest_ev:81,latter:[12,27],launch:0,law:27,layer:71,layout:[0,11,36],lazi:11,lazili:11,lead:[0,6,10,11,22,24,50,66,69,218,220],leak:54,learn:[6,23,24,26,44,45,50,82],least:[0,4,6,11,12,13,18,36,45,59,64,66,71,76],leav:[0,6,12,13,24,34,44,45,54,57,76,82,216,218,219],left:[6,17,19,49,67,214],legaci:[4,6,20,81],legal:10,len:57,length:[4,6,10,11,17,22,39,50,57,58,66],lengthier:42,less:[0,4,6,22,35,42,45,49,57,58,63,71,212,215,218,219,220],let:[6,23,24,25,26,27,28,37,43,67],letter:17,level:[1,4,6,10,11,13,19,20,34,39,46,58,59,60,61,64,66,70,71,72,73,74,77,82,83,126,137,146,179,203,208,209,211,216,218,219],leveledcompactionstrategi:[11,58,63,66,67,69,206,209,219],leverag:[30,50],lexic:45,lib:[4,6,21,35,39,40,44,49,56,204,205,206,207,208,209,210,211,212,213,214,215,220],libqtcassandra:47,librari:[8,39,41,44,47,74,82],licenc:39,licens:[35,39,40,42],lie:216,lies:216,lieu:75,life:42,lifespan:71,light:57,lightweight:[0,2,3,27,32,59,83],like:[0,3,6,11,12,13,14,17,22,25,26,27,28,34,36,38,39,42,44,45,49,52,57,59,60,64,66,67,69,70,71,72,75,76,77,209,210,211,216,217,218,220],likewis:20,limit:[0,1,4,6,9,10,11,20,22,28,32,45,49,50,54,55,58,65,66,70,77,81,218,220],line:[6,12,24,27,34,42,44,46,50,51,54,56,57,62,64,65,77,83,84,86,87,89,94,96,102,106,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,204,207,209,214,218],linear:[0,3,71],lineariz:2,linearli:63,link:[6,8,11,12,42,44,54,57,62,65,213],linux:[6,36,43,45,49,50,56,217,218,220],list:[1,3,4,5,6,9,10,11,12,13,14,17,24,26,27,29,32,33,35,36,40,41,42,43,44,46,49,51,52,53,54,55,56,57,58,61,64,65,66,72,74,76,77,79,81,82,83,84,86,87,88,89,94,96,102,105,106,112,115,116,119,121,124,128,129,130,132,136,137,143,144,146,148,151,152,153,156,159,160,161,162,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,203,205,207,208,209,210,215],list_liter:[13,22],list_permiss:53,list_permissions_stat:12,list_rol:53,list_roles_stat:12,list_us:53,list_users_stat:12,listarg:14,listen:[6,49,52,56,74,220],listen_address:[46,51,52],listen_interfac:46,listsnapshot:[62,146,213],liter:[10,12,14,17,20,30,82],littl:[34,54,216,219],live:[0,3,13,30,36,52,66,74,79,208,213,214,218,220],live_scan:60,livediskspaceus:74,liveness_info:204,livescannedhistogram:74,livesstablecount:74,load:[0,3,6,11,21,22,37,50,52,56,58,72,73,74,76,77,78,79,81,83,138,146,153,161,186,203,216,219,220],loader:[64,207],loadm:207,local:[0,1,3,4,6,11,20,35,40,41,42,44,51,53,54,55,60,62,71,72,74,77,78,82,146,155,161,165,198,208,216,217,218,220],local_jmx:77,local_on:[0,75,77,82,216,219],local_quorum:[0,72,75,82,216,220],local_read:60,local_read_count:195,local_read_lat:60,local_read_latency_m:195,local_scan:60,local_seri:82,local_writ:60,local_write_latency_m:195,localhost:[6,49,51,54,56,60,61,77],localpartition:60,locat:[6,24,26,32,43,48,49,61,70,74,77,78,82,192,207,216,218,220],lock:[6,45,74,220],log:[0,3,4,6,11,13,36,39,44,48,49,52,55,57,59,60,65,73,74,77,81,83,95,99,105,109,126,146,161,164,179,192,203,217,220],log_al:66,log_dir:54,logback:[46,61,218],logdir:[53,61],logger:[34,46,55,61,105],loggernam:61,logic:[0,6,21,25,28,30,31,52,57,59,218,219],login:[6,9,20,43,44,53,54,56,61,77,83,216],login_error:53,login_success:53,logmessag:[53,61],lol:22,longer:[6,9,10,11,30,43,45,54,57,58,66,79,86,146,211,214,216],longest:218,look:[0,6,12,24,25,28,33,36,37,38,42,44,57,66,67,71,75,76,209,211,216,218,220],lookup:[26,32,74],loop:[34,57],lose:[0,4,6,27,57,66,79,214],loss:[0,6,22,50,57,69,76,220],lost:[1,58,61,62,66,79,211],lot:[6,24,27,28,36,51,52,54,66,76,83,203,212,218,219,220],low:[0,3,6,42,80,146,148,220],lower:[0,4,6,11,12,13,20,45,63,64,66,67,70,74,79,216,218],lowercas:12,lowest:[6,42,67,72,208],lsm:[0,219,220],lucen:52,luckili:217,lwt:[0,32,59],lww:0,lz4:[4,6,57,72],lz4compressor:[4,6,11,50,64,70,72,208],mac:220,macaddr:9,machin:[6,11,44,45,54,62,74,77,78,79,208,217,220],made:[0,3,6,22,32,43,52,53,56,57,58,59,63,71,72,75,77,218],magazin:[32,62,64],magazine_nam:32,magazine_publish:32,magic:57,magnet:[4,6],magnitud:13,mai:[0,1,4,6,9,10,11,13,14,16,17,18,20,22,25,26,27,28,32,33,35,36,39,40,42,44,45,50,53,54,56,57,58,59,60,61,62,63,64,66,69,72,74,75,77,78,79,81,82,168,209,211,216,217,218,219,220],mail:[5,37,42,43,52],main:[0,6,14,18,40,45,48,49,54,56,62,64,77,82,209,216,218],main_actor:13,mainli:[6,58],maintain:[0,6,11,23,37,42,57,72],mainten:[0,72,74],major:[0,4,10,36,42,49,66,69,75,77,89,146,213,219],make:[0,1,6,8,9,21,22,23,24,25,27,28,29,30,32,33,34,35,36,37,40,42,44,45,46,54,57,59,60,64,66,67,69,75,76,77,79,81,82,143,146,204,218,220],malform:216,malfunct:57,malici:77,man:6,manag:[0,3,6,20,24,25,27,28,30,33,36,40,41,43,44,52,59,60,74,77,79,83,85,146,203],mandatori:[3,11,14,64],mani:[0,3,6,11,23,24,25,27,30,34,39,42,54,59,60,64,66,67,68,70,71,72,74,75,77,81,82,83,86,89,96,106,109,115,116,161,168,187,199,200,203,209,215,216,219,220],manifest:[62,64,83,203],manipul:[3,12,15,18,44,52,204],manual:[6,25,35,38,45,214,220],map:[0,3,6,9,10,11,13,14,17,20,23,29,32,50,52,65,74,218,220],map_liter:[11,16,20,22],mar:22,mark:[0,6,20,24,42,54,66,76,79,100,146,208,210,214],marker:[4,6,11,12,39,45,214],markup:36,marshal:208,mashup:23,massiv:[37,50,220],master:[2,3],match:[0,4,6,12,13,14,17,20,74,75,78,208,213],materi:[0,3,6,10,11,12,15,23,24,25,26,27,28,29,30,31,52,59,60,74,82,146,202],materialized_view_stat:12,math:72,matrix:55,matter:[11,45,75,220],maven:35,max:[4,6,11,52,54,56,57,60,66,72,74,77,81,82,109,119,127,146,161,172,180,208,211,218,219],max_archive_retri:[53,54],max_hint_window_in_m:[72,79],max_hints_delivery_thread:72,max_hints_file_size_in_mb:72,max_index_interv:64,max_log_s:[53,54,61,109],max_m:60,max_map_count:45,max_mutation_size_in_kb:[4,6,45],max_partition_s:60,max_queue_weight:[53,54,61,109],max_threshold:[64,66],maxattempt:82,maxbatchs:82,maxfiledescriptorcount:74,maxfiles:61,maxhintwindow:180,maxhistori:61,maxim:71,maximum:[4,6,14,50,53,54,57,60,61,63,72,74,82,109,121,146,168,174,208,211,212,216,218,219],maximum_live_cells_per_slice_last_five_minut:195,maximum_tombstones_per_slice_last_five_minut:195,maxinserterror:82,maxldt:205,maxoutputs:82,maxparseerror:82,maxpartitions:74,maxpools:74,maxrequest:82,maxrow:82,maxt:205,maxtasksqueu:74,maxthreshold:172,maxtimestamp:4,maxtimeuuid:10,mayb:13,mbean:[6,20,66,74,77],mbeanserv:20,mbit:[64,207],mbp:[6,58,72],mct:6,mean:[0,6,9,11,12,13,14,17,18,22,27,52,54,59,64,66,67,72,74,75,78,81,82,161,216,217,218,219,220],meaning:[13,58],meanpartitions:74,meant:[0,22,45,72,74],measur:[6,24,28,32,39,42,44,57,74,79,81,82,220],mebibyt:60,mechan:[0,53,65],media:[23,24,25,26,27,28,29,30],median:[60,74,218],medium:220,meet:[0,1,3,6,39,75,77],megabit:[72,207],megabyt:[6,72,212,219],mem:220,member:[0,34,77,81],membership:[1,2,6],memlock:45,memor:54,memori:[0,4,6,11,50,52,53,54,57,61,63,65,67,70,73,80,215,218,220],memory_pool:74,memtabl:[2,6,11,62,63,64,65,68,69,70,71,74,185,218,220],memtable_allocation_typ:4,memtable_cell_count:195,memtable_cleanup_threshold:4,memtable_data_s:195,memtable_flush_period_in_m:[11,64],memtable_off_heap_memory_us:195,memtable_switch_count:195,memtablecolumnscount:74,memtableflushwrit:[60,74,219],memtablelivedatas:74,memtableoffheaps:74,memtableonheaps:74,memtablepool:6,memtablepostflush:[60,74,219],memtablereclaimmemori:[60,74,219],memtableswitchcount:74,mention:[6,22,27,42,56,74,77,207,216],menu:[0,40],mere:34,merg:[0,36,38,42,63,68,70,71,73,75,220],mergetool:38,merkl:[0,6,74,76],mess:[42,44],messag:[0,1,6,22,33,36,39,42,52,53,54,55,56,58,59,61,64,72,74,75,76,77,207,211,212,213,214,215,216,218,219],messagingservic:57,met:13,meta:[13,56,74,81],metadata:[0,4,20,28,43,58,70,71,74,83,203,211,214,215,218],metal:6,meter:74,method:[10,13,14,20,34,37,39,40,44,48,52,54,56,64,77,81],methodolog:30,metric:[6,55,60,72,73,81,217,219,220],metricnam:74,metricsreporterconfigfil:74,mib:[53,54,91,145,195],micro:219,microsecond:[6,11,13,22,74,208,219],microservic:25,midnight:22,midpoint:0,might:[0,6,11,13,23,24,25,26,27,28,43,54,62,64,66,67,74,75,84,86,87,89,94,96,102,106,109,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,215,216,219],migrat:[6,50,60,74,78],migrationstag:[60,74,219],milli:4,millisecond:[4,6,10,11,22,28,54,74,148,168,196,208,211,219,220],min:[4,6,11,45,65,66,74,81,82,119,146,172,208,218,219],min_index_interv:64,min_sstable_s:68,min_threshold:[64,66],minbatchs:82,mind:28,minim:[6,25,27,54,59,69,71],minimum:[6,11,14,28,32,46,74,76,206,208],minlocaldeletiontim:208,minor:[10,12,36,54,73,75],minpartitions:74,mint:205,minthreshold:172,mintimestamp:208,mintimeuuid:10,minttl:208,minu:28,minut:[6,22,27,53,54,56,61,66,69,72,74,77,81,109],mirror:[36,49],misbehav:[52,66,217],misc:[132,182],miscelen:74,miscellan:6,miscstag:[60,74,219],mismatch:[0,6,54,57,75],misrepres:211,miss:[11,18,33,35,66,72,74,76,79,214,220],misslat:74,misspel:206,mistak:50,mistaken:[54,62,64,84,86,87,89,94,96,102,106,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202],mistun:218,mit:43,mitig:[6,77],mix:[6,49,50,54,66,69,81,220],mkdir:[53,54,56,64,218],mmap:45,mnt:16,mock:44,mode:[4,6,49,53,54,62,64,77,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,216],model:[3,11,15,20,26,27,29,42,52,56,58,77,81,220],moder:28,modern:[71,72,220],modestli:6,modif:[13,20,218],modifi:[6,9,10,11,14,20,22,27,32,42,60,63,69,70,210],modification_stat:13,modul:82,modular:39,modulo:0,moment:[6,42],monitor:[45,49,52,53,73,77,78,85,146,216,220],monkeyspeci:[11,18],monkeyspecies_by_popul:18,monoton:[0,11,59,73],month:[22,28,56],monument:23,more:[0,1,4,6,10,11,12,13,22,23,24,25,28,29,32,34,36,37,42,44,46,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,67,69,70,71,72,73,74,75,77,78,79,81,83,89,115,116,146,148,161,168,184,196,200,203,208,209,215,217,219,220],moreov:[13,64],most:[0,1,6,11,12,13,22,24,27,28,36,37,40,42,44,45,46,49,50,54,57,60,61,66,67,68,70,71,72,74,75,77,82,88,146,196,208,209,216,218,219,220],mostli:[4,6,11,22,25,66,217,218],motiv:[44,69],mount:[6,220],move:[0,6,28,42,45,52,54,59,65,73,74,76,146,211,214,219],movement:[0,58,59,73,218],movi:[13,22],movingaverag:6,msg:61,mtime:[11,210],mtr:220,much:[0,5,6,11,23,24,27,28,50,58,60,63,64,65,66,67,68,69,78,207,216,218,220],multi:[1,2,3,6,12,39,55,62,72,218,220],multilin:41,multipl:[1,4,6,10,11,12,13,14,19,22,23,24,27,30,32,34,39,40,42,45,46,50,54,58,69,71,72,75,78,81,82,83,151,203,204,216,219],multipli:[28,67],multivari:80,murmur3:4,murmur3partit:4,murmur3partition:[6,14,64,82,208],museum:23,must:[0,1,3,4,6,10,11,13,14,17,18,20,24,27,28,32,34,35,40,42,44,45,46,50,53,54,56,57,58,59,62,64,66,69,74,75,77,79,81,82,185,203,204,205,206,207,208,209,210,211,212,213,214,215],mutant:16,mutat:[0,4,6,13,45,57,60,65,72,74,75,200,219],mutatedanticompactiongaug:74,mutationsizehistogram:74,mutationstag:[60,74,219],mv1:18,mvn:35,mx4j:74,mx4j_address:74,mx4j_port:74,mx4jtool:74,mxbean:20,myaggreg:14,mycolumn:17,mydir:82,myevent:13,myfunct:14,myid:12,mykei:17,mykeyspac:[14,50],mytabl:[11,14,17,19,21],mytrigg:21,n_c:28,n_r:28,n_v:28,nairo:22,naiv:0,name:[4,6,9,10,11,12,13,14,16,17,18,20,21,22,24,26,29,30,32,33,36,39,40,42,43,44,45,46,49,53,54,60,61,62,74,76,77,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,206,207,210,213,216,218,219,220],names_valu:13,nan:[9,10,12,60],nano:[57,60],nanosecond:[22,74],narrow:[216,218,219,220],nathan:13,nativ:[4,6,10,12,15,17,30,39,45,51,53,54,56,60,61,64,74,82,98,108,146,152,189,207,219,220],native_transport_port:46,native_transport_port_ssl:77,native_typ:22,natur:[11,22,26,34,57,66,69,70,72,220],navig:36,nbproject:40,ncurs:220,nearli:40,neccessari:6,necessari:[6,11,14,20,27,42,53,54,57,61,70,77,204,208,211],necessarili:[6,12,25,46],need:[0,1,4,6,10,11,12,13,20,22,23,24,25,26,27,28,32,33,34,39,40,42,43,44,45,46,51,53,54,57,58,59,60,61,62,63,64,66,67,70,71,72,75,76,77,78,80,82,124,128,207,212,213,215,219,220],needlessli:0,neg:[6,50],negat:[19,77],neglig:[13,220],neighbor:[0,58,216],neighbour:66,neither:[6,18,22,77],neon:40,nerdmovi:[13,16],nest:[12,13,34],net:[6,40,45,48,61,77],netbean:[30,41],netstat:[79,146],netti:[6,55,57],network:[0,1,6,13,45,50,57,58,62,71,72,75,76,77,78,145,146,149,218],network_author:20,network_permiss:6,networktopologystrategi:[48,59,77,81],never:[0,6,10,11,12,13,14,22,27,34,45,50,57,59,66,67,76,209],nevertheless:[13,32],new_rol:20,new_superus:77,newargtuplevalu:14,newargudtvalu:14,newer:[0,28,66,69,71,82,116,205,220],newest:[11,69,205],newli:[0,11,20,22,42,65,146,153],newreturntuplevalu:14,newreturnudtvalu:14,newtuplevalu:14,newudtvalu:14,newvalu:64,next:[0,6,24,45,51,54,56,59,60,62,64,67,68,72,75,82,217,218],ngem3b:13,ngem3c:13,nic:[56,220],nice:[28,57],nid:220,nifti:38,night:[24,28],ninth:0,nio:[6,14,55,58,74],nntp:220,node:[1,3,4,6,11,13,14,21,22,27,28,32,39,44,46,47,50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67,71,73,74,75,76,78,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,207,208,209,217,218,219,220],nodej:48,nodetool:[3,4,6,18,49,52,54,55,56,58,59,60,62,63,70,73,76,77,79,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,210,213,215,216,217,218,220],nois:[6,218],noiser:218,noisi:218,nologin:9,nomenclatur:0,nomin:28,non:[0,6,9,10,11,12,13,14,20,22,25,45,56,57,58,60,63,66,70,74,77,82,208,211],nonblockingbufferhandl:57,none:[0,1,6,11,13,22,59,60,62,64,74,76,77,208],nonsens:20,noopauditlogg:53,nor:[6,11,18,22,49],norecurs:[9,20],norm:74,normal:[1,11,14,17,20,27,32,40,45,49,54,56,59,60,72,74,76,81,82,216,218,219,220],nosql:[3,30,80],nosuperus:[9,20],notabl:[14,17,49],notat:[10,12,13,24,25,28,82],note:[0,4,5,6,10,11,12,13,14,15,17,20,22,24,25,38,41,42,43,45,49,50,56,57,59,64,66,77,203,204,205,206,207,208,209,210,211,212,213,214,215,218,220],noth:[6,11,14,38,44,45,205],notic:[6,24,29,58,77,219,220],notif:8,notifi:57,notion:[0,11,12],notori:[0,23],noun:27,now:[10,24,25,26,29,33,34,36,40,50,66,79,220],nowinsecond:54,npercentil:11,ntp:[0,6],nullval:82,num_cor:82,num_token:[50,79],number:[0,1,4,6,10,11,12,13,14,15,17,18,22,24,25,26,27,28,29,32,33,40,42,43,44,45,50,53,54,55,57,59,61,62,63,64,66,67,69,70,72,74,75,77,79,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,207,208,212,216,217,219,220],number_of_cor:6,number_of_dr:6,number_of_partitions_estim:195,numer:[3,15,19,33,63,81],numprocess:82,numsampl:218,ny229:25,object:[1,3,6,11,12,39,55,56,57,58,64,204],objectnam:20,observ:34,obsolet:[6,71,74,215],obtain:[12,24,26,28,62,64,77,220],obviou:[14,38,49],obvious:[11,23],occasion:[76,219],occup:[13,220],occupi:[6,57,74],occur:[0,6,10,12,13,21,22,45,56,57,66,71,74,76,203,204,205,206,207,208,209,210,211,212,213,214,215,220],occurr:22,octet:[6,78],odbc:30,oddli:6,off:[0,4,6,25,45,50,57,65,70,74,77,82,146,163,220],off_heap_memory_used_tot:195,offer:[0,15,44,54,70],offheap:[63,71],offheap_buff:6,offheap_object:6,offici:[36,42,52,80,82],offset:[4,11,58,65,74],often:[0,6,11,12,25,26,27,28,34,36,37,42,44,45,53,54,61,64,66,70,71,72,76,77,78,82,109,209,216,219,220],ohc:6,ohcprovid:6,okai:34,old:[0,4,6,54,57,60,66,69,79,83,103,113,146,203,214,220],older:[4,6,14,40,49,66,71,75,82,205,213],oldest:[4,6,11,53,54,61,205],omit:[4,6,10,11,13,17,22,24,54,72,179],onc:[0,4,6,11,12,14,22,25,28,29,33,38,40,42,44,45,50,54,57,62,65,66,67,70,71,74,76,77,79,81,82,209,216],one:[0,1,4,6,9,10,11,12,13,14,17,18,20,22,24,25,27,28,32,34,37,40,42,44,46,49,50,52,53,54,56,57,58,59,61,62,63,64,66,67,68,71,72,74,75,76,77,78,79,82,83,86,89,96,106,115,116,132,146,161,168,182,185,187,199,200,203,204,208,211,213,214,216,218,219,220],oneminutecachehitr:74,ones:[6,11,12,13,14,18,20,54,74,209],ongo:[37,67,74,79],onli:[0,4,6,9,11,12,13,14,17,18,20,22,24,26,27,28,32,34,36,42,43,44,46,49,50,52,54,56,57,58,59,60,62,63,64,65,66,67,68,70,71,74,75,76,77,78,79,81,82,83,161,185,195,203,205,207,210,211,212,213,215,216,219,220],onlin:[3,82],only_purge_repaired_tombston:66,onto:[0,4,66],open:[0,3,5,6,20,33,37,41,43,56,58,64,77,78,80,207,220],openfiledescriptorcount:74,openhft:61,openjdk:[49,56],openssl:56,oper:[0,1,2,6,10,11,12,13,15,16,18,20,22,27,34,41,49,50,52,53,54,55,57,59,60,61,62,63,64,65,66,71,72,74,76,77,79,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,206,213,214,216,217,218,219,220],operand:19,operatingsystem:74,operationtimedoutexcept:216,opertaion:6,oplog:214,opnam:81,opportun:[36,63],oppos:[50,57],ops:[45,81],opt:14,optim:[0,4,6,11,12,13,28,32,45,55,58,59,66,67,69,71,79,208,218],optimis:[76,161],option1_valu:20,option:[0,3,4,6,9,10,11,12,13,14,16,20,22,24,27,28,30,36,40,42,44,45,49,50,55,56,57,58,60,62,70,71,73,75,77,79,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,207,208,209,210,211,212,213,214,215,218,219,220],oracl:[6,49,77,220],order:[0,1,4,6,9,10,11,14,18,22,24,25,26,27,28,29,32,34,42,45,54,59,60,63,64,65,69,78,79,81,82,208],ordering_claus:13,orderpreservingpartition:6,ordinari:6,org:[6,14,21,33,34,35,36,40,43,44,45,49,56,61,64,66,70,74,77,204,205,206,207,208,209,210,211,212,214,215,218],organ:[3,4,24,27,32,33,40,47],orgapachecassandra:43,orient:3,origin:[0,4,9,28,36,38,42,53,65,72,168,209,211,212,213],orign:13,os_prio:220,osx:36,other:[0,3,4,6,10,11,12,13,14,18,20,22,23,24,25,27,29,30,32,35,36,37,38,40,42,46,49,52,57,58,61,62,63,64,66,67,69,71,72,73,74,75,77,78,79,146,151,162,205,208,209,214,216,217,218,219,220],other_rol:20,otherwis:[0,6,9,12,13,16,22,24,58,72,76,121,205,216],our:[5,6,8,33,36,37,38,40,43,57,59,66,220],ourselv:38,out:[1,2,3,4,6,11,12,24,25,27,30,34,35,37,40,42,43,54,58,66,67,68,69,74,75,76,77,78,79,80,161,204,205,216,219,220],outag:0,outbound:[6,58,60],outboundtcpconnect:6,outdat:75,outgo:[6,57,220],outgoingbyt:74,outlin:[33,77],outofmemori:64,outofmemoryerror:52,output:[14,20,39,40,43,49,53,54,56,58,59,63,64,66,68,76,81,82,83,89,90,195,197,203,208,211,212,214,215],output_dir:64,outputdir:64,outsid:[11,21,22,57],outstand:[214,219],oval:23,over:[0,3,4,6,11,22,24,27,32,45,50,54,57,58,59,66,67,74,76,77,78,79,81,209,211,214],overal:[14,57],overflow:[17,83,168,203],overhead:[6,32,45,50,55,59,70,74,79],overidden:77,overlap:[0,66,67,209],overli:[27,28],overload:[6,14,45,207],overrid:[6,11,33,34,53,64,72,77,79,82,168,207,211],overridden:[6,11,54,60,61],overs:75,overview:[2,52,73],overwrit:[24,61,70,71,72,77],overwritten:[74,116],own:[0,11,12,14,22,37,41,42,45,49,54,56,57,64,66,70,74,76,77,80,81,124,130,137,146,200,209,219],owner:22,ownership:[0,66,167],ownersip:218,p0000:22,p50:219,p50th_m:60,p99:[11,220],p99th:11,p99th_m:60,pacif:22,packag:[33,40,44,45,46,48,51,82,218],packet:[6,218],page:[6,22,33,36,37,40,44,45,50,71,74,80,83,217,219],paged_rang:219,paged_slic:74,pages:82,pagetimeout:82,pai:[34,35,43],pair:[6,11,20,22,57,62,69,77],pane:30,paper:[0,50],parallel:[18,44,55,66,67,76,161,219],param:[11,57],paramet:[4,6,11,14,32,33,34,39,40,46,54,57,61,63,71,78,79,146,179],parameter:33,params:57,paranoid:6,parent:[35,207],parenthes:[29,32,53],parenthesi:[11,81,82,216],park:23,parnew:71,pars:[6,12,53,57,61,65,82,220],parser:[9,10],part:[3,5,6,11,13,14,18,22,24,25,26,28,35,39,40,42,44,45,49,64,77,78,79,82,207,216],parti:[39,52,74,204],partial:[4,11,28,75,214],particip:[0,21,57],particular:[0,6,11,12,13,14,17,20,22,24,32,45,57,62,71,74,77,216,218,219,220],particularli:[12,22,49,77,218,219,220],partit:[1,2,3,4,6,10,11,13,14,24,27,29,30,31,45,50,54,58,60,62,63,64,66,67,71,72,74,75,81,116,124,128,146,168,196,204,208,216,218,219],partition:[4,10,13,14,60,64,76,82,93,146,161,208],partition_kei:[11,13],partitionspercounterbatch:74,partitionsperloggedbatch:74,partitionsperunloggedbatch:74,partitionsvalid:74,partli:13,pass:[39,42,46,82,184,207,208,219,220],password:[6,9,13,20,53,54,60,62,64,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,207],password_a:20,password_b:20,passwordauthent:[6,77],passwordfilepath:[53,54,62,64,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],past:[24,74],patch:[10,13,33,34,36,38,39,41,44,52,58],path1:[53,54,61],path2:[53,54,61],path:[0,5,6,16,27,39,53,54,56,58,59,62,63,64,69,70,71,74,77,80,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,207,211,213,215,218,220],pathn:[53,54,61],patter:20,pattern:[6,11,20,22,23,29,30,31,32,61,216,219,220],paus:[6,45,72,146,147,218,220],pausehandoff:[72,146],pauser:[53,54],paxo:[1,13,55,74,82],paxos_prepar:57,payload:57,payloads:57,pcap:220,peak:[207,220],peer:[0,6,20,50,54,56,57,74,220],peerip:74,pem:[54,56],penalti:[6,13,50],pend:[6,55,57,60,66,72,74,76,146,160,219],pending_flush:195,pending_task:60,pendingcompact:74,pendingflush:74,pendingrangecalcul:[60,74,219],pendingtask:74,pendingtasksbytablenam:74,pennsylvania:22,peopl:[36,42,43,45],per:[4,6,10,11,13,28,32,34,38,42,45,54,57,59,63,64,65,66,67,68,69,70,72,74,76,77,81,82,146,169,177,204,207,214,216,218,219,220],per_second:60,percent:74,percent_repair:195,percentag:[6,74,78,220],percentil:[11,74,216,219,220],percentrepair:74,perdiskmemtableflushwriter_0:[60,74,219],perf:220,perfdisablesharedmem:220,perfect:14,perfectli:[27,57],perform:[0,1,3,6,11,13,20,22,24,25,27,28,30,32,37,38,39,41,42,45,46,50,53,55,58,59,60,61,63,66,67,71,72,74,75,76,77,78,82,161,218,219,220],perhap:[24,28,57,216,218],period:[0,4,6,33,53,57,59,71,74,76,77,79,146,148,220],perl:48,perman:[11,45,66,71,72,218],permiss:[6,9,12,23,24,25,26,27,28,29,30,44,49,53,54,64,77],permit:[6,20,54,57,58,65,77],persist:[0,4,45,56,63,65,71,77,220],person:220,perspect:[24,26,45],pet:22,petabyt:[0,1],peter:23,pgp:43,phantom:47,phase:[79,82,219],phi:[0,6],phone:[13,22,25,29],phone_numb:29,php:48,physic:[6,11,28,29,30,31,45,52,71,78],pib:0,pick:[6,38,42,45,58,66,67,77,79,81,151],pickl:50,pid:[45,220],piec:[0,12,66,74],pile:6,pin:[6,78],ping:[42,220],pkcs5pad:6,place:[5,6,16,21,23,32,34,38,42,54,65,69,74,76,77,82,146,153,207,212,218,220],placehold:[14,82],plai:[14,22],plain:4,plan:[11,28,38,42,50],plane:[0,36],platform:[20,33,49,80],platter:[6,71],player:[14,22],playorm:47,pleas:[5,6,11,13,14,22,33,34,36,40,42,43,44,45,56,61,77,81,215],plu:[14,28,66,74,219],plug:[6,28,33],pluggabl:[0,20,77],plugin:[30,52,74],pmc:43,poe:22,poi:[26,29],poi_nam:[24,29],point:[0,3,4,6,10,17,22,23,24,26,27,30,34,36,40,43,50,52,57,59,72,77,81,82,124,146,207,216,220],pointer:[14,58],pois_by_hotel:[24,29],polici:[6,11,42,43,77,200,216],poll:77,pom:41,pool:[6,56,74,76,146,174,197,219,220],poorli:24,pop:81,popul:[11,18,81],popular:[23,24,30,40,49,71],port:[0,6,40,46,52,53,54,60,61,62,64,74,77,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,207,220],portabl:62,portion:[0,24,50,71,82,212],posit:[0,4,6,10,11,19,22,58,63,74,79,204,208],possbili:6,possess:20,possibl:[0,1,6,10,11,13,14,17,20,22,28,33,39,42,44,45,50,57,58,59,63,66,67,71,72,74,77,79,81,209,216,218],post:[13,33,41,57,146,171],post_at:13,postal_cod:29,posted_at:13,posted_bi:11,posted_month:11,posted_tim:11,potenti:[0,6,9,11,12,14,24,28,39,54,61,69,71,77,79,168,209,211],power8:80,power:[6,11,80],pr3z1den7:22,practic:[0,6,11,12,13,27,29,30,43,57,59,72,73,77],pre:[6,11,17,22,54,57,58,71,77,211,212,214],preced:[19,32,45,62,64,81],precis:[10,17,22,66,208],precondit:74,predefin:11,predict:[13,28,54,209],prefer:[0,6,11,12,22,27,34,42,57,59,77,78],preferipv4stack:40,prefix:[11,12,22,208,214],premis:50,prepar:[6,14,15,53,55,61,64,74],prepare_releas:43,prepare_stat:53,preparedstatementscount:74,preparedstatementsevict:74,preparedstatementsexecut:74,preparedstatementsratio:74,prepend:22,prerequisit:[41,48],prescript:49,presenc:6,presens:4,present:[0,3,12,13,18,30,46,60,65,74,77,211,220],preserv:[6,11,17,20,27,28,75],preserveframepoint:220,pressur:[6,58,74,219,220],presum:27,pretti:[24,28,82,220],prevent:[0,6,11,44,65,74,75,76,207,211,220],preview:[36,55,76,161],previewkind:76,previou:[0,6,10,11,22,28,43,49,61,67,76,79,213],previous:[6,24,28,57,72,214],previsouli:[112,146],price:27,primari:[0,3,9,10,11,13,14,22,24,25,27,28,29,32,44,54,60,62,64,65,69,70,75,76,77,79,81],primarili:[0,6,11],primary_kei:[11,18],print0:210,print:[49,53,54,62,64,72,76,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,218],prio:220,prior:[6,13,20,22,64,79],prioriti:[1,42,220],privat:[6,34,43,77,78],privileg:[20,77],proactiv:57,probabilist:[0,63,70],probabl:[0,4,6,11,24,44,63,66,76,133,146,183,218,219,220],problem:[0,5,6,11,14,24,27,38,39,43,45,50,72,77,216,217,219,220],problemat:[22,50,216],proc:[6,45],proce:[39,70,79,216],procedur:[13,77],proceed:215,process:[0,1,6,14,24,25,32,33,35,37,38,39,40,41,42,44,45,50,52,57,58,59,60,65,70,71,72,74,75,76,77,79,80,82,85,121,146,147,166,174,206,207,211,213,214,215,218,219,220],processed_byt:60,processed_count:60,processor:[3,53,54],prod_clust:82,produc:[13,14,26,37,54,57,66,69,109,216],product:[0,1,6,11,27,28,35,37,42,45,48,49,52,54,56,59,71,78],profil:[13,40,83,146,148,220],profileload:146,program:[14,44,217,220],programm:0,programmat:210,progress:[34,38,42,43,49,57,60,63,64,73,76,81,83,146,202,203,214,219],project:[26,33,34,35,36,37,43,44,74],promin:11,promot:4,prompt:82,prone:50,propag:[0,6,14,34,39,57,72,78],proper:[0,11,22,36,45,54,77],properli:[6,27,39],properti:[4,6,11,18,20,25,32,40,43,48,53,54,59,65,66,75,77,78,79],propertyfilesnitch:[6,78],proport:[6,13,50],proportion:[6,72,118,146,169],propos:[6,24,43,55,74],protect:[6,11,24,57,59,71,76,77,214],protocol:[0,1,6,39,45,51,54,55,60,61,64,74,77,82,88,98,103,108,113,146,189,207,218,220],protocol_vers:60,prove:[25,220],provid:[0,1,3,4,5,6,11,12,13,14,15,17,22,24,27,28,30,32,40,42,43,51,53,54,57,58,61,64,65,66,70,71,72,74,75,76,77,78,79,80,81,83,145,146,156,160,207,208,209,212,214,215,216,218],provis:[50,64,220],proxim:[6,78],proxyhistogram:[146,219],prtcl:[64,207],prune:57,prv:[58,76,161],ps1:77,ps22dhd:13,pt89h8m53:22,publicationfrequ:32,publish:[23,24,25,26,27,28,29,30,32,35,62,64],published_d:81,pull:[0,27,36,44,50,69,74,76,161],pure:[66,220],purg:71,purpos:[12,13,22,27,57,58,62,71,77],push:[38,42,43,74],put:[15,24,28,42,46,54,58,64,66,67,68,79,137,161,209,219],pwf:[53,54,62,64,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],pylib:49,python:[14,33,42,44,48,49,82],pytz:83,qos:61,quak:[14,22],qualifi:[11,14,42,64,219],qualiti:[36,55,77],quantiti:[1,22,59,219],queri:[1,3,6,10,11,12,13,14,16,18,20,24,25,28,29,30,31,48,52,53,55,57,59,60,61,62,64,66,69,74,76,80,81,82,99,109,146,164,217,220],query_fail:54,queryabl:1,queryopt:[53,54],queryst:[53,54],querytimemilli:54,queryvalidationexcept:216,question:[8,20,27,41,52,220],queu:[6,55,74],queue:[6,24,53,54,57,61,74,109,219,220],quick:[24,54,64,137,200,215],quickli:[24,45,58,62,67,72,219],quill:47,quintana:22,quit:[0,28,60,66,82,207,219,220],quorum:[0,11,55,72,73,77,82,216],quot:[9,10,11,12,14,17,20,81,82],quotat:20,quoted_identifi:12,quoted_nam:11,r_await:220,r_k:28,race:[22,38],rack1:6,rack:[0,6,48,54,60,76,77,78,216,219],rackdc:[6,78],rackinferringsnitch:[6,78],raid0:71,raid1:71,raid5:71,rain:12,rais:[6,12,45,53,72,216],raison:9,ram:[50,63,70,71,220],ran:210,random:[0,11,14,45,79],randomli:[6,79],randompartition:[6,13,14],rang:[0,6,10,11,13,22,24,26,39,55,58,66,67,73,74,76,81,82,89,94,132,146,151,161,182,216,219],range_slic:[74,219],rangekeysampl:146,rangelat:74,rangemov:79,rangeslic:74,rapid:[11,32,59,71],rapidli:220,rare:[10,27,63,64,216],raspberri:71,rate:[0,6,11,23,26,72,74,77,81,82,207,220],ratebasedbackpressur:6,ratefil:82,rather:[6,13,24,26,45,57,58,60,65,66,71,81],ratio:[6,70,71,74,81,208],ration:4,raw:[4,6,14,83,203,218],rdbm:[0,31,52],reacah:61,reach:[0,1,4,6,11,28,42,45,50,53,54,59,65,66,75,209],reachabl:54,read:[0,1,3,6,11,13,22,24,29,32,34,36,39,44,45,48,52,54,55,57,60,63,64,66,67,68,69,70,71,72,73,74,77,78,81,82,132,182,195,200,207,208,215,216,218,219,220],read_ahead_kb:220,read_lat:195,read_repair:[0,11,59,74,75,219],read_repair_ch:75,read_request_timeout:45,readabl:[11,25,53,54,61,65,91,145,195,219],reader:54,readi:[0,11,24,29,36,42,49,60,77],readlat:[74,216],readm:[36,43],readrepair:74,readrepairstag:[74,219],readstag:[60,74,76,219],readtimeoutexcept:216,readwrit:77,real:[1,4,8,11,23,25,27,34,45,80,218],realclean:35,realis:81,realiz:[27,66],realli:[6,27,28,44,58,60,206,210,216,220],realtim:65,reappear:76,reason:[0,4,6,11,13,14,15,18,27,28,45,46,53,57,64,69,71,76,77,79,219,220],rebas:36,rebuild:[0,58,59,63,66,70,74,146,152,168],rebuild_index:146,receiv:[0,1,6,14,18,42,45,49,57,58,59,60,66,71,72,75,79,216,220],received_byt:60,received_count:60,recent:[1,6,42,44,56,71,75,88,209,214],recent_hit_rate_per_second:60,recent_request_rate_per_second:60,reclaim:[54,57,59,61,69],recogn:[13,28,40,42,56],recommend:[4,6,11,22,27,36,45,48,49,52,54,56,59,60,61,64,71,77,79,218],recompact:66,recompress:70,reconcil:[0,1,11,75],reconnect:77,reconstruct:209,record:[4,6,11,13,19,22,23,24,26,27,28,42,50,53,54,61,66,74,81,220],recov:[6,45,55,58,60,66],recoveri:[6,58],recreat:[20,54,82],rectangl:23,recurs:[54,109],recycl:[4,6,74],redhat:[43,49,56],redirect:61,redistribut:[6,76,218],redo:42,reduc:[4,6,11,25,28,37,45,54,57,58,59,62,67,70,72,75,76,83,92,118,146,161,169,203],reduct:6,redund:[0,32,34,39,42,57,59,71],reenabl:[108,110,111,146],ref:[43,61,204,205,206,207,208,209,210,211,212,214,215],refer:[1,6,11,12,13,14,22,24,25,26,27,28,32,33,34,35,44,45,50,51,59,61,79,81,82,216,218],referenc:[6,26,28,81],referenti:3,refin:[29,31,52],reflect:[65,66,204],refresh:[6,64,77,82,146,154],refreshsizeestim:146,refus:[52,57],regain:57,regard:[11,13],regardless:[0,6,20,42,59,72,220],regener:[58,63],regexp:12,region:[6,78],regist:22,registri:77,regress:[39,44],regular:[9,12,28,36,40,44,45,55,57,74,82],regularcolumn:208,regularli:[50,76],regularstatementsexecut:74,regularupd:81,reifi:58,reilli:[23,24,25,26,27,28,29,30],reinforc:30,reinsert:[168,211],reject:[6,13,45,57,65,77,216],rel:[6,22,25,28,82,220],relat:[0,3,8,10,12,13,23,24,27,28,30,31,35,40,42,53,58,66,72,74,81,208,216,220],relationship:[6,23,24,27,32],releas:[6,10,27,28,32,41,42,49,52,56,59,82,220],relev:[13,20,22,42,64,70,77,80,207,208,211,220],relevel:[83,203],reli:[0,6,14,22,24,45],reliabl:[1,3,37,50,69],reload:[6,73,146,155,156,157,158],reloadlocalschema:146,reloadse:146,reloadssl:[77,146],reloadtrigg:146,reloc:[58,146,159,192,218],relocatesst:146,remain:[0,6,13,14,20,22,32,38,50,57,58,60,66,69,74,76,79,195,219],remaind:[17,19,70],remeb:61,remedi:67,rememb:[24,25,28,61,216],remind:24,remot:[0,4,36,38,40,52,53,54,62,64,67,77,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,216],remov:[0,1,4,6,10,11,12,13,14,15,17,18,20,22,35,39,45,52,54,57,59,64,65,73,75,77,84,87,116,146,160,209,214,215,220],removenod:[79,84,146],renam:[9,22],render:36,reorder:6,repair:[0,4,6,11,18,45,52,55,60,64,68,69,70,72,73,74,78,79,83,137,146,162,179,200,203,208,211,215,219],repair_admin:146,repairedat:210,repairpreparetim:74,repairtim:74,repeat:[12,54,70,77],replac:[0,6,9,14,20,22,35,39,43,45,52,53,54,57,58,59,66,73,75,76,109,213,214],replace_address_first_boot:[0,79],replai:[0,3,4,22,55,71,72,74,118,146,163,169,208],replaybatchlog:146,repli:[37,57],replic:[1,2,3,6,11,28,29,32,50,52,53,54,55,58,60,62,64,66,71,72,76,77,79,81,84,146],replica:[1,6,11,13,28,45,55,66,72,74,75,76,78,79,92,128,146,216,219,220],replica_2:72,replication_factor:[0,11,29,53,54,59,62,76,77,81],repo:[35,38,40,43,49],repo_gpgcheck:49,repodata:43,repomd:43,report:[6,27,35,41,42,49,52,73,216],report_writ:20,reportfrequ:82,repositori:[5,8,33,35,36,37,40,42,44,49,80],repres:[0,6,10,17,20,22,23,24,25,26,27,28,45,66,74,77,78,81,82,208,218],represent:[10,17,25,204],reproduc:[25,37],reproduct:37,request:[0,1,6,11,13,20,21,32,36,44,45,53,54,55,58,59,60,61,62,63,66,69,71,73,75,77,78,82,146,183,199,215,216,219,220],request_count:60,request_failur:53,request_respons:[57,74,219],requestresponsest:219,requestresponsestag:[60,74,76,219],requesttyp:74,requir:[0,1,3,6,11,13,14,20,24,27,28,32,34,36,38,39,40,41,42,43,45,49,50,53,54,58,59,63,64,70,71,75,77,81,206,207,210,213],require_client_auth:6,require_endpoint_verif:6,requisit:75,resampl:6,reserv:[6,10,12,15,23,26,27,28,29,30,31,57,60,220],reservations_by_confirm:29,reservations_by_guest:[24,29],reservations_by_hotel_d:29,reservoir:216,reset:[6,13,36,54,57,146,165,179,206],reset_bootstrap_progress:79,resetfullquerylog:[54,146],resetlocalschema:146,resid:[6,13,45,74,220],resolut:[0,6,13,41,45],resolv:[0,35,38,45,75,167,186],resort:[84,146],resourc:[0,20,50,54,55,77,207,219],resp:14,respect:[6,10,11,14,33,35,54,57,60,62,64,76,78,109,218],respond:[0,6,12,72,75,220],respons:[0,1,6,20,25,32,45,57,58,59,74,75,79,219],ressourc:22,rest:[6,11,12,22,32,33,39,79,216],restart:[3,45,66,72,77,79,146,153,171,206,218],restor:[58,64,66,73,79,82,207,213,214],restrict:[6,10,11,13,18,25,59,76],restructuredtext:36,result:[0,6,10,11,12,14,17,20,22,25,27,28,30,32,37,42,45,50,54,57,58,64,66,68,74,76,82,203,204,205,206,207,208,209,210,211,212,213,214,215,220],resum:[72,85,146,166],resumehandoff:[72,146],resurrect:66,resync:[146,165],retain:[20,45,53,54,61,66,72,211,213],retent:27,rethrow:34,retir:36,retri:[0,6,11,22,54,57,74,75,109],retriev:[0,11,13,20,24,32,35],reus:[28,39],reveal:28,revers:[11,13,24],revert:218,review:[11,34,36,41,42,44,52],revis:[25,81],revok:[9,53,77],revoke_permission_stat:12,revoke_role_stat:12,rewrit:[63,66,70,83,146,168,199,203,211],rewritten:[71,168,211],rfc:[14,22],rhel:[49,52],rich:[22,218],rid:35,rider:22,riderresult:22,right:[6,19,23,24,25,26,27,28,29,30,40,43,45,66,76,82,219,220],ring:[6,52,56,59,64,72,76,77,79,82,142,144,146,179,207,216],rise:[0,216],risk:[0,1,11,24,49,69],riski:69,rmb:220,rmem_max:6,rmi:[45,77],robin:72,rogu:14,role:[6,9,10,12,15,73],role_a:20,role_admin:20,role_b:20,role_c:20,role_manag:77,role_nam:20,role_opt:20,role_or_permission_stat:12,role_permiss:6,roll:[45,61,72,77,109],roll_cycl:[53,54,61,109],rollcycl:61,rollingfileappend:61,rollingpolici:61,rollov:61,romain:22,room:[5,8,23,24,26,27,28,29,43],room_id:28,room_numb:[28,29],root:[6,38,42,49,54,56,64,215,218],rotat:[6,54,218],roughli:[0,6,64],round:[13,24,67,72,74],rout:[0,6,57,78],routin:[72,220],row:[0,3,4,6,10,11,13,14,15,17,18,24,28,32,44,50,51,54,58,60,62,63,64,70,71,74,75,76,81,82,83,116,137,141,146,168,170,171,203,208,211,215,220],row_column_count:54,rowcach:[52,74],rowcachehit:74,rowcachehitoutofrang:74,rowcachemiss:74,rowindexentri:74,rows_per_partit:[11,64],rpc:[6,74],rpc_address:[54,60],rpc_timeout_in_m:[132,182],rpm:[43,48],rrqm:220,rsc:200,rst:36,rubi:[14,48],rule:[0,6,12,14,42,45,216,218],run:[0,4,5,6,12,22,24,28,30,33,35,38,40,42,43,45,46,49,53,55,56,57,58,59,60,62,64,66,68,69,71,72,74,75,76,77,79,80,81,83,137,146,161,184,203,206,207,208,210,212,213,217,218,219,220],runnabl:220,runtim:[3,6,18,28,42,48,49,56,73,126,146],runtimeexcept:34,rust:48,s_j:28,s_t:28,safe:[0,14,22,54,57,59,66,77,220],safeguard:71,safepoint:218,safeti:[11,54,66,79],sai:[52,57],said:[11,42,45,64,146,199,220],salient:60,same:[0,1,4,5,6,11,12,13,14,15,17,18,19,20,22,24,25,27,32,36,38,40,42,46,50,52,53,54,57,59,60,63,64,66,67,68,69,72,74,75,76,77,78,79,81,161,209,214,216,218,220],samerow:81,sampl:[4,6,12,14,25,54,58,64,74,81,82,109,146,148,150,196],sampler:[60,74,148,196,219],san:71,sandbox:[6,14],sasi:6,satisfi:[0,11,24,27,34,59,71,74,75,79],satur:[6,74,219,220],save:[6,13,22,33,35,45,46,57,63,70,71,79,81,146,171],saved_cach:6,saved_caches_directori:46,sbin:45,scala:[14,48],scalabl:[0,2,3,43,80],scalar:15,scale:[1,2,3,44,70,80,81],scan:[6,13,24,59,63,74],scenario:38,scene:45,schedul:[0,6,33,57,60],scheduled_byt:60,scheduled_count:60,schema:[0,3,9,11,14,17,30,31,50,52,54,60,62,64,74,75,77,81,82,93,146,155,165,206,208],schema_own:20,schema_vers:54,scheme:0,scientif:24,scope:[20,25,53,61,74,77],score:[6,14,22,78],script:[6,14,30,33,40,43,44,49,53,54,56,83,109,203,204,205,206,207,208,209,211,212,213,214,215,220],scrub:[63,66,70,74,83,146,192,203],sda1:50,sda:220,sdb:220,sdc1:220,sdc:220,search:[24,27,28,42,62,80,218],searchabl:220,second:[0,6,11,12,13,22,24,27,28,32,45,56,62,65,71,72,75,76,77,81,82,83,146,169,177,203,216,218,219,220],secondari:[0,2,3,10,12,13,15,25,27,52,59,60,66,74,80,146,152],secondary_index_stat:12,secondaryindexmanag:[60,74,219],section:[2,4,5,7,10,11,12,13,15,20,22,43,45,48,49,51,53,54,55,57,61,62,64,66,74,76,77,79,83,203,207,218,219],sector:50,secur:[6,14,15,43,52,73],seda:3,see:[0,4,6,10,11,12,13,14,17,20,22,23,24,26,27,28,35,37,40,42,43,44,49,51,52,54,57,61,66,68,74,77,78,79,82,116,146,161,206,208,209,212,218,219,220],seed:[0,6,46,52,56,78,129,146,156],seedprovid:6,seek:[0,3,4,6,50,71,74],seem:24,seen:[6,11],segment:[4,6,54,61,65,72,74,82,109,218,219],segment_nam:65,segmentid:208,select:[0,6,9,10,11,12,14,15,19,20,24,26,27,29,30,33,40,43,44,45,51,53,54,58,59,60,61,62,63,64,67,69,75,76,77,81,82,151,218,219,220],select_claus:13,select_stat:[12,18],self:[24,39],selinux:45,semant:[3,10,13,14,27],semi:45,send:[0,6,8,11,32,45,57,58,59,60,72,75,81,216,220],sender:57,sendto:81,sens:[10,13,15,25,45],sensic:14,sensit:[11,12,14,17,60,220],sensor:[22,24,28],sent:[0,6,11,22,45,57,58,59,60,72,74,75,216,220],sentenc:42,separ:[0,4,6,11,13,24,25,27,28,32,34,36,42,46,53,54,57,58,59,61,62,64,66,69,71,77,79,82,84,86,87,89,94,96,102,105,106,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,204,207,211],septemb:42,seq:[6,161],sequenc:[12,54,57],sequenti:[1,6,58,71,161],seren:13,seri:[11,24,43,49,66,69,82],serial:[4,6,54,58,72,83],serializeds:57,serializingcacheprovid:6,seriou:[36,216,219],serv:[1,13,24,50,57,58,59,71,77,220],server:[6,12,13,22,27,40,41,43,44,45,49,50,56,57,64,71,74,77,80,81,207,216],server_encryption_opt:[64,77,207],servic:[0,6,25,40,49,56,72,74,77,79,218,220],session:[6,20,57,76,77,83,146,162],set:[0,1,3,4,6,9,10,11,12,13,14,17,18,24,27,29,32,36,39,41,42,44,46,50,52,56,57,58,59,61,63,64,65,66,69,70,71,72,74,75,77,78,79,81,82,83,86,105,116,146,159,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,199,203,204,206,207,213,215,216,217,218,219,220],set_liter:[20,22],setbatchlogreplaythrottl:146,setcachecapac:146,setcachekeystosav:146,setcompactionthreshold:[66,146],setcompactionthroughput:[66,146],setconcurr:146,setconcurrentcompactor:146,setconcurrentviewbuild:[18,146],sethintedhandoffthrottlekb:[72,146],setint:[14,64],setinterdcstreamthroughput:146,setlogginglevel:[146,218],setlong:14,setmaxhintwindow:[72,146],setra:50,setstr:14,setstreamthroughput:146,setter:[20,33,34],settimeout:146,settraceprob:146,setup:[6,36,42,44,54,77],sever:[3,4,13,20,24,26,27,30,53,54,57,58,60,62,66,68,72,76,77,81,207],sfunc:[9,14],sha1:[43,213],sha256:49,sha:[38,43],shadow:[18,66,69],shall:[54,56,60,62,64,72],shape:81,shard:[4,28],share:[0,11,13,40,50,208,216,220],sharedpool:[57,82],sharp:47,shed:45,shelf:0,shell:[51,52,56,83],shift:22,ship:[35,44,51,77,82,218,220],shop:[23,24,26],shortcut:18,shorter:[36,77],shorthand:[26,82],shortli:28,shortlog:43,should:[0,4,5,6,10,11,12,13,14,17,20,22,24,27,32,33,35,36,39,40,42,44,45,46,47,48,49,50,51,53,54,56,57,59,61,62,63,64,66,67,68,69,70,71,72,74,76,77,78,79,81,82,151,161,182,212,214,216,220],shouldn:[11,46],show:[20,23,24,25,27,35,52,57,61,76,79,83,94,114,134,146,150,160,167,186,187,195,202,203,215,216,218,219,220],shown:[12,24,25,26,28,32,75,82,195,207],shrink:[6,50],shuffl:57,shut:6,shutdown:[4,6,71],side:[6,11,13,17,22,27,32,57,58,77,216],sig:43,sign:[13,22,45],signal:[6,146,157],signatur:[49,65],signifi:220,signific:[6,36,40,42,44,50,57,58,71,75,216],significantli:[0,6,28,50,58,76,220],silent:14,similar:[0,6,13,14,24,26,53,56,57,59,64,70,71,215,216,220],similarli:[0,10,17,29,34,54,62,71,146,151],similiar:76,simpl:[6,11,23,24,25,27,28,35,37,40,44,59,72,77],simple_classnam:44,simple_select:13,simplequerytest:44,simpler:0,simplereplicationstrategi:77,simpleseedprovid:6,simplesnitch:[6,78],simplest:49,simplestrategi:[29,50,53,54,59,62,76,81],simpli:[0,4,6,11,13,14,17,22,27,28,32,40,44,57,69,71,74,79,200],simplic:54,simplifi:[25,28],simul:44,simultan:[0,1,6,57,58,71,72,82,86,116,159,168,199],sinc:[0,6,11,13,14,22,28,32,36,40,44,45,50,54,56,60,64,66,67,72,74,75,76,78,79,206,209,211,219,220],singl:[0,1,3,6,10,11,12,13,14,17,18,20,22,24,27,28,29,32,34,42,46,49,50,51,52,54,56,57,58,67,69,72,73,74,75,76,77,78,82,83,89,203,216,218,219,220],singleton:39,sit:54,site:[36,43,49],situat:[6,44,66,72,220],six:56,size:[0,4,6,11,22,25,31,32,34,45,46,50,53,54,55,56,59,60,61,62,63,64,65,66,67,68,69,70,71,72,74,77,81,82,83,109,143,146,203,206,208,209,210,213,218,219,220],size_byt:[58,60],size_estim:[146,154,218],sizeandtimebasedrollingpolici:61,sizeof:28,sizetieredcompactionstrategi:[11,64,68,69,219],sjk:146,skinni:219,skip:[0,6,13,45,54,57,62,74,79,82,83,168,185,203,206,212],skipcol:82,skipflush:62,skiprow:82,sla:[39,50],slack:[5,42,52,76],slash:12,slave:33,sleep:220,sleepi:[53,54],slf4j:[34,35,53,61],slf4jexceptionhandl:54,slight:0,slightli:6,slow:[0,3,6,11,58,59,78,216,218,219,220],slower:[6,11,63,72,219,220],slowest:6,slowli:[6,22],small:[0,4,6,11,13,22,28,45,50,57,66,71,83,203,207,216,220],smaller:[0,4,6,28,45,68,71,82,212],smallest:[0,11,14,74,209],smallint:[9,10,14,17,19,22,29],smith:22,smoother:10,smoothli:6,snappi:[4,6,72],snappycompressor:[11,70],snapshot:[3,4,6,27,35,54,56,73,74,83,87,143,146,168,203,211,215,220],snapshot_before_compact:62,snapshot_nam:[87,213],snapshotnam:[87,146],snippet:56,snitch:[0,6,48,52,73,75,93,146],snt:220,socket:[6,77,182],soft:[36,59],softwar:[24,35],sold:24,sole:[11,37],solid:[6,50,71],solr:80,solut:[33,50,53],solv:0,some:[0,1,3,6,9,11,12,13,14,22,24,25,26,27,28,30,35,36,37,40,42,43,44,45,46,50,53,54,57,58,59,60,62,64,65,66,70,72,74,75,77,79,82,208,210,216,218,219,220],some_funct:14,some_keysopac:[11,59],some_nam:12,someaggreg:14,somearg:14,somefunct:14,someon:[38,66],someth:[6,23,27,64,75,210,218,220],sometim:[6,12,13,24,57,72,216,217,218,219,220],someudt:14,somewher:76,soon:[26,77],sooner:6,sophist:0,sort:[4,11,13,22,24,28,32,60,64,66,71,80,195,209,218],sort_kei:195,sound:28,sourc:[3,4,5,6,8,14,33,35,36,37,41,43,49,53,56,61,64,74,83,151,204,213,216],source_elaps:82,space:[0,4,6,28,32,34,45,54,57,58,59,62,65,66,67,69,71,74,212,220],space_used_by_snapshots_tot:195,space_used_l:195,space_used_tot:195,span:[0,6,13,66],spare:[33,218],sparingli:13,spark:47,spd:64,speak:[0,217,218,220],spec:[39,51,54,74,81,82],speci:[11,18],special:[0,12,13,44,45,57,60,66,74,83,214],specif:[0,9,11,12,13,22,24,28,32,36,40,42,45,47,53,54,57,60,62,64,65,66,69,74,76,77,81,82,146,151,161,207],specifc:74,specifi:[0,6,10,11,12,13,14,16,18,20,22,24,27,28,35,40,45,51,53,54,58,59,62,64,65,69,70,72,74,75,77,79,81,82,83,87,89,130,146,151,161,167,180,182,185,192,195,198,203,207,213,216],specific_dc:161,specific_host:161,specific_keyspac:151,specific_sourc:151,specific_token:151,specifii:20,specnam:81,specul:[0,11,55,74,75],speculative_retri:[11,64],speculative_write_threshold:59,speculativefailedretri:74,speculativeinsufficientreplica:74,speculativeretri:74,speculativesamplelatencynano:74,speed:[6,49,52,58,64,70,83,203,219],spend:220,spent:[49,74,220],sphinx:41,spike:45,spin:[6,50,66,71],spindl:[4,6],spirit:[6,78],split:[28,34,45,57,66,68,69,74,81,82,83,89,203],spread:[0,6,11,78],sql:[0,3,13,15,30],squar:12,squash:[36,42],src:[43,151],ssd:[6,16,50,71,220],ssh:[54,56,216],ssl:[6,45,60,64,73,81,82,83,146,157,203],ssl_cipher_suit:60,ssl_enabl:60,ssl_protocol:60,ssl_storage_port:[60,78],ssp:[64,207],sss:17,sstabl:[2,6,11,28,45,52,62,63,68,69,70,71,73,76,83,86,89,116,130,137,143,146,153,159,168,199,200,204,208,209,211,212,213,215,218,219,220],sstable_act:218,sstable_compression_ratio:195,sstable_count:195,sstable_s:68,sstable_size_in_mb:[66,67],sstable_task:[60,218],sstabledump:[83,203],sstableexpiredblock:[66,83,203],sstablelevelreset:[83,203],sstableload:[62,73,77,83,203],sstablemetadata:[83,203,206,210],sstableofflinerelevel:[83,203],sstablerepairedset:[83,203,208],sstablerepairset:210,sstablescrub:[83,203],sstablesperreadhistogram:74,sstablesplit:[83,203],sstableupgrad:[83,203],sstableutil:[83,203,204,208],sstableverifi:[83,203],sstablewrit:34,stabil:[33,42,57],stabl:[82,218],stack:[6,57,211,212,213,214,215,220],stackcollaps:220,staff:[24,26,81],staff_act:81,stage:[3,42,43,55,60,121,146,174,216,219],staging_numb:43,stai:[23,24,52,59,66],stakehold:[24,26],stale:77,stall:[6,79],stamp:61,stand:[44,49],standalon:44,standard1:[60,64,205,207,208,210,211,213,218],standard:[6,22,33,37,45,49,53,74,81,204,208,218],start:[0,6,9,13,24,25,26,27,28,30,36,41,45,46,49,50,52,54,56,59,62,66,67,69,71,72,74,75,76,77,79,89,161,192,209,213,216,218,219,220],start_dat:29,start_native_transport:60,start_token:[89,161],start_token_1:151,start_token_2:151,start_token_n:151,starter:42,starttl:64,startup:[4,6,21,40,45,49,60,67,74,79,214],startupcheck:218,starvat:6,stat:208,state:[0,1,6,11,14,50,53,54,56,59,63,66,71,74,76,79,146,186,217,218],state_or_provinc:29,statement:[6,9,10,11,13,14,15,16,17,20,21,22,27,39,41,55,60,61,62,63,64,66,74,75,77,81,82,216,220],static0:11,static1:11,staticcolumn:208,statist:[4,58,62,64,66,74,82,91,117,146,149,194,195,197,207,208,213,214,219],statu:[20,33,39,42,45,49,54,62,72,76,77,82,83,146,160,187,188,189,190,191,200,203,216,217],statusautocompact:146,statusbackup:[62,146],statusbinari:146,statusgossip:146,statushandoff:[72,146],stc:[11,66],stdev:[81,220],stdin:82,stdout:82,stdvrng:81,steadi:59,step:[0,6,26,28,33,36,40,41,43,77,217,218],still:[0,1,6,10,11,13,14,17,20,22,27,28,30,33,34,43,54,57,72,76,77,79,82,205,216,220],stop:[0,4,6,54,56,57,82,104,146,164,193,203,204,205,206,207,208,209,210,211,212,213,214,215,218],stop_commit:6,stop_paranoid:6,stopdaemon:[56,146],storag:[0,1,2,3,11,15,16,28,32,42,45,52,54,59,62,64,70,71,73,80,207,208],storage_port:[46,60,78],storageservic:[6,34,56,77],store:[1,4,6,10,11,12,13,22,24,26,27,28,29,32,50,52,53,54,57,58,59,60,62,63,64,66,70,71,72,74,77,80,82,101,109,111,146,191,207,208,211],store_queri:54,store_typ:6,stort:209,straggler:54,straight:[35,79,220],straightforward:[28,65],strain:28,strategi:[6,11,28,50,58,62,64,72,73,78,81,206,219],stratio:52,stream:[4,6,50,52,55,57,59,62,64,66,67,69,70,72,73,76,85,125,131,146,151,161,178,179,181,182,207,214,220],stream_entire_sst:[58,60],stream_throughput_outbound_megabits_per_sec:[58,64,207],streamer:58,street:[22,29],strength:6,stress:[52,56,83,220],stresscql:81,strict:[10,57,66],strictli:[8,11,14],string:[4,6,10,11,12,13,14,16,17,20,21,22,33,53,57,64,74,82,130,204],strong:0,strongli:[6,11,12,28,77],structur:[0,4,6,9,20,23,27,32,36,39,63,64,73,74,83,203,220],struggl:[0,3],stub:77,stuck:209,style:[0,6,24,25,28,39,40,41,42,44,52],stype:[9,14],sub:[0,11,13,22,54,62,66,67,220],subclass:6,subdirectori:[6,21,49,62],subject:[6,14,20,58,77],submiss:[6,42],submit:[41,42,44,52,89],subopt:81,subqueri:27,subrang:6,subscrib:[8,37,53],subscript:8,subsequ:[0,6,11,13,20,26,45,54,56,62,64,69,70,75,77],subset:[0,20,59,66,82,216],substanti:[58,220],substract:19,subsystem:77,subtract:208,subvert:69,succe:[0,1],succed:74,succeed:215,succesfulli:74,success:[26,28,43,53,56,57,61,75,82],successfulli:[0,1,43,54,57,59,61,72,74,76,215],sudden:6,sudo:[45,49,53,54,56,64,220],suffer:220,suffici:[0,6,28,54,57,59,77],suffix:49,suggest:[12,27,36,37,42,71,215],suit:[6,32,33,42,44,64,77,207],suitabl:[13,14,28,39,42,59],sum:[28,65],sum_i:28,sum_j:28,sum_k:28,sum_l:28,summari:[4,6,42,58,62,64,74,207,208,213,214],sun:[34,77,220],sunx509:207,supercolumn:9,supersed:[10,168,211],superus:[9,20,77],suppli:[3,11,13,27,38,64,204,216],supplier:24,support:[0,3,4,6,9,10,11,12,13,14,15,16,18,19,20,22,24,25,27,29,30,32,37,40,42,44,45,47,49,52,53,54,55,58,60,62,64,67,72,75,77,82,83,168,192,211,218,220],suppos:13,sure:[0,6,8,24,30,33,34,35,36,37,40,42,44,45,46,66,67,81,220],surfac:[0,77],surplu:45,surpris:[0,59],surprisingli:6,surround:[17,29,82],suscept:14,suse:49,suspect:[5,42,220],suspend:40,svctm:220,svg:220,svn:43,svnpubsub:43,swamp:45,swap:[0,4,6,220],swiss:[146,184],symbol:[24,220],symlink:64,symmetri:17,symptom:45,sync:[0,4,6,27,36,45,72,74,76,161,220],synchron:[53,58,76],synctim:74,synonym:20,synopsi:[54,62,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],syntact:[11,20],syntax:[10,12,13,14,20,22,30,36,53,54,62,66,70,81],syntaxerror:216,sys:6,sysctl:[6,45],sysf:220,sysintern:6,system:[0,1,3,6,11,14,20,25,28,33,40,44,45,46,49,50,51,53,54,57,60,61,62,66,71,74,77,80,82,120,122,123,125,131,137,146,153,154,155,173,175,176,178,181,207,212,214,216,217,220],system_auth:[6,54,60,77],system_distribut:[54,60],system_schema:[20,53,54,60,61],system_trac:[54,60,161],system_view:[54,60,218],system_virtual_schema:[53,54,55,61,218],tab:[34,40],tabl:[0,1,3,4,6,9,10,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,29,32,44,50,52,53,54,55,56,58,59,61,63,64,66,70,72,73,76,77,81,82,83,86,89,96,104,106,115,116,119,124,128,137,146,152,153,155,159,161,168,172,185,187,192,194,195,199,200,203,205,207,208,210,214,215,216,218,219],table1:[20,76],table2:76,table_definit:81,table_nam:[11,13,16,20,21,54,60,64,66,195,218],table_opt:[11,18],tablehistogram:[146,219],tablestat:146,tag:[22,39,43,62,185],tail:[11,49,54,59,218],take:[0,3,6,10,11,13,14,22,27,28,36,39,40,42,43,45,50,54,57,58,59,63,66,67,68,70,71,72,79,146,185,210,212,215,218,219,220],taken:[1,6,65,69,74,81,213],talk:26,tar:49,tarbal:[46,48,82],tarball_instal:49,target:[11,20,35,40,44,54,61,67,72,207],task:[0,6,26,33,35,37,40,42,58,74,76,82,218,219,220],task_id:60,taskdef:44,taught:27,tbl:75,tcp:[6,45,57,220],tcp_keepalive_intvl:45,tcp_keepalive_prob:45,tcp_keepalive_tim:45,tcp_nodelai:6,tcp_retries2:6,tcp_wmem:6,tcpdump:220,teach:[0,6,78],team:[24,43,45],technetwork:6,technic:[11,15],techniqu:[0,3,27,28,32,72,217,220],technot:6,tee:49,tell:[6,13,39,45,46,74,220],templat:[33,43],tempor:6,temporari:[72,77,83,203],temporarili:[0,1,6,59],tempt:[24,28],ten:28,tend:[4,6,28,45,71,72],tendenc:[6,26],tension:26,tent:43,terabyt:70,term:[0,6,13,14,15,18,22,26,27,28,54,56,80],termin:[12,20,82],ternari:34,test:[0,6,25,34,35,39,41,42,43,49,51,52,54,56,58,60,71,81,82],test_keyspac:[77,218],testabl:[39,42],testbatchandlist:44,testmethod1:44,testmethod2:44,testsom:44,teststaticcompactt:44,text:[4,9,11,12,13,14,17,22,25,28,29,32,36,43,54,60,61,62,64,65,70,76,77,80,81,220],than:[0,1,4,6,11,12,13,14,15,18,19,22,24,28,34,42,50,52,53,54,57,58,65,66,67,68,69,70,71,72,75,77,78,79,81,162,175,176,205,207,209,212,213,216,218,219,220],thei:[0,1,3,6,9,10,11,12,13,14,15,18,19,20,22,23,24,25,26,27,30,32,34,39,42,44,52,54,56,58,59,60,61,62,63,64,67,70,71,72,74,77,205,209,214,215,216,218,219,220],them:[0,6,10,11,13,14,22,23,26,27,32,33,34,37,42,43,44,45,51,54,57,59,61,63,66,69,72,74,75,77,146,199,207,214,216,218,220],themselv:[0,13,20],theorem:1,theoret:11,therefor:[0,24,28,36,42,44,77,206,214],theses:77,thi:[0,1,2,4,5,6,7,10,11,12,13,14,15,17,18,20,22,23,24,25,26,27,28,29,30,33,34,35,36,37,38,39,40,42,43,44,45,46,48,49,50,52,53,54,55,56,57,58,59,61,62,63,64,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,83,84,86,87,89,92,94,96,102,106,112,115,116,118,119,121,124,128,130,132,136,137,144,146,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220],thing:[6,22,24,28,37,38,42,45,48,57,66,76,220],think:[6,26,27],third:[22,28,39,52,74,219],thobb:82,those:[11,12,13,14,16,17,18,20,22,23,24,27,42,45,65,66,67,68,72,77,82,199,207,211,212,214,216,220],though:[10,12,22,29,32,52,57,60,62,66,70,74],thought:212,thousand:82,thousandssep:82,thread:[4,6,18,54,56,57,58,61,71,72,74,76,77,81,86,116,146,159,161,168,177,197,199,209,218,219],thread_pool:60,threaddump:220,threadpool:[73,217],threadpoolnam:74,threadprioritypolici:40,three:[0,6,11,25,28,54,57,58,60,62,63,66,70,72,75,76,77,82,216,218,219],threshold:[4,11,53,59,65,71,78,119,146,172,179,220],thrift:[9,81],throttl:[6,33,57,58,60,64,72,83,118,146,169,173,177,178,181,203],throttled_count:60,throttled_nano:60,through:[0,5,9,10,11,12,13,18,24,25,26,33,36,40,42,45,49,50,51,57,60,61,65,66,82,220],throughout:[26,77],throughput:[0,3,6,32,50,58,64,66,70,71,74,120,125,131,146,173,178,181,207,218,219],throwabl:[39,44],thrown:[22,64,209],thu:[6,10,11,12,13,18,22,45,74,75,78,79,146,199],thumb:[6,42],thusli:22,tib:[91,145,195],tick:42,ticket:[5,36,37,38,39,42,43,44,65],tid:220,tie:45,tier:66,ties:[13,219],tighter:6,tightli:6,tild:82,time:[0,1,3,4,6,8,9,10,11,12,13,15,16,17,18,24,26,27,28,32,34,36,39,40,42,43,44,45,49,50,54,56,57,58,59,60,61,62,63,65,66,70,74,75,76,77,80,81,82,146,148,208,210,215,216,218,219,220],timefram:79,timehorizon:6,timelin:11,timeout:[6,22,45,55,72,74,82,132,146,182,216,219],timeout_in_m:182,timeout_typ:[132,182],timer:[6,74],timestamp:[0,4,9,10,11,13,14,15,17,19,24,28,52,53,54,57,61,62,69,72,75,82,83,168,203,205,208,211],timeunit:69,timeuuid:[9,10,11,17,22,81],timewindowcompactionstrategi:[11,66],timezon:[17,82],tini:[6,66],tinyint:[9,10,14,17,19,22],tip:216,titl:[24,29,42,81],tjake:34,tlp_stress:60,tls_dhe_rsa_with_aes_128_cbc_sha:6,tls_dhe_rsa_with_aes_256_cbc_sha:6,tls_ecdhe_rsa_with_aes_128_cbc_sha:6,tls_ecdhe_rsa_with_aes_256_cbc_sha:6,tls_rsa_with_aes_128_cbc_sha:6,tls_rsa_with_aes_256_cbc_sha:6,tmp:[54,213,214,218,220],tmpf:220,tmplink:214,toc:[4,58,62,64,213,214],tock:42,todai:12,todat:14,todo:39,togeth:[0,6,11,13,14,27,28,32,33,69,216,219,220],toggl:77,tojson:15,token:[4,6,9,10,12,13,45,48,54,57,58,59,64,66,67,72,74,76,81,82,89,94,137,138,144,146,151,161,167,200,208,209,216,218,219],tokenawar:216,tokenrang:81,toler:[0,1,63,72],tom:13,tombston:[4,6,11,17,24,45,67,73,74,76,116,168,205,208,211,220],tombstone_compact:192,tombstone_compaction_interv:66,tombstone_threshold:66,tombstones_scan:60,tombstonescannedhistogram:74,ton:44,too:[6,11,12,14,22,28,39,50,60,66,67,81,216,219,220],took:[216,218],tool:[3,6,12,31,33,35,36,42,43,45,49,50,52,53,56,61,62,66,73,74,77,79,81,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],toolset:220,top:[13,22,33,42,43,52,74,148,195,196,209],topcount:[148,196],topic:[50,82],topolog:[6,78,167],toppartit:146,total:[4,6,13,28,49,53,54,56,58,60,62,64,65,66,68,74,75,81,143,146,207,218,219,220],total_replica:[0,11,59],totalblockedtask:74,totalcolumnsset:208,totalcommitlogs:74,totalcompactionscomplet:74,totaldiskspaceus:74,totalhint:74,totalhintsinprogress:74,totallat:74,totalrow:208,totalsizecap:61,totimestamp:14,touch:[8,23,28,45,66,68],tough:44,tounixtimestamp:14,tour:22,tpstat:[76,146,219],trace:[6,30,57,74,83,133,146,161,183,211,212,213,214,215,218,220],tracerout:220,track:[0,4,6,54,57,66,72,74],trackeddatainputplu:57,tracker:[36,42],trade:25,tradeoff:[0,1,6,50,220],tradit:[69,70],traffic:[6,50,54,58,59,75,77,78,220],trail:34,trailer:57,transact:[0,2,3,13,21,24,27,32,57,59,74,83,192,203],transfer:[6,45,58,62,77,207],transform:13,transient_replica:[0,11,59],transit:[10,20,35,55],translat:220,transmit:[58,75],transpar:[6,27,45],transport:[6,40,53,60,64,74,81,98,108,146,189,207,219],trap:24,treat:[0,6,10,27,45,78],tree:[0,6,35,40,74,76],tri:[6,53,58,67,69,216],trigger:[4,6,9,11,12,15,33,52,54,60,61,63,69,70,72,73,77,86,146,158],trigger_nam:21,trigger_stat:12,trip:[6,13],trivial:77,troubl:[28,218],troubleshoot:[6,39,41,49,50,52,76,216,218,219,220],truediskspaceus:[62,143,146],truesnapshotss:74,truli:9,truncat:[4,6,9,10,15,20,53,54,60,62,72,77,81,132,146,182,198],truncate_stat:12,truncatehint:[72,146],trunk:[36,38,39,40,42,44],trust:[49,77],trusti:220,trustor:6,truststor:[6,60,64,77,81,207],truststore_password:6,truststorepassword:77,tspw:[64,207],tstamp:204,ttl:[4,6,9,10,11,14,17,22,28,69,73,168,208,211],tty:82,tunabl:2,tune:[0,11,45,50,63,67,71,75,218,219],tupl:[0,6,9,10,12,13,14,15,17],tuple_liter:[12,13],tuple_typ:22,tuplevalu:[10,14],turn:[0,6,24,42,45,54,77,216],twc:[11,69],twice:[4,6,22,57],two:[0,1,3,6,11,12,13,14,17,19,27,28,32,40,52,53,54,56,57,60,61,62,63,64,66,68,69,71,72,75,77,78,82,208,219,220],txt:[4,14,38,39,42,43,49,58,62,64,213,214],type:[0,3,4,6,10,11,12,13,14,15,19,20,24,25,28,29,30,39,41,49,52,53,54,55,59,60,61,64,71,73,76,77,81,82,132,146,182,192,204,207,208,212,214,218,219],type_hint:12,typeasblob:14,typecodec:14,typic:[0,3,6,11,13,23,25,27,28,30,32,45,62,63,64,66,69,71,74,76,77,80,82,213,216,218,219,220],typo:36,ubuntu:[40,49],udf:[6,14],udf_stat:12,udfcontext:[10,14],udt:[14,17,25,30],udt_liter:12,udt_nam:22,udt_stat:12,udtarg:14,udtnam:14,udtvalu:[10,14],ulimit:45,ultim:[0,27],ultra:70,unabl:[4,39,52,56,219],unacknowledg:6,unaffect:22,unari:19,unauthorized_attempt:53,unavail:[0,6,11,59,72,74,77,79,220],unavailableexcept:216,unblock:74,unbootstrap:58,unbound:[6,22],uncaught:218,unchecked_tombstone_compact:[66,69],uncom:[6,74,77],uncommit:1,uncommon:[24,42],uncompress:[4,6,11,58,70,72,74],unconfirm:6,undecor:4,undelet:66,under:[0,6,22,33,34,44,50,61,74,77,220],underli:[6,18,57,66,77,220],underlin:23,undersold:24,understand:[1,6,23,42,45,50,72,76,77,218,220],understood:23,undropp:57,unencrypt:[6,49,77],uneven:0,unexpect:[4,57,203,204,205,206,207,208,209,210,211,212,213,214,215],unexpectedli:22,unfinishedcommit:74,unflush:[62,185],unfortun:[44,72],unifi:1,uniform:81,uniq:218,uniqu:[0,3,11,14,22,23,24,25,26,30,55,57,81,208],unit:[22,27,39,41,54,60,69,146,170,207,212,219],unix:[61,217],unixtimestampof:[10,14],unknown:[55,209],unknowncfexcept:57,unless:[6,11,13,16,18,20,22,34,49,57,59,65,77,78,208,212,220],unlik:[0,6,10,13,22,32],unlimit:[6,45,64,82,207],unlock:26,unlog:[9,74,81],unmodifi:72,unnecessari:[39,58,79],unnecessarili:[57,65],unpack:49,unpredict:13,unprepar:74,unprocess:57,unprotect:57,unquot:12,unquoted_identifi:12,unquoted_nam:11,unreach:[0,76],unrecogn:54,unrecov:[57,60],unrecover:1,unrel:[42,216],unrepair:[6,59,68,73,74,76,83,203],unrespons:[11,59],unsafe_aggressive_sstable_expir:[66,69],unsecur:77,unselected_column:18,unset:[6,10,13,17,58,72,210],unsign:22,unspecifi:6,unsubscrib:[8,52],unsuccess:61,unsupport:50,unsupportedclassversionerror:56,unsupportedoperationexcept:54,until:[0,4,6,11,18,22,54,57,59,63,65,66,67,70,72,75,77,78],unus:[6,57],unusu:39,unwrit:[6,57],upcom:24,updat:[0,1,3,6,9,10,11,12,14,15,17,18,20,22,24,27,32,36,39,41,42,44,49,52,53,60,61,64,66,70,72,74,75,77,81,82,218,219],update_paramet:13,update_stat:[12,13],updatewithlwt:81,upgrad:[4,6,11,59,60,66,146,199,213,214],upgrade_sst:192,upgradesst:[63,66,70,146],upload:[42,49,64],upload_bintrai:43,upon:[6,22,53,61,63,65,70],upper:[12,17,66,77],ups:71,upstream:42,uptim:[138,146],urgent:[6,43,57],url:[36,38,81],usag:[0,4,6,11,22,50,52,53,54,57,59,60,62,63,64,65,70,73,74,82,83,203],use:[0,4,6,9,10,11,12,13,14,16,17,18,20,22,23,24,25,26,27,28,32,33,34,36,39,40,42,43,44,46,49,50,51,52,53,54,56,58,59,60,61,62,63,64,65,66,67,71,72,74,75,76,77,78,79,81,82,86,116,129,146,148,159,168,196,199,204,207,208,210,211,212,214,216,217,218,219,220],use_k:61,use_keyspac:53,use_stat:12,usec:220,usecas:66,useconcmarksweepgc:40,usecondcardmark:40,used:[0,1,3,4,6,9,10,11,12,13,14,15,16,17,18,20,22,24,25,26,28,30,32,35,39,40,42,43,44,45,53,54,56,57,58,59,60,61,62,64,66,70,71,72,74,75,77,78,79,81,82,84,86,87,89,94,96,102,105,106,112,115,116,119,121,124,128,130,132,136,137,144,146,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,204,205,206,207,208,209,210,212,213,214,216,219,220],useecassandra:77,useful:[0,4,6,11,14,24,28,30,35,42,54,59,60,62,64,66,70,72,74,76,79,82,84,86,87,89,94,96,102,106,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,206,208,218,219,220],useparnewgc:40,user1:13,user2:13,user3:13,user4:13,user:[0,3,5,6,8,9,10,11,12,13,15,16,17,18,24,25,26,27,33,39,41,42,43,45,49,54,55,56,58,59,60,61,62,63,64,66,67,69,70,71,76,77,82,83,89,105,146,205,213,218,220],user_count:13,user_defined_typ:22,user_funct:20,user_nam:13,user_occup:13,user_opt:20,useract:13,userid:[11,13,14],userindex:16,usernam:[6,13,14,53,54,60,62,64,74,77,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,207],usertyp:64,uses:[0,4,6,11,12,13,14,16,20,21,24,25,36,44,45,53,54,56,60,75,77,81,215,219,220],usethreadprior:40,using:[1,3,4,6,10,11,12,13,14,18,20,22,23,25,27,28,29,30,32,33,40,41,42,44,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,67,69,70,71,72,73,74,75,77,79,82,89,151,168,185,204,206,208,209,210,211,214,216,217,218,219,220],using_byt:60,using_reserve_byt:60,usr:[56,82,220],usual:[0,6,13,22,27,38,42,44,50,63,77,161,211,216,218],utc:[17,82],utd:11,utf8:[22,82],utf8typ:[9,208],utf:[57,82],util:[4,14,39,49,54,57,66,82,218,220],uuid:[9,10,11,12,17,22,25,29,53],val0:[11,54,62,64,76],val1:[11,54,62,64,76],val2:[62,64,76],val:[14,81],valid:[0,6,10,11,12,13,14,17,22,24,25,43,45,56,57,59,66,70,74,76,77,82,83,161,168,192,203,215],validationexecutor:[60,74,219],validationtim:74,valu:[0,1,4,6,9,10,11,12,13,14,16,17,19,22,25,28,32,39,40,43,45,50,53,54,57,58,59,60,61,62,63,64,66,70,72,74,75,76,77,78,80,81,82,83,105,133,137,146,169,173,175,176,177,178,180,181,182,183,203,204,215,216,218,220],valuabl:218,value1:13,value2:13,value_in_kb_per_sec:[169,177],value_in_m:180,value_in_mb:[173,178,181],valueof:14,varchar:[9,11,14,17,22],vari:[11,28,32,70],variabl:[6,10,12,17,22,28,33,40,43,48,56,64,210],varianc:[25,218],variant:[0,12,32],variat:32,varieti:65,varint:[9,11,14,17,19,22],variou:[6,11,23,24,25,26,33,40,44,71,75,77,81,203,217,218],vector:[0,77],vendor:56,verb:57,verbatim:57,verbos:[64,207,211,214,215],veri:[0,6,11,13,27,32,36,42,44,45,63,66,67,70,71,210,215,216,218,219,220],verif:[83,203],verifi:[11,42,45,47,49,64,70,76,137,146,192,203,204,205,206,207,208,209,210,211,212,213,214,215],versa:214,version:[1,2,5,6,9,11,14,15,22,35,40,42,47,49,54,56,57,58,59,60,64,66,72,74,79,83,88,93,103,113,146,199,200,203,211,214,218],versu:27,vertic:[56,82],via:[0,4,6,8,10,18,20,24,27,35,39,40,45,46,54,57,60,61,62,64,69,70,71,72,74,76,77,78,208,210,220],vice:214,view:[0,3,6,10,11,12,15,20,24,25,26,27,30,31,52,55,59,60,74,82,123,146,176,202,210,218,219,220],view_build:192,view_nam:[18,54],viewbuildexecutor:[60,74,219],viewbuildstatu:146,viewlockacquiretim:74,viewmutationstag:[60,74,219],viewpendingmut:74,viewreadtim:74,viewreplicasattempt:74,viewreplicassuccess:74,viewwrit:74,viewwritelat:74,vint:57,violat:[0,27,54],virtual:[0,3,6,45,52,55,69,74,79],virtualenv:33,visibl:[0,11,20,34,63,72,75],visit:[23,49,81],visual:[0,24,25,36,218],vnode:[6,50,59,70],volum:[3,4,6,65,70,215,219,220],vote:41,vpc:78,vulner:[6,43,77],w_await:220,wai:[0,4,6,12,15,17,18,22,24,27,28,33,37,38,40,44,45,53,61,66,69,70,72,161,208,209,210,211,218,220],wait:[0,4,6,11,42,45,53,54,56,57,58,59,61,62,72,74,75,146,163,218,219,220],waitingoncommit:74,waitingonfreememtablespac:74,waitingonsegmentalloc:74,walk:[0,25],want:[0,4,6,11,13,23,26,27,28,30,33,40,42,43,44,45,49,61,72,76,77,79,81,206,207,210,218,220],warmup:[81,146,171],warn:[6,11,34,44,53,54,73,76,161,215,218],warrant:219,washington:22,wasn:10,wast:6,watch:[44,220],weaker:0,web:[1,36],websit:[24,44,220],wed:56,week:[22,76,210],weibul:81,weigh:[11,54],weight:[53,54,57,61,74,109],weightedqueuetest:54,welcom:8,well:[0,6,11,13,14,17,22,24,26,27,28,30,39,40,49,50,53,54,57,59,61,62,65,70,71,77,78,146,164,213,218,220],went:74,were:[0,3,6,9,10,20,24,30,39,40,43,54,64,66,74,75,211,214,218,219],west:43,what:[0,2,11,13,22,23,24,31,36,37,41,44,46,52,55,57,58,66,69,71,75,77,81,82,208,216,217,218,219,220],whatev:[10,13,45],whedon:13,wheel:213,when:[0,1,4,6,9,10,11,12,13,14,15,16,17,20,22,24,26,27,28,33,34,36,39,42,43,44,46,49,50,52,53,54,55,56,59,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,84,86,87,89,92,94,96,102,106,112,115,116,119,121,124,128,130,132,136,137,144,148,151,152,153,159,160,161,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,192,194,195,196,198,199,200,202,208,209,214,216,218,219,220],whenev:[209,220],where:[0,3,4,6,9,10,11,12,14,16,17,18,19,20,22,24,26,28,39,44,46,50,53,54,57,59,60,61,63,64,67,69,70,72,77,79,81,82,109,161,216,218,220],where_claus:13,wherea:[22,77,219],whether:[0,6,9,11,13,27,28,40,53,54,57,62,66,75,78,82,109],which:[0,1,3,4,5,6,10,11,12,13,14,15,16,18,19,20,21,22,23,24,25,26,27,28,32,36,42,43,44,45,46,49,50,51,53,54,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,79,81,89,124,128,137,143,146,151,161,214,216,217,218,219,220],whichev:[0,6],whilst:6,whitelist:77,whitespac:41,who:[20,33,42,45,59,72],whole:[0,6,13,14,22,58,66,76],whose:[11,22,27,192],why:[0,24,39,42,50,52,205,216,218,220],wide2:60,wide:[0,3,4,23,24,28,49,65,219],wider:59,width:12,wiki:[6,36,40],wildcard:[13,20,54,212],wildli:11,win:[0,6],window:[0,4,6,66,72,74,77,127,135,146,180,217],winner:45,wip:42,wipe:[45,79],wire:[6,45,54,57],wirefram:26,wireshark:220,wise:11,wish:[6,24,43,69,74,218],withbuffersizeinmb:64,within:[0,3,4,6,11,12,13,16,24,32,40,42,43,45,54,58,62,68,69,71,74,77],withing:6,without:[0,1,6,11,12,13,14,20,22,38,40,42,43,44,45,50,54,56,57,58,59,64,65,69,71,72,74,77,82,83,84,137,146,153,203,204],withpartition:64,withtyp:64,wmb:220,wmem_max:6,wnen:30,won:[4,6,13,36,38,57,75,76,220],wont:[61,67],word:[10,11,12,18,20,22,45,65,77],work:[0,4,6,10,11,14,15,17,23,24,25,27,30,33,34,37,38,40,41,43,44,45,50,52,59,66,67,69,71,74,76,77,78,79,82,207,220],workaround:[207,211],worker:[57,82],workflow:[24,26],workload:[0,6,37,39,50,54,63,66,67,69,71,81,219,220],workspac:40,worktre:40,world:[23,27],worri:[26,42,45],wors:[6,78],worst:[6,28,42],worth:[6,27,57,61],worthwhil:[6,24],would:[0,6,12,13,14,17,20,23,24,25,26,27,28,32,36,40,42,44,50,52,53,54,57,58,59,60,64,66,69,70,71,72,75,76,77,78,208,210,214,218,220],wouldn:11,wrap:[24,57,78],wrapper:54,writabl:64,write:[0,2,3,4,6,10,11,13,22,24,27,32,34,36,37,39,44,45,50,54,55,60,64,65,66,67,68,69,70,71,74,75,76,77,78,79,81,82,104,132,146,182,195,208,211,214,216,218,219,220],write_lat:195,write_request_timeout:45,write_request_timeout_in_m:72,writefailedideacl:74,writelat:[74,216],writer:[4,6,34,64],writetim:[9,14],writetimeoutexcept:[6,216],written:[0,1,3,4,6,11,21,26,27,33,45,53,54,57,59,61,63,64,66,69,70,72,74,75,76],wrong:[6,27,43,219],wrqm:220,wrst:220,wrte:74,www:[6,49,220],x86:80,xandra:47,xarg:[210,218],xdm:220,xferd:49,xlarge_daili:61,xml:[35,40,43,44,46,56,64,218],xmn220m:40,xms1024m:40,xmx1024m:40,xmx:71,xss256k:40,xzvf:49,yaml:[0,3,4,6,14,18,20,46,50,53,54,57,58,59,60,62,64,72,74,75,77,78,79,81,90,105,109,146,164,195,197,207,208,216],year:[13,22,27,28,56],yes:[9,11],yet:[0,6,11,33,37,62,65,74,214],ygc:220,ygct:220,yield:[13,27,28,61,79,220],ymmv:218,you:[0,4,5,6,8,10,11,12,13,14,16,17,18,20,21,22,23,24,25,26,27,28,29,30,33,34,35,36,37,38,40,41,43,44,45,46,47,48,49,50,51,52,54,59,61,62,64,65,66,67,68,72,74,75,76,77,78,79,80,81,82,84,146,185,204,206,207,208,210,211,212,214,215,216,217,218,219,220],young:220,younger:14,your:[0,5,6,8,10,11,12,24,25,26,27,28,29,30,34,36,37,40,41,42,44,45,46,49,50,52,56,59,66,67,71,76,77,78,81,82,207,212,215,217,218,219,220],yourself:[37,38,44,72],yum:[43,49,56],yyyi:[17,22,61],z_0:[11,16,18],zero:[3,6,10,11,45,55,74,78,218],zerocopi:58,zgrep:218,zip:[22,61],zipcod:22,zone:[0,6,22,78],zoomabl:220,zstd:4,zstdcompressor:[11,70]},titles:["Dynamo","Guarantees","Architecture","Overview","Storage Engine","Reporting Bugs","Cassandra Configuration File","Configuring Cassandra","Contact us","Appendices","Changes","Data Definition","Definitions","Data Manipulation","Functions","The Cassandra Query Language (CQL)","Secondary Indexes","JSON Support","Materialized Views","Arithmetic Operators","Security","Triggers","Data Types","Conceptual Data Modeling","Logical Data Modeling","Physical Data Modeling","Defining Application Queries","RDBMS Design","Evaluating and Refining Data Models","Defining Database Schema","Cassandra Data Modeling Tools","Data Modeling","Introduction","Jenkins CI Environment","Code Style","Dependency Management","Working on Documentation","Getting Started","How-to Commit","Review Checklist","Building and IDE Integration","Contributing to Cassandra","Contributing Code Changes","Release Process","Testing","Frequently Asked Questions","Configuring Cassandra","Client drivers","Getting Started","Installing Cassandra","Production Recommendations","Inserting and querying","Welcome to Apache Cassandra\u2019s documentation!","Audit Logging","Full Query Logging","New Features in Apache Cassandra 4.0","Support for Java 11","Improved Internode Messaging","Improved Streaming","Transient Replication","Virtual Tables","Audit Logging","Backups","Bloom Filters","Bulk Loading","Change Data Capture","Compaction","Leveled Compaction Strategy","Leveled Compaction Strategy","Time Window CompactionStrategy","Compression","Hardware Choices","Hints","Operating Cassandra","Monitoring","Read repair","Repair","Security","Snitch","Adding, replacing, moving and removing nodes","Third-Party Plugins","Cassandra Stress","cqlsh: the CQL shell","Cassandra Tools","assassinate","bootstrap","cleanup","clearsnapshot","clientstats","compact","compactionhistory","compactionstats","decommission","describecluster","describering","disableauditlog","disableautocompaction","disablebackup","disablebinary","disablefullquerylog","disablegossip","disablehandoff","disablehintsfordc","disableoldprotocolversions","drain","enableauditlog","enableautocompaction","enablebackup","enablebinary","enablefullquerylog","enablegossip","enablehandoff","enablehintsfordc","enableoldprotocolversions","failuredetector","flush","garbagecollect","gcstats","getbatchlogreplaythrottle","getcompactionthreshold","getcompactionthroughput","getconcurrency","getconcurrentcompactors","getconcurrentviewbuilders","getendpoints","getinterdcstreamthroughput","getlogginglevels","getmaxhintwindow","getreplicas","getseeds","getsstables","getstreamthroughput","gettimeout","gettraceprobability","gossipinfo","handoffwindow","help","import","info","invalidatecountercache","invalidatekeycache","invalidaterowcache","join","listsnapshots","move","netstats","Nodetool","pausehandoff","profileload","proxyhistograms","rangekeysample","rebuild","rebuild_index","refresh","refreshsizeestimates","reloadlocalschema","reloadseeds","reloadssl","reloadtriggers","relocatesstables","removenode","repair","repair_admin","replaybatchlog","resetfullquerylog","resetlocalschema","resumehandoff","ring","scrub","setbatchlogreplaythrottle","setcachecapacity","setcachekeystosave","setcompactionthreshold","setcompactionthroughput","setconcurrency","setconcurrentcompactors","setconcurrentviewbuilders","sethintedhandoffthrottlekb","setinterdcstreamthroughput","setlogginglevel","setmaxhintwindow","setstreamthroughput","settimeout","settraceprobability","sjk","snapshot","status","statusautocompaction","statusbackup","statusbinary","statusgossip","statushandoff","stop","stopdaemon","tablehistograms","tablestats","toppartitions","tpstats","truncatehints","upgradesstables","verify","version","viewbuildstatus","SSTable Tools","sstabledump","sstableexpiredblockers","sstablelevelreset","sstableloader","sstablemetadata","sstableofflinerelevel","sstablerepairedset","sstablescrub","sstablesplit","sstableupgrade","sstableutil","sstableverify","Find The Misbehaving Nodes","Troubleshooting","Cassandra Logs","Use Nodetool","Diving Deep, Use External Tools"],titleterms:{"break":28,"class":78,"final":214,"function":[13,14,17],"import":[34,64,137],"long":44,"new":[45,55],"switch":66,"transient":[0,59],Added:57,Adding:79,Doing:209,IDE:40,IDEs:34,LCS:67,QoS:57,TLS:77,The:[13,15,17,60,66,216],USE:11,Use:[70,207,219,220],Uses:70,Using:[32,40,53,56,64,210],Will:45,With:77,about:33,abov:208,accept:64,access:77,adcanc:61,add:[35,45],address:45,advanc:[70,220],after:79,aggreg:14,ahead:50,alias:13,all:[20,45,62,208,214],alloc:79,allocate_tokens_for_keyspac:6,allocate_tokens_for_local_replication_factor:6,allow:[13,72],alreadi:206,alter:[11,18,20,22],analysi:32,ani:45,announc:43,answer:37,anti:24,apach:[33,40,52,55],api:64,appendic:9,appendix:9,applic:[26,57,72],architectur:2,archiv:53,arithmet:19,artifact:43,ask:45,assassin:84,assign:79,assur:57,attempt:212,audit:[53,61],audit_logging_opt:6,auditlog:61,auth:77,authent:[6,20,77],author:[6,77],auto_snapshot:6,automat:20,automatic_sstable_upgrad:6,avail:[1,58],avg:14,back_pressure_en:6,back_pressure_strategi:6,background:75,backup:[62,64],base:[36,58],basic:[211,215,220],batch:[1,13,45,74],batch_size_fail_threshold_in_kb:6,batch_size_warn_threshold_in_kb:6,batchlog_replay_throttle_in_kb:6,bcc:220,befor:42,behavior:75,below:58,benefit:[58,70],best:76,between:[27,59],binari:49,binauditlogg:61,bintrai:43,blob:[14,45],block:[75,205],bloom:63,boilerpl:34,bootstrap:[45,67,79,85],branch:42,broadcast_address:6,broadcast_rpc_address:6,buffer_pool_use_heap_if_exhaust:6,bufferpool:74,bug:[5,37,42],build:[40,56],bulk:[45,64],cach:[60,74,77,220],calcul:28,call:[43,45],can:45,cap:1,capi:80,captur:[61,65,82,220],cas_contention_timeout_in_m:6,cassandra:[6,7,15,17,27,30,33,36,40,41,43,44,45,46,49,52,55,61,65,73,75,77,80,81,83,213,218],cast:14,categori:53,cdc:65,cdc_enabl:6,cdc_free_space_check_interval_m:6,cdc_raw_directori:6,cdc_total_space_in_mb:6,certif:77,chang:[10,42,45,46,63,65,69],characterist:22,cheap:59,check:211,checklist:39,choic:71,choos:[42,49],circleci:44,claus:13,clean:214,cleanup:[79,86],clear:[62,82],clearsnapshot:87,client:[47,51,60,74,77,216],client_encryption_opt:6,clientstat:88,clojur:47,close:57,cloud:71,cluster:[0,45,207,219],cluster_nam:6,code:[4,34,42],collect:[22,66,220],column_index_cache_size_in_kb:6,column_index_size_in_kb:6,command:[40,61,66,82,210],comment:12,commit:38,commit_failure_polici:6,commitlog:[4,74],commitlog_compress:6,commitlog_directori:6,commitlog_segment_size_in_mb:6,commitlog_sync:6,commitlog_sync_batch_window_in_m:6,commitlog_sync_group_window_in_m:6,commitlog_sync_period_in_m:6,commitlog_total_space_in_mb:6,commitlogseg:65,committ:36,commod:0,common:[11,56,66,71,218],compact:[9,50,66,67,68,74,89,219],compaction_large_partition_warning_threshold_mb:6,compaction_throughput_mb_per_sec:6,compactionhistori:90,compactionstat:91,compactionstrategi:69,compar:[32,54],compat:82,compon:58,compress:[50,70],conceptu:23,concern:69,concurrent_compactor:6,concurrent_counter_writ:6,concurrent_materialized_view_build:6,concurrent_materialized_view_writ:6,concurrent_read:6,concurrent_valid:6,concurrent_writ:6,condition:20,config:207,configur:[6,7,46,50,53,54,58,61,62,65,70,72,75],conflict:35,connect:[20,45,57],consist:[0,1,75,82],constant:12,contact:8,content:[43,61],contribut:[37,41,42],control:20,convent:[12,34],convers:14,coordin:219,copi:[58,82],corrupt:[57,211,215],corrupted_tombstone_strategi:6,count:14,counter:[13,22,211],counter_cache_keys_to_sav:6,counter_cache_save_period:6,counter_cache_size_in_mb:6,counter_write_request_timeout_in_m:6,cpu:[71,220],cql:[9,15,54,74,82],cqlsh:[51,82],cqlshrc:82,cqlsstablewrit:64,creat:[11,14,16,18,20,21,22,37,42,43,50,62],credenti:20,credentials_update_interval_in_m:6,credentials_validity_in_m:6,cross_node_timeout:6,cstar_perf:44,current:[14,213],custom:22,cycl:54,cython:82,dart:47,data:[0,11,13,17,20,22,23,24,25,28,30,31,32,45,62,64,65,66,79],data_file_directori:6,databas:[20,29],datacent:20,dataset:0,date:[14,22,211],datetim:[14,19],dead:79,deal:211,debian:49,debug:[40,218],decis:27,decommiss:[58,92],deep:220,defin:[14,22,26,29],definit:[11,12,60],defragment:68,delet:[13,43,45,66],deliveri:72,demo:[53,64],denorm:27,depend:[35,82],deploy:58,describ:[60,82,94],describeclust:93,deseri:57,design:[27,32],detail:[66,207],detect:0,develop:43,diagnost:[53,75],diagnostic_events_en:6,dies:45,differ:[27,60,62],directori:[46,53,54,62,66],disabl:[61,65],disableauditlog:95,disableautocompact:96,disablebackup:97,disablebinari:98,disablefullquerylog:99,disablegossip:100,disablehandoff:101,disablehintsfordc:102,disableoldprotocolvers:103,disallow:58,disk:[28,45,71,72],disk_failure_polici:6,disk_optimization_strategi:6,displai:204,distribut:[0,43],dive:220,document:[36,37,52],doe:[45,53,61],down:72,drain:104,driven:32,driver:[47,51],drop:[9,11,14,16,18,20,21,22,45,58],droppedmessag:74,dry:209,dtest:[37,44],dump:204,durabl:1,durat:22,dynam:78,dynamic_snitch_badness_threshold:6,dynamic_snitch_reset_interval_in_m:6,dynamic_snitch_update_interval_in_m:6,dynamo:0,each:[45,208],each_quorum:59,eclips:40,effici:57,elig:58,elixir:47,email:45,enabl:[53,54,58,59,61,65,77],enable_materialized_view:6,enable_sasi_index:6,enable_scripted_user_defined_funct:6,enable_transient_repl:6,enable_user_defined_funct:6,enableauditlog:105,enableautocompact:106,enablebackup:107,enablebinari:108,enablefullquerylog:109,enablegossip:110,enablehandoff:111,enablehintsfordc:112,enableoldprotocolvers:113,encod:17,encrypt:[50,77],endpoint_snitch:6,engin:4,ensur:50,entir:204,entri:45,environ:[33,46],erlang:47,error:[45,57,216],evalu:28,even:45,event:[53,75],eventu:1,exampl:[4,32,62,75,76],except:34,exclud:204,exist:45,exit:82,expand:82,expect:75,experiment:6,expir:66,expiri:57,explan:208,extend:215,extern:[64,220],factor:45,fail:[45,79],failur:[0,45,57],failuredetector:114,faq:81,faster:72,featur:[3,6,55],file:[6,34,35,61,207,212,215,218],file_cache_size_in_mb:6,fileauditlogg:61,filedescriptorratio:74,filter:[13,61,63],find:[62,216],first:27,fix:[37,42],flamegraph:220,flexibl:53,flow:36,flush:115,format:[34,204],found:[206,209],fql:54,frame:57,freez:42,frequenc:53,frequent:45,from:[40,43,45,57,60,62,64,82,207],fromjson:17,full:[54,59,76,218],full_query_logging_opt:6,fulli:66,further:[49,65],garbag:[66,220],garbagecollect:116,garbagecollector:74,gc_grace_second:66,gc_log_threshold_in_m:6,gc_warn_threshold_in_m:6,gcstat:117,gener:[34,64],get:[37,48,207,218],getbatchlogreplaythrottl:118,getcompactionthreshold:119,getcompactionthroughput:120,getconcurr:121,getconcurrentcompactor:122,getconcurrentviewbuild:123,getendpoint:124,getinterdcstreamthroughput:125,getlogginglevel:126,getmaxhintwindow:127,getreplica:128,getse:129,getsstabl:130,getstreamthroughput:131,gettimeout:132,gettraceprob:133,github:36,give:45,goal:32,gossip:0,gossipinfo:134,gpg:43,grace:[66,208],grant:20,graph:81,group:13,guarante:1,handl:34,handoff:72,handoffwindow:135,hang:79,happen:45,hardwar:[0,71],has:206,hash:0,haskel:47,heap:45,help:[82,136],hide:207,high:[1,58,220],hint:[57,72],hinted_handoff_disabled_datacent:6,hinted_handoff_en:6,hinted_handoff_throttle_in_kb:6,hintedhandoff:74,hints_compress:6,hints_directori:6,hints_flush_period_in_m:6,hintsservic:74,host:[45,82],hot:77,hotel:[24,25],how:[36,38,45,60,61],htop:220,idea:40,ideal_consistency_level:6,identifi:12,impact:70,improv:[57,58,75],inbound:[57,60],includ:214,increment:[0,62,64,76],incremental_backup:6,index:[1,16,74,80],index_summary_capacity_in_mb:6,index_summary_resize_interval_in_minut:6,info:[49,138],inform:[218,220],initi:37,initial_token:6,insert:[13,17,51],instal:49,integr:[27,40,77],intellij:40,inter:77,inter_dc_stream_throughput_outbound_megabits_per_sec:6,inter_dc_tcp_nodelai:6,interfac:0,intern:[20,77,204],internod:[57,60],internode_application_receive_queue_capacity_in_byt:6,internode_application_receive_queue_reserve_endpoint_capacity_in_byt:6,internode_application_receive_queue_reserve_global_capacity_in_byt:6,internode_application_send_queue_capacity_in_byt:6,internode_application_send_queue_reserve_endpoint_capacity_in_byt:6,internode_application_send_queue_reserve_global_capacity_in_byt:6,internode_authent:6,internode_compress:6,internode_recv_buff_size_in_byt:6,internode_send_buff_size_in_byt:6,introduct:32,invalidatecountercach:139,invalidatekeycach:140,invalidaterowcach:141,investig:[37,216],iostat:220,issu:56,java:[45,47,56,64],jconsol:45,jenkin:33,jira:[36,43],jmx:[45,66,74,77],job:33,join:[27,45,142],json:17,jstack:220,jstat:220,jvm:[74,220],keep:213,kei:[16,18,43,204],key_cache_keys_to_sav:6,key_cache_save_period:6,key_cache_size_in_mb:6,keyspac:[11,45,50,53,58,60,62,64,74,209],keyword:[9,12],lang:45,languag:15,larg:[28,45],latenc:[216,219,220],level:[0,67,68,75,206,220],librari:35,lightweight:[1,81],limit:[13,18,57,60,61],line:[40,82],lineariz:1,list:[8,20,22,37,45,60,62,214],listen:45,listen_address:[6,45],listen_interfac:6,listen_interface_prefer_ipv6:6,listen_on_broadcast_address:6,listsnapshot:143,liter:22,live:45,load:[45,64,207],local:[36,57,219],locat:46,log:[45,46,53,54,61,66,214,216,218],logger:[53,54,218],logic:24,login:82,longer:72,lot:[45,210],lucen:80,made:45,mail:8,main:46,major:[67,68],make:72,manag:[35,204],mani:210,manifest:211,manipul:13,manual:79,map:[16,22,45],master:0,materi:[18,32],matrix:56,max:[14,45],max_concurrent_automatic_sstable_upgrad:6,max_hint_window_in_m:6,max_hints_delivery_thread:6,max_hints_file_size_in_mb:6,max_value_size_in_mb:6,maxtimeuuid:14,mean:45,membership:0,memori:[45,71,74],memorypool:74,memtabl:4,memtable_allocation_typ:6,memtable_cleanup_threshold:6,memtable_flush_writ:6,memtable_heap_space_in_mb:6,memtable_offheap_space_in_mb:6,merg:66,messag:[45,57,60],metadata:[208,210],method:[45,49],metric:[57,74,216],min:14,minor:66,mintimeuuid:14,misbehav:216,mode:81,model:[0,23,24,25,28,30,31,32],monitor:[72,74,79],monoton:75,more:[45,66,204,207,218],move:[79,144],movement:79,multi:[0,58],multilin:34,multipl:[0,62,212],name:64,nativ:[14,22],native_transport_allow_older_protocol:6,native_transport_flush_in_batches_legaci:6,native_transport_frame_block_size_in_kb:6,native_transport_idle_timeout_in_m:6,native_transport_max_concurrent_connect:6,native_transport_max_concurrent_connections_per_ip:6,native_transport_max_frame_size_in_mb:6,native_transport_max_thread:6,native_transport_port:6,native_transport_port_ssl:6,net:47,netbean:40,netstat:145,netti:58,network:220,network_author:6,networktopologystrategi:[0,11,50],newer:40,next:[43,216],nexu:43,nio:57,node:[0,45,58,72,77,79,216],nodej:47,nodetool:[45,53,61,64,66,72,146,219],none:75,note:36,noteworthi:22,now:14,num_token:6,number:[19,58],object:[54,59,60],old:[43,213],one:[45,210],onli:[45,204,214],open:[40,57],oper:[3,19,43,45,58,69,70,73],optim:[27,57],option:[18,53,54,59,61,64,66,67,68,69,76,82],order:13,otc_backlog_expiration_interval_m:6,otc_coalescing_enough_coalesced_messag:6,otc_coalescing_strategi:6,otc_coalescing_window_u:6,other:[45,53,54,60,76],out:[0,72],outbound:57,outofmemoryerror:45,output:[61,204,205,207],overflow:211,overhead:54,overload:57,overview:[3,65],own:33,packag:[43,49],packet:220,page:[82,220],parallel:58,paramet:[13,65,66],parti:80,partit:[0,28,32],partition:6,password:77,patch:[37,42],path:57,pattern:24,pausehandoff:147,paxo:57,pend:59,per:0,perform:[43,44,54],periodic_commitlog_sync_lag_block_in_m:6,perl:47,permiss:20,permissions_update_interval_in_m:6,permissions_validity_in_m:6,phi_convict_threshold:6,php:47,physic:[0,25],pick:0,plai:72,plugin:[33,80],point:45,pom:35,pool:60,port:45,post:43,practic:76,prepar:[12,57],prepared_statements_cache_size_mb:6,prerequisit:[43,49],prevent:57,preview:58,primari:18,print:[208,210],process:43,product:50,profil:81,profileload:148,progress:[79,207],project:40,promot:43,properti:46,propos:57,protocol:57,proxyhistogram:149,publish:[36,43],python:47,pytz:82,qualiti:57,queri:[0,15,26,27,32,51,54,216,218,219],question:[37,45],queu:57,quorum:[59,75],rack:50,rang:[59,79],range_request_timeout_in_m:6,rangekeysampl:150,rate:216,raw:204,rdbm:27,read:[50,59,65,75],read_request_timeout_in_m:6,rebuild:151,rebuild_index:152,recommend:50,reconnect:57,record:0,recov:57,reduc:206,referenti:27,refin:28,refresh:153,refreshsizeestim:154,refus:45,regular:60,relat:32,releas:43,relevel:209,reliabl:220,reload:[61,77],reloadlocalschema:155,reloadse:156,reloadssl:157,reloadtrigg:158,relocatesst:159,remot:45,remov:[66,79],removenod:160,repair:[58,59,66,75,76,161,210],repair_admin:162,repair_session_space_in_mb:6,repaired_data_tracking_for_partition_reads_en:6,repaired_data_tracking_for_range_reads_en:6,replac:79,replai:54,replaybatchlog:163,replic:[0,45,59],replica:[0,58,59],report:[5,37,45,74],report_unconfirmed_repaired_data_mismatch:6,repositori:43,request:[57,72,74],request_timeout_in_m:6,requir:[33,35],reserv:[9,24,25],resetfullquerylog:164,resetlocalschema:165,resili:57,resolut:35,resourc:[57,220],restor:62,restrict:20,result:13,resum:79,resumehandoff:166,retriev:14,review:[37,39],revok:20,rewrit:213,rhel:45,right:42,ring:[0,45,167],role:[20,77],role_manag:6,roles_update_interval_in_m:6,roles_validity_in_m:6,roll:[53,54],row:204,row_cache_class_nam:6,row_cache_keys_to_sav:6,row_cache_save_period:6,row_cache_size_in_mb:6,rowcach:80,rpc_address:6,rpc_interfac:6,rpc_interface_prefer_ipv6:6,rpc_keepal:6,rpm:49,rubi:47,run:[44,54,209],runtim:[46,72],rust:47,safeti:6,sai:45,same:[45,62],sampl:61,saved_caches_directori:6,scala:47,scalabl:1,scalar:14,scale:0,schema:[29,32],script:210,scrub:[168,211],second:208,secondari:[1,16],secur:[20,77],see:45,seed:[33,45],seed_provid:6,select:[13,17,18],selector:13,send:43,serial:[57,82],server:33,server_encryption_opt:6,session:82,set:[20,22,33,40,45,53,54,60,62,210],setbatchlogreplaythrottl:169,setcachecapac:170,setcachekeystosav:171,setcompactionthreshold:172,setcompactionthroughput:173,setconcurr:174,setconcurrentcompactor:175,setconcurrentviewbuild:176,sethintedhandoffthrottlekb:177,setinterdcstreamthroughput:178,setlogginglevel:179,setmaxhintwindow:180,setstreamthroughput:181,settimeout:182,settraceprob:183,setup:[33,40],share:82,shell:82,show:[45,82,210],sign:43,signatur:14,simpl:0,simplestrategi:[0,11],singl:[45,62,66,204],size:[28,57,212],sjk:184,skip:211,slack:[8,43],slow_query_log_timeout_in_m:6,small:212,snapshot:[62,64,185,207,212,213],snapshot_before_compact:6,snitch:[50,78],sort:27,sourc:[40,82],special:82,specif:20,specifi:[208,212],specul:59,speed:[45,207],sphinx:36,split:212,ssl:[77,207],ssl_storage_port:6,sstabl:[4,58,60,64,66,67,74,203,205,206,207,210,214],sstable_preemptive_open_interval_in_mb:6,sstabledump:204,sstableexpiredblock:205,sstablelevelreset:206,sstableload:[64,207],sstablemetadata:208,sstableofflinerelevel:209,sstablerepairedset:210,sstablescrub:211,sstablesplit:212,sstableupgrad:213,sstableutil:214,sstableverifi:215,stage:57,stai:45,standard:77,start:[37,40,42,48],start_native_transport:6,starv:67,state:[219,220],statement:[12,18,34,54],statu:[186,210,219],statusautocompact:187,statusbackup:188,statusbinari:189,statusgossip:190,statushandoff:191,stc:[67,68],step:[35,216],stop:192,stopdaemon:193,storag:[4,9,27,72,74],storage_port:6,store:[0,45],strategi:[0,66,67,68],stratio:80,stream:[45,58,74,79],stream_entire_sst:6,stream_throughput_outbound_megabits_per_sec:6,streaming_connections_per_host:6,streaming_keep_alive_period_in_sec:6,stress:[44,81],structur:[62,204],style:34,submit:37,sum:14,support:[17,56,59,81],sync:43,synchron:0,system:218,system_virtual_schema:60,tabl:[11,57,60,62,65,74,75,204,206,209,211,213],tablehistogram:194,tablestat:195,take:62,tarbal:49,target:64,task:60,temporari:214,term:12,test:[33,37,40,44],than:45,thei:45,third:80,though:45,thread:[60,220],threadpool:[74,219],threshold:6,throttl:207,throughput:220,time:[14,22,69,72],timeout:57,timestamp:[22,45,204],timeuuid:14,timewindowcompactionstrategi:69,todo:11,tojson:17,token:[0,14,50,79],tombston:66,tombstone_failure_threshold:6,tombstone_warn_threshold:6,tool:[30,44,64,83,203,220],top:[45,220],topic:43,toppartit:196,tpstat:197,trace:82,tracetype_query_ttl:6,tracetype_repair_ttl:6,transact:[1,81,214],transit:59,transparent_data_encryption_opt:6,trickle_fsync:6,trickle_fsync_interval_in_kb:6,trigger:[21,66],troubleshoot:[35,217],truncat:11,truncate_request_timeout_in_m:6,truncatehint:198,ttl:[13,66],tunabl:0,tupl:22,tweet:43,two:45,type:[9,17,22,35,58,62,66,74],udt:22,unabl:45,uniqu:58,unit:[37,40,44],unknown:57,unlog:13,unlogged_batch_across_partitions_warn_threshold:6,unrepair:[66,210],unsubscrib:45,updat:[13,35,37,43,45],upgradesst:199,upload:43,usag:[45,76,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,206,207,208,209,210,211,212,213,214,215,220],use:45,user:[14,20,22,37,53,81],using:[0,36,45,66],uuid:14,valid:211,valu:208,variabl:46,verif:215,verifi:200,version:[0,4,10,43,82,201,213],view:[18,32,53,54,61],viewbuildstatu:202,virtual:[57,60],vmtouch:220,vnode:0,vote:43,wait:43,warn:65,websit:43,welcom:52,what:[1,32,42,45,53,61],when:[45,57,58,66],where:13,whitespac:34,why:[45,66],window:69,windows_timer_interv:6,without:[66,211,212],work:[22,36,42],write:[1,59,72],write_request_timeout_in_m:6,writetim:13,yaml:[61,65],you:42,your:[33,43],zero:58}})
\ No newline at end of file
diff --git a/src/doc/4.0-alpha4/tools/cqlsh.html b/src/doc/4.0-alpha4/tools/cqlsh.html
index 58e4116..5c19463 100644
--- a/src/doc/4.0-alpha4/tools/cqlsh.html
+++ b/src/doc/4.0-alpha4/tools/cqlsh.html
@@ -165,6 +165,8 @@
 <dd>Execute the given statement, then exit</dd>
 <dt><code class="docutils literal notranslate"><span class="pre">--connect-timeout</span></code></dt>
 <dd>Specify the connection timeout in seconds (defaults to 2s)</dd>
+<dt><code class="docutils literal notranslate"><span class="pre">--python</span> <span class="pre">/path/to/python</span></code></dt>
+<dd>Specify the full path to Python interpreter to override default on systems with multiple interpreters installed</dd>
 <dt><code class="docutils literal notranslate"><span class="pre">--request-timeout</span></code></dt>
 <dd>Specify the request timeout in seconds (defaults to 10s)</dd>
 <dt><code class="docutils literal notranslate"><span class="pre">-t</span></code> <code class="docutils literal notranslate"><span class="pre">--tty</span></code></dt>