You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2021/09/02 11:43:40 UTC

[cassandra-website] 01/07: CASSANDRA-16066: Set up new directory structure

This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-website.git

commit 370103315dc670489d99d2643e9f597638ca1c76
Author: Anthony Grasso <an...@thelastpickle.com>
AuthorDate: Mon Nov 2 23:21:40 2020 +1100

    CASSANDRA-16066: Set up new directory structure
    
    This commit only sets up the new directory structure. Content, styling/layout,
    and tooling changes will appear in seperate commits.
    
    The old directory structure was:
    
    ROOT
      - content
      - src
        - _data
        - _includes
        - _layouts
        - _plugins
        - _posts
        - _sass
        - _templates
        - blog
        - css
        - doc
        - icons
        - img
        - js
    
    In the above old structure the styling and the content all lived in the same
    parent directory. The new directory structure separates the styling from the
    content. The new directory structure is now:
    
     ROOT
       - site-content
       - site-ui
    
    The 'site-ui' directory will contain only the styling that determines the look
    and feel of the site. A ui-bundle.zip file containing the styling information
    will be generated using the contents of the 'site-ui' directory. Generation of
    the ui-bundle.zip will be done using Gulp running inside a Docker container.
    
    The 'site-content' directory will contain all the raw page information e.g.
    where to download, developer guidelines, how to commit patches, etc. The final
    website HTML that is deployed to production is generated from this directory.
    Generation of the HTML content will be performed by Antora running inside a
    Docker container. As part of the website HTML generation, the ui-bundle.zip
    file and the Cassandra documentation location are passed to Antora. Antora uses
    the ui-bundle.zip to style the website. The Cassandra documentation location
    will be used to gather and generate documentation for each Cassandra version.
    
    Antora is being used for the website generation because it is designed to create
    websites that have version documentation. For example, when a new version of
    Cassandra is released, a new version of the documentation will be generated as
    well. Hence, if there is a change in the behaviour of Cassandra or a tool in the
    project, it will be captured in the latest version of the documentation. Users
    of the project will have the ability to select the version of the documentation
    they are interested in.
    
    Separating the layout/style and the content means that stying changes can be
    made with little to no impact on content and vice-versa. In addition, changes to
    the styling can happen in parallel while website content is updated without
    conflict.
    
    The markdown files contained in the '_post' old structure will be converted to
    asciidoc and placed 'site-content' directory. In addition, various markdown
    pages that live in the old ROOT directory will be converted to asciidoc and
    placed 'site-content' directory as well.
    
    patch by Anthony Grasso; reviewed by Mick Semb Wever, Lorina Poland, Melissa Logan, Paul Au for CASSANDRA-16066
---
 .gitignore                                         |     3 +-
 README.md                                          |    22 +-
 content/.keepdir                                   |     1 -
 docker-compose.yml                                 |    31 -
 docker-entrypoint-jekyll-serve.sh                  |    29 -
 site-content/lib/tabs-block.js                     |    80 +
 site-content/source/antora.yml                     |     4 +
 .../ROOT/examples/TEXT/native_protocol_v3.spec     |  1040 ++
 .../ROOT/examples/TEXT/native_protocol_v4.spec     |  1191 +++
 .../ROOT/examples/TEXT/native_protocol_v5.spec     |  1281 +++
 .../source/modules/ROOT/images}/docs_commit.png    |   Bin
 .../modules/ROOT/images}/docs_create_branch.png    |   Bin
 .../modules/ROOT/images}/docs_create_file.png      |   Bin
 .../source/modules/ROOT/images}/docs_editor.png    |   Bin
 .../source/modules/ROOT/images}/docs_fork.png      |   Bin
 .../source/modules/ROOT/images}/docs_pr.png        |   Bin
 .../source/modules/ROOT/images}/docs_preview.png   |   Bin
 .../source/modules/ROOT/images}/eclipse_debug0.png |   Bin
 .../source/modules/ROOT/images}/eclipse_debug1.png |   Bin
 .../source/modules/ROOT/images}/eclipse_debug2.png |   Bin
 .../source/modules/ROOT/images}/eclipse_debug3.png |   Bin
 .../source/modules/ROOT/images}/eclipse_debug4.png |   Bin
 .../source/modules/ROOT/images}/eclipse_debug5.png |   Bin
 .../source/modules/ROOT/images}/eclipse_debug6.png |   Bin
 site-content/source/modules/ROOT/nav.adoc          |    17 +
 .../source/modules/ROOT/pages/apachecon_cfp.adoc   |    83 +
 site-content/source/modules/ROOT/pages/bugs.adoc   |    17 +
 .../source/modules/ROOT/pages/community.adoc       |    78 +
 .../source/modules/ROOT/pages/contactus.adoc       |    30 +
 .../source/modules/ROOT/pages/development/ci.adoc  |   102 +
 .../modules/ROOT/pages/development/code_style.adoc |    99 +
 .../ROOT/pages/development/dependencies.adoc       |    51 +
 .../ROOT/pages/development/documentation.adoc      |   135 +
 .../ROOT/pages/development/gettingstarted.adoc     |    66 +
 .../ROOT/pages/development/how_to_commit.adoc      |    68 +
 .../ROOT/pages/development/how_to_review.adoc      |    72 +
 .../source/modules/ROOT/pages/development/ide.adoc |   226 +
 .../modules/ROOT/pages/development/index.adoc      |    35 +
 .../modules/ROOT/pages/development/patches.adoc    |   208 +
 .../ROOT/pages/development/release_process.adoc    |   245 +
 .../modules/ROOT/pages/development/testing.adoc    |   115 +
 .../source/modules/ROOT/pages/docdev/index.adoc    |     3 +
 .../source/modules/ROOT/pages/download.adoc        |    37 +
 .../source/modules/ROOT/pages/glossary.adoc        |    38 +
 site-content/source/modules/ROOT/pages/index.adoc  |    51 +
 .../source/modules/ROOT/pages/native_protocol.adoc |    22 +
 .../source/modules/ROOT/pages/third-party.adoc     |   173 +
 site-ui/.keepdir                                   |     0
 src/.htaccess                                      |     4 -
 src/Gemfile                                        |     4 -
 src/Gemfile.lock                                   |    59 -
 src/Makefile                                       |    57 -
 src/README                                         |   137 -
 src/_config.yml                                    |    42 -
 src/_data/releases.yaml                            |    19 -
 src/_data/urls.yaml                                |     4 -
 src/_includes/base.html                            |    13 -
 src/_includes/footer.html                          |    53 -
 src/_includes/head.html                            |    25 -
 src/_includes/nav.html                             |    93 -
 src/_layouts/blog.html                             |    33 -
 src/_layouts/default.html                          |     9 -
 src/_layouts/doclandingpage.html                   |    15 -
 src/_layouts/docpage.html                          |     4 -
 src/_layouts/page.html                             |     8 -
 src/_layouts/post.html                             |    12 -
 src/_plugins/font_awesome.rb                       |    71 -
 src/_plugins/release_link.rb                       |    40 -
 ...18-08-07-faster_streaming_in_cassandra.markdown |    77 -
 .../2018-08-23-testing_apache_cassandra.markdown   |    56 -
 ...nding_bugs_with_property_based_testing.markdown |   116 -
 .../2018-10-29-audit_logging_cassandra.markdown    |   211 -
 ...2-03-introducing-transient-replication.markdown |   135 -
 .../2019-04-09-benchmarking_streaming.markdown     |    78 -
 .../2020-07-20-apache-cassandra-4-0-beta1.markdown |    72 -
 ...14-cassandra-and-kubernetes-sig-update.markdown |    67 -
 .../2020-09-03-improving-resiliency.markdown       |   105 -
 ...2020-09-17-cassandra-usage-report-2020.markdown |    97 -
 src/_posts/2020-10-28-cass_changelog_1.markdown    |    91 -
 src/_posts/2020-12-04-cass_changelog_2.markdown    |    85 -
 src/_posts/2021-01-19-cass-changelog_3.markdown    |    67 -
 src/_posts/2021-02-11-cass-changelog_4.markdown    |    99 -
 src/_posts/2021-03-08-cass_changelog_5.markdown    |    88 -
 .../2021-03-10-join_cassandra_gsoc_2021.markdown   |    36 -
 src/_posts/2021-03-25-world_party.markdown         |    42 -
 src/_posts/2021-04-12-cass-changelog_6.markdown    |    89 -
 src/_sass/_code.scss                               |    87 -
 src/_sass/_colors.scss                             |    12 -
 src/_sass/_pygments-light.sass                     |   146 -
 src/_sass/_site-footer.scss                        |    39 -
 src/_sass/_site-header.scss                        |    83 -
 src/_sass/_site-landing.scss                       |   115 -
 src/_sass/_sphinx-basic.scss                       |   604 --
 .../2018-06-22-blog_post_template.markdown         |    33 -
 src/apachecon_cfp.md                               |    68 -
 src/blog/index.html                                |    11 -
 src/community.md                                   |    59 -
 src/css/sphinx.scss                                |   254 -
 src/css/style.scss                                 |    85 -
 src/doc/.htaccess                                  |     2 -
 src/doc/3.11                                       |     1 -
 src/doc/3.11.3/.buildinfo                          |     4 -
 src/doc/3.11.3/_images/eclipse_debug0.png          |   Bin 48174 -> 0 bytes
 src/doc/3.11.3/_images/eclipse_debug1.png          |   Bin 34446 -> 0 bytes
 src/doc/3.11.3/_images/eclipse_debug2.png          |   Bin 57032 -> 0 bytes
 src/doc/3.11.3/_images/eclipse_debug3.png          |   Bin 58677 -> 0 bytes
 src/doc/3.11.3/_images/eclipse_debug4.png          |   Bin 24793 -> 0 bytes
 src/doc/3.11.3/_images/eclipse_debug5.png          |   Bin 66632 -> 0 bytes
 src/doc/3.11.3/_images/eclipse_debug6.png          |   Bin 87568 -> 0 bytes
 .../3.11.3/_sources/architecture/dynamo.rst.txt    |   139 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 src/doc/3.11.3/_sources/architecture/index.rst.txt |    29 -
 .../3.11.3/_sources/architecture/overview.rst.txt  |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |    82 -
 src/doc/3.11.3/_sources/bugs.rst.txt               |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  1880 ----
 .../3.11.3/_sources/configuration/index.rst.txt    |    25 -
 src/doc/3.11.3/_sources/contactus.rst.txt          |    53 -
 src/doc/3.11.3/_sources/cql/appendices.rst.txt     |   330 -
 src/doc/3.11.3/_sources/cql/changes.rst.txt        |   204 -
 src/doc/3.11.3/_sources/cql/ddl.rst.txt            |   649 --
 src/doc/3.11.3/_sources/cql/definitions.rst.txt    |   232 -
 src/doc/3.11.3/_sources/cql/dml.rst.txt            |   522 -
 src/doc/3.11.3/_sources/cql/functions.rst.txt      |   558 -
 src/doc/3.11.3/_sources/cql/index.rst.txt          |    47 -
 src/doc/3.11.3/_sources/cql/indexes.rst.txt        |    83 -
 src/doc/3.11.3/_sources/cql/json.rst.txt           |   115 -
 src/doc/3.11.3/_sources/cql/mvs.rst.txt            |   166 -
 src/doc/3.11.3/_sources/cql/security.rst.txt       |   502 -
 src/doc/3.11.3/_sources/cql/triggers.rst.txt       |    63 -
 src/doc/3.11.3/_sources/cql/types.rst.txt          |   559 -
 .../3.11.3/_sources/data_modeling/index.rst.txt    |    20 -
 .../3.11.3/_sources/development/code_style.rst.txt |    94 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    71 -
 src/doc/3.11.3/_sources/development/ide.rst.txt    |   161 -
 src/doc/3.11.3/_sources/development/index.rst.txt  |    28 -
 .../3.11.3/_sources/development/patches.rst.txt    |   125 -
 .../3.11.3/_sources/development/testing.rst.txt    |    89 -
 src/doc/3.11.3/_sources/faq/index.rst.txt          |   298 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   107 -
 .../3.11.3/_sources/getting_started/index.rst.txt  |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/3.11.3/_sources/index.rst.txt              |    41 -
 src/doc/3.11.3/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../3.11.3/_sources/operating/bulk_loading.rst.txt |    24 -
 src/doc/3.11.3/_sources/operating/cdc.rst.txt      |    89 -
 .../3.11.3/_sources/operating/compaction.rst.txt   |   442 -
 .../3.11.3/_sources/operating/compression.rst.txt  |    94 -
 src/doc/3.11.3/_sources/operating/hardware.rst.txt |    87 -
 src/doc/3.11.3/_sources/operating/hints.rst.txt    |    22 -
 src/doc/3.11.3/_sources/operating/index.rst.txt    |    39 -
 src/doc/3.11.3/_sources/operating/metrics.rst.txt  |   706 --
 .../3.11.3/_sources/operating/read_repair.rst.txt  |    22 -
 src/doc/3.11.3/_sources/operating/repair.rst.txt   |    22 -
 src/doc/3.11.3/_sources/operating/security.rst.txt |   410 -
 src/doc/3.11.3/_sources/operating/snitch.rst.txt   |    78 -
 .../3.11.3/_sources/operating/topo_changes.rst.txt |   124 -
 src/doc/3.11.3/_sources/tools/cqlsh.rst.txt        |   455 -
 src/doc/3.11.3/_sources/tools/index.rst.txt        |    26 -
 src/doc/3.11.3/_sources/tools/nodetool.rst.txt     |    22 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../3.11.3/_sources/tools/nodetool/cleanup.rst.txt |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../3.11.3/_sources/tools/nodetool/compact.rst.txt |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../3.11.3/_sources/tools/nodetool/drain.rst.txt   |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../3.11.3/_sources/tools/nodetool/flush.rst.txt   |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../3.11.3/_sources/tools/nodetool/gcstats.rst.txt |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/help.rst.txt    |    11 -
 .../3.11.3/_sources/tools/nodetool/import.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/info.rst.txt    |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../3.11.3/_sources/tools/nodetool/join.rst.txt    |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/move.rst.txt    |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   250 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../3.11.3/_sources/tools/nodetool/rebuild.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/refresh.rst.txt |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../3.11.3/_sources/tools/nodetool/repair.rst.txt  |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/ring.rst.txt    |    11 -
 .../3.11.3/_sources/tools/nodetool/scrub.rst.txt   |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../3.11.3/_sources/tools/nodetool/status.rst.txt  |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/stop.rst.txt    |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/tpstats.rst.txt |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../3.11.3/_sources/tools/nodetool/verify.rst.txt  |    11 -
 .../3.11.3/_sources/tools/nodetool/version.rst.txt |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../3.11.3/_sources/troubleshooting/index.rst.txt  |    20 -
 src/doc/3.11.3/_static/ajax-loader.gif             |   Bin 673 -> 0 bytes
 src/doc/3.11.3/_static/basic.css                   |   632 --
 src/doc/3.11.3/_static/comment-bright.png          |   Bin 756 -> 0 bytes
 src/doc/3.11.3/_static/comment-close.png           |   Bin 829 -> 0 bytes
 src/doc/3.11.3/_static/comment.png                 |   Bin 641 -> 0 bytes
 src/doc/3.11.3/_static/doctools.js                 |   287 -
 src/doc/3.11.3/_static/down-pressed.png            |   Bin 222 -> 0 bytes
 src/doc/3.11.3/_static/down.png                    |   Bin 202 -> 0 bytes
 src/doc/3.11.3/_static/extra.css                   |    59 -
 src/doc/3.11.3/_static/file.png                    |   Bin 286 -> 0 bytes
 src/doc/3.11.3/_static/jquery.js                   | 10219 ------------------
 src/doc/3.11.3/_static/minus.png                   |   Bin 90 -> 0 bytes
 src/doc/3.11.3/_static/plus.png                    |   Bin 90 -> 0 bytes
 src/doc/3.11.3/_static/pygments.css                |    69 -
 src/doc/3.11.3/_static/searchtools.js              |   758 --
 src/doc/3.11.3/_static/underscore.js               |  1548 ---
 src/doc/3.11.3/_static/up-pressed.png              |   Bin 214 -> 0 bytes
 src/doc/3.11.3/_static/up.png                      |   Bin 203 -> 0 bytes
 src/doc/3.11.3/_static/websupport.js               |   808 --
 src/doc/3.11.3/architecture/dynamo.html            |   218 -
 src/doc/3.11.3/architecture/guarantees.html        |   113 -
 src/doc/3.11.3/architecture/index.html             |   127 -
 src/doc/3.11.3/architecture/overview.html          |   113 -
 src/doc/3.11.3/architecture/storage_engine.html    |   164 -
 src/doc/3.11.3/bugs.html                           |   108 -
 .../configuration/cassandra_config_file.html       |  1802 ----
 src/doc/3.11.3/configuration/index.html            |   109 -
 src/doc/3.11.3/contactus.html                      |   127 -
 src/doc/3.11.3/cql/appendices.html                 |   565 -
 src/doc/3.11.3/cql/changes.html                    |   353 -
 src/doc/3.11.3/cql/ddl.html                        |   765 --
 src/doc/3.11.3/cql/definitions.html                |   312 -
 src/doc/3.11.3/cql/dml.html                        |   558 -
 src/doc/3.11.3/cql/functions.html                  |   666 --
 src/doc/3.11.3/cql/index.html                      |   239 -
 src/doc/3.11.3/cql/indexes.html                    |   168 -
 src/doc/3.11.3/cql/json.html                       |   315 -
 src/doc/3.11.3/cql/mvs.html                        |   241 -
 src/doc/3.11.3/cql/security.html                   |   704 --
 src/doc/3.11.3/cql/triggers.html                   |   153 -
 src/doc/3.11.3/cql/types.html                      |   697 --
 src/doc/3.11.3/data_modeling/index.html            |   104 -
 src/doc/3.11.3/development/code_style.html         |   208 -
 src/doc/3.11.3/development/how_to_commit.html      |   180 -
 src/doc/3.11.3/development/how_to_review.html      |   172 -
 src/doc/3.11.3/development/ide.html                |   234 -
 src/doc/3.11.3/development/index.html              |   142 -
 src/doc/3.11.3/development/patches.html            |   247 -
 src/doc/3.11.3/development/testing.html            |   171 -
 src/doc/3.11.3/faq/index.html                      |   315 -
 src/doc/3.11.3/genindex.html                       |    93 -
 src/doc/3.11.3/getting_started/configuring.html    |   158 -
 src/doc/3.11.3/getting_started/drivers.html        |   223 -
 src/doc/3.11.3/getting_started/index.html          |   146 -
 src/doc/3.11.3/getting_started/installing.html     |   196 -
 src/doc/3.11.3/getting_started/querying.html       |   144 -
 src/doc/3.11.3/index.html                          |    75 -
 src/doc/3.11.3/objects.inv                         |   Bin 7694 -> 0 bytes
 src/doc/3.11.3/operating/backups.html              |   123 -
 src/doc/3.11.3/operating/bloom_filters.html        |   160 -
 src/doc/3.11.3/operating/bulk_loading.html         |   123 -
 src/doc/3.11.3/operating/cdc.html                  |   186 -
 src/doc/3.11.3/operating/compaction.html           |   514 -
 src/doc/3.11.3/operating/compression.html          |   187 -
 src/doc/3.11.3/operating/hardware.html             |   189 -
 src/doc/3.11.3/operating/hints.html                |   123 -
 src/doc/3.11.3/operating/index.html                |   215 -
 src/doc/3.11.3/operating/metrics.html              |  1601 ---
 src/doc/3.11.3/operating/read_repair.html          |   123 -
 src/doc/3.11.3/operating/repair.html               |   123 -
 src/doc/3.11.3/operating/security.html             |   446 -
 src/doc/3.11.3/operating/snitch.html               |   176 -
 src/doc/3.11.3/operating/topo_changes.html         |   214 -
 src/doc/3.11.3/search.html                         |   103 -
 src/doc/3.11.3/searchindex.js                      |     1 -
 src/doc/3.11.3/tools/cqlsh.html                    |   481 -
 src/doc/3.11.3/tools/index.html                    |   111 -
 src/doc/3.11.3/tools/nodetool.html                 |   111 -
 src/doc/3.11.3/tools/nodetool/assassinate.html     |   132 -
 src/doc/3.11.3/tools/nodetool/bootstrap.html       |   131 -
 src/doc/3.11.3/tools/nodetool/cleanup.html         |   137 -
 src/doc/3.11.3/tools/nodetool/clearsnapshot.html   |   140 -
 src/doc/3.11.3/tools/nodetool/clientstats.html     |   133 -
 src/doc/3.11.3/tools/nodetool/compact.html         |   149 -
 .../3.11.3/tools/nodetool/compactionhistory.html   |   127 -
 src/doc/3.11.3/tools/nodetool/compactionstats.html |   127 -
 src/doc/3.11.3/tools/nodetool/decommission.html    |   127 -
 src/doc/3.11.3/tools/nodetool/describecluster.html |   124 -
 src/doc/3.11.3/tools/nodetool/describering.html    |   131 -
 src/doc/3.11.3/tools/nodetool/disableauditlog.html |   123 -
 .../tools/nodetool/disableautocompaction.html      |   133 -
 src/doc/3.11.3/tools/nodetool/disablebackup.html   |   123 -
 src/doc/3.11.3/tools/nodetool/disablebinary.html   |   123 -
 .../3.11.3/tools/nodetool/disablefullquerylog.html |   123 -
 src/doc/3.11.3/tools/nodetool/disablegossip.html   |   124 -
 src/doc/3.11.3/tools/nodetool/disablehandoff.html  |   123 -
 .../3.11.3/tools/nodetool/disablehintsfordc.html   |   132 -
 .../tools/nodetool/disableoldprotocolversions.html |   123 -
 src/doc/3.11.3/tools/nodetool/drain.html           |   124 -
 src/doc/3.11.3/tools/nodetool/enableauditlog.html  |   157 -
 .../tools/nodetool/enableautocompaction.html       |   133 -
 src/doc/3.11.3/tools/nodetool/enablebackup.html    |   123 -
 src/doc/3.11.3/tools/nodetool/enablebinary.html    |   123 -
 .../3.11.3/tools/nodetool/enablefullquerylog.html  |   154 -
 src/doc/3.11.3/tools/nodetool/enablegossip.html    |   123 -
 src/doc/3.11.3/tools/nodetool/enablehandoff.html   |   124 -
 .../3.11.3/tools/nodetool/enablehintsfordc.html    |   133 -
 .../tools/nodetool/enableoldprotocolversions.html  |   123 -
 src/doc/3.11.3/tools/nodetool/failuredetector.html |   124 -
 src/doc/3.11.3/tools/nodetool/flush.html           |   132 -
 src/doc/3.11.3/tools/nodetool/garbagecollect.html  |   142 -
 src/doc/3.11.3/tools/nodetool/gcstats.html         |   123 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   125 -
 .../tools/nodetool/getcompactionthreshold.html     |   133 -
 .../tools/nodetool/getcompactionthroughput.html    |   124 -
 .../tools/nodetool/getconcurrentcompactors.html    |   124 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   124 -
 src/doc/3.11.3/tools/nodetool/getendpoints.html    |   133 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   124 -
 .../3.11.3/tools/nodetool/getlogginglevels.html    |   123 -
 .../3.11.3/tools/nodetool/getmaxhintwindow.html    |   123 -
 src/doc/3.11.3/tools/nodetool/getreplicas.html     |   133 -
 src/doc/3.11.3/tools/nodetool/getseeds.html        |   124 -
 src/doc/3.11.3/tools/nodetool/getsstables.html     |   135 -
 .../3.11.3/tools/nodetool/getstreamthroughput.html |   124 -
 src/doc/3.11.3/tools/nodetool/gettimeout.html      |   133 -
 .../3.11.3/tools/nodetool/gettraceprobability.html |   123 -
 src/doc/3.11.3/tools/nodetool/gossipinfo.html      |   123 -
 src/doc/3.11.3/tools/nodetool/handoffwindow.html   |   123 -
 src/doc/3.11.3/tools/nodetool/help.html            |   110 -
 src/doc/3.11.3/tools/nodetool/import.html          |   158 -
 src/doc/3.11.3/tools/nodetool/info.html            |   126 -
 .../tools/nodetool/invalidatecountercache.html     |   123 -
 .../3.11.3/tools/nodetool/invalidatekeycache.html  |   123 -
 .../3.11.3/tools/nodetool/invalidaterowcache.html  |   123 -
 src/doc/3.11.3/tools/nodetool/join.html            |   123 -
 src/doc/3.11.3/tools/nodetool/listsnapshots.html   |   124 -
 src/doc/3.11.3/tools/nodetool/move.html            |   131 -
 src/doc/3.11.3/tools/nodetool/netstats.html        |   128 -
 src/doc/3.11.3/tools/nodetool/nodetool.html        |   220 -
 src/doc/3.11.3/tools/nodetool/pausehandoff.html    |   123 -
 src/doc/3.11.3/tools/nodetool/profileload.html     |   142 -
 src/doc/3.11.3/tools/nodetool/proxyhistograms.html |   124 -
 src/doc/3.11.3/tools/nodetool/rangekeysample.html  |   124 -
 src/doc/3.11.3/tools/nodetool/rebuild.html         |   148 -
 src/doc/3.11.3/tools/nodetool/rebuild_index.html   |   133 -
 src/doc/3.11.3/tools/nodetool/refresh.html         |   133 -
 .../tools/nodetool/refreshsizeestimates.html       |   123 -
 .../3.11.3/tools/nodetool/reloadlocalschema.html   |   123 -
 src/doc/3.11.3/tools/nodetool/reloadseeds.html     |   124 -
 src/doc/3.11.3/tools/nodetool/reloadssl.html       |   123 -
 src/doc/3.11.3/tools/nodetool/reloadtriggers.html  |   123 -
 .../3.11.3/tools/nodetool/relocatesstables.html    |   136 -
 src/doc/3.11.3/tools/nodetool/removenode.html      |   134 -
 src/doc/3.11.3/tools/nodetool/repair.html          |   196 -
 src/doc/3.11.3/tools/nodetool/repair_admin.html    |   137 -
 src/doc/3.11.3/tools/nodetool/replaybatchlog.html  |   123 -
 .../3.11.3/tools/nodetool/resetfullquerylog.html   |   125 -
 .../3.11.3/tools/nodetool/resetlocalschema.html    |   123 -
 src/doc/3.11.3/tools/nodetool/resumehandoff.html   |   123 -
 src/doc/3.11.3/tools/nodetool/ring.html            |   136 -
 src/doc/3.11.3/tools/nodetool/scrub.html           |   157 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   134 -
 .../3.11.3/tools/nodetool/setcachecapacity.html    |   133 -
 .../3.11.3/tools/nodetool/setcachekeystosave.html  |   135 -
 .../tools/nodetool/setcompactionthreshold.html     |   133 -
 .../tools/nodetool/setcompactionthroughput.html    |   133 -
 .../tools/nodetool/setconcurrentcompactors.html    |   133 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   133 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   133 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   133 -
 src/doc/3.11.3/tools/nodetool/setlogginglevel.html |   136 -
 .../3.11.3/tools/nodetool/setmaxhintwindow.html    |   132 -
 .../3.11.3/tools/nodetool/setstreamthroughput.html |   133 -
 src/doc/3.11.3/tools/nodetool/settimeout.html      |   136 -
 .../3.11.3/tools/nodetool/settraceprobability.html |   134 -
 src/doc/3.11.3/tools/nodetool/snapshot.html        |   150 -
 src/doc/3.11.3/tools/nodetool/status.html          |   135 -
 .../tools/nodetool/statusautocompaction.html       |   136 -
 src/doc/3.11.3/tools/nodetool/statusbackup.html    |   123 -
 src/doc/3.11.3/tools/nodetool/statusbinary.html    |   123 -
 src/doc/3.11.3/tools/nodetool/statusgossip.html    |   123 -
 src/doc/3.11.3/tools/nodetool/statushandoff.html   |   124 -
 src/doc/3.11.3/tools/nodetool/stop.html            |   139 -
 src/doc/3.11.3/tools/nodetool/stopdaemon.html      |   123 -
 src/doc/3.11.3/tools/nodetool/tablehistograms.html |   132 -
 src/doc/3.11.3/tools/nodetool/tablestats.html      |   167 -
 src/doc/3.11.3/tools/nodetool/toppartitions.html   |   141 -
 src/doc/3.11.3/tools/nodetool/tpstats.html         |   127 -
 src/doc/3.11.3/tools/nodetool/truncatehints.html   |   134 -
 src/doc/3.11.3/tools/nodetool/upgradesstables.html |   143 -
 src/doc/3.11.3/tools/nodetool/verify.html          |   152 -
 src/doc/3.11.3/tools/nodetool/version.html         |   123 -
 src/doc/3.11.3/tools/nodetool/viewbuildstatus.html |   132 -
 src/doc/3.11.3/troubleshooting/index.html          |   100 -
 src/doc/3.11.5/.buildinfo                          |     4 -
 src/doc/3.11.5/_images/eclipse_debug0.png          |   Bin 48174 -> 0 bytes
 src/doc/3.11.5/_images/eclipse_debug1.png          |   Bin 34446 -> 0 bytes
 src/doc/3.11.5/_images/eclipse_debug2.png          |   Bin 57032 -> 0 bytes
 src/doc/3.11.5/_images/eclipse_debug3.png          |   Bin 58677 -> 0 bytes
 src/doc/3.11.5/_images/eclipse_debug4.png          |   Bin 24793 -> 0 bytes
 src/doc/3.11.5/_images/eclipse_debug5.png          |   Bin 66632 -> 0 bytes
 src/doc/3.11.5/_images/eclipse_debug6.png          |   Bin 87568 -> 0 bytes
 .../3.11.5/_sources/architecture/dynamo.rst.txt    |   139 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 src/doc/3.11.5/_sources/architecture/index.rst.txt |    29 -
 .../3.11.5/_sources/architecture/overview.rst.txt  |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |    82 -
 src/doc/3.11.5/_sources/bugs.rst.txt               |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  1911 ----
 .../3.11.5/_sources/configuration/index.rst.txt    |    25 -
 src/doc/3.11.5/_sources/contactus.rst.txt          |    53 -
 src/doc/3.11.5/_sources/cql/appendices.rst.txt     |   330 -
 src/doc/3.11.5/_sources/cql/changes.rst.txt        |   204 -
 src/doc/3.11.5/_sources/cql/ddl.rst.txt            |   649 --
 src/doc/3.11.5/_sources/cql/definitions.rst.txt    |   232 -
 src/doc/3.11.5/_sources/cql/dml.rst.txt            |   522 -
 src/doc/3.11.5/_sources/cql/functions.rst.txt      |   558 -
 src/doc/3.11.5/_sources/cql/index.rst.txt          |    47 -
 src/doc/3.11.5/_sources/cql/indexes.rst.txt        |    83 -
 src/doc/3.11.5/_sources/cql/json.rst.txt           |   115 -
 src/doc/3.11.5/_sources/cql/mvs.rst.txt            |   166 -
 src/doc/3.11.5/_sources/cql/security.rst.txt       |   502 -
 src/doc/3.11.5/_sources/cql/triggers.rst.txt       |    63 -
 src/doc/3.11.5/_sources/cql/types.rst.txt          |   559 -
 .../3.11.5/_sources/data_modeling/index.rst.txt    |    20 -
 .../3.11.5/_sources/development/code_style.rst.txt |    94 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    71 -
 src/doc/3.11.5/_sources/development/ide.rst.txt    |   161 -
 src/doc/3.11.5/_sources/development/index.rst.txt  |    28 -
 .../3.11.5/_sources/development/patches.rst.txt    |   125 -
 .../3.11.5/_sources/development/testing.rst.txt    |    89 -
 src/doc/3.11.5/_sources/faq/index.rst.txt          |   298 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   107 -
 .../3.11.5/_sources/getting_started/index.rst.txt  |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/3.11.5/_sources/index.rst.txt              |    41 -
 src/doc/3.11.5/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../3.11.5/_sources/operating/bulk_loading.rst.txt |    24 -
 src/doc/3.11.5/_sources/operating/cdc.rst.txt      |    89 -
 .../3.11.5/_sources/operating/compaction.rst.txt   |   442 -
 .../3.11.5/_sources/operating/compression.rst.txt  |    94 -
 src/doc/3.11.5/_sources/operating/hardware.rst.txt |    87 -
 src/doc/3.11.5/_sources/operating/hints.rst.txt    |    22 -
 src/doc/3.11.5/_sources/operating/index.rst.txt    |    39 -
 src/doc/3.11.5/_sources/operating/metrics.rst.txt  |   706 --
 .../3.11.5/_sources/operating/read_repair.rst.txt  |    22 -
 src/doc/3.11.5/_sources/operating/repair.rst.txt   |    22 -
 src/doc/3.11.5/_sources/operating/security.rst.txt |   410 -
 src/doc/3.11.5/_sources/operating/snitch.rst.txt   |    78 -
 .../3.11.5/_sources/operating/topo_changes.rst.txt |   124 -
 src/doc/3.11.5/_sources/tools/cqlsh.rst.txt        |   455 -
 src/doc/3.11.5/_sources/tools/index.rst.txt        |    26 -
 src/doc/3.11.5/_sources/tools/nodetool.rst.txt     |    22 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../3.11.5/_sources/tools/nodetool/cleanup.rst.txt |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/compact.rst.txt |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../_sources/tools/nodetool/disablethrift.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/drain.rst.txt   |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../_sources/tools/nodetool/enablethrift.rst.txt   |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../3.11.5/_sources/tools/nodetool/flush.rst.txt   |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../3.11.5/_sources/tools/nodetool/gcstats.rst.txt |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../3.11.5/_sources/tools/nodetool/help.rst.txt    |    11 -
 .../3.11.5/_sources/tools/nodetool/info.rst.txt    |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../3.11.5/_sources/tools/nodetool/join.rst.txt    |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/move.rst.txt    |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   207 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../3.11.5/_sources/tools/nodetool/rebuild.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/refresh.rst.txt |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../3.11.5/_sources/tools/nodetool/repair.rst.txt  |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/ring.rst.txt    |    11 -
 .../3.11.5/_sources/tools/nodetool/scrub.rst.txt   |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../3.11.5/_sources/tools/nodetool/status.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusthrift.rst.txt   |    11 -
 .../3.11.5/_sources/tools/nodetool/stop.rst.txt    |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/tpstats.rst.txt |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../3.11.5/_sources/tools/nodetool/verify.rst.txt  |    11 -
 .../3.11.5/_sources/tools/nodetool/version.rst.txt |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../3.11.5/_sources/troubleshooting/index.rst.txt  |    20 -
 src/doc/3.11.5/_static/ajax-loader.gif             |   Bin 673 -> 0 bytes
 src/doc/3.11.5/_static/basic.css                   |   676 --
 src/doc/3.11.5/_static/comment-bright.png          |   Bin 756 -> 0 bytes
 src/doc/3.11.5/_static/comment-close.png           |   Bin 829 -> 0 bytes
 src/doc/3.11.5/_static/comment.png                 |   Bin 641 -> 0 bytes
 src/doc/3.11.5/_static/doctools.js                 |   315 -
 src/doc/3.11.5/_static/documentation_options.js    |    10 -
 src/doc/3.11.5/_static/down-pressed.png            |   Bin 222 -> 0 bytes
 src/doc/3.11.5/_static/down.png                    |   Bin 202 -> 0 bytes
 src/doc/3.11.5/_static/extra.css                   |    59 -
 src/doc/3.11.5/_static/file.png                    |   Bin 286 -> 0 bytes
 src/doc/3.11.5/_static/jquery-3.2.1.js             | 10253 -------------------
 src/doc/3.11.5/_static/jquery.js                   |     4 -
 src/doc/3.11.5/_static/language_data.js            |   297 -
 src/doc/3.11.5/_static/minus.png                   |   Bin 90 -> 0 bytes
 src/doc/3.11.5/_static/plus.png                    |   Bin 90 -> 0 bytes
 src/doc/3.11.5/_static/pygments.css                |    69 -
 src/doc/3.11.5/_static/searchtools.js              |   481 -
 src/doc/3.11.5/_static/underscore-1.3.1.js         |   999 --
 src/doc/3.11.5/_static/underscore.js               |    31 -
 src/doc/3.11.5/_static/up-pressed.png              |   Bin 214 -> 0 bytes
 src/doc/3.11.5/_static/up.png                      |   Bin 203 -> 0 bytes
 src/doc/3.11.5/_static/websupport.js               |   808 --
 src/doc/3.11.5/architecture/dynamo.html            |   218 -
 src/doc/3.11.5/architecture/guarantees.html        |   113 -
 src/doc/3.11.5/architecture/index.html             |   127 -
 src/doc/3.11.5/architecture/overview.html          |   113 -
 src/doc/3.11.5/architecture/storage_engine.html    |   164 -
 src/doc/3.11.5/bugs.html                           |   108 -
 .../configuration/cassandra_config_file.html       |  1826 ----
 src/doc/3.11.5/configuration/index.html            |   109 -
 src/doc/3.11.5/contactus.html                      |   127 -
 src/doc/3.11.5/cql/appendices.html                 |   565 -
 src/doc/3.11.5/cql/changes.html                    |   353 -
 src/doc/3.11.5/cql/ddl.html                        |   765 --
 src/doc/3.11.5/cql/definitions.html                |   312 -
 src/doc/3.11.5/cql/dml.html                        |   558 -
 src/doc/3.11.5/cql/functions.html                  |   666 --
 src/doc/3.11.5/cql/index.html                      |   239 -
 src/doc/3.11.5/cql/indexes.html                    |   168 -
 src/doc/3.11.5/cql/json.html                       |   315 -
 src/doc/3.11.5/cql/mvs.html                        |   241 -
 src/doc/3.11.5/cql/security.html                   |   704 --
 src/doc/3.11.5/cql/triggers.html                   |   153 -
 src/doc/3.11.5/cql/types.html                      |   697 --
 src/doc/3.11.5/data_modeling/index.html            |   104 -
 src/doc/3.11.5/development/code_style.html         |   208 -
 src/doc/3.11.5/development/how_to_commit.html      |   180 -
 src/doc/3.11.5/development/how_to_review.html      |   172 -
 src/doc/3.11.5/development/ide.html                |   234 -
 src/doc/3.11.5/development/index.html              |   142 -
 src/doc/3.11.5/development/patches.html            |   247 -
 src/doc/3.11.5/development/testing.html            |   171 -
 src/doc/3.11.5/faq/index.html                      |   315 -
 src/doc/3.11.5/genindex.html                       |    93 -
 src/doc/3.11.5/getting_started/configuring.html    |   158 -
 src/doc/3.11.5/getting_started/drivers.html        |   223 -
 src/doc/3.11.5/getting_started/index.html          |   146 -
 src/doc/3.11.5/getting_started/installing.html     |   196 -
 src/doc/3.11.5/getting_started/querying.html       |   144 -
 src/doc/3.11.5/index.html                          |    75 -
 src/doc/3.11.5/objects.inv                         |   Bin 7538 -> 0 bytes
 src/doc/3.11.5/operating/backups.html              |   123 -
 src/doc/3.11.5/operating/bloom_filters.html        |   160 -
 src/doc/3.11.5/operating/bulk_loading.html         |   123 -
 src/doc/3.11.5/operating/cdc.html                  |   186 -
 src/doc/3.11.5/operating/compaction.html           |   514 -
 src/doc/3.11.5/operating/compression.html          |   187 -
 src/doc/3.11.5/operating/hardware.html             |   189 -
 src/doc/3.11.5/operating/hints.html                |   123 -
 src/doc/3.11.5/operating/index.html                |   215 -
 src/doc/3.11.5/operating/metrics.html              |  1601 ---
 src/doc/3.11.5/operating/read_repair.html          |   123 -
 src/doc/3.11.5/operating/repair.html               |   123 -
 src/doc/3.11.5/operating/security.html             |   446 -
 src/doc/3.11.5/operating/snitch.html               |   176 -
 src/doc/3.11.5/operating/topo_changes.html         |   214 -
 src/doc/3.11.5/search.html                         |   103 -
 src/doc/3.11.5/searchindex.js                      |     1 -
 src/doc/3.11.5/tools/cqlsh.html                    |   481 -
 src/doc/3.11.5/tools/index.html                    |   111 -
 src/doc/3.11.5/tools/nodetool.html                 |   111 -
 src/doc/3.11.5/tools/nodetool/assassinate.html     |   129 -
 src/doc/3.11.5/tools/nodetool/bootstrap.html       |   128 -
 src/doc/3.11.5/tools/nodetool/cleanup.html         |   134 -
 src/doc/3.11.5/tools/nodetool/clearsnapshot.html   |   134 -
 src/doc/3.11.5/tools/nodetool/compact.html         |   146 -
 .../3.11.5/tools/nodetool/compactionhistory.html   |   124 -
 src/doc/3.11.5/tools/nodetool/compactionstats.html |   124 -
 src/doc/3.11.5/tools/nodetool/decommission.html    |   120 -
 src/doc/3.11.5/tools/nodetool/describecluster.html |   121 -
 src/doc/3.11.5/tools/nodetool/describering.html    |   128 -
 .../tools/nodetool/disableautocompaction.html      |   130 -
 src/doc/3.11.5/tools/nodetool/disablebackup.html   |   120 -
 src/doc/3.11.5/tools/nodetool/disablebinary.html   |   120 -
 src/doc/3.11.5/tools/nodetool/disablegossip.html   |   121 -
 src/doc/3.11.5/tools/nodetool/disablehandoff.html  |   120 -
 .../3.11.5/tools/nodetool/disablehintsfordc.html   |   129 -
 src/doc/3.11.5/tools/nodetool/disablethrift.html   |   120 -
 src/doc/3.11.5/tools/nodetool/drain.html           |   121 -
 .../tools/nodetool/enableautocompaction.html       |   130 -
 src/doc/3.11.5/tools/nodetool/enablebackup.html    |   120 -
 src/doc/3.11.5/tools/nodetool/enablebinary.html    |   120 -
 src/doc/3.11.5/tools/nodetool/enablegossip.html    |   120 -
 src/doc/3.11.5/tools/nodetool/enablehandoff.html   |   121 -
 .../3.11.5/tools/nodetool/enablehintsfordc.html    |   130 -
 src/doc/3.11.5/tools/nodetool/enablethrift.html    |   120 -
 src/doc/3.11.5/tools/nodetool/failuredetector.html |   121 -
 src/doc/3.11.5/tools/nodetool/flush.html           |   129 -
 src/doc/3.11.5/tools/nodetool/garbagecollect.html  |   139 -
 src/doc/3.11.5/tools/nodetool/gcstats.html         |   120 -
 .../tools/nodetool/getcompactionthreshold.html     |   130 -
 .../tools/nodetool/getcompactionthroughput.html    |   121 -
 .../tools/nodetool/getconcurrentcompactors.html    |   121 -
 src/doc/3.11.5/tools/nodetool/getendpoints.html    |   130 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   121 -
 .../3.11.5/tools/nodetool/getlogginglevels.html    |   120 -
 src/doc/3.11.5/tools/nodetool/getsstables.html     |   132 -
 .../3.11.5/tools/nodetool/getstreamthroughput.html |   121 -
 src/doc/3.11.5/tools/nodetool/gettimeout.html      |   130 -
 .../3.11.5/tools/nodetool/gettraceprobability.html |   120 -
 src/doc/3.11.5/tools/nodetool/gossipinfo.html      |   120 -
 src/doc/3.11.5/tools/nodetool/help.html            |   110 -
 src/doc/3.11.5/tools/nodetool/info.html            |   123 -
 .../tools/nodetool/invalidatecountercache.html     |   120 -
 .../3.11.5/tools/nodetool/invalidatekeycache.html  |   120 -
 .../3.11.5/tools/nodetool/invalidaterowcache.html  |   120 -
 src/doc/3.11.5/tools/nodetool/join.html            |   120 -
 src/doc/3.11.5/tools/nodetool/listsnapshots.html   |   121 -
 src/doc/3.11.5/tools/nodetool/move.html            |   128 -
 src/doc/3.11.5/tools/nodetool/netstats.html        |   125 -
 src/doc/3.11.5/tools/nodetool/nodetool.html        |   197 -
 src/doc/3.11.5/tools/nodetool/pausehandoff.html    |   120 -
 src/doc/3.11.5/tools/nodetool/proxyhistograms.html |   121 -
 src/doc/3.11.5/tools/nodetool/rangekeysample.html  |   121 -
 src/doc/3.11.5/tools/nodetool/rebuild.html         |   145 -
 src/doc/3.11.5/tools/nodetool/rebuild_index.html   |   130 -
 src/doc/3.11.5/tools/nodetool/refresh.html         |   130 -
 .../tools/nodetool/refreshsizeestimates.html       |   120 -
 .../3.11.5/tools/nodetool/reloadlocalschema.html   |   120 -
 src/doc/3.11.5/tools/nodetool/reloadtriggers.html  |   120 -
 .../3.11.5/tools/nodetool/relocatesstables.html    |   133 -
 src/doc/3.11.5/tools/nodetool/removenode.html      |   131 -
 src/doc/3.11.5/tools/nodetool/repair.html          |   177 -
 src/doc/3.11.5/tools/nodetool/replaybatchlog.html  |   120 -
 .../3.11.5/tools/nodetool/resetlocalschema.html    |   120 -
 src/doc/3.11.5/tools/nodetool/resumehandoff.html   |   120 -
 src/doc/3.11.5/tools/nodetool/ring.html            |   133 -
 src/doc/3.11.5/tools/nodetool/scrub.html           |   154 -
 .../3.11.5/tools/nodetool/setcachecapacity.html    |   130 -
 .../3.11.5/tools/nodetool/setcachekeystosave.html  |   132 -
 .../tools/nodetool/setcompactionthreshold.html     |   130 -
 .../tools/nodetool/setcompactionthroughput.html    |   130 -
 .../tools/nodetool/setconcurrentcompactors.html    |   130 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   130 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   130 -
 src/doc/3.11.5/tools/nodetool/setlogginglevel.html |   132 -
 .../3.11.5/tools/nodetool/setstreamthroughput.html |   130 -
 src/doc/3.11.5/tools/nodetool/settimeout.html      |   133 -
 .../3.11.5/tools/nodetool/settraceprobability.html |   131 -
 src/doc/3.11.5/tools/nodetool/snapshot.html        |   147 -
 src/doc/3.11.5/tools/nodetool/status.html          |   132 -
 src/doc/3.11.5/tools/nodetool/statusbackup.html    |   120 -
 src/doc/3.11.5/tools/nodetool/statusbinary.html    |   120 -
 src/doc/3.11.5/tools/nodetool/statusgossip.html    |   120 -
 src/doc/3.11.5/tools/nodetool/statushandoff.html   |   121 -
 src/doc/3.11.5/tools/nodetool/statusthrift.html    |   120 -
 src/doc/3.11.5/tools/nodetool/stop.html            |   136 -
 src/doc/3.11.5/tools/nodetool/stopdaemon.html      |   120 -
 src/doc/3.11.5/tools/nodetool/tablehistograms.html |   129 -
 src/doc/3.11.5/tools/nodetool/tablestats.html      |   139 -
 src/doc/3.11.5/tools/nodetool/toppartitions.html   |   140 -
 src/doc/3.11.5/tools/nodetool/tpstats.html         |   124 -
 src/doc/3.11.5/tools/nodetool/truncatehints.html   |   131 -
 src/doc/3.11.5/tools/nodetool/upgradesstables.html |   140 -
 src/doc/3.11.5/tools/nodetool/verify.html          |   132 -
 src/doc/3.11.5/tools/nodetool/version.html         |   120 -
 src/doc/3.11.5/tools/nodetool/viewbuildstatus.html |   129 -
 src/doc/3.11.5/troubleshooting/index.html          |   100 -
 src/doc/3.11.6/.buildinfo                          |     4 -
 src/doc/3.11.6/_images/eclipse_debug0.png          |   Bin 48174 -> 0 bytes
 src/doc/3.11.6/_images/eclipse_debug1.png          |   Bin 34446 -> 0 bytes
 src/doc/3.11.6/_images/eclipse_debug2.png          |   Bin 57032 -> 0 bytes
 src/doc/3.11.6/_images/eclipse_debug3.png          |   Bin 58677 -> 0 bytes
 src/doc/3.11.6/_images/eclipse_debug4.png          |   Bin 24793 -> 0 bytes
 src/doc/3.11.6/_images/eclipse_debug5.png          |   Bin 66632 -> 0 bytes
 src/doc/3.11.6/_images/eclipse_debug6.png          |   Bin 87568 -> 0 bytes
 .../3.11.6/_sources/architecture/dynamo.rst.txt    |   139 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 src/doc/3.11.6/_sources/architecture/index.rst.txt |    29 -
 .../3.11.6/_sources/architecture/overview.rst.txt  |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |    82 -
 src/doc/3.11.6/_sources/bugs.rst.txt               |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  1911 ----
 .../3.11.6/_sources/configuration/index.rst.txt    |    25 -
 src/doc/3.11.6/_sources/contactus.rst.txt          |    53 -
 src/doc/3.11.6/_sources/cql/appendices.rst.txt     |   330 -
 src/doc/3.11.6/_sources/cql/changes.rst.txt        |   204 -
 src/doc/3.11.6/_sources/cql/ddl.rst.txt            |   649 --
 src/doc/3.11.6/_sources/cql/definitions.rst.txt    |   232 -
 src/doc/3.11.6/_sources/cql/dml.rst.txt            |   522 -
 src/doc/3.11.6/_sources/cql/functions.rst.txt      |   558 -
 src/doc/3.11.6/_sources/cql/index.rst.txt          |    47 -
 src/doc/3.11.6/_sources/cql/indexes.rst.txt        |    83 -
 src/doc/3.11.6/_sources/cql/json.rst.txt           |   115 -
 src/doc/3.11.6/_sources/cql/mvs.rst.txt            |   166 -
 src/doc/3.11.6/_sources/cql/security.rst.txt       |   502 -
 src/doc/3.11.6/_sources/cql/triggers.rst.txt       |    63 -
 src/doc/3.11.6/_sources/cql/types.rst.txt          |   559 -
 .../3.11.6/_sources/data_modeling/index.rst.txt    |    20 -
 .../3.11.6/_sources/development/code_style.rst.txt |    94 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    71 -
 src/doc/3.11.6/_sources/development/ide.rst.txt    |   161 -
 src/doc/3.11.6/_sources/development/index.rst.txt  |    28 -
 .../3.11.6/_sources/development/patches.rst.txt    |   125 -
 .../3.11.6/_sources/development/testing.rst.txt    |    89 -
 src/doc/3.11.6/_sources/faq/index.rst.txt          |   298 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   107 -
 .../3.11.6/_sources/getting_started/index.rst.txt  |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/3.11.6/_sources/index.rst.txt              |    41 -
 src/doc/3.11.6/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../3.11.6/_sources/operating/bulk_loading.rst.txt |    24 -
 src/doc/3.11.6/_sources/operating/cdc.rst.txt      |    89 -
 .../3.11.6/_sources/operating/compaction.rst.txt   |   442 -
 .../3.11.6/_sources/operating/compression.rst.txt  |    94 -
 src/doc/3.11.6/_sources/operating/hardware.rst.txt |    87 -
 src/doc/3.11.6/_sources/operating/hints.rst.txt    |    22 -
 src/doc/3.11.6/_sources/operating/index.rst.txt    |    39 -
 src/doc/3.11.6/_sources/operating/metrics.rst.txt  |   706 --
 .../3.11.6/_sources/operating/read_repair.rst.txt  |    22 -
 src/doc/3.11.6/_sources/operating/repair.rst.txt   |    22 -
 src/doc/3.11.6/_sources/operating/security.rst.txt |   410 -
 src/doc/3.11.6/_sources/operating/snitch.rst.txt   |    78 -
 .../3.11.6/_sources/operating/topo_changes.rst.txt |   124 -
 src/doc/3.11.6/_sources/tools/cqlsh.rst.txt        |   455 -
 src/doc/3.11.6/_sources/tools/index.rst.txt        |    26 -
 src/doc/3.11.6/_sources/tools/nodetool.rst.txt     |    22 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../3.11.6/_sources/tools/nodetool/cleanup.rst.txt |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/compact.rst.txt |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../_sources/tools/nodetool/disablethrift.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/drain.rst.txt   |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../_sources/tools/nodetool/enablethrift.rst.txt   |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../3.11.6/_sources/tools/nodetool/flush.rst.txt   |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../3.11.6/_sources/tools/nodetool/gcstats.rst.txt |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../3.11.6/_sources/tools/nodetool/help.rst.txt    |    11 -
 .../3.11.6/_sources/tools/nodetool/info.rst.txt    |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../3.11.6/_sources/tools/nodetool/join.rst.txt    |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/move.rst.txt    |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   207 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../3.11.6/_sources/tools/nodetool/rebuild.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/refresh.rst.txt |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../3.11.6/_sources/tools/nodetool/repair.rst.txt  |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/ring.rst.txt    |    11 -
 .../3.11.6/_sources/tools/nodetool/scrub.rst.txt   |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../3.11.6/_sources/tools/nodetool/status.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusthrift.rst.txt   |    11 -
 .../3.11.6/_sources/tools/nodetool/stop.rst.txt    |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/tpstats.rst.txt |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../3.11.6/_sources/tools/nodetool/verify.rst.txt  |    11 -
 .../3.11.6/_sources/tools/nodetool/version.rst.txt |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../3.11.6/_sources/troubleshooting/index.rst.txt  |    20 -
 src/doc/3.11.6/_static/ajax-loader.gif             |   Bin 673 -> 0 bytes
 src/doc/3.11.6/_static/basic.css                   |   676 --
 src/doc/3.11.6/_static/comment-bright.png          |   Bin 756 -> 0 bytes
 src/doc/3.11.6/_static/comment-close.png           |   Bin 829 -> 0 bytes
 src/doc/3.11.6/_static/comment.png                 |   Bin 641 -> 0 bytes
 src/doc/3.11.6/_static/doctools.js                 |   315 -
 src/doc/3.11.6/_static/documentation_options.js    |    10 -
 src/doc/3.11.6/_static/down-pressed.png            |   Bin 222 -> 0 bytes
 src/doc/3.11.6/_static/down.png                    |   Bin 202 -> 0 bytes
 src/doc/3.11.6/_static/extra.css                   |    59 -
 src/doc/3.11.6/_static/file.png                    |   Bin 286 -> 0 bytes
 src/doc/3.11.6/_static/jquery-3.2.1.js             | 10253 -------------------
 src/doc/3.11.6/_static/jquery.js                   |     4 -
 src/doc/3.11.6/_static/language_data.js            |   297 -
 src/doc/3.11.6/_static/minus.png                   |   Bin 90 -> 0 bytes
 src/doc/3.11.6/_static/plus.png                    |   Bin 90 -> 0 bytes
 src/doc/3.11.6/_static/pygments.css                |    69 -
 src/doc/3.11.6/_static/searchtools.js              |   481 -
 src/doc/3.11.6/_static/underscore-1.3.1.js         |   999 --
 src/doc/3.11.6/_static/underscore.js               |    31 -
 src/doc/3.11.6/_static/up-pressed.png              |   Bin 214 -> 0 bytes
 src/doc/3.11.6/_static/up.png                      |   Bin 203 -> 0 bytes
 src/doc/3.11.6/_static/websupport.js               |   808 --
 src/doc/3.11.6/architecture/dynamo.html            |   218 -
 src/doc/3.11.6/architecture/guarantees.html        |   113 -
 src/doc/3.11.6/architecture/index.html             |   127 -
 src/doc/3.11.6/architecture/overview.html          |   113 -
 src/doc/3.11.6/architecture/storage_engine.html    |   164 -
 src/doc/3.11.6/bugs.html                           |   108 -
 .../configuration/cassandra_config_file.html       |  1826 ----
 src/doc/3.11.6/configuration/index.html            |   109 -
 src/doc/3.11.6/contactus.html                      |   127 -
 src/doc/3.11.6/cql/appendices.html                 |   565 -
 src/doc/3.11.6/cql/changes.html                    |   353 -
 src/doc/3.11.6/cql/ddl.html                        |   765 --
 src/doc/3.11.6/cql/definitions.html                |   312 -
 src/doc/3.11.6/cql/dml.html                        |   558 -
 src/doc/3.11.6/cql/functions.html                  |   666 --
 src/doc/3.11.6/cql/index.html                      |   239 -
 src/doc/3.11.6/cql/indexes.html                    |   168 -
 src/doc/3.11.6/cql/json.html                       |   315 -
 src/doc/3.11.6/cql/mvs.html                        |   241 -
 src/doc/3.11.6/cql/security.html                   |   704 --
 src/doc/3.11.6/cql/triggers.html                   |   153 -
 src/doc/3.11.6/cql/types.html                      |   697 --
 src/doc/3.11.6/data_modeling/index.html            |   104 -
 src/doc/3.11.6/development/code_style.html         |   208 -
 src/doc/3.11.6/development/how_to_commit.html      |   180 -
 src/doc/3.11.6/development/how_to_review.html      |   172 -
 src/doc/3.11.6/development/ide.html                |   234 -
 src/doc/3.11.6/development/index.html              |   142 -
 src/doc/3.11.6/development/patches.html            |   247 -
 src/doc/3.11.6/development/testing.html            |   171 -
 src/doc/3.11.6/faq/index.html                      |   315 -
 src/doc/3.11.6/genindex.html                       |    93 -
 src/doc/3.11.6/getting_started/configuring.html    |   158 -
 src/doc/3.11.6/getting_started/drivers.html        |   223 -
 src/doc/3.11.6/getting_started/index.html          |   146 -
 src/doc/3.11.6/getting_started/installing.html     |   196 -
 src/doc/3.11.6/getting_started/querying.html       |   144 -
 src/doc/3.11.6/index.html                          |    75 -
 src/doc/3.11.6/objects.inv                         |   Bin 7538 -> 0 bytes
 src/doc/3.11.6/operating/backups.html              |   123 -
 src/doc/3.11.6/operating/bloom_filters.html        |   160 -
 src/doc/3.11.6/operating/bulk_loading.html         |   123 -
 src/doc/3.11.6/operating/cdc.html                  |   186 -
 src/doc/3.11.6/operating/compaction.html           |   514 -
 src/doc/3.11.6/operating/compression.html          |   187 -
 src/doc/3.11.6/operating/hardware.html             |   189 -
 src/doc/3.11.6/operating/hints.html                |   123 -
 src/doc/3.11.6/operating/index.html                |   215 -
 src/doc/3.11.6/operating/metrics.html              |  1601 ---
 src/doc/3.11.6/operating/read_repair.html          |   123 -
 src/doc/3.11.6/operating/repair.html               |   123 -
 src/doc/3.11.6/operating/security.html             |   446 -
 src/doc/3.11.6/operating/snitch.html               |   176 -
 src/doc/3.11.6/operating/topo_changes.html         |   214 -
 src/doc/3.11.6/search.html                         |   103 -
 src/doc/3.11.6/searchindex.js                      |     1 -
 src/doc/3.11.6/tools/cqlsh.html                    |   481 -
 src/doc/3.11.6/tools/index.html                    |   111 -
 src/doc/3.11.6/tools/nodetool.html                 |   111 -
 src/doc/3.11.6/tools/nodetool/assassinate.html     |   129 -
 src/doc/3.11.6/tools/nodetool/bootstrap.html       |   128 -
 src/doc/3.11.6/tools/nodetool/cleanup.html         |   134 -
 src/doc/3.11.6/tools/nodetool/clearsnapshot.html   |   134 -
 src/doc/3.11.6/tools/nodetool/compact.html         |   146 -
 .../3.11.6/tools/nodetool/compactionhistory.html   |   124 -
 src/doc/3.11.6/tools/nodetool/compactionstats.html |   124 -
 src/doc/3.11.6/tools/nodetool/decommission.html    |   120 -
 src/doc/3.11.6/tools/nodetool/describecluster.html |   121 -
 src/doc/3.11.6/tools/nodetool/describering.html    |   128 -
 .../tools/nodetool/disableautocompaction.html      |   130 -
 src/doc/3.11.6/tools/nodetool/disablebackup.html   |   120 -
 src/doc/3.11.6/tools/nodetool/disablebinary.html   |   120 -
 src/doc/3.11.6/tools/nodetool/disablegossip.html   |   121 -
 src/doc/3.11.6/tools/nodetool/disablehandoff.html  |   120 -
 .../3.11.6/tools/nodetool/disablehintsfordc.html   |   129 -
 src/doc/3.11.6/tools/nodetool/disablethrift.html   |   120 -
 src/doc/3.11.6/tools/nodetool/drain.html           |   121 -
 .../tools/nodetool/enableautocompaction.html       |   130 -
 src/doc/3.11.6/tools/nodetool/enablebackup.html    |   120 -
 src/doc/3.11.6/tools/nodetool/enablebinary.html    |   120 -
 src/doc/3.11.6/tools/nodetool/enablegossip.html    |   120 -
 src/doc/3.11.6/tools/nodetool/enablehandoff.html   |   121 -
 .../3.11.6/tools/nodetool/enablehintsfordc.html    |   130 -
 src/doc/3.11.6/tools/nodetool/enablethrift.html    |   120 -
 src/doc/3.11.6/tools/nodetool/failuredetector.html |   121 -
 src/doc/3.11.6/tools/nodetool/flush.html           |   129 -
 src/doc/3.11.6/tools/nodetool/garbagecollect.html  |   139 -
 src/doc/3.11.6/tools/nodetool/gcstats.html         |   120 -
 .../tools/nodetool/getcompactionthreshold.html     |   130 -
 .../tools/nodetool/getcompactionthroughput.html    |   121 -
 .../tools/nodetool/getconcurrentcompactors.html    |   121 -
 src/doc/3.11.6/tools/nodetool/getendpoints.html    |   130 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   121 -
 .../3.11.6/tools/nodetool/getlogginglevels.html    |   120 -
 src/doc/3.11.6/tools/nodetool/getsstables.html     |   132 -
 .../3.11.6/tools/nodetool/getstreamthroughput.html |   121 -
 src/doc/3.11.6/tools/nodetool/gettimeout.html      |   130 -
 .../3.11.6/tools/nodetool/gettraceprobability.html |   120 -
 src/doc/3.11.6/tools/nodetool/gossipinfo.html      |   120 -
 src/doc/3.11.6/tools/nodetool/help.html            |   110 -
 src/doc/3.11.6/tools/nodetool/info.html            |   123 -
 .../tools/nodetool/invalidatecountercache.html     |   120 -
 .../3.11.6/tools/nodetool/invalidatekeycache.html  |   120 -
 .../3.11.6/tools/nodetool/invalidaterowcache.html  |   120 -
 src/doc/3.11.6/tools/nodetool/join.html            |   120 -
 src/doc/3.11.6/tools/nodetool/listsnapshots.html   |   121 -
 src/doc/3.11.6/tools/nodetool/move.html            |   128 -
 src/doc/3.11.6/tools/nodetool/netstats.html        |   125 -
 src/doc/3.11.6/tools/nodetool/nodetool.html        |   197 -
 src/doc/3.11.6/tools/nodetool/pausehandoff.html    |   120 -
 src/doc/3.11.6/tools/nodetool/proxyhistograms.html |   121 -
 src/doc/3.11.6/tools/nodetool/rangekeysample.html  |   121 -
 src/doc/3.11.6/tools/nodetool/rebuild.html         |   145 -
 src/doc/3.11.6/tools/nodetool/rebuild_index.html   |   130 -
 src/doc/3.11.6/tools/nodetool/refresh.html         |   130 -
 .../tools/nodetool/refreshsizeestimates.html       |   120 -
 .../3.11.6/tools/nodetool/reloadlocalschema.html   |   120 -
 src/doc/3.11.6/tools/nodetool/reloadtriggers.html  |   120 -
 .../3.11.6/tools/nodetool/relocatesstables.html    |   133 -
 src/doc/3.11.6/tools/nodetool/removenode.html      |   131 -
 src/doc/3.11.6/tools/nodetool/repair.html          |   177 -
 src/doc/3.11.6/tools/nodetool/replaybatchlog.html  |   120 -
 .../3.11.6/tools/nodetool/resetlocalschema.html    |   120 -
 src/doc/3.11.6/tools/nodetool/resumehandoff.html   |   120 -
 src/doc/3.11.6/tools/nodetool/ring.html            |   133 -
 src/doc/3.11.6/tools/nodetool/scrub.html           |   154 -
 .../3.11.6/tools/nodetool/setcachecapacity.html    |   130 -
 .../3.11.6/tools/nodetool/setcachekeystosave.html  |   132 -
 .../tools/nodetool/setcompactionthreshold.html     |   130 -
 .../tools/nodetool/setcompactionthroughput.html    |   130 -
 .../tools/nodetool/setconcurrentcompactors.html    |   130 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   130 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   130 -
 src/doc/3.11.6/tools/nodetool/setlogginglevel.html |   132 -
 .../3.11.6/tools/nodetool/setstreamthroughput.html |   130 -
 src/doc/3.11.6/tools/nodetool/settimeout.html      |   133 -
 .../3.11.6/tools/nodetool/settraceprobability.html |   131 -
 src/doc/3.11.6/tools/nodetool/snapshot.html        |   147 -
 src/doc/3.11.6/tools/nodetool/status.html          |   132 -
 src/doc/3.11.6/tools/nodetool/statusbackup.html    |   120 -
 src/doc/3.11.6/tools/nodetool/statusbinary.html    |   120 -
 src/doc/3.11.6/tools/nodetool/statusgossip.html    |   120 -
 src/doc/3.11.6/tools/nodetool/statushandoff.html   |   121 -
 src/doc/3.11.6/tools/nodetool/statusthrift.html    |   120 -
 src/doc/3.11.6/tools/nodetool/stop.html            |   137 -
 src/doc/3.11.6/tools/nodetool/stopdaemon.html      |   120 -
 src/doc/3.11.6/tools/nodetool/tablehistograms.html |   129 -
 src/doc/3.11.6/tools/nodetool/tablestats.html      |   139 -
 src/doc/3.11.6/tools/nodetool/toppartitions.html   |   140 -
 src/doc/3.11.6/tools/nodetool/tpstats.html         |   124 -
 src/doc/3.11.6/tools/nodetool/truncatehints.html   |   131 -
 src/doc/3.11.6/tools/nodetool/upgradesstables.html |   140 -
 src/doc/3.11.6/tools/nodetool/verify.html          |   132 -
 src/doc/3.11.6/tools/nodetool/version.html         |   120 -
 src/doc/3.11.6/tools/nodetool/viewbuildstatus.html |   129 -
 src/doc/3.11.6/troubleshooting/index.html          |   100 -
 src/doc/3.11.7/.buildinfo                          |     4 -
 src/doc/3.11.7/_images/eclipse_debug0.png          |   Bin 48174 -> 0 bytes
 src/doc/3.11.7/_images/eclipse_debug1.png          |   Bin 34446 -> 0 bytes
 src/doc/3.11.7/_images/eclipse_debug2.png          |   Bin 57032 -> 0 bytes
 src/doc/3.11.7/_images/eclipse_debug3.png          |   Bin 58677 -> 0 bytes
 src/doc/3.11.7/_images/eclipse_debug4.png          |   Bin 24793 -> 0 bytes
 src/doc/3.11.7/_images/eclipse_debug5.png          |   Bin 66632 -> 0 bytes
 src/doc/3.11.7/_images/eclipse_debug6.png          |   Bin 87568 -> 0 bytes
 .../3.11.7/_sources/architecture/dynamo.rst.txt    |   139 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 src/doc/3.11.7/_sources/architecture/index.rst.txt |    29 -
 .../3.11.7/_sources/architecture/overview.rst.txt  |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |    82 -
 src/doc/3.11.7/_sources/bugs.rst.txt               |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  1911 ----
 .../3.11.7/_sources/configuration/index.rst.txt    |    25 -
 src/doc/3.11.7/_sources/contactus.rst.txt          |    53 -
 src/doc/3.11.7/_sources/cql/appendices.rst.txt     |   330 -
 src/doc/3.11.7/_sources/cql/changes.rst.txt        |   204 -
 src/doc/3.11.7/_sources/cql/ddl.rst.txt            |   649 --
 src/doc/3.11.7/_sources/cql/definitions.rst.txt    |   232 -
 src/doc/3.11.7/_sources/cql/dml.rst.txt            |   522 -
 src/doc/3.11.7/_sources/cql/functions.rst.txt      |   558 -
 src/doc/3.11.7/_sources/cql/index.rst.txt          |    47 -
 src/doc/3.11.7/_sources/cql/indexes.rst.txt        |    83 -
 src/doc/3.11.7/_sources/cql/json.rst.txt           |   115 -
 src/doc/3.11.7/_sources/cql/mvs.rst.txt            |   166 -
 src/doc/3.11.7/_sources/cql/security.rst.txt       |   502 -
 src/doc/3.11.7/_sources/cql/triggers.rst.txt       |    63 -
 src/doc/3.11.7/_sources/cql/types.rst.txt          |   559 -
 .../3.11.7/_sources/data_modeling/index.rst.txt    |    20 -
 .../3.11.7/_sources/development/code_style.rst.txt |    94 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    71 -
 src/doc/3.11.7/_sources/development/ide.rst.txt    |   161 -
 src/doc/3.11.7/_sources/development/index.rst.txt  |    28 -
 .../3.11.7/_sources/development/patches.rst.txt    |   125 -
 .../3.11.7/_sources/development/testing.rst.txt    |    89 -
 src/doc/3.11.7/_sources/faq/index.rst.txt          |   298 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   107 -
 .../3.11.7/_sources/getting_started/index.rst.txt  |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/3.11.7/_sources/index.rst.txt              |    41 -
 src/doc/3.11.7/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../3.11.7/_sources/operating/bulk_loading.rst.txt |    24 -
 src/doc/3.11.7/_sources/operating/cdc.rst.txt      |    89 -
 .../3.11.7/_sources/operating/compaction.rst.txt   |   442 -
 .../3.11.7/_sources/operating/compression.rst.txt  |    94 -
 src/doc/3.11.7/_sources/operating/hardware.rst.txt |    87 -
 src/doc/3.11.7/_sources/operating/hints.rst.txt    |    22 -
 src/doc/3.11.7/_sources/operating/index.rst.txt    |    39 -
 src/doc/3.11.7/_sources/operating/metrics.rst.txt  |   706 --
 .../3.11.7/_sources/operating/read_repair.rst.txt  |    22 -
 src/doc/3.11.7/_sources/operating/repair.rst.txt   |    22 -
 src/doc/3.11.7/_sources/operating/security.rst.txt |   410 -
 src/doc/3.11.7/_sources/operating/snitch.rst.txt   |    78 -
 .../3.11.7/_sources/operating/topo_changes.rst.txt |   124 -
 src/doc/3.11.7/_sources/tools/cqlsh.rst.txt        |   455 -
 src/doc/3.11.7/_sources/tools/index.rst.txt        |    26 -
 src/doc/3.11.7/_sources/tools/nodetool.rst.txt     |    22 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../3.11.7/_sources/tools/nodetool/cleanup.rst.txt |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/compact.rst.txt |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../_sources/tools/nodetool/disablethrift.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/drain.rst.txt   |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../_sources/tools/nodetool/enablethrift.rst.txt   |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../3.11.7/_sources/tools/nodetool/flush.rst.txt   |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../3.11.7/_sources/tools/nodetool/gcstats.rst.txt |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../3.11.7/_sources/tools/nodetool/help.rst.txt    |    11 -
 .../3.11.7/_sources/tools/nodetool/info.rst.txt    |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../3.11.7/_sources/tools/nodetool/join.rst.txt    |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/move.rst.txt    |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   207 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../3.11.7/_sources/tools/nodetool/rebuild.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/refresh.rst.txt |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../3.11.7/_sources/tools/nodetool/repair.rst.txt  |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/ring.rst.txt    |    11 -
 .../3.11.7/_sources/tools/nodetool/scrub.rst.txt   |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../3.11.7/_sources/tools/nodetool/status.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusthrift.rst.txt   |    11 -
 .../3.11.7/_sources/tools/nodetool/stop.rst.txt    |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/tpstats.rst.txt |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../3.11.7/_sources/tools/nodetool/verify.rst.txt  |    11 -
 .../3.11.7/_sources/tools/nodetool/version.rst.txt |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../3.11.7/_sources/troubleshooting/index.rst.txt  |    20 -
 src/doc/3.11.7/_static/ajax-loader.gif             |   Bin 673 -> 0 bytes
 src/doc/3.11.7/_static/basic.css                   |   676 --
 src/doc/3.11.7/_static/comment-bright.png          |   Bin 756 -> 0 bytes
 src/doc/3.11.7/_static/comment-close.png           |   Bin 829 -> 0 bytes
 src/doc/3.11.7/_static/comment.png                 |   Bin 641 -> 0 bytes
 src/doc/3.11.7/_static/doctools.js                 |   315 -
 src/doc/3.11.7/_static/documentation_options.js    |    10 -
 src/doc/3.11.7/_static/down-pressed.png            |   Bin 222 -> 0 bytes
 src/doc/3.11.7/_static/down.png                    |   Bin 202 -> 0 bytes
 src/doc/3.11.7/_static/extra.css                   |    59 -
 src/doc/3.11.7/_static/file.png                    |   Bin 286 -> 0 bytes
 src/doc/3.11.7/_static/jquery-3.2.1.js             | 10253 -------------------
 src/doc/3.11.7/_static/jquery.js                   |     4 -
 src/doc/3.11.7/_static/language_data.js            |   297 -
 src/doc/3.11.7/_static/minus.png                   |   Bin 90 -> 0 bytes
 src/doc/3.11.7/_static/plus.png                    |   Bin 90 -> 0 bytes
 src/doc/3.11.7/_static/pygments.css                |    69 -
 src/doc/3.11.7/_static/searchtools.js              |   481 -
 src/doc/3.11.7/_static/underscore-1.3.1.js         |   999 --
 src/doc/3.11.7/_static/underscore.js               |    31 -
 src/doc/3.11.7/_static/up-pressed.png              |   Bin 214 -> 0 bytes
 src/doc/3.11.7/_static/up.png                      |   Bin 203 -> 0 bytes
 src/doc/3.11.7/_static/websupport.js               |   808 --
 src/doc/3.11.7/architecture/dynamo.html            |   218 -
 src/doc/3.11.7/architecture/guarantees.html        |   113 -
 src/doc/3.11.7/architecture/index.html             |   127 -
 src/doc/3.11.7/architecture/overview.html          |   113 -
 src/doc/3.11.7/architecture/storage_engine.html    |   164 -
 src/doc/3.11.7/bugs.html                           |   108 -
 .../configuration/cassandra_config_file.html       |  1826 ----
 src/doc/3.11.7/configuration/index.html            |   109 -
 src/doc/3.11.7/contactus.html                      |   127 -
 src/doc/3.11.7/cql/appendices.html                 |   565 -
 src/doc/3.11.7/cql/changes.html                    |   353 -
 src/doc/3.11.7/cql/ddl.html                        |   765 --
 src/doc/3.11.7/cql/definitions.html                |   312 -
 src/doc/3.11.7/cql/dml.html                        |   558 -
 src/doc/3.11.7/cql/functions.html                  |   666 --
 src/doc/3.11.7/cql/index.html                      |   239 -
 src/doc/3.11.7/cql/indexes.html                    |   168 -
 src/doc/3.11.7/cql/json.html                       |   315 -
 src/doc/3.11.7/cql/mvs.html                        |   241 -
 src/doc/3.11.7/cql/security.html                   |   704 --
 src/doc/3.11.7/cql/triggers.html                   |   153 -
 src/doc/3.11.7/cql/types.html                      |   697 --
 src/doc/3.11.7/data_modeling/index.html            |   104 -
 src/doc/3.11.7/development/code_style.html         |   208 -
 src/doc/3.11.7/development/how_to_commit.html      |   180 -
 src/doc/3.11.7/development/how_to_review.html      |   172 -
 src/doc/3.11.7/development/ide.html                |   234 -
 src/doc/3.11.7/development/index.html              |   142 -
 src/doc/3.11.7/development/patches.html            |   247 -
 src/doc/3.11.7/development/testing.html            |   171 -
 src/doc/3.11.7/faq/index.html                      |   315 -
 src/doc/3.11.7/genindex.html                       |    93 -
 src/doc/3.11.7/getting_started/configuring.html    |   158 -
 src/doc/3.11.7/getting_started/drivers.html        |   223 -
 src/doc/3.11.7/getting_started/index.html          |   146 -
 src/doc/3.11.7/getting_started/installing.html     |   196 -
 src/doc/3.11.7/getting_started/querying.html       |   144 -
 src/doc/3.11.7/index.html                          |    75 -
 src/doc/3.11.7/objects.inv                         |   Bin 7538 -> 0 bytes
 src/doc/3.11.7/operating/backups.html              |   123 -
 src/doc/3.11.7/operating/bloom_filters.html        |   160 -
 src/doc/3.11.7/operating/bulk_loading.html         |   123 -
 src/doc/3.11.7/operating/cdc.html                  |   186 -
 src/doc/3.11.7/operating/compaction.html           |   514 -
 src/doc/3.11.7/operating/compression.html          |   187 -
 src/doc/3.11.7/operating/hardware.html             |   189 -
 src/doc/3.11.7/operating/hints.html                |   123 -
 src/doc/3.11.7/operating/index.html                |   215 -
 src/doc/3.11.7/operating/metrics.html              |  1601 ---
 src/doc/3.11.7/operating/read_repair.html          |   123 -
 src/doc/3.11.7/operating/repair.html               |   123 -
 src/doc/3.11.7/operating/security.html             |   446 -
 src/doc/3.11.7/operating/snitch.html               |   176 -
 src/doc/3.11.7/operating/topo_changes.html         |   214 -
 src/doc/3.11.7/search.html                         |   103 -
 src/doc/3.11.7/searchindex.js                      |     1 -
 src/doc/3.11.7/tools/cqlsh.html                    |   481 -
 src/doc/3.11.7/tools/index.html                    |   111 -
 src/doc/3.11.7/tools/nodetool.html                 |   111 -
 src/doc/3.11.7/tools/nodetool/assassinate.html     |   129 -
 src/doc/3.11.7/tools/nodetool/bootstrap.html       |   128 -
 src/doc/3.11.7/tools/nodetool/cleanup.html         |   134 -
 src/doc/3.11.7/tools/nodetool/clearsnapshot.html   |   134 -
 src/doc/3.11.7/tools/nodetool/compact.html         |   146 -
 .../3.11.7/tools/nodetool/compactionhistory.html   |   124 -
 src/doc/3.11.7/tools/nodetool/compactionstats.html |   124 -
 src/doc/3.11.7/tools/nodetool/decommission.html    |   120 -
 src/doc/3.11.7/tools/nodetool/describecluster.html |   121 -
 src/doc/3.11.7/tools/nodetool/describering.html    |   128 -
 .../tools/nodetool/disableautocompaction.html      |   130 -
 src/doc/3.11.7/tools/nodetool/disablebackup.html   |   120 -
 src/doc/3.11.7/tools/nodetool/disablebinary.html   |   120 -
 src/doc/3.11.7/tools/nodetool/disablegossip.html   |   121 -
 src/doc/3.11.7/tools/nodetool/disablehandoff.html  |   120 -
 .../3.11.7/tools/nodetool/disablehintsfordc.html   |   129 -
 src/doc/3.11.7/tools/nodetool/disablethrift.html   |   120 -
 src/doc/3.11.7/tools/nodetool/drain.html           |   121 -
 .../tools/nodetool/enableautocompaction.html       |   130 -
 src/doc/3.11.7/tools/nodetool/enablebackup.html    |   120 -
 src/doc/3.11.7/tools/nodetool/enablebinary.html    |   120 -
 src/doc/3.11.7/tools/nodetool/enablegossip.html    |   120 -
 src/doc/3.11.7/tools/nodetool/enablehandoff.html   |   121 -
 .../3.11.7/tools/nodetool/enablehintsfordc.html    |   130 -
 src/doc/3.11.7/tools/nodetool/enablethrift.html    |   120 -
 src/doc/3.11.7/tools/nodetool/failuredetector.html |   121 -
 src/doc/3.11.7/tools/nodetool/flush.html           |   129 -
 src/doc/3.11.7/tools/nodetool/garbagecollect.html  |   139 -
 src/doc/3.11.7/tools/nodetool/gcstats.html         |   120 -
 .../tools/nodetool/getcompactionthreshold.html     |   130 -
 .../tools/nodetool/getcompactionthroughput.html    |   121 -
 .../tools/nodetool/getconcurrentcompactors.html    |   121 -
 src/doc/3.11.7/tools/nodetool/getendpoints.html    |   130 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   121 -
 .../3.11.7/tools/nodetool/getlogginglevels.html    |   120 -
 src/doc/3.11.7/tools/nodetool/getsstables.html     |   132 -
 .../3.11.7/tools/nodetool/getstreamthroughput.html |   121 -
 src/doc/3.11.7/tools/nodetool/gettimeout.html      |   130 -
 .../3.11.7/tools/nodetool/gettraceprobability.html |   120 -
 src/doc/3.11.7/tools/nodetool/gossipinfo.html      |   120 -
 src/doc/3.11.7/tools/nodetool/help.html            |   110 -
 src/doc/3.11.7/tools/nodetool/info.html            |   123 -
 .../tools/nodetool/invalidatecountercache.html     |   120 -
 .../3.11.7/tools/nodetool/invalidatekeycache.html  |   120 -
 .../3.11.7/tools/nodetool/invalidaterowcache.html  |   120 -
 src/doc/3.11.7/tools/nodetool/join.html            |   120 -
 src/doc/3.11.7/tools/nodetool/listsnapshots.html   |   121 -
 src/doc/3.11.7/tools/nodetool/move.html            |   128 -
 src/doc/3.11.7/tools/nodetool/netstats.html        |   125 -
 src/doc/3.11.7/tools/nodetool/nodetool.html        |   197 -
 src/doc/3.11.7/tools/nodetool/pausehandoff.html    |   120 -
 src/doc/3.11.7/tools/nodetool/proxyhistograms.html |   121 -
 src/doc/3.11.7/tools/nodetool/rangekeysample.html  |   121 -
 src/doc/3.11.7/tools/nodetool/rebuild.html         |   145 -
 src/doc/3.11.7/tools/nodetool/rebuild_index.html   |   130 -
 src/doc/3.11.7/tools/nodetool/refresh.html         |   130 -
 .../tools/nodetool/refreshsizeestimates.html       |   120 -
 .../3.11.7/tools/nodetool/reloadlocalschema.html   |   120 -
 src/doc/3.11.7/tools/nodetool/reloadtriggers.html  |   120 -
 .../3.11.7/tools/nodetool/relocatesstables.html    |   133 -
 src/doc/3.11.7/tools/nodetool/removenode.html      |   131 -
 src/doc/3.11.7/tools/nodetool/repair.html          |   177 -
 src/doc/3.11.7/tools/nodetool/replaybatchlog.html  |   120 -
 .../3.11.7/tools/nodetool/resetlocalschema.html    |   120 -
 src/doc/3.11.7/tools/nodetool/resumehandoff.html   |   120 -
 src/doc/3.11.7/tools/nodetool/ring.html            |   133 -
 src/doc/3.11.7/tools/nodetool/scrub.html           |   154 -
 .../3.11.7/tools/nodetool/setcachecapacity.html    |   130 -
 .../3.11.7/tools/nodetool/setcachekeystosave.html  |   132 -
 .../tools/nodetool/setcompactionthreshold.html     |   130 -
 .../tools/nodetool/setcompactionthroughput.html    |   130 -
 .../tools/nodetool/setconcurrentcompactors.html    |   130 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   130 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   130 -
 src/doc/3.11.7/tools/nodetool/setlogginglevel.html |   132 -
 .../3.11.7/tools/nodetool/setstreamthroughput.html |   130 -
 src/doc/3.11.7/tools/nodetool/settimeout.html      |   133 -
 .../3.11.7/tools/nodetool/settraceprobability.html |   131 -
 src/doc/3.11.7/tools/nodetool/snapshot.html        |   147 -
 src/doc/3.11.7/tools/nodetool/status.html          |   132 -
 src/doc/3.11.7/tools/nodetool/statusbackup.html    |   120 -
 src/doc/3.11.7/tools/nodetool/statusbinary.html    |   120 -
 src/doc/3.11.7/tools/nodetool/statusgossip.html    |   120 -
 src/doc/3.11.7/tools/nodetool/statushandoff.html   |   121 -
 src/doc/3.11.7/tools/nodetool/statusthrift.html    |   120 -
 src/doc/3.11.7/tools/nodetool/stop.html            |   137 -
 src/doc/3.11.7/tools/nodetool/stopdaemon.html      |   120 -
 src/doc/3.11.7/tools/nodetool/tablehistograms.html |   129 -
 src/doc/3.11.7/tools/nodetool/tablestats.html      |   139 -
 src/doc/3.11.7/tools/nodetool/toppartitions.html   |   140 -
 src/doc/3.11.7/tools/nodetool/tpstats.html         |   124 -
 src/doc/3.11.7/tools/nodetool/truncatehints.html   |   131 -
 src/doc/3.11.7/tools/nodetool/upgradesstables.html |   140 -
 src/doc/3.11.7/tools/nodetool/verify.html          |   132 -
 src/doc/3.11.7/tools/nodetool/version.html         |   120 -
 src/doc/3.11.7/tools/nodetool/viewbuildstatus.html |   129 -
 src/doc/3.11.7/troubleshooting/index.html          |   100 -
 src/doc/3.11.8/.buildinfo                          |     4 -
 src/doc/3.11.8/_images/eclipse_debug0.png          |   Bin 48174 -> 0 bytes
 src/doc/3.11.8/_images/eclipse_debug1.png          |   Bin 34446 -> 0 bytes
 src/doc/3.11.8/_images/eclipse_debug2.png          |   Bin 57032 -> 0 bytes
 src/doc/3.11.8/_images/eclipse_debug3.png          |   Bin 58677 -> 0 bytes
 src/doc/3.11.8/_images/eclipse_debug4.png          |   Bin 24793 -> 0 bytes
 src/doc/3.11.8/_images/eclipse_debug5.png          |   Bin 66632 -> 0 bytes
 src/doc/3.11.8/_images/eclipse_debug6.png          |   Bin 87568 -> 0 bytes
 .../3.11.8/_sources/architecture/dynamo.rst.txt    |   139 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 src/doc/3.11.8/_sources/architecture/index.rst.txt |    29 -
 .../3.11.8/_sources/architecture/overview.rst.txt  |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |    82 -
 src/doc/3.11.8/_sources/bugs.rst.txt               |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  1920 ----
 .../3.11.8/_sources/configuration/index.rst.txt    |    25 -
 src/doc/3.11.8/_sources/contactus.rst.txt          |    53 -
 src/doc/3.11.8/_sources/cql/appendices.rst.txt     |   330 -
 src/doc/3.11.8/_sources/cql/changes.rst.txt        |   204 -
 src/doc/3.11.8/_sources/cql/ddl.rst.txt            |   649 --
 src/doc/3.11.8/_sources/cql/definitions.rst.txt    |   232 -
 src/doc/3.11.8/_sources/cql/dml.rst.txt            |   522 -
 src/doc/3.11.8/_sources/cql/functions.rst.txt      |   558 -
 src/doc/3.11.8/_sources/cql/index.rst.txt          |    47 -
 src/doc/3.11.8/_sources/cql/indexes.rst.txt        |    83 -
 src/doc/3.11.8/_sources/cql/json.rst.txt           |   115 -
 src/doc/3.11.8/_sources/cql/mvs.rst.txt            |   166 -
 src/doc/3.11.8/_sources/cql/security.rst.txt       |   502 -
 src/doc/3.11.8/_sources/cql/triggers.rst.txt       |    63 -
 src/doc/3.11.8/_sources/cql/types.rst.txt          |   559 -
 .../3.11.8/_sources/data_modeling/index.rst.txt    |    20 -
 .../3.11.8/_sources/development/code_style.rst.txt |    94 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    71 -
 src/doc/3.11.8/_sources/development/ide.rst.txt    |   161 -
 src/doc/3.11.8/_sources/development/index.rst.txt  |    28 -
 .../3.11.8/_sources/development/patches.rst.txt    |   125 -
 .../3.11.8/_sources/development/testing.rst.txt    |    89 -
 src/doc/3.11.8/_sources/faq/index.rst.txt          |   298 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   107 -
 .../3.11.8/_sources/getting_started/index.rst.txt  |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/3.11.8/_sources/index.rst.txt              |    41 -
 src/doc/3.11.8/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../3.11.8/_sources/operating/bulk_loading.rst.txt |    24 -
 src/doc/3.11.8/_sources/operating/cdc.rst.txt      |    89 -
 .../3.11.8/_sources/operating/compaction.rst.txt   |   442 -
 .../3.11.8/_sources/operating/compression.rst.txt  |    94 -
 src/doc/3.11.8/_sources/operating/hardware.rst.txt |    87 -
 src/doc/3.11.8/_sources/operating/hints.rst.txt    |    22 -
 src/doc/3.11.8/_sources/operating/index.rst.txt    |    39 -
 src/doc/3.11.8/_sources/operating/metrics.rst.txt  |   710 --
 .../3.11.8/_sources/operating/read_repair.rst.txt  |    22 -
 src/doc/3.11.8/_sources/operating/repair.rst.txt   |    22 -
 src/doc/3.11.8/_sources/operating/security.rst.txt |   410 -
 src/doc/3.11.8/_sources/operating/snitch.rst.txt   |    78 -
 .../3.11.8/_sources/operating/topo_changes.rst.txt |   124 -
 src/doc/3.11.8/_sources/tools/cqlsh.rst.txt        |   455 -
 src/doc/3.11.8/_sources/tools/index.rst.txt        |    26 -
 src/doc/3.11.8/_sources/tools/nodetool.rst.txt     |    22 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../3.11.8/_sources/tools/nodetool/cleanup.rst.txt |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/compact.rst.txt |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../_sources/tools/nodetool/disablethrift.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/drain.rst.txt   |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../_sources/tools/nodetool/enablethrift.rst.txt   |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../3.11.8/_sources/tools/nodetool/flush.rst.txt   |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../3.11.8/_sources/tools/nodetool/gcstats.rst.txt |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../3.11.8/_sources/tools/nodetool/help.rst.txt    |    11 -
 .../3.11.8/_sources/tools/nodetool/info.rst.txt    |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../3.11.8/_sources/tools/nodetool/join.rst.txt    |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/move.rst.txt    |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   207 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../3.11.8/_sources/tools/nodetool/rebuild.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/refresh.rst.txt |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../3.11.8/_sources/tools/nodetool/repair.rst.txt  |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/ring.rst.txt    |    11 -
 .../3.11.8/_sources/tools/nodetool/scrub.rst.txt   |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../3.11.8/_sources/tools/nodetool/status.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusthrift.rst.txt   |    11 -
 .../3.11.8/_sources/tools/nodetool/stop.rst.txt    |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/tpstats.rst.txt |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../3.11.8/_sources/tools/nodetool/verify.rst.txt  |    11 -
 .../3.11.8/_sources/tools/nodetool/version.rst.txt |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../3.11.8/_sources/troubleshooting/index.rst.txt  |    20 -
 src/doc/3.11.8/_static/ajax-loader.gif             |   Bin 673 -> 0 bytes
 src/doc/3.11.8/_static/basic.css                   |   676 --
 src/doc/3.11.8/_static/comment-bright.png          |   Bin 756 -> 0 bytes
 src/doc/3.11.8/_static/comment-close.png           |   Bin 829 -> 0 bytes
 src/doc/3.11.8/_static/comment.png                 |   Bin 641 -> 0 bytes
 src/doc/3.11.8/_static/doctools.js                 |   315 -
 src/doc/3.11.8/_static/documentation_options.js    |    10 -
 src/doc/3.11.8/_static/down-pressed.png            |   Bin 222 -> 0 bytes
 src/doc/3.11.8/_static/down.png                    |   Bin 202 -> 0 bytes
 src/doc/3.11.8/_static/extra.css                   |    59 -
 src/doc/3.11.8/_static/file.png                    |   Bin 286 -> 0 bytes
 src/doc/3.11.8/_static/jquery-3.2.1.js             | 10253 -------------------
 src/doc/3.11.8/_static/jquery.js                   |     4 -
 src/doc/3.11.8/_static/language_data.js            |   297 -
 src/doc/3.11.8/_static/minus.png                   |   Bin 90 -> 0 bytes
 src/doc/3.11.8/_static/plus.png                    |   Bin 90 -> 0 bytes
 src/doc/3.11.8/_static/pygments.css                |    69 -
 src/doc/3.11.8/_static/searchtools.js              |   481 -
 src/doc/3.11.8/_static/underscore-1.3.1.js         |   999 --
 src/doc/3.11.8/_static/underscore.js               |    31 -
 src/doc/3.11.8/_static/up-pressed.png              |   Bin 214 -> 0 bytes
 src/doc/3.11.8/_static/up.png                      |   Bin 203 -> 0 bytes
 src/doc/3.11.8/_static/websupport.js               |   808 --
 src/doc/3.11.8/architecture/dynamo.html            |   218 -
 src/doc/3.11.8/architecture/guarantees.html        |   113 -
 src/doc/3.11.8/architecture/index.html             |   127 -
 src/doc/3.11.8/architecture/overview.html          |   113 -
 src/doc/3.11.8/architecture/storage_engine.html    |   164 -
 src/doc/3.11.8/bugs.html                           |   108 -
 .../configuration/cassandra_config_file.html       |  1835 ----
 src/doc/3.11.8/configuration/index.html            |   109 -
 src/doc/3.11.8/contactus.html                      |   127 -
 src/doc/3.11.8/cql/appendices.html                 |   565 -
 src/doc/3.11.8/cql/changes.html                    |   353 -
 src/doc/3.11.8/cql/ddl.html                        |   765 --
 src/doc/3.11.8/cql/definitions.html                |   312 -
 src/doc/3.11.8/cql/dml.html                        |   558 -
 src/doc/3.11.8/cql/functions.html                  |   666 --
 src/doc/3.11.8/cql/index.html                      |   239 -
 src/doc/3.11.8/cql/indexes.html                    |   168 -
 src/doc/3.11.8/cql/json.html                       |   315 -
 src/doc/3.11.8/cql/mvs.html                        |   241 -
 src/doc/3.11.8/cql/security.html                   |   704 --
 src/doc/3.11.8/cql/triggers.html                   |   153 -
 src/doc/3.11.8/cql/types.html                      |   697 --
 src/doc/3.11.8/data_modeling/index.html            |   104 -
 src/doc/3.11.8/development/code_style.html         |   208 -
 src/doc/3.11.8/development/how_to_commit.html      |   180 -
 src/doc/3.11.8/development/how_to_review.html      |   172 -
 src/doc/3.11.8/development/ide.html                |   234 -
 src/doc/3.11.8/development/index.html              |   142 -
 src/doc/3.11.8/development/patches.html            |   247 -
 src/doc/3.11.8/development/testing.html            |   171 -
 src/doc/3.11.8/faq/index.html                      |   315 -
 src/doc/3.11.8/genindex.html                       |    93 -
 src/doc/3.11.8/getting_started/configuring.html    |   158 -
 src/doc/3.11.8/getting_started/drivers.html        |   223 -
 src/doc/3.11.8/getting_started/index.html          |   146 -
 src/doc/3.11.8/getting_started/installing.html     |   196 -
 src/doc/3.11.8/getting_started/querying.html       |   144 -
 src/doc/3.11.8/index.html                          |    75 -
 src/doc/3.11.8/objects.inv                         |   Bin 7538 -> 0 bytes
 src/doc/3.11.8/operating/backups.html              |   123 -
 src/doc/3.11.8/operating/bloom_filters.html        |   160 -
 src/doc/3.11.8/operating/bulk_loading.html         |   123 -
 src/doc/3.11.8/operating/cdc.html                  |   186 -
 src/doc/3.11.8/operating/compaction.html           |   514 -
 src/doc/3.11.8/operating/compression.html          |   187 -
 src/doc/3.11.8/operating/hardware.html             |   189 -
 src/doc/3.11.8/operating/hints.html                |   123 -
 src/doc/3.11.8/operating/index.html                |   215 -
 src/doc/3.11.8/operating/metrics.html              |  1382 ---
 src/doc/3.11.8/operating/read_repair.html          |   123 -
 src/doc/3.11.8/operating/repair.html               |   123 -
 src/doc/3.11.8/operating/security.html             |   446 -
 src/doc/3.11.8/operating/snitch.html               |   176 -
 src/doc/3.11.8/operating/topo_changes.html         |   214 -
 src/doc/3.11.8/search.html                         |   103 -
 src/doc/3.11.8/searchindex.js                      |     1 -
 src/doc/3.11.8/tools/cqlsh.html                    |   481 -
 src/doc/3.11.8/tools/index.html                    |   111 -
 src/doc/3.11.8/tools/nodetool.html                 |   111 -
 src/doc/3.11.8/tools/nodetool/assassinate.html     |   129 -
 src/doc/3.11.8/tools/nodetool/bootstrap.html       |   128 -
 src/doc/3.11.8/tools/nodetool/cleanup.html         |   134 -
 src/doc/3.11.8/tools/nodetool/clearsnapshot.html   |   134 -
 src/doc/3.11.8/tools/nodetool/compact.html         |   146 -
 .../3.11.8/tools/nodetool/compactionhistory.html   |   124 -
 src/doc/3.11.8/tools/nodetool/compactionstats.html |   124 -
 src/doc/3.11.8/tools/nodetool/decommission.html    |   120 -
 src/doc/3.11.8/tools/nodetool/describecluster.html |   121 -
 src/doc/3.11.8/tools/nodetool/describering.html    |   128 -
 .../tools/nodetool/disableautocompaction.html      |   130 -
 src/doc/3.11.8/tools/nodetool/disablebackup.html   |   120 -
 src/doc/3.11.8/tools/nodetool/disablebinary.html   |   120 -
 src/doc/3.11.8/tools/nodetool/disablegossip.html   |   121 -
 src/doc/3.11.8/tools/nodetool/disablehandoff.html  |   120 -
 .../3.11.8/tools/nodetool/disablehintsfordc.html   |   129 -
 src/doc/3.11.8/tools/nodetool/disablethrift.html   |   120 -
 src/doc/3.11.8/tools/nodetool/drain.html           |   121 -
 .../tools/nodetool/enableautocompaction.html       |   130 -
 src/doc/3.11.8/tools/nodetool/enablebackup.html    |   120 -
 src/doc/3.11.8/tools/nodetool/enablebinary.html    |   120 -
 src/doc/3.11.8/tools/nodetool/enablegossip.html    |   120 -
 src/doc/3.11.8/tools/nodetool/enablehandoff.html   |   121 -
 .../3.11.8/tools/nodetool/enablehintsfordc.html    |   130 -
 src/doc/3.11.8/tools/nodetool/enablethrift.html    |   120 -
 src/doc/3.11.8/tools/nodetool/failuredetector.html |   121 -
 src/doc/3.11.8/tools/nodetool/flush.html           |   129 -
 src/doc/3.11.8/tools/nodetool/garbagecollect.html  |   139 -
 src/doc/3.11.8/tools/nodetool/gcstats.html         |   120 -
 .../tools/nodetool/getcompactionthreshold.html     |   130 -
 .../tools/nodetool/getcompactionthroughput.html    |   121 -
 .../tools/nodetool/getconcurrentcompactors.html    |   121 -
 src/doc/3.11.8/tools/nodetool/getendpoints.html    |   130 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   121 -
 .../3.11.8/tools/nodetool/getlogginglevels.html    |   120 -
 src/doc/3.11.8/tools/nodetool/getsstables.html     |   132 -
 .../3.11.8/tools/nodetool/getstreamthroughput.html |   121 -
 src/doc/3.11.8/tools/nodetool/gettimeout.html      |   130 -
 .../3.11.8/tools/nodetool/gettraceprobability.html |   120 -
 src/doc/3.11.8/tools/nodetool/gossipinfo.html      |   120 -
 src/doc/3.11.8/tools/nodetool/help.html            |   110 -
 src/doc/3.11.8/tools/nodetool/info.html            |   123 -
 .../tools/nodetool/invalidatecountercache.html     |   120 -
 .../3.11.8/tools/nodetool/invalidatekeycache.html  |   120 -
 .../3.11.8/tools/nodetool/invalidaterowcache.html  |   120 -
 src/doc/3.11.8/tools/nodetool/join.html            |   120 -
 src/doc/3.11.8/tools/nodetool/listsnapshots.html   |   121 -
 src/doc/3.11.8/tools/nodetool/move.html            |   128 -
 src/doc/3.11.8/tools/nodetool/netstats.html        |   125 -
 src/doc/3.11.8/tools/nodetool/nodetool.html        |   197 -
 src/doc/3.11.8/tools/nodetool/pausehandoff.html    |   120 -
 src/doc/3.11.8/tools/nodetool/proxyhistograms.html |   121 -
 src/doc/3.11.8/tools/nodetool/rangekeysample.html  |   121 -
 src/doc/3.11.8/tools/nodetool/rebuild.html         |   145 -
 src/doc/3.11.8/tools/nodetool/rebuild_index.html   |   130 -
 src/doc/3.11.8/tools/nodetool/refresh.html         |   130 -
 .../tools/nodetool/refreshsizeestimates.html       |   120 -
 .../3.11.8/tools/nodetool/reloadlocalschema.html   |   120 -
 src/doc/3.11.8/tools/nodetool/reloadtriggers.html  |   120 -
 .../3.11.8/tools/nodetool/relocatesstables.html    |   133 -
 src/doc/3.11.8/tools/nodetool/removenode.html      |   131 -
 src/doc/3.11.8/tools/nodetool/repair.html          |   177 -
 src/doc/3.11.8/tools/nodetool/replaybatchlog.html  |   120 -
 .../3.11.8/tools/nodetool/resetlocalschema.html    |   120 -
 src/doc/3.11.8/tools/nodetool/resumehandoff.html   |   120 -
 src/doc/3.11.8/tools/nodetool/ring.html            |   133 -
 src/doc/3.11.8/tools/nodetool/scrub.html           |   154 -
 .../3.11.8/tools/nodetool/setcachecapacity.html    |   130 -
 .../3.11.8/tools/nodetool/setcachekeystosave.html  |   132 -
 .../tools/nodetool/setcompactionthreshold.html     |   130 -
 .../tools/nodetool/setcompactionthroughput.html    |   130 -
 .../tools/nodetool/setconcurrentcompactors.html    |   130 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   130 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   130 -
 src/doc/3.11.8/tools/nodetool/setlogginglevel.html |   132 -
 .../3.11.8/tools/nodetool/setstreamthroughput.html |   130 -
 src/doc/3.11.8/tools/nodetool/settimeout.html      |   133 -
 .../3.11.8/tools/nodetool/settraceprobability.html |   131 -
 src/doc/3.11.8/tools/nodetool/snapshot.html        |   147 -
 src/doc/3.11.8/tools/nodetool/status.html          |   132 -
 src/doc/3.11.8/tools/nodetool/statusbackup.html    |   120 -
 src/doc/3.11.8/tools/nodetool/statusbinary.html    |   120 -
 src/doc/3.11.8/tools/nodetool/statusgossip.html    |   120 -
 src/doc/3.11.8/tools/nodetool/statushandoff.html   |   121 -
 src/doc/3.11.8/tools/nodetool/statusthrift.html    |   120 -
 src/doc/3.11.8/tools/nodetool/stop.html            |   137 -
 src/doc/3.11.8/tools/nodetool/stopdaemon.html      |   120 -
 src/doc/3.11.8/tools/nodetool/tablehistograms.html |   129 -
 src/doc/3.11.8/tools/nodetool/tablestats.html      |   139 -
 src/doc/3.11.8/tools/nodetool/toppartitions.html   |   140 -
 src/doc/3.11.8/tools/nodetool/tpstats.html         |   124 -
 src/doc/3.11.8/tools/nodetool/truncatehints.html   |   131 -
 src/doc/3.11.8/tools/nodetool/upgradesstables.html |   140 -
 src/doc/3.11.8/tools/nodetool/verify.html          |   132 -
 src/doc/3.11.8/tools/nodetool/version.html         |   120 -
 src/doc/3.11.8/tools/nodetool/viewbuildstatus.html |   129 -
 src/doc/3.11.8/troubleshooting/index.html          |   100 -
 src/doc/3.11.9/.buildinfo                          |     4 -
 src/doc/3.11.9/_images/eclipse_debug0.png          |   Bin 48174 -> 0 bytes
 src/doc/3.11.9/_images/eclipse_debug1.png          |   Bin 34446 -> 0 bytes
 src/doc/3.11.9/_images/eclipse_debug2.png          |   Bin 57032 -> 0 bytes
 src/doc/3.11.9/_images/eclipse_debug3.png          |   Bin 58677 -> 0 bytes
 src/doc/3.11.9/_images/eclipse_debug4.png          |   Bin 24793 -> 0 bytes
 src/doc/3.11.9/_images/eclipse_debug5.png          |   Bin 66632 -> 0 bytes
 src/doc/3.11.9/_images/eclipse_debug6.png          |   Bin 87568 -> 0 bytes
 .../3.11.9/_sources/architecture/dynamo.rst.txt    |   139 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 src/doc/3.11.9/_sources/architecture/index.rst.txt |    29 -
 .../3.11.9/_sources/architecture/overview.rst.txt  |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |    82 -
 src/doc/3.11.9/_sources/bugs.rst.txt               |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  1920 ----
 .../3.11.9/_sources/configuration/index.rst.txt    |    25 -
 src/doc/3.11.9/_sources/contactus.rst.txt          |    53 -
 src/doc/3.11.9/_sources/cql/appendices.rst.txt     |   330 -
 src/doc/3.11.9/_sources/cql/changes.rst.txt        |   204 -
 src/doc/3.11.9/_sources/cql/ddl.rst.txt            |   649 --
 src/doc/3.11.9/_sources/cql/definitions.rst.txt    |   232 -
 src/doc/3.11.9/_sources/cql/dml.rst.txt            |   522 -
 src/doc/3.11.9/_sources/cql/functions.rst.txt      |   558 -
 src/doc/3.11.9/_sources/cql/index.rst.txt          |    47 -
 src/doc/3.11.9/_sources/cql/indexes.rst.txt        |    83 -
 src/doc/3.11.9/_sources/cql/json.rst.txt           |   115 -
 src/doc/3.11.9/_sources/cql/mvs.rst.txt            |   166 -
 src/doc/3.11.9/_sources/cql/security.rst.txt       |   502 -
 src/doc/3.11.9/_sources/cql/triggers.rst.txt       |    63 -
 src/doc/3.11.9/_sources/cql/types.rst.txt          |   559 -
 .../3.11.9/_sources/data_modeling/index.rst.txt    |    20 -
 .../3.11.9/_sources/development/code_style.rst.txt |    94 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    71 -
 src/doc/3.11.9/_sources/development/ide.rst.txt    |   161 -
 src/doc/3.11.9/_sources/development/index.rst.txt  |    28 -
 .../3.11.9/_sources/development/patches.rst.txt    |   125 -
 .../3.11.9/_sources/development/testing.rst.txt    |    89 -
 src/doc/3.11.9/_sources/faq/index.rst.txt          |   298 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   107 -
 .../3.11.9/_sources/getting_started/index.rst.txt  |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/3.11.9/_sources/index.rst.txt              |    41 -
 src/doc/3.11.9/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../3.11.9/_sources/operating/bulk_loading.rst.txt |    24 -
 src/doc/3.11.9/_sources/operating/cdc.rst.txt      |    89 -
 .../3.11.9/_sources/operating/compaction.rst.txt   |   442 -
 .../3.11.9/_sources/operating/compression.rst.txt  |    94 -
 src/doc/3.11.9/_sources/operating/hardware.rst.txt |    87 -
 src/doc/3.11.9/_sources/operating/hints.rst.txt    |    22 -
 src/doc/3.11.9/_sources/operating/index.rst.txt    |    39 -
 src/doc/3.11.9/_sources/operating/metrics.rst.txt  |   710 --
 .../3.11.9/_sources/operating/read_repair.rst.txt  |    22 -
 src/doc/3.11.9/_sources/operating/repair.rst.txt   |    22 -
 src/doc/3.11.9/_sources/operating/security.rst.txt |   410 -
 src/doc/3.11.9/_sources/operating/snitch.rst.txt   |    78 -
 .../3.11.9/_sources/operating/topo_changes.rst.txt |   124 -
 src/doc/3.11.9/_sources/tools/cqlsh.rst.txt        |   455 -
 src/doc/3.11.9/_sources/tools/index.rst.txt        |    26 -
 src/doc/3.11.9/_sources/tools/nodetool.rst.txt     |    22 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../3.11.9/_sources/tools/nodetool/cleanup.rst.txt |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/compact.rst.txt |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../_sources/tools/nodetool/disablethrift.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/drain.rst.txt   |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../_sources/tools/nodetool/enablethrift.rst.txt   |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../3.11.9/_sources/tools/nodetool/flush.rst.txt   |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../3.11.9/_sources/tools/nodetool/gcstats.rst.txt |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../3.11.9/_sources/tools/nodetool/help.rst.txt    |    11 -
 .../3.11.9/_sources/tools/nodetool/info.rst.txt    |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../3.11.9/_sources/tools/nodetool/join.rst.txt    |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/move.rst.txt    |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   207 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../3.11.9/_sources/tools/nodetool/rebuild.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/refresh.rst.txt |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../3.11.9/_sources/tools/nodetool/repair.rst.txt  |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/ring.rst.txt    |    11 -
 .../3.11.9/_sources/tools/nodetool/scrub.rst.txt   |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../3.11.9/_sources/tools/nodetool/status.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/statusthrift.rst.txt   |    11 -
 .../3.11.9/_sources/tools/nodetool/stop.rst.txt    |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/tpstats.rst.txt |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../3.11.9/_sources/tools/nodetool/verify.rst.txt  |    11 -
 .../3.11.9/_sources/tools/nodetool/version.rst.txt |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../3.11.9/_sources/troubleshooting/index.rst.txt  |    20 -
 src/doc/3.11.9/_static/ajax-loader.gif             |   Bin 673 -> 0 bytes
 src/doc/3.11.9/_static/basic.css                   |   676 --
 src/doc/3.11.9/_static/comment-bright.png          |   Bin 756 -> 0 bytes
 src/doc/3.11.9/_static/comment-close.png           |   Bin 829 -> 0 bytes
 src/doc/3.11.9/_static/comment.png                 |   Bin 641 -> 0 bytes
 src/doc/3.11.9/_static/doctools.js                 |   315 -
 src/doc/3.11.9/_static/documentation_options.js    |    10 -
 src/doc/3.11.9/_static/down-pressed.png            |   Bin 222 -> 0 bytes
 src/doc/3.11.9/_static/down.png                    |   Bin 202 -> 0 bytes
 src/doc/3.11.9/_static/extra.css                   |    59 -
 src/doc/3.11.9/_static/file.png                    |   Bin 286 -> 0 bytes
 src/doc/3.11.9/_static/jquery-3.2.1.js             | 10253 -------------------
 src/doc/3.11.9/_static/jquery.js                   |     4 -
 src/doc/3.11.9/_static/language_data.js            |   297 -
 src/doc/3.11.9/_static/minus.png                   |   Bin 90 -> 0 bytes
 src/doc/3.11.9/_static/plus.png                    |   Bin 90 -> 0 bytes
 src/doc/3.11.9/_static/pygments.css                |    69 -
 src/doc/3.11.9/_static/searchtools.js              |   481 -
 src/doc/3.11.9/_static/underscore-1.3.1.js         |   999 --
 src/doc/3.11.9/_static/underscore.js               |    31 -
 src/doc/3.11.9/_static/up-pressed.png              |   Bin 214 -> 0 bytes
 src/doc/3.11.9/_static/up.png                      |   Bin 203 -> 0 bytes
 src/doc/3.11.9/_static/websupport.js               |   808 --
 src/doc/3.11.9/architecture/dynamo.html            |   218 -
 src/doc/3.11.9/architecture/guarantees.html        |   113 -
 src/doc/3.11.9/architecture/index.html             |   127 -
 src/doc/3.11.9/architecture/overview.html          |   113 -
 src/doc/3.11.9/architecture/storage_engine.html    |   164 -
 src/doc/3.11.9/bugs.html                           |   108 -
 .../configuration/cassandra_config_file.html       |  1835 ----
 src/doc/3.11.9/configuration/index.html            |   109 -
 src/doc/3.11.9/contactus.html                      |   127 -
 src/doc/3.11.9/cql/appendices.html                 |   565 -
 src/doc/3.11.9/cql/changes.html                    |   353 -
 src/doc/3.11.9/cql/ddl.html                        |   765 --
 src/doc/3.11.9/cql/definitions.html                |   312 -
 src/doc/3.11.9/cql/dml.html                        |   558 -
 src/doc/3.11.9/cql/functions.html                  |   666 --
 src/doc/3.11.9/cql/index.html                      |   239 -
 src/doc/3.11.9/cql/indexes.html                    |   168 -
 src/doc/3.11.9/cql/json.html                       |   315 -
 src/doc/3.11.9/cql/mvs.html                        |   241 -
 src/doc/3.11.9/cql/security.html                   |   704 --
 src/doc/3.11.9/cql/triggers.html                   |   153 -
 src/doc/3.11.9/cql/types.html                      |   697 --
 src/doc/3.11.9/data_modeling/index.html            |   104 -
 src/doc/3.11.9/development/code_style.html         |   208 -
 src/doc/3.11.9/development/how_to_commit.html      |   180 -
 src/doc/3.11.9/development/how_to_review.html      |   172 -
 src/doc/3.11.9/development/ide.html                |   234 -
 src/doc/3.11.9/development/index.html              |   142 -
 src/doc/3.11.9/development/patches.html            |   247 -
 src/doc/3.11.9/development/testing.html            |   171 -
 src/doc/3.11.9/faq/index.html                      |   315 -
 src/doc/3.11.9/genindex.html                       |    93 -
 src/doc/3.11.9/getting_started/configuring.html    |   158 -
 src/doc/3.11.9/getting_started/drivers.html        |   223 -
 src/doc/3.11.9/getting_started/index.html          |   146 -
 src/doc/3.11.9/getting_started/installing.html     |   196 -
 src/doc/3.11.9/getting_started/querying.html       |   144 -
 src/doc/3.11.9/index.html                          |    75 -
 src/doc/3.11.9/objects.inv                         |   Bin 7538 -> 0 bytes
 src/doc/3.11.9/operating/backups.html              |   123 -
 src/doc/3.11.9/operating/bloom_filters.html        |   160 -
 src/doc/3.11.9/operating/bulk_loading.html         |   123 -
 src/doc/3.11.9/operating/cdc.html                  |   186 -
 src/doc/3.11.9/operating/compaction.html           |   514 -
 src/doc/3.11.9/operating/compression.html          |   187 -
 src/doc/3.11.9/operating/hardware.html             |   189 -
 src/doc/3.11.9/operating/hints.html                |   123 -
 src/doc/3.11.9/operating/index.html                |   215 -
 src/doc/3.11.9/operating/metrics.html              |  1382 ---
 src/doc/3.11.9/operating/read_repair.html          |   123 -
 src/doc/3.11.9/operating/repair.html               |   123 -
 src/doc/3.11.9/operating/security.html             |   446 -
 src/doc/3.11.9/operating/snitch.html               |   176 -
 src/doc/3.11.9/operating/topo_changes.html         |   214 -
 src/doc/3.11.9/search.html                         |   103 -
 src/doc/3.11.9/searchindex.js                      |     1 -
 src/doc/3.11.9/tools/cqlsh.html                    |   481 -
 src/doc/3.11.9/tools/index.html                    |   111 -
 src/doc/3.11.9/tools/nodetool.html                 |   111 -
 src/doc/3.11.9/tools/nodetool/assassinate.html     |   129 -
 src/doc/3.11.9/tools/nodetool/bootstrap.html       |   128 -
 src/doc/3.11.9/tools/nodetool/cleanup.html         |   134 -
 src/doc/3.11.9/tools/nodetool/clearsnapshot.html   |   134 -
 src/doc/3.11.9/tools/nodetool/compact.html         |   146 -
 .../3.11.9/tools/nodetool/compactionhistory.html   |   124 -
 src/doc/3.11.9/tools/nodetool/compactionstats.html |   124 -
 src/doc/3.11.9/tools/nodetool/decommission.html    |   120 -
 src/doc/3.11.9/tools/nodetool/describecluster.html |   121 -
 src/doc/3.11.9/tools/nodetool/describering.html    |   128 -
 .../tools/nodetool/disableautocompaction.html      |   130 -
 src/doc/3.11.9/tools/nodetool/disablebackup.html   |   120 -
 src/doc/3.11.9/tools/nodetool/disablebinary.html   |   120 -
 src/doc/3.11.9/tools/nodetool/disablegossip.html   |   121 -
 src/doc/3.11.9/tools/nodetool/disablehandoff.html  |   120 -
 .../3.11.9/tools/nodetool/disablehintsfordc.html   |   129 -
 src/doc/3.11.9/tools/nodetool/disablethrift.html   |   120 -
 src/doc/3.11.9/tools/nodetool/drain.html           |   121 -
 .../tools/nodetool/enableautocompaction.html       |   130 -
 src/doc/3.11.9/tools/nodetool/enablebackup.html    |   120 -
 src/doc/3.11.9/tools/nodetool/enablebinary.html    |   120 -
 src/doc/3.11.9/tools/nodetool/enablegossip.html    |   120 -
 src/doc/3.11.9/tools/nodetool/enablehandoff.html   |   121 -
 .../3.11.9/tools/nodetool/enablehintsfordc.html    |   130 -
 src/doc/3.11.9/tools/nodetool/enablethrift.html    |   120 -
 src/doc/3.11.9/tools/nodetool/failuredetector.html |   121 -
 src/doc/3.11.9/tools/nodetool/flush.html           |   129 -
 src/doc/3.11.9/tools/nodetool/garbagecollect.html  |   139 -
 src/doc/3.11.9/tools/nodetool/gcstats.html         |   120 -
 .../tools/nodetool/getcompactionthreshold.html     |   130 -
 .../tools/nodetool/getcompactionthroughput.html    |   121 -
 .../tools/nodetool/getconcurrentcompactors.html    |   121 -
 src/doc/3.11.9/tools/nodetool/getendpoints.html    |   130 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   121 -
 .../3.11.9/tools/nodetool/getlogginglevels.html    |   120 -
 src/doc/3.11.9/tools/nodetool/getsstables.html     |   132 -
 .../3.11.9/tools/nodetool/getstreamthroughput.html |   121 -
 src/doc/3.11.9/tools/nodetool/gettimeout.html      |   130 -
 .../3.11.9/tools/nodetool/gettraceprobability.html |   120 -
 src/doc/3.11.9/tools/nodetool/gossipinfo.html      |   120 -
 src/doc/3.11.9/tools/nodetool/help.html            |   110 -
 src/doc/3.11.9/tools/nodetool/info.html            |   123 -
 .../tools/nodetool/invalidatecountercache.html     |   120 -
 .../3.11.9/tools/nodetool/invalidatekeycache.html  |   120 -
 .../3.11.9/tools/nodetool/invalidaterowcache.html  |   120 -
 src/doc/3.11.9/tools/nodetool/join.html            |   120 -
 src/doc/3.11.9/tools/nodetool/listsnapshots.html   |   121 -
 src/doc/3.11.9/tools/nodetool/move.html            |   128 -
 src/doc/3.11.9/tools/nodetool/netstats.html        |   125 -
 src/doc/3.11.9/tools/nodetool/nodetool.html        |   197 -
 src/doc/3.11.9/tools/nodetool/pausehandoff.html    |   120 -
 src/doc/3.11.9/tools/nodetool/proxyhistograms.html |   121 -
 src/doc/3.11.9/tools/nodetool/rangekeysample.html  |   121 -
 src/doc/3.11.9/tools/nodetool/rebuild.html         |   145 -
 src/doc/3.11.9/tools/nodetool/rebuild_index.html   |   130 -
 src/doc/3.11.9/tools/nodetool/refresh.html         |   130 -
 .../tools/nodetool/refreshsizeestimates.html       |   120 -
 .../3.11.9/tools/nodetool/reloadlocalschema.html   |   120 -
 src/doc/3.11.9/tools/nodetool/reloadtriggers.html  |   120 -
 .../3.11.9/tools/nodetool/relocatesstables.html    |   133 -
 src/doc/3.11.9/tools/nodetool/removenode.html      |   131 -
 src/doc/3.11.9/tools/nodetool/repair.html          |   177 -
 src/doc/3.11.9/tools/nodetool/replaybatchlog.html  |   120 -
 .../3.11.9/tools/nodetool/resetlocalschema.html    |   120 -
 src/doc/3.11.9/tools/nodetool/resumehandoff.html   |   120 -
 src/doc/3.11.9/tools/nodetool/ring.html            |   133 -
 src/doc/3.11.9/tools/nodetool/scrub.html           |   154 -
 .../3.11.9/tools/nodetool/setcachecapacity.html    |   130 -
 .../3.11.9/tools/nodetool/setcachekeystosave.html  |   132 -
 .../tools/nodetool/setcompactionthreshold.html     |   130 -
 .../tools/nodetool/setcompactionthroughput.html    |   130 -
 .../tools/nodetool/setconcurrentcompactors.html    |   130 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   130 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   130 -
 src/doc/3.11.9/tools/nodetool/setlogginglevel.html |   132 -
 .../3.11.9/tools/nodetool/setstreamthroughput.html |   130 -
 src/doc/3.11.9/tools/nodetool/settimeout.html      |   133 -
 .../3.11.9/tools/nodetool/settraceprobability.html |   131 -
 src/doc/3.11.9/tools/nodetool/snapshot.html        |   147 -
 src/doc/3.11.9/tools/nodetool/status.html          |   132 -
 src/doc/3.11.9/tools/nodetool/statusbackup.html    |   120 -
 src/doc/3.11.9/tools/nodetool/statusbinary.html    |   120 -
 src/doc/3.11.9/tools/nodetool/statusgossip.html    |   120 -
 src/doc/3.11.9/tools/nodetool/statushandoff.html   |   121 -
 src/doc/3.11.9/tools/nodetool/statusthrift.html    |   120 -
 src/doc/3.11.9/tools/nodetool/stop.html            |   137 -
 src/doc/3.11.9/tools/nodetool/stopdaemon.html      |   120 -
 src/doc/3.11.9/tools/nodetool/tablehistograms.html |   129 -
 src/doc/3.11.9/tools/nodetool/tablestats.html      |   139 -
 src/doc/3.11.9/tools/nodetool/toppartitions.html   |   140 -
 src/doc/3.11.9/tools/nodetool/tpstats.html         |   124 -
 src/doc/3.11.9/tools/nodetool/truncatehints.html   |   131 -
 src/doc/3.11.9/tools/nodetool/upgradesstables.html |   140 -
 src/doc/3.11.9/tools/nodetool/verify.html          |   132 -
 src/doc/3.11.9/tools/nodetool/version.html         |   120 -
 src/doc/3.11.9/tools/nodetool/viewbuildstatus.html |   129 -
 src/doc/3.11.9/troubleshooting/index.html          |   100 -
 src/doc/4.0-alpha1/.buildinfo                      |     4 -
 .../stress-lwt-example.yaml                        |    70 -
 .../stress-example.yaml                            |    44 -
 src/doc/4.0-alpha1/_images/docs_commit.png         |   Bin 104667 -> 0 bytes
 src/doc/4.0-alpha1/_images/docs_create_branch.png  |   Bin 181860 -> 0 bytes
 src/doc/4.0-alpha1/_images/docs_create_file.png    |   Bin 209110 -> 0 bytes
 src/doc/4.0-alpha1/_images/docs_editor.png         |   Bin 106175 -> 0 bytes
 src/doc/4.0-alpha1/_images/docs_fork.png           |   Bin 76159 -> 0 bytes
 src/doc/4.0-alpha1/_images/docs_pr.png             |   Bin 156081 -> 0 bytes
 src/doc/4.0-alpha1/_images/docs_preview.png        |   Bin 123826 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug0.png      |   Bin 48174 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug1.png      |   Bin 34446 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug2.png      |   Bin 57032 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug3.png      |   Bin 58677 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug4.png      |   Bin 24793 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug5.png      |   Bin 66632 -> 0 bytes
 src/doc/4.0-alpha1/_images/eclipse_debug6.png      |   Bin 87568 -> 0 bytes
 .../4.0-alpha1/_images/example-stress-graph.png    |   Bin 359103 -> 0 bytes
 .../_sources/architecture/dynamo.rst.txt           |   164 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 .../4.0-alpha1/_sources/architecture/index.rst.txt |    29 -
 .../_sources/architecture/overview.rst.txt         |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-alpha1/_sources/bugs.rst.txt           |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  2048 ----
 .../_sources/configuration/index.rst.txt           |    25 -
 src/doc/4.0-alpha1/_sources/contactus.rst.txt      |    50 -
 src/doc/4.0-alpha1/_sources/cql/appendices.rst.txt |   330 -
 src/doc/4.0-alpha1/_sources/cql/changes.rst.txt    |   211 -
 src/doc/4.0-alpha1/_sources/cql/ddl.rst.txt        |   788 --
 .../4.0-alpha1/_sources/cql/definitions.rst.txt    |   234 -
 src/doc/4.0-alpha1/_sources/cql/dml.rst.txt        |   522 -
 src/doc/4.0-alpha1/_sources/cql/functions.rst.txt  |   581 --
 src/doc/4.0-alpha1/_sources/cql/index.rst.txt      |    47 -
 src/doc/4.0-alpha1/_sources/cql/indexes.rst.txt    |    83 -
 src/doc/4.0-alpha1/_sources/cql/json.rst.txt       |   115 -
 src/doc/4.0-alpha1/_sources/cql/mvs.rst.txt        |   179 -
 src/doc/4.0-alpha1/_sources/cql/operators.rst.txt  |    74 -
 src/doc/4.0-alpha1/_sources/cql/security.rst.txt   |   538 -
 src/doc/4.0-alpha1/_sources/cql/triggers.rst.txt   |    63 -
 src/doc/4.0-alpha1/_sources/cql/types.rst.txt      |   559 -
 .../_sources/data_modeling/index.rst.txt           |    20 -
 src/doc/4.0-alpha1/_sources/development/ci.rst.txt |    72 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    54 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 .../4.0-alpha1/_sources/development/ide.rst.txt    |   185 -
 .../4.0-alpha1/_sources/development/index.rst.txt  |    33 -
 .../_sources/development/patches.rst.txt           |   141 -
 .../_sources/development/release_process.rst.txt   |   259 -
 .../_sources/development/testing.rst.txt           |    98 -
 src/doc/4.0-alpha1/_sources/faq/index.rst.txt      |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-alpha1/_sources/index.rst.txt          |    42 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-alpha1/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |    24 -
 src/doc/4.0-alpha1/_sources/operating/cdc.rst.txt  |    96 -
 .../_sources/operating/compaction.rst.txt          |   447 -
 .../_sources/operating/compression.rst.txt         |    95 -
 .../4.0-alpha1/_sources/operating/hardware.rst.txt |    87 -
 .../4.0-alpha1/_sources/operating/hints.rst.txt    |    22 -
 .../4.0-alpha1/_sources/operating/index.rst.txt    |    39 -
 .../4.0-alpha1/_sources/operating/metrics.rst.txt  |   789 --
 .../_sources/operating/read_repair.rst.txt         |    22 -
 .../4.0-alpha1/_sources/operating/repair.rst.txt   |   107 -
 .../4.0-alpha1/_sources/operating/security.rst.txt |   441 -
 .../4.0-alpha1/_sources/operating/snitch.rst.txt   |    78 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-alpha1/_sources/plugins/index.rst.txt  |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   269 -
 src/doc/4.0-alpha1/_sources/tools/cqlsh.rst.txt    |   455 -
 src/doc/4.0-alpha1/_sources/tools/index.rst.txt    |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../_sources/tools/nodetool/help.rst.txt           |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../_sources/tools/nodetool/info.rst.txt           |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../_sources/tools/nodetool/join.rst.txt           |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../_sources/tools/nodetool/move.rst.txt           |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   249 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/ring.rst.txt           |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../4.0-alpha1/_sources/tools/nodetool/sjk.rst.txt |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/stop.rst.txt           |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../_sources/tools/sstable/index.rst.txt           |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-alpha1/_static/ajax-loader.gif         |   Bin 673 -> 0 bytes
 src/doc/4.0-alpha1/_static/basic.css               |   676 --
 src/doc/4.0-alpha1/_static/comment-bright.png      |   Bin 756 -> 0 bytes
 src/doc/4.0-alpha1/_static/comment-close.png       |   Bin 829 -> 0 bytes
 src/doc/4.0-alpha1/_static/comment.png             |   Bin 641 -> 0 bytes
 src/doc/4.0-alpha1/_static/doctools.js             |   315 -
 .../4.0-alpha1/_static/documentation_options.js    |    10 -
 src/doc/4.0-alpha1/_static/down-pressed.png        |   Bin 222 -> 0 bytes
 src/doc/4.0-alpha1/_static/down.png                |   Bin 202 -> 0 bytes
 src/doc/4.0-alpha1/_static/extra.css               |    59 -
 src/doc/4.0-alpha1/_static/file.png                |   Bin 286 -> 0 bytes
 src/doc/4.0-alpha1/_static/jquery-3.2.1.js         | 10253 -------------------
 src/doc/4.0-alpha1/_static/jquery.js               |     4 -
 src/doc/4.0-alpha1/_static/language_data.js        |   297 -
 src/doc/4.0-alpha1/_static/minus.png               |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha1/_static/plus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha1/_static/pygments.css            |    69 -
 src/doc/4.0-alpha1/_static/searchtools.js          |   481 -
 src/doc/4.0-alpha1/_static/underscore-1.3.1.js     |   999 --
 src/doc/4.0-alpha1/_static/underscore.js           |    31 -
 src/doc/4.0-alpha1/_static/up-pressed.png          |   Bin 214 -> 0 bytes
 src/doc/4.0-alpha1/_static/up.png                  |   Bin 203 -> 0 bytes
 src/doc/4.0-alpha1/_static/websupport.js           |   808 --
 src/doc/4.0-alpha1/architecture/dynamo.html        |   235 -
 src/doc/4.0-alpha1/architecture/guarantees.html    |   114 -
 src/doc/4.0-alpha1/architecture/index.html         |   129 -
 src/doc/4.0-alpha1/architecture/overview.html      |   114 -
 .../4.0-alpha1/architecture/storage_engine.html    |   293 -
 src/doc/4.0-alpha1/bugs.html                       |   109 -
 .../configuration/cassandra_config_file.html       |  1948 ----
 src/doc/4.0-alpha1/configuration/index.html        |   110 -
 src/doc/4.0-alpha1/contactus.html                  |   126 -
 src/doc/4.0-alpha1/cql/appendices.html             |   567 -
 src/doc/4.0-alpha1/cql/changes.html                |   363 -
 src/doc/4.0-alpha1/cql/ddl.html                    |   856 --
 src/doc/4.0-alpha1/cql/definitions.html            |   316 -
 src/doc/4.0-alpha1/cql/dml.html                    |   560 -
 src/doc/4.0-alpha1/cql/functions.html              |   705 --
 src/doc/4.0-alpha1/cql/index.html                  |   246 -
 src/doc/4.0-alpha1/cql/indexes.html                |   170 -
 src/doc/4.0-alpha1/cql/json.html                   |   317 -
 src/doc/4.0-alpha1/cql/mvs.html                    |   260 -
 src/doc/4.0-alpha1/cql/operators.html              |   300 -
 src/doc/4.0-alpha1/cql/security.html               |   742 --
 src/doc/4.0-alpha1/cql/triggers.html               |   155 -
 src/doc/4.0-alpha1/cql/types.html                  |   699 --
 src/doc/4.0-alpha1/data_modeling/index.html        |   105 -
 src/doc/4.0-alpha1/development/ci.html             |   158 -
 src/doc/4.0-alpha1/development/code_style.html     |   214 -
 src/doc/4.0-alpha1/development/dependencies.html   |   155 -
 src/doc/4.0-alpha1/development/documentation.html  |   192 -
 src/doc/4.0-alpha1/development/gettingstarted.html |   160 -
 src/doc/4.0-alpha1/development/how_to_commit.html  |   186 -
 src/doc/4.0-alpha1/development/how_to_review.html  |   178 -
 src/doc/4.0-alpha1/development/ide.html            |   267 -
 src/doc/4.0-alpha1/development/index.html          |   184 -
 src/doc/4.0-alpha1/development/patches.html        |   273 -
 .../4.0-alpha1/development/release_process.html    |   380 -
 src/doc/4.0-alpha1/development/testing.html        |   184 -
 src/doc/4.0-alpha1/faq/index.html                  |   317 -
 src/doc/4.0-alpha1/genindex.html                   |    94 -
 .../4.0-alpha1/getting_started/configuring.html    |   159 -
 src/doc/4.0-alpha1/getting_started/drivers.html    |   246 -
 src/doc/4.0-alpha1/getting_started/index.html      |   150 -
 src/doc/4.0-alpha1/getting_started/installing.html |   197 -
 src/doc/4.0-alpha1/getting_started/querying.html   |   145 -
 src/doc/4.0-alpha1/index.html                      |    86 -
 src/doc/4.0-alpha1/objects.inv                     |   Bin 8951 -> 0 bytes
 src/doc/4.0-alpha1/operating/audit_logging.html    |   280 -
 src/doc/4.0-alpha1/operating/backups.html          |   124 -
 src/doc/4.0-alpha1/operating/bloom_filters.html    |   161 -
 src/doc/4.0-alpha1/operating/bulk_loading.html     |   124 -
 src/doc/4.0-alpha1/operating/cdc.html              |   193 -
 src/doc/4.0-alpha1/operating/compaction.html       |   520 -
 src/doc/4.0-alpha1/operating/compression.html      |   189 -
 src/doc/4.0-alpha1/operating/hardware.html         |   190 -
 src/doc/4.0-alpha1/operating/hints.html            |   124 -
 src/doc/4.0-alpha1/operating/index.html            |   224 -
 src/doc/4.0-alpha1/operating/metrics.html          |  1800 ----
 src/doc/4.0-alpha1/operating/read_repair.html      |   124 -
 src/doc/4.0-alpha1/operating/repair.html           |   193 -
 src/doc/4.0-alpha1/operating/security.html         |   473 -
 src/doc/4.0-alpha1/operating/snitch.html           |   177 -
 src/doc/4.0-alpha1/operating/topo_changes.html     |   221 -
 src/doc/4.0-alpha1/plugins/index.html              |   116 -
 src/doc/4.0-alpha1/search.html                     |   104 -
 src/doc/4.0-alpha1/searchindex.js                  |     1 -
 src/doc/4.0-alpha1/tools/cassandra_stress.html     |   352 -
 src/doc/4.0-alpha1/tools/cqlsh.html                |   485 -
 src/doc/4.0-alpha1/tools/index.html                |   257 -
 src/doc/4.0-alpha1/tools/nodetool/assassinate.html |   133 -
 src/doc/4.0-alpha1/tools/nodetool/bootstrap.html   |   132 -
 src/doc/4.0-alpha1/tools/nodetool/cleanup.html     |   138 -
 .../4.0-alpha1/tools/nodetool/clearsnapshot.html   |   141 -
 src/doc/4.0-alpha1/tools/nodetool/clientstats.html |   134 -
 src/doc/4.0-alpha1/tools/nodetool/compact.html     |   150 -
 .../tools/nodetool/compactionhistory.html          |   128 -
 .../4.0-alpha1/tools/nodetool/compactionstats.html |   128 -
 .../4.0-alpha1/tools/nodetool/decommission.html    |   128 -
 .../4.0-alpha1/tools/nodetool/describecluster.html |   125 -
 .../4.0-alpha1/tools/nodetool/describering.html    |   132 -
 .../4.0-alpha1/tools/nodetool/disableauditlog.html |   124 -
 .../tools/nodetool/disableautocompaction.html      |   134 -
 .../4.0-alpha1/tools/nodetool/disablebackup.html   |   124 -
 .../4.0-alpha1/tools/nodetool/disablebinary.html   |   124 -
 .../tools/nodetool/disablefullquerylog.html        |   124 -
 .../4.0-alpha1/tools/nodetool/disablegossip.html   |   125 -
 .../4.0-alpha1/tools/nodetool/disablehandoff.html  |   124 -
 .../tools/nodetool/disablehintsfordc.html          |   133 -
 .../tools/nodetool/disableoldprotocolversions.html |   124 -
 src/doc/4.0-alpha1/tools/nodetool/drain.html       |   125 -
 .../4.0-alpha1/tools/nodetool/enableauditlog.html  |   158 -
 .../tools/nodetool/enableautocompaction.html       |   134 -
 .../4.0-alpha1/tools/nodetool/enablebackup.html    |   124 -
 .../4.0-alpha1/tools/nodetool/enablebinary.html    |   124 -
 .../tools/nodetool/enablefullquerylog.html         |   155 -
 .../4.0-alpha1/tools/nodetool/enablegossip.html    |   124 -
 .../4.0-alpha1/tools/nodetool/enablehandoff.html   |   125 -
 .../tools/nodetool/enablehintsfordc.html           |   134 -
 .../tools/nodetool/enableoldprotocolversions.html  |   124 -
 .../4.0-alpha1/tools/nodetool/failuredetector.html |   125 -
 src/doc/4.0-alpha1/tools/nodetool/flush.html       |   133 -
 .../4.0-alpha1/tools/nodetool/garbagecollect.html  |   143 -
 src/doc/4.0-alpha1/tools/nodetool/gcstats.html     |   124 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   126 -
 .../tools/nodetool/getcompactionthreshold.html     |   134 -
 .../tools/nodetool/getcompactionthroughput.html    |   125 -
 .../4.0-alpha1/tools/nodetool/getconcurrency.html  |   133 -
 .../tools/nodetool/getconcurrentcompactors.html    |   125 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   125 -
 .../4.0-alpha1/tools/nodetool/getendpoints.html    |   134 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   125 -
 .../tools/nodetool/getlogginglevels.html           |   124 -
 .../tools/nodetool/getmaxhintwindow.html           |   124 -
 src/doc/4.0-alpha1/tools/nodetool/getreplicas.html |   134 -
 src/doc/4.0-alpha1/tools/nodetool/getseeds.html    |   125 -
 src/doc/4.0-alpha1/tools/nodetool/getsstables.html |   136 -
 .../tools/nodetool/getstreamthroughput.html        |   125 -
 src/doc/4.0-alpha1/tools/nodetool/gettimeout.html  |   134 -
 .../tools/nodetool/gettraceprobability.html        |   124 -
 src/doc/4.0-alpha1/tools/nodetool/gossipinfo.html  |   124 -
 .../4.0-alpha1/tools/nodetool/handoffwindow.html   |   124 -
 src/doc/4.0-alpha1/tools/nodetool/help.html        |   111 -
 src/doc/4.0-alpha1/tools/nodetool/import.html      |   159 -
 src/doc/4.0-alpha1/tools/nodetool/info.html        |   127 -
 .../tools/nodetool/invalidatecountercache.html     |   124 -
 .../tools/nodetool/invalidatekeycache.html         |   124 -
 .../tools/nodetool/invalidaterowcache.html         |   124 -
 src/doc/4.0-alpha1/tools/nodetool/join.html        |   124 -
 .../4.0-alpha1/tools/nodetool/listsnapshots.html   |   125 -
 src/doc/4.0-alpha1/tools/nodetool/move.html        |   132 -
 src/doc/4.0-alpha1/tools/nodetool/netstats.html    |   129 -
 src/doc/4.0-alpha1/tools/nodetool/nodetool.html    |   241 -
 .../4.0-alpha1/tools/nodetool/pausehandoff.html    |   124 -
 src/doc/4.0-alpha1/tools/nodetool/profileload.html |   143 -
 .../4.0-alpha1/tools/nodetool/proxyhistograms.html |   125 -
 .../4.0-alpha1/tools/nodetool/rangekeysample.html  |   125 -
 src/doc/4.0-alpha1/tools/nodetool/rebuild.html     |   149 -
 .../4.0-alpha1/tools/nodetool/rebuild_index.html   |   134 -
 src/doc/4.0-alpha1/tools/nodetool/refresh.html     |   134 -
 .../tools/nodetool/refreshsizeestimates.html       |   124 -
 .../tools/nodetool/reloadlocalschema.html          |   124 -
 src/doc/4.0-alpha1/tools/nodetool/reloadseeds.html |   125 -
 src/doc/4.0-alpha1/tools/nodetool/reloadssl.html   |   124 -
 .../4.0-alpha1/tools/nodetool/reloadtriggers.html  |   124 -
 .../tools/nodetool/relocatesstables.html           |   137 -
 src/doc/4.0-alpha1/tools/nodetool/removenode.html  |   135 -
 src/doc/4.0-alpha1/tools/nodetool/repair.html      |   197 -
 .../4.0-alpha1/tools/nodetool/repair_admin.html    |   138 -
 .../4.0-alpha1/tools/nodetool/replaybatchlog.html  |   124 -
 .../tools/nodetool/resetfullquerylog.html          |   126 -
 .../tools/nodetool/resetlocalschema.html           |   124 -
 .../4.0-alpha1/tools/nodetool/resumehandoff.html   |   124 -
 src/doc/4.0-alpha1/tools/nodetool/ring.html        |   137 -
 src/doc/4.0-alpha1/tools/nodetool/scrub.html       |   158 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   135 -
 .../tools/nodetool/setcachecapacity.html           |   134 -
 .../tools/nodetool/setcachekeystosave.html         |   136 -
 .../tools/nodetool/setcompactionthreshold.html     |   134 -
 .../tools/nodetool/setcompactionthroughput.html    |   134 -
 .../4.0-alpha1/tools/nodetool/setconcurrency.html  |   135 -
 .../tools/nodetool/setconcurrentcompactors.html    |   134 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   134 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   134 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   134 -
 .../4.0-alpha1/tools/nodetool/setlogginglevel.html |   137 -
 .../tools/nodetool/setmaxhintwindow.html           |   133 -
 .../tools/nodetool/setstreamthroughput.html        |   134 -
 src/doc/4.0-alpha1/tools/nodetool/settimeout.html  |   137 -
 .../tools/nodetool/settraceprobability.html        |   135 -
 src/doc/4.0-alpha1/tools/nodetool/sjk.html         |   133 -
 src/doc/4.0-alpha1/tools/nodetool/snapshot.html    |   151 -
 src/doc/4.0-alpha1/tools/nodetool/status.html      |   136 -
 .../tools/nodetool/statusautocompaction.html       |   137 -
 .../4.0-alpha1/tools/nodetool/statusbackup.html    |   124 -
 .../4.0-alpha1/tools/nodetool/statusbinary.html    |   124 -
 .../4.0-alpha1/tools/nodetool/statusgossip.html    |   124 -
 .../4.0-alpha1/tools/nodetool/statushandoff.html   |   125 -
 src/doc/4.0-alpha1/tools/nodetool/stop.html        |   140 -
 src/doc/4.0-alpha1/tools/nodetool/stopdaemon.html  |   124 -
 .../4.0-alpha1/tools/nodetool/tablehistograms.html |   133 -
 src/doc/4.0-alpha1/tools/nodetool/tablestats.html  |   168 -
 .../4.0-alpha1/tools/nodetool/toppartitions.html   |   142 -
 src/doc/4.0-alpha1/tools/nodetool/tpstats.html     |   128 -
 .../4.0-alpha1/tools/nodetool/truncatehints.html   |   135 -
 .../4.0-alpha1/tools/nodetool/upgradesstables.html |   144 -
 src/doc/4.0-alpha1/tools/nodetool/verify.html      |   153 -
 src/doc/4.0-alpha1/tools/nodetool/version.html     |   124 -
 .../4.0-alpha1/tools/nodetool/viewbuildstatus.html |   133 -
 src/doc/4.0-alpha1/tools/sstable/index.html        |   228 -
 src/doc/4.0-alpha1/tools/sstable/sstabledump.html  |   403 -
 .../tools/sstable/sstableexpiredblockers.html      |   148 -
 .../tools/sstable/sstablelevelreset.html           |   174 -
 .../4.0-alpha1/tools/sstable/sstableloader.html    |   408 -
 .../4.0-alpha1/tools/sstable/sstablemetadata.html  |   472 -
 .../tools/sstable/sstableofflinerelevel.html       |   189 -
 .../tools/sstable/sstablerepairedset.html          |   192 -
 src/doc/4.0-alpha1/tools/sstable/sstablescrub.html |   210 -
 src/doc/4.0-alpha1/tools/sstable/sstablesplit.html |   201 -
 .../4.0-alpha1/tools/sstable/sstableupgrade.html   |   248 -
 src/doc/4.0-alpha1/tools/sstable/sstableutil.html  |   204 -
 .../4.0-alpha1/tools/sstable/sstableverify.html    |   204 -
 .../4.0-alpha1/troubleshooting/finding_nodes.html  |   240 -
 src/doc/4.0-alpha1/troubleshooting/index.html      |   147 -
 .../4.0-alpha1/troubleshooting/reading_logs.html   |   350 -
 .../4.0-alpha1/troubleshooting/use_nodetool.html   |   320 -
 src/doc/4.0-alpha1/troubleshooting/use_tools.html  |   608 --
 src/doc/4.0-alpha2/.buildinfo                      |     4 -
 .../stress-lwt-example.yaml                        |    70 -
 .../stress-example.yaml                            |    44 -
 src/doc/4.0-alpha2/_images/docs_commit.png         |   Bin 104667 -> 0 bytes
 src/doc/4.0-alpha2/_images/docs_create_branch.png  |   Bin 181860 -> 0 bytes
 src/doc/4.0-alpha2/_images/docs_create_file.png    |   Bin 209110 -> 0 bytes
 src/doc/4.0-alpha2/_images/docs_editor.png         |   Bin 106175 -> 0 bytes
 src/doc/4.0-alpha2/_images/docs_fork.png           |   Bin 76159 -> 0 bytes
 src/doc/4.0-alpha2/_images/docs_pr.png             |   Bin 156081 -> 0 bytes
 src/doc/4.0-alpha2/_images/docs_preview.png        |   Bin 123826 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug0.png      |   Bin 48174 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug1.png      |   Bin 34446 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug2.png      |   Bin 57032 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug3.png      |   Bin 58677 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug4.png      |   Bin 24793 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug5.png      |   Bin 66632 -> 0 bytes
 src/doc/4.0-alpha2/_images/eclipse_debug6.png      |   Bin 87568 -> 0 bytes
 .../4.0-alpha2/_images/example-stress-graph.png    |   Bin 359103 -> 0 bytes
 .../_sources/architecture/dynamo.rst.txt           |   164 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 .../4.0-alpha2/_sources/architecture/index.rst.txt |    29 -
 .../_sources/architecture/overview.rst.txt         |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-alpha2/_sources/bugs.rst.txt           |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  2059 ----
 .../_sources/configuration/index.rst.txt           |    25 -
 src/doc/4.0-alpha2/_sources/contactus.rst.txt      |    50 -
 src/doc/4.0-alpha2/_sources/cql/appendices.rst.txt |   330 -
 src/doc/4.0-alpha2/_sources/cql/changes.rst.txt    |   211 -
 src/doc/4.0-alpha2/_sources/cql/ddl.rst.txt        |   788 --
 .../4.0-alpha2/_sources/cql/definitions.rst.txt    |   234 -
 src/doc/4.0-alpha2/_sources/cql/dml.rst.txt        |   522 -
 src/doc/4.0-alpha2/_sources/cql/functions.rst.txt  |   581 --
 src/doc/4.0-alpha2/_sources/cql/index.rst.txt      |    47 -
 src/doc/4.0-alpha2/_sources/cql/indexes.rst.txt    |    83 -
 src/doc/4.0-alpha2/_sources/cql/json.rst.txt       |   115 -
 src/doc/4.0-alpha2/_sources/cql/mvs.rst.txt        |   179 -
 src/doc/4.0-alpha2/_sources/cql/operators.rst.txt  |    74 -
 src/doc/4.0-alpha2/_sources/cql/security.rst.txt   |   538 -
 src/doc/4.0-alpha2/_sources/cql/triggers.rst.txt   |    63 -
 src/doc/4.0-alpha2/_sources/cql/types.rst.txt      |   559 -
 .../_sources/data_modeling/index.rst.txt           |    20 -
 src/doc/4.0-alpha2/_sources/development/ci.rst.txt |    72 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    54 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 .../4.0-alpha2/_sources/development/ide.rst.txt    |   185 -
 .../4.0-alpha2/_sources/development/index.rst.txt  |    33 -
 .../_sources/development/patches.rst.txt           |   141 -
 .../_sources/development/release_process.rst.txt   |   268 -
 .../_sources/development/testing.rst.txt           |    98 -
 src/doc/4.0-alpha2/_sources/faq/index.rst.txt      |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-alpha2/_sources/index.rst.txt          |    42 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-alpha2/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |    24 -
 src/doc/4.0-alpha2/_sources/operating/cdc.rst.txt  |    96 -
 .../_sources/operating/compaction.rst.txt          |   447 -
 .../_sources/operating/compression.rst.txt         |    97 -
 .../4.0-alpha2/_sources/operating/hardware.rst.txt |    87 -
 .../4.0-alpha2/_sources/operating/hints.rst.txt    |    22 -
 .../4.0-alpha2/_sources/operating/index.rst.txt    |    39 -
 .../4.0-alpha2/_sources/operating/metrics.rst.txt  |   789 --
 .../_sources/operating/read_repair.rst.txt         |    22 -
 .../4.0-alpha2/_sources/operating/repair.rst.txt   |   107 -
 .../4.0-alpha2/_sources/operating/security.rst.txt |   441 -
 .../4.0-alpha2/_sources/operating/snitch.rst.txt   |    78 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-alpha2/_sources/plugins/index.rst.txt  |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   269 -
 src/doc/4.0-alpha2/_sources/tools/cqlsh.rst.txt    |   455 -
 src/doc/4.0-alpha2/_sources/tools/index.rst.txt    |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../_sources/tools/nodetool/help.rst.txt           |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../_sources/tools/nodetool/info.rst.txt           |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../_sources/tools/nodetool/join.rst.txt           |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../_sources/tools/nodetool/move.rst.txt           |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   250 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/ring.rst.txt           |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../4.0-alpha2/_sources/tools/nodetool/sjk.rst.txt |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/stop.rst.txt           |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../_sources/tools/sstable/index.rst.txt           |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-alpha2/_static/ajax-loader.gif         |   Bin 673 -> 0 bytes
 src/doc/4.0-alpha2/_static/basic.css               |   676 --
 src/doc/4.0-alpha2/_static/comment-bright.png      |   Bin 756 -> 0 bytes
 src/doc/4.0-alpha2/_static/comment-close.png       |   Bin 829 -> 0 bytes
 src/doc/4.0-alpha2/_static/comment.png             |   Bin 641 -> 0 bytes
 src/doc/4.0-alpha2/_static/doctools.js             |   315 -
 .../4.0-alpha2/_static/documentation_options.js    |    10 -
 src/doc/4.0-alpha2/_static/down-pressed.png        |   Bin 222 -> 0 bytes
 src/doc/4.0-alpha2/_static/down.png                |   Bin 202 -> 0 bytes
 src/doc/4.0-alpha2/_static/extra.css               |    59 -
 src/doc/4.0-alpha2/_static/file.png                |   Bin 286 -> 0 bytes
 src/doc/4.0-alpha2/_static/jquery-3.2.1.js         | 10253 -------------------
 src/doc/4.0-alpha2/_static/jquery.js               |     4 -
 src/doc/4.0-alpha2/_static/language_data.js        |   297 -
 src/doc/4.0-alpha2/_static/minus.png               |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha2/_static/plus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha2/_static/pygments.css            |    69 -
 src/doc/4.0-alpha2/_static/searchtools.js          |   481 -
 src/doc/4.0-alpha2/_static/underscore-1.3.1.js     |   999 --
 src/doc/4.0-alpha2/_static/underscore.js           |    31 -
 src/doc/4.0-alpha2/_static/up-pressed.png          |   Bin 214 -> 0 bytes
 src/doc/4.0-alpha2/_static/up.png                  |   Bin 203 -> 0 bytes
 src/doc/4.0-alpha2/_static/websupport.js           |   808 --
 src/doc/4.0-alpha2/architecture/dynamo.html        |   235 -
 src/doc/4.0-alpha2/architecture/guarantees.html    |   114 -
 src/doc/4.0-alpha2/architecture/index.html         |   129 -
 src/doc/4.0-alpha2/architecture/overview.html      |   114 -
 .../4.0-alpha2/architecture/storage_engine.html    |   293 -
 src/doc/4.0-alpha2/bugs.html                       |   109 -
 .../configuration/cassandra_config_file.html       |  1957 ----
 src/doc/4.0-alpha2/configuration/index.html        |   110 -
 src/doc/4.0-alpha2/contactus.html                  |   126 -
 src/doc/4.0-alpha2/cql/appendices.html             |   567 -
 src/doc/4.0-alpha2/cql/changes.html                |   363 -
 src/doc/4.0-alpha2/cql/ddl.html                    |   856 --
 src/doc/4.0-alpha2/cql/definitions.html            |   316 -
 src/doc/4.0-alpha2/cql/dml.html                    |   560 -
 src/doc/4.0-alpha2/cql/functions.html              |   705 --
 src/doc/4.0-alpha2/cql/index.html                  |   246 -
 src/doc/4.0-alpha2/cql/indexes.html                |   170 -
 src/doc/4.0-alpha2/cql/json.html                   |   317 -
 src/doc/4.0-alpha2/cql/mvs.html                    |   260 -
 src/doc/4.0-alpha2/cql/operators.html              |   300 -
 src/doc/4.0-alpha2/cql/security.html               |   742 --
 src/doc/4.0-alpha2/cql/triggers.html               |   155 -
 src/doc/4.0-alpha2/cql/types.html                  |   699 --
 src/doc/4.0-alpha2/data_modeling/index.html        |   105 -
 src/doc/4.0-alpha2/development/ci.html             |   158 -
 src/doc/4.0-alpha2/development/code_style.html     |   214 -
 src/doc/4.0-alpha2/development/dependencies.html   |   155 -
 src/doc/4.0-alpha2/development/documentation.html  |   192 -
 src/doc/4.0-alpha2/development/gettingstarted.html |   160 -
 src/doc/4.0-alpha2/development/how_to_commit.html  |   186 -
 src/doc/4.0-alpha2/development/how_to_review.html  |   178 -
 src/doc/4.0-alpha2/development/ide.html            |   267 -
 src/doc/4.0-alpha2/development/index.html          |   184 -
 src/doc/4.0-alpha2/development/patches.html        |   273 -
 .../4.0-alpha2/development/release_process.html    |   389 -
 src/doc/4.0-alpha2/development/testing.html        |   184 -
 src/doc/4.0-alpha2/faq/index.html                  |   317 -
 src/doc/4.0-alpha2/genindex.html                   |    94 -
 .../4.0-alpha2/getting_started/configuring.html    |   159 -
 src/doc/4.0-alpha2/getting_started/drivers.html    |   246 -
 src/doc/4.0-alpha2/getting_started/index.html      |   150 -
 src/doc/4.0-alpha2/getting_started/installing.html |   197 -
 src/doc/4.0-alpha2/getting_started/querying.html   |   145 -
 src/doc/4.0-alpha2/index.html                      |    86 -
 src/doc/4.0-alpha2/objects.inv                     |   Bin 8951 -> 0 bytes
 src/doc/4.0-alpha2/operating/audit_logging.html    |   280 -
 src/doc/4.0-alpha2/operating/backups.html          |   124 -
 src/doc/4.0-alpha2/operating/bloom_filters.html    |   161 -
 src/doc/4.0-alpha2/operating/bulk_loading.html     |   124 -
 src/doc/4.0-alpha2/operating/cdc.html              |   193 -
 src/doc/4.0-alpha2/operating/compaction.html       |   520 -
 src/doc/4.0-alpha2/operating/compression.html      |   194 -
 src/doc/4.0-alpha2/operating/hardware.html         |   190 -
 src/doc/4.0-alpha2/operating/hints.html            |   124 -
 src/doc/4.0-alpha2/operating/index.html            |   224 -
 src/doc/4.0-alpha2/operating/metrics.html          |  1800 ----
 src/doc/4.0-alpha2/operating/read_repair.html      |   124 -
 src/doc/4.0-alpha2/operating/repair.html           |   193 -
 src/doc/4.0-alpha2/operating/security.html         |   473 -
 src/doc/4.0-alpha2/operating/snitch.html           |   177 -
 src/doc/4.0-alpha2/operating/topo_changes.html     |   221 -
 src/doc/4.0-alpha2/plugins/index.html              |   116 -
 src/doc/4.0-alpha2/search.html                     |   104 -
 src/doc/4.0-alpha2/searchindex.js                  |     1 -
 src/doc/4.0-alpha2/tools/cassandra_stress.html     |   352 -
 src/doc/4.0-alpha2/tools/cqlsh.html                |   485 -
 src/doc/4.0-alpha2/tools/index.html                |   257 -
 src/doc/4.0-alpha2/tools/nodetool/assassinate.html |   133 -
 src/doc/4.0-alpha2/tools/nodetool/bootstrap.html   |   132 -
 src/doc/4.0-alpha2/tools/nodetool/cleanup.html     |   138 -
 .../4.0-alpha2/tools/nodetool/clearsnapshot.html   |   141 -
 src/doc/4.0-alpha2/tools/nodetool/clientstats.html |   134 -
 src/doc/4.0-alpha2/tools/nodetool/compact.html     |   150 -
 .../tools/nodetool/compactionhistory.html          |   128 -
 .../4.0-alpha2/tools/nodetool/compactionstats.html |   128 -
 .../4.0-alpha2/tools/nodetool/decommission.html    |   128 -
 .../4.0-alpha2/tools/nodetool/describecluster.html |   125 -
 .../4.0-alpha2/tools/nodetool/describering.html    |   132 -
 .../4.0-alpha2/tools/nodetool/disableauditlog.html |   124 -
 .../tools/nodetool/disableautocompaction.html      |   134 -
 .../4.0-alpha2/tools/nodetool/disablebackup.html   |   124 -
 .../4.0-alpha2/tools/nodetool/disablebinary.html   |   124 -
 .../tools/nodetool/disablefullquerylog.html        |   124 -
 .../4.0-alpha2/tools/nodetool/disablegossip.html   |   125 -
 .../4.0-alpha2/tools/nodetool/disablehandoff.html  |   124 -
 .../tools/nodetool/disablehintsfordc.html          |   133 -
 .../tools/nodetool/disableoldprotocolversions.html |   124 -
 src/doc/4.0-alpha2/tools/nodetool/drain.html       |   125 -
 .../4.0-alpha2/tools/nodetool/enableauditlog.html  |   158 -
 .../tools/nodetool/enableautocompaction.html       |   134 -
 .../4.0-alpha2/tools/nodetool/enablebackup.html    |   124 -
 .../4.0-alpha2/tools/nodetool/enablebinary.html    |   124 -
 .../tools/nodetool/enablefullquerylog.html         |   155 -
 .../4.0-alpha2/tools/nodetool/enablegossip.html    |   124 -
 .../4.0-alpha2/tools/nodetool/enablehandoff.html   |   125 -
 .../tools/nodetool/enablehintsfordc.html           |   134 -
 .../tools/nodetool/enableoldprotocolversions.html  |   124 -
 .../4.0-alpha2/tools/nodetool/failuredetector.html |   125 -
 src/doc/4.0-alpha2/tools/nodetool/flush.html       |   133 -
 .../4.0-alpha2/tools/nodetool/garbagecollect.html  |   143 -
 src/doc/4.0-alpha2/tools/nodetool/gcstats.html     |   124 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   126 -
 .../tools/nodetool/getcompactionthreshold.html     |   134 -
 .../tools/nodetool/getcompactionthroughput.html    |   125 -
 .../4.0-alpha2/tools/nodetool/getconcurrency.html  |   133 -
 .../tools/nodetool/getconcurrentcompactors.html    |   125 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   125 -
 .../4.0-alpha2/tools/nodetool/getendpoints.html    |   134 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   125 -
 .../tools/nodetool/getlogginglevels.html           |   124 -
 .../tools/nodetool/getmaxhintwindow.html           |   124 -
 src/doc/4.0-alpha2/tools/nodetool/getreplicas.html |   134 -
 src/doc/4.0-alpha2/tools/nodetool/getseeds.html    |   125 -
 src/doc/4.0-alpha2/tools/nodetool/getsstables.html |   136 -
 .../tools/nodetool/getstreamthroughput.html        |   125 -
 src/doc/4.0-alpha2/tools/nodetool/gettimeout.html  |   134 -
 .../tools/nodetool/gettraceprobability.html        |   124 -
 src/doc/4.0-alpha2/tools/nodetool/gossipinfo.html  |   124 -
 .../4.0-alpha2/tools/nodetool/handoffwindow.html   |   124 -
 src/doc/4.0-alpha2/tools/nodetool/help.html        |   111 -
 src/doc/4.0-alpha2/tools/nodetool/import.html      |   159 -
 src/doc/4.0-alpha2/tools/nodetool/info.html        |   127 -
 .../tools/nodetool/invalidatecountercache.html     |   124 -
 .../tools/nodetool/invalidatekeycache.html         |   124 -
 .../tools/nodetool/invalidaterowcache.html         |   124 -
 src/doc/4.0-alpha2/tools/nodetool/join.html        |   124 -
 .../4.0-alpha2/tools/nodetool/listsnapshots.html   |   125 -
 src/doc/4.0-alpha2/tools/nodetool/move.html        |   132 -
 src/doc/4.0-alpha2/tools/nodetool/netstats.html    |   129 -
 src/doc/4.0-alpha2/tools/nodetool/nodetool.html    |   242 -
 .../4.0-alpha2/tools/nodetool/pausehandoff.html    |   124 -
 src/doc/4.0-alpha2/tools/nodetool/profileload.html |   143 -
 .../4.0-alpha2/tools/nodetool/proxyhistograms.html |   125 -
 .../4.0-alpha2/tools/nodetool/rangekeysample.html  |   125 -
 src/doc/4.0-alpha2/tools/nodetool/rebuild.html     |   149 -
 .../4.0-alpha2/tools/nodetool/rebuild_index.html   |   134 -
 src/doc/4.0-alpha2/tools/nodetool/refresh.html     |   134 -
 .../tools/nodetool/refreshsizeestimates.html       |   124 -
 .../tools/nodetool/reloadlocalschema.html          |   124 -
 src/doc/4.0-alpha2/tools/nodetool/reloadseeds.html |   125 -
 src/doc/4.0-alpha2/tools/nodetool/reloadssl.html   |   124 -
 .../4.0-alpha2/tools/nodetool/reloadtriggers.html  |   124 -
 .../tools/nodetool/relocatesstables.html           |   137 -
 src/doc/4.0-alpha2/tools/nodetool/removenode.html  |   135 -
 src/doc/4.0-alpha2/tools/nodetool/repair.html      |   197 -
 .../4.0-alpha2/tools/nodetool/repair_admin.html    |   138 -
 .../4.0-alpha2/tools/nodetool/replaybatchlog.html  |   124 -
 .../tools/nodetool/resetfullquerylog.html          |   126 -
 .../tools/nodetool/resetlocalschema.html           |   124 -
 .../4.0-alpha2/tools/nodetool/resumehandoff.html   |   124 -
 src/doc/4.0-alpha2/tools/nodetool/ring.html        |   137 -
 src/doc/4.0-alpha2/tools/nodetool/scrub.html       |   158 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   135 -
 .../tools/nodetool/setcachecapacity.html           |   134 -
 .../tools/nodetool/setcachekeystosave.html         |   136 -
 .../tools/nodetool/setcompactionthreshold.html     |   134 -
 .../tools/nodetool/setcompactionthroughput.html    |   134 -
 .../4.0-alpha2/tools/nodetool/setconcurrency.html  |   135 -
 .../tools/nodetool/setconcurrentcompactors.html    |   134 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   134 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   134 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   134 -
 .../4.0-alpha2/tools/nodetool/setlogginglevel.html |   137 -
 .../tools/nodetool/setmaxhintwindow.html           |   133 -
 .../tools/nodetool/setstreamthroughput.html        |   134 -
 src/doc/4.0-alpha2/tools/nodetool/settimeout.html  |   137 -
 .../tools/nodetool/settraceprobability.html        |   135 -
 src/doc/4.0-alpha2/tools/nodetool/sjk.html         |   133 -
 src/doc/4.0-alpha2/tools/nodetool/snapshot.html    |   151 -
 src/doc/4.0-alpha2/tools/nodetool/status.html      |   136 -
 .../tools/nodetool/statusautocompaction.html       |   137 -
 .../4.0-alpha2/tools/nodetool/statusbackup.html    |   124 -
 .../4.0-alpha2/tools/nodetool/statusbinary.html    |   124 -
 .../4.0-alpha2/tools/nodetool/statusgossip.html    |   124 -
 .../4.0-alpha2/tools/nodetool/statushandoff.html   |   125 -
 src/doc/4.0-alpha2/tools/nodetool/stop.html        |   140 -
 src/doc/4.0-alpha2/tools/nodetool/stopdaemon.html  |   124 -
 .../4.0-alpha2/tools/nodetool/tablehistograms.html |   133 -
 src/doc/4.0-alpha2/tools/nodetool/tablestats.html  |   168 -
 .../4.0-alpha2/tools/nodetool/toppartitions.html   |   142 -
 src/doc/4.0-alpha2/tools/nodetool/tpstats.html     |   128 -
 .../4.0-alpha2/tools/nodetool/truncatehints.html   |   135 -
 .../4.0-alpha2/tools/nodetool/upgradesstables.html |   144 -
 src/doc/4.0-alpha2/tools/nodetool/verify.html      |   153 -
 src/doc/4.0-alpha2/tools/nodetool/version.html     |   124 -
 .../4.0-alpha2/tools/nodetool/viewbuildstatus.html |   133 -
 src/doc/4.0-alpha2/tools/sstable/index.html        |   228 -
 src/doc/4.0-alpha2/tools/sstable/sstabledump.html  |   403 -
 .../tools/sstable/sstableexpiredblockers.html      |   148 -
 .../tools/sstable/sstablelevelreset.html           |   174 -
 .../4.0-alpha2/tools/sstable/sstableloader.html    |   408 -
 .../4.0-alpha2/tools/sstable/sstablemetadata.html  |   472 -
 .../tools/sstable/sstableofflinerelevel.html       |   189 -
 .../tools/sstable/sstablerepairedset.html          |   192 -
 src/doc/4.0-alpha2/tools/sstable/sstablescrub.html |   210 -
 src/doc/4.0-alpha2/tools/sstable/sstablesplit.html |   201 -
 .../4.0-alpha2/tools/sstable/sstableupgrade.html   |   248 -
 src/doc/4.0-alpha2/tools/sstable/sstableutil.html  |   204 -
 .../4.0-alpha2/tools/sstable/sstableverify.html    |   204 -
 .../4.0-alpha2/troubleshooting/finding_nodes.html  |   240 -
 src/doc/4.0-alpha2/troubleshooting/index.html      |   147 -
 .../4.0-alpha2/troubleshooting/reading_logs.html   |   350 -
 .../4.0-alpha2/troubleshooting/use_nodetool.html   |   320 -
 src/doc/4.0-alpha2/troubleshooting/use_tools.html  |   608 --
 src/doc/4.0-alpha3/.buildinfo                      |     4 -
 .../stress-example.yaml                            |    44 -
 .../stress-lwt-example.yaml                        |    70 -
 .../_images/data_modeling_chebotko_logical.png     |   Bin 87366 -> 0 bytes
 .../_images/data_modeling_chebotko_physical.png    |   Bin 4553809 -> 0 bytes
 .../_images/data_modeling_hotel_bucketing.png      |   Bin 22009 -> 0 bytes
 .../4.0-alpha3/_images/data_modeling_hotel_erd.png |   Bin 233309 -> 0 bytes
 .../_images/data_modeling_hotel_logical.png        |   Bin 116998 -> 0 bytes
 .../_images/data_modeling_hotel_physical.png       |   Bin 119795 -> 0 bytes
 .../_images/data_modeling_hotel_queries.png        |   Bin 103940 -> 0 bytes
 .../_images/data_modeling_hotel_relational.png     |   Bin 102656 -> 0 bytes
 .../_images/data_modeling_reservation_logical.png  |   Bin 121750 -> 0 bytes
 .../_images/data_modeling_reservation_physical.png |   Bin 142416 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_commit.png         |   Bin 104667 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_create_branch.png  |   Bin 181860 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_create_file.png    |   Bin 209110 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_editor.png         |   Bin 106175 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_fork.png           |   Bin 76159 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_pr.png             |   Bin 156081 -> 0 bytes
 src/doc/4.0-alpha3/_images/docs_preview.png        |   Bin 123826 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug0.png      |   Bin 48174 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug1.png      |   Bin 34446 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug2.png      |   Bin 57032 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug3.png      |   Bin 58677 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug4.png      |   Bin 24793 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug5.png      |   Bin 66632 -> 0 bytes
 src/doc/4.0-alpha3/_images/eclipse_debug6.png      |   Bin 87568 -> 0 bytes
 .../4.0-alpha3/_images/example-stress-graph.png    |   Bin 359103 -> 0 bytes
 .../_sources/architecture/dynamo.rst.txt           |   164 -
 .../_sources/architecture/guarantees.rst.txt       |    20 -
 .../4.0-alpha3/_sources/architecture/index.rst.txt |    29 -
 .../_sources/architecture/overview.rst.txt         |    20 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-alpha3/_sources/bugs.rst.txt           |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  2049 ----
 .../_sources/configuration/index.rst.txt           |    25 -
 src/doc/4.0-alpha3/_sources/contactus.rst.txt      |    50 -
 src/doc/4.0-alpha3/_sources/cql/appendices.rst.txt |   330 -
 src/doc/4.0-alpha3/_sources/cql/changes.rst.txt    |   211 -
 src/doc/4.0-alpha3/_sources/cql/ddl.rst.txt        |   788 --
 .../4.0-alpha3/_sources/cql/definitions.rst.txt    |   234 -
 src/doc/4.0-alpha3/_sources/cql/dml.rst.txt        |   522 -
 src/doc/4.0-alpha3/_sources/cql/functions.rst.txt  |   581 --
 src/doc/4.0-alpha3/_sources/cql/index.rst.txt      |    47 -
 src/doc/4.0-alpha3/_sources/cql/indexes.rst.txt    |    83 -
 src/doc/4.0-alpha3/_sources/cql/json.rst.txt       |   115 -
 src/doc/4.0-alpha3/_sources/cql/mvs.rst.txt        |   179 -
 src/doc/4.0-alpha3/_sources/cql/operators.rst.txt  |    74 -
 src/doc/4.0-alpha3/_sources/cql/security.rst.txt   |   538 -
 src/doc/4.0-alpha3/_sources/cql/triggers.rst.txt   |    63 -
 src/doc/4.0-alpha3/_sources/cql/types.rst.txt      |   559 -
 .../data_modeling/data_modeling_conceptual.rst.txt |    63 -
 .../data_modeling/data_modeling_logical.rst.txt    |   219 -
 .../data_modeling/data_modeling_physical.rst.txt   |   117 -
 .../data_modeling/data_modeling_queries.rst.txt    |    85 -
 .../data_modeling/data_modeling_rdbms.rst.txt      |   171 -
 .../data_modeling/data_modeling_refining.rst.txt   |   218 -
 .../data_modeling/data_modeling_schema.rst.txt     |   144 -
 .../data_modeling/data_modeling_tools.rst.txt      |    64 -
 .../_sources/data_modeling/index.rst.txt           |    35 -
 src/doc/4.0-alpha3/_sources/development/ci.rst.txt |    72 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    54 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 .../4.0-alpha3/_sources/development/ide.rst.txt    |   185 -
 .../4.0-alpha3/_sources/development/index.rst.txt  |    33 -
 .../_sources/development/patches.rst.txt           |   141 -
 .../_sources/development/release_process.rst.txt   |   268 -
 .../_sources/development/testing.rst.txt           |    98 -
 src/doc/4.0-alpha3/_sources/faq/index.rst.txt      |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    33 -
 .../_sources/getting_started/installing.rst.txt    |   106 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-alpha3/_sources/index.rst.txt          |    43 -
 src/doc/4.0-alpha3/_sources/new/index.rst.txt      |    30 -
 src/doc/4.0-alpha3/_sources/new/java11.rst.txt     |   274 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-alpha3/_sources/operating/backups.rst.txt  |    22 -
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |    24 -
 src/doc/4.0-alpha3/_sources/operating/cdc.rst.txt  |    96 -
 .../_sources/operating/compaction.rst.txt          |   447 -
 .../_sources/operating/compression.rst.txt         |    97 -
 .../4.0-alpha3/_sources/operating/hardware.rst.txt |    87 -
 .../4.0-alpha3/_sources/operating/hints.rst.txt    |    22 -
 .../4.0-alpha3/_sources/operating/index.rst.txt    |    39 -
 .../4.0-alpha3/_sources/operating/metrics.rst.txt  |   789 --
 .../_sources/operating/read_repair.rst.txt         |    22 -
 .../4.0-alpha3/_sources/operating/repair.rst.txt   |   107 -
 .../4.0-alpha3/_sources/operating/security.rst.txt |   441 -
 .../4.0-alpha3/_sources/operating/snitch.rst.txt   |    78 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-alpha3/_sources/plugins/index.rst.txt  |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   269 -
 src/doc/4.0-alpha3/_sources/tools/cqlsh.rst.txt    |   455 -
 src/doc/4.0-alpha3/_sources/tools/index.rst.txt    |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../_sources/tools/nodetool/help.rst.txt           |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../_sources/tools/nodetool/info.rst.txt           |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../_sources/tools/nodetool/join.rst.txt           |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../_sources/tools/nodetool/move.rst.txt           |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   253 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/ring.rst.txt           |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/stop.rst.txt           |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../_sources/tools/sstable/index.rst.txt           |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-alpha3/_static/ajax-loader.gif         |   Bin 673 -> 0 bytes
 src/doc/4.0-alpha3/_static/basic.css               |   676 --
 src/doc/4.0-alpha3/_static/comment-bright.png      |   Bin 756 -> 0 bytes
 src/doc/4.0-alpha3/_static/comment-close.png       |   Bin 829 -> 0 bytes
 src/doc/4.0-alpha3/_static/comment.png             |   Bin 641 -> 0 bytes
 src/doc/4.0-alpha3/_static/doctools.js             |   315 -
 .../4.0-alpha3/_static/documentation_options.js    |    10 -
 src/doc/4.0-alpha3/_static/down-pressed.png        |   Bin 222 -> 0 bytes
 src/doc/4.0-alpha3/_static/down.png                |   Bin 202 -> 0 bytes
 src/doc/4.0-alpha3/_static/extra.css               |    59 -
 src/doc/4.0-alpha3/_static/file.png                |   Bin 286 -> 0 bytes
 src/doc/4.0-alpha3/_static/jquery-3.2.1.js         | 10253 -------------------
 src/doc/4.0-alpha3/_static/jquery.js               |     4 -
 src/doc/4.0-alpha3/_static/language_data.js        |   297 -
 src/doc/4.0-alpha3/_static/minus.png               |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha3/_static/plus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha3/_static/pygments.css            |    69 -
 src/doc/4.0-alpha3/_static/searchtools.js          |   481 -
 src/doc/4.0-alpha3/_static/underscore-1.3.1.js     |   999 --
 src/doc/4.0-alpha3/_static/underscore.js           |    31 -
 src/doc/4.0-alpha3/_static/up-pressed.png          |   Bin 214 -> 0 bytes
 src/doc/4.0-alpha3/_static/up.png                  |   Bin 203 -> 0 bytes
 src/doc/4.0-alpha3/_static/websupport.js           |   808 --
 src/doc/4.0-alpha3/architecture/dynamo.html        |   236 -
 src/doc/4.0-alpha3/architecture/guarantees.html    |   115 -
 src/doc/4.0-alpha3/architecture/index.html         |   130 -
 src/doc/4.0-alpha3/architecture/overview.html      |   115 -
 .../4.0-alpha3/architecture/storage_engine.html    |   294 -
 src/doc/4.0-alpha3/bugs.html                       |   110 -
 .../configuration/cassandra_config_file.html       |  1949 ----
 src/doc/4.0-alpha3/configuration/index.html        |   111 -
 src/doc/4.0-alpha3/contactus.html                  |   127 -
 src/doc/4.0-alpha3/cql/appendices.html             |   568 -
 src/doc/4.0-alpha3/cql/changes.html                |   364 -
 src/doc/4.0-alpha3/cql/ddl.html                    |   857 --
 src/doc/4.0-alpha3/cql/definitions.html            |   317 -
 src/doc/4.0-alpha3/cql/dml.html                    |   561 -
 src/doc/4.0-alpha3/cql/functions.html              |   706 --
 src/doc/4.0-alpha3/cql/index.html                  |   247 -
 src/doc/4.0-alpha3/cql/indexes.html                |   171 -
 src/doc/4.0-alpha3/cql/json.html                   |   318 -
 src/doc/4.0-alpha3/cql/mvs.html                    |   261 -
 src/doc/4.0-alpha3/cql/operators.html              |   301 -
 src/doc/4.0-alpha3/cql/security.html               |   743 --
 src/doc/4.0-alpha3/cql/triggers.html               |   156 -
 src/doc/4.0-alpha3/cql/types.html                  |   700 --
 .../data_modeling/data_modeling_conceptual.html    |   150 -
 .../data_modeling/data_modeling_logical.html       |   284 -
 .../data_modeling/data_modeling_physical.html      |   199 -
 .../data_modeling/data_modeling_queries.html       |   170 -
 .../data_modeling/data_modeling_rdbms.html         |   251 -
 .../data_modeling/data_modeling_refining.html      |   287 -
 .../data_modeling/data_modeling_schema.html        |   235 -
 .../data_modeling/data_modeling_tools.html         |   156 -
 src/doc/4.0-alpha3/data_modeling/index.html        |   141 -
 src/doc/4.0-alpha3/development/ci.html             |   160 -
 src/doc/4.0-alpha3/development/code_style.html     |   215 -
 src/doc/4.0-alpha3/development/dependencies.html   |   156 -
 src/doc/4.0-alpha3/development/documentation.html  |   193 -
 src/doc/4.0-alpha3/development/gettingstarted.html |   161 -
 src/doc/4.0-alpha3/development/how_to_commit.html  |   187 -
 src/doc/4.0-alpha3/development/how_to_review.html  |   179 -
 src/doc/4.0-alpha3/development/ide.html            |   268 -
 src/doc/4.0-alpha3/development/index.html          |   185 -
 src/doc/4.0-alpha3/development/patches.html        |   274 -
 .../4.0-alpha3/development/release_process.html    |   390 -
 src/doc/4.0-alpha3/development/testing.html        |   185 -
 src/doc/4.0-alpha3/faq/index.html                  |   318 -
 src/doc/4.0-alpha3/genindex.html                   |    95 -
 .../4.0-alpha3/getting_started/configuring.html    |   160 -
 src/doc/4.0-alpha3/getting_started/drivers.html    |   247 -
 src/doc/4.0-alpha3/getting_started/index.html      |   151 -
 src/doc/4.0-alpha3/getting_started/installing.html |   198 -
 src/doc/4.0-alpha3/getting_started/querying.html   |   146 -
 src/doc/4.0-alpha3/index.html                      |    86 -
 src/doc/4.0-alpha3/new/index.html                  |   117 -
 src/doc/4.0-alpha3/new/java11.html                 |   348 -
 src/doc/4.0-alpha3/objects.inv                     |   Bin 9124 -> 0 bytes
 src/doc/4.0-alpha3/operating/audit_logging.html    |   281 -
 src/doc/4.0-alpha3/operating/backups.html          |   125 -
 src/doc/4.0-alpha3/operating/bloom_filters.html    |   162 -
 src/doc/4.0-alpha3/operating/bulk_loading.html     |   125 -
 src/doc/4.0-alpha3/operating/cdc.html              |   194 -
 src/doc/4.0-alpha3/operating/compaction.html       |   521 -
 src/doc/4.0-alpha3/operating/compression.html      |   195 -
 src/doc/4.0-alpha3/operating/hardware.html         |   191 -
 src/doc/4.0-alpha3/operating/hints.html            |   125 -
 src/doc/4.0-alpha3/operating/index.html            |   225 -
 src/doc/4.0-alpha3/operating/metrics.html          |  1801 ----
 src/doc/4.0-alpha3/operating/read_repair.html      |   125 -
 src/doc/4.0-alpha3/operating/repair.html           |   194 -
 src/doc/4.0-alpha3/operating/security.html         |   474 -
 src/doc/4.0-alpha3/operating/snitch.html           |   178 -
 src/doc/4.0-alpha3/operating/topo_changes.html     |   222 -
 src/doc/4.0-alpha3/plugins/index.html              |   117 -
 src/doc/4.0-alpha3/search.html                     |   105 -
 src/doc/4.0-alpha3/searchindex.js                  |     1 -
 src/doc/4.0-alpha3/tools/cassandra_stress.html     |   353 -
 src/doc/4.0-alpha3/tools/cqlsh.html                |   486 -
 src/doc/4.0-alpha3/tools/index.html                |   258 -
 src/doc/4.0-alpha3/tools/nodetool/assassinate.html |   134 -
 src/doc/4.0-alpha3/tools/nodetool/bootstrap.html   |   133 -
 src/doc/4.0-alpha3/tools/nodetool/cleanup.html     |   139 -
 .../4.0-alpha3/tools/nodetool/clearsnapshot.html   |   142 -
 src/doc/4.0-alpha3/tools/nodetool/clientstats.html |   135 -
 src/doc/4.0-alpha3/tools/nodetool/compact.html     |   151 -
 .../tools/nodetool/compactionhistory.html          |   129 -
 .../4.0-alpha3/tools/nodetool/compactionstats.html |   129 -
 .../4.0-alpha3/tools/nodetool/decommission.html    |   129 -
 .../4.0-alpha3/tools/nodetool/describecluster.html |   126 -
 .../4.0-alpha3/tools/nodetool/describering.html    |   133 -
 .../4.0-alpha3/tools/nodetool/disableauditlog.html |   125 -
 .../tools/nodetool/disableautocompaction.html      |   135 -
 .../4.0-alpha3/tools/nodetool/disablebackup.html   |   125 -
 .../4.0-alpha3/tools/nodetool/disablebinary.html   |   125 -
 .../tools/nodetool/disablefullquerylog.html        |   125 -
 .../4.0-alpha3/tools/nodetool/disablegossip.html   |   126 -
 .../4.0-alpha3/tools/nodetool/disablehandoff.html  |   125 -
 .../tools/nodetool/disablehintsfordc.html          |   134 -
 .../tools/nodetool/disableoldprotocolversions.html |   125 -
 src/doc/4.0-alpha3/tools/nodetool/drain.html       |   126 -
 .../4.0-alpha3/tools/nodetool/enableauditlog.html  |   159 -
 .../tools/nodetool/enableautocompaction.html       |   135 -
 .../4.0-alpha3/tools/nodetool/enablebackup.html    |   125 -
 .../4.0-alpha3/tools/nodetool/enablebinary.html    |   125 -
 .../tools/nodetool/enablefullquerylog.html         |   156 -
 .../4.0-alpha3/tools/nodetool/enablegossip.html    |   125 -
 .../4.0-alpha3/tools/nodetool/enablehandoff.html   |   126 -
 .../tools/nodetool/enablehintsfordc.html           |   135 -
 .../tools/nodetool/enableoldprotocolversions.html  |   125 -
 .../4.0-alpha3/tools/nodetool/failuredetector.html |   126 -
 src/doc/4.0-alpha3/tools/nodetool/flush.html       |   134 -
 .../4.0-alpha3/tools/nodetool/garbagecollect.html  |   144 -
 src/doc/4.0-alpha3/tools/nodetool/gcstats.html     |   125 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   127 -
 .../tools/nodetool/getcompactionthreshold.html     |   135 -
 .../tools/nodetool/getcompactionthroughput.html    |   126 -
 .../4.0-alpha3/tools/nodetool/getconcurrency.html  |   134 -
 .../tools/nodetool/getconcurrentcompactors.html    |   126 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   126 -
 .../4.0-alpha3/tools/nodetool/getendpoints.html    |   135 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   126 -
 .../tools/nodetool/getlogginglevels.html           |   125 -
 .../tools/nodetool/getmaxhintwindow.html           |   125 -
 src/doc/4.0-alpha3/tools/nodetool/getreplicas.html |   135 -
 src/doc/4.0-alpha3/tools/nodetool/getseeds.html    |   126 -
 src/doc/4.0-alpha3/tools/nodetool/getsstables.html |   137 -
 .../tools/nodetool/getstreamthroughput.html        |   126 -
 src/doc/4.0-alpha3/tools/nodetool/gettimeout.html  |   135 -
 .../tools/nodetool/gettraceprobability.html        |   125 -
 src/doc/4.0-alpha3/tools/nodetool/gossipinfo.html  |   125 -
 .../4.0-alpha3/tools/nodetool/handoffwindow.html   |   125 -
 src/doc/4.0-alpha3/tools/nodetool/help.html        |   112 -
 src/doc/4.0-alpha3/tools/nodetool/import.html      |   160 -
 src/doc/4.0-alpha3/tools/nodetool/info.html        |   128 -
 .../tools/nodetool/invalidatecountercache.html     |   125 -
 .../tools/nodetool/invalidatekeycache.html         |   125 -
 .../tools/nodetool/invalidaterowcache.html         |   125 -
 src/doc/4.0-alpha3/tools/nodetool/join.html        |   125 -
 .../4.0-alpha3/tools/nodetool/listsnapshots.html   |   126 -
 src/doc/4.0-alpha3/tools/nodetool/move.html        |   133 -
 src/doc/4.0-alpha3/tools/nodetool/netstats.html    |   130 -
 src/doc/4.0-alpha3/tools/nodetool/nodetool.html    |   244 -
 .../4.0-alpha3/tools/nodetool/pausehandoff.html    |   125 -
 src/doc/4.0-alpha3/tools/nodetool/profileload.html |   144 -
 .../4.0-alpha3/tools/nodetool/proxyhistograms.html |   126 -
 .../4.0-alpha3/tools/nodetool/rangekeysample.html  |   126 -
 src/doc/4.0-alpha3/tools/nodetool/rebuild.html     |   150 -
 .../4.0-alpha3/tools/nodetool/rebuild_index.html   |   135 -
 src/doc/4.0-alpha3/tools/nodetool/refresh.html     |   135 -
 .../tools/nodetool/refreshsizeestimates.html       |   125 -
 .../tools/nodetool/reloadlocalschema.html          |   125 -
 src/doc/4.0-alpha3/tools/nodetool/reloadseeds.html |   126 -
 src/doc/4.0-alpha3/tools/nodetool/reloadssl.html   |   125 -
 .../4.0-alpha3/tools/nodetool/reloadtriggers.html  |   125 -
 .../tools/nodetool/relocatesstables.html           |   138 -
 src/doc/4.0-alpha3/tools/nodetool/removenode.html  |   136 -
 src/doc/4.0-alpha3/tools/nodetool/repair.html      |   198 -
 .../4.0-alpha3/tools/nodetool/repair_admin.html    |   139 -
 .../4.0-alpha3/tools/nodetool/replaybatchlog.html  |   125 -
 .../tools/nodetool/resetfullquerylog.html          |   127 -
 .../tools/nodetool/resetlocalschema.html           |   125 -
 .../4.0-alpha3/tools/nodetool/resumehandoff.html   |   125 -
 src/doc/4.0-alpha3/tools/nodetool/ring.html        |   138 -
 src/doc/4.0-alpha3/tools/nodetool/scrub.html       |   159 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   136 -
 .../tools/nodetool/setcachecapacity.html           |   135 -
 .../tools/nodetool/setcachekeystosave.html         |   137 -
 .../tools/nodetool/setcompactionthreshold.html     |   135 -
 .../tools/nodetool/setcompactionthroughput.html    |   135 -
 .../4.0-alpha3/tools/nodetool/setconcurrency.html  |   136 -
 .../tools/nodetool/setconcurrentcompactors.html    |   135 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   135 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   135 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   135 -
 .../4.0-alpha3/tools/nodetool/setlogginglevel.html |   138 -
 .../tools/nodetool/setmaxhintwindow.html           |   134 -
 .../tools/nodetool/setstreamthroughput.html        |   135 -
 src/doc/4.0-alpha3/tools/nodetool/settimeout.html  |   138 -
 .../tools/nodetool/settraceprobability.html        |   136 -
 src/doc/4.0-alpha3/tools/nodetool/snapshot.html    |   152 -
 src/doc/4.0-alpha3/tools/nodetool/status.html      |   137 -
 .../tools/nodetool/statusautocompaction.html       |   138 -
 .../4.0-alpha3/tools/nodetool/statusbackup.html    |   125 -
 .../4.0-alpha3/tools/nodetool/statusbinary.html    |   125 -
 .../4.0-alpha3/tools/nodetool/statusgossip.html    |   125 -
 .../4.0-alpha3/tools/nodetool/statushandoff.html   |   126 -
 src/doc/4.0-alpha3/tools/nodetool/stop.html        |   142 -
 src/doc/4.0-alpha3/tools/nodetool/stopdaemon.html  |   125 -
 .../4.0-alpha3/tools/nodetool/tablehistograms.html |   134 -
 src/doc/4.0-alpha3/tools/nodetool/tablestats.html  |   169 -
 .../4.0-alpha3/tools/nodetool/toppartitions.html   |   143 -
 src/doc/4.0-alpha3/tools/nodetool/tpstats.html     |   129 -
 .../4.0-alpha3/tools/nodetool/truncatehints.html   |   136 -
 .../4.0-alpha3/tools/nodetool/upgradesstables.html |   145 -
 src/doc/4.0-alpha3/tools/nodetool/verify.html      |   154 -
 src/doc/4.0-alpha3/tools/nodetool/version.html     |   125 -
 .../4.0-alpha3/tools/nodetool/viewbuildstatus.html |   134 -
 src/doc/4.0-alpha3/tools/sstable/index.html        |   229 -
 src/doc/4.0-alpha3/tools/sstable/sstabledump.html  |   404 -
 .../tools/sstable/sstableexpiredblockers.html      |   149 -
 .../tools/sstable/sstablelevelreset.html           |   175 -
 .../4.0-alpha3/tools/sstable/sstableloader.html    |   409 -
 .../4.0-alpha3/tools/sstable/sstablemetadata.html  |   473 -
 .../tools/sstable/sstableofflinerelevel.html       |   190 -
 .../tools/sstable/sstablerepairedset.html          |   193 -
 src/doc/4.0-alpha3/tools/sstable/sstablescrub.html |   211 -
 src/doc/4.0-alpha3/tools/sstable/sstablesplit.html |   202 -
 .../4.0-alpha3/tools/sstable/sstableupgrade.html   |   249 -
 src/doc/4.0-alpha3/tools/sstable/sstableutil.html  |   205 -
 .../4.0-alpha3/tools/sstable/sstableverify.html    |   205 -
 .../4.0-alpha3/troubleshooting/finding_nodes.html  |   241 -
 src/doc/4.0-alpha3/troubleshooting/index.html      |   148 -
 .../4.0-alpha3/troubleshooting/reading_logs.html   |   351 -
 .../4.0-alpha3/troubleshooting/use_nodetool.html   |   321 -
 src/doc/4.0-alpha3/troubleshooting/use_tools.html  |   609 --
 src/doc/4.0-alpha4/.buildinfo                      |     4 -
 .../stress-lwt-example.yaml                        |    70 -
 .../stress-example.yaml                            |    44 -
 src/doc/4.0-alpha4/_images/Figure_1_backups.jpg    |   Bin 38551 -> 0 bytes
 src/doc/4.0-alpha4/_images/Figure_1_data_model.jpg |   Bin 17469 -> 0 bytes
 src/doc/4.0-alpha4/_images/Figure_1_guarantees.jpg |   Bin 17993 -> 0 bytes
 .../4.0-alpha4/_images/Figure_1_read_repair.jpg    |   Bin 36919 -> 0 bytes
 src/doc/4.0-alpha4/_images/Figure_2_data_model.jpg |   Bin 20925 -> 0 bytes
 .../4.0-alpha4/_images/Figure_2_read_repair.jpg    |   Bin 45595 -> 0 bytes
 .../4.0-alpha4/_images/Figure_3_read_repair.jpg    |   Bin 43021 -> 0 bytes
 .../4.0-alpha4/_images/Figure_4_read_repair.jpg    |   Bin 43021 -> 0 bytes
 .../4.0-alpha4/_images/Figure_5_read_repair.jpg    |   Bin 42560 -> 0 bytes
 .../4.0-alpha4/_images/Figure_6_read_repair.jpg    |   Bin 57489 -> 0 bytes
 .../_images/data_modeling_chebotko_logical.png     |   Bin 87366 -> 0 bytes
 .../_images/data_modeling_chebotko_physical.png    |   Bin 4553809 -> 0 bytes
 .../_images/data_modeling_hotel_bucketing.png      |   Bin 22009 -> 0 bytes
 .../4.0-alpha4/_images/data_modeling_hotel_erd.png |   Bin 233309 -> 0 bytes
 .../_images/data_modeling_hotel_logical.png        |   Bin 116998 -> 0 bytes
 .../_images/data_modeling_hotel_physical.png       |   Bin 119795 -> 0 bytes
 .../_images/data_modeling_hotel_queries.png        |   Bin 103940 -> 0 bytes
 .../_images/data_modeling_hotel_relational.png     |   Bin 102656 -> 0 bytes
 .../_images/data_modeling_reservation_logical.png  |   Bin 121750 -> 0 bytes
 .../_images/data_modeling_reservation_physical.png |   Bin 142416 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_commit.png         |   Bin 104667 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_create_branch.png  |   Bin 181860 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_create_file.png    |   Bin 209110 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_editor.png         |   Bin 106175 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_fork.png           |   Bin 76159 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_pr.png             |   Bin 156081 -> 0 bytes
 src/doc/4.0-alpha4/_images/docs_preview.png        |   Bin 123826 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug0.png      |   Bin 48174 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug1.png      |   Bin 34446 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug2.png      |   Bin 57032 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug3.png      |   Bin 58677 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug4.png      |   Bin 24793 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug5.png      |   Bin 66632 -> 0 bytes
 src/doc/4.0-alpha4/_images/eclipse_debug6.png      |   Bin 87568 -> 0 bytes
 .../4.0-alpha4/_images/example-stress-graph.png    |   Bin 359103 -> 0 bytes
 src/doc/4.0-alpha4/_images/hints.svg               |     9 -
 src/doc/4.0-alpha4/_images/ring.svg                |    11 -
 src/doc/4.0-alpha4/_images/vnodes.svg              |    11 -
 .../_sources/architecture/dynamo.rst.txt           |   537 -
 .../_sources/architecture/guarantees.rst.txt       |    76 -
 .../4.0-alpha4/_sources/architecture/index.rst.txt |    29 -
 .../_sources/architecture/overview.rst.txt         |   114 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-alpha4/_sources/bugs.rst.txt           |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  2050 ----
 .../_sources/configuration/index.rst.txt           |    25 -
 src/doc/4.0-alpha4/_sources/contactus.rst.txt      |    50 -
 src/doc/4.0-alpha4/_sources/cql/appendices.rst.txt |   330 -
 src/doc/4.0-alpha4/_sources/cql/changes.rst.txt    |   211 -
 src/doc/4.0-alpha4/_sources/cql/ddl.rst.txt        |   852 --
 .../4.0-alpha4/_sources/cql/definitions.rst.txt    |   234 -
 src/doc/4.0-alpha4/_sources/cql/dml.rst.txt        |   522 -
 src/doc/4.0-alpha4/_sources/cql/functions.rst.txt  |   581 --
 src/doc/4.0-alpha4/_sources/cql/index.rst.txt      |    47 -
 src/doc/4.0-alpha4/_sources/cql/indexes.rst.txt    |    83 -
 src/doc/4.0-alpha4/_sources/cql/json.rst.txt       |   115 -
 src/doc/4.0-alpha4/_sources/cql/mvs.rst.txt        |   179 -
 src/doc/4.0-alpha4/_sources/cql/operators.rst.txt  |    74 -
 src/doc/4.0-alpha4/_sources/cql/security.rst.txt   |   538 -
 src/doc/4.0-alpha4/_sources/cql/triggers.rst.txt   |    63 -
 src/doc/4.0-alpha4/_sources/cql/types.rst.txt      |   559 -
 .../data_modeling/data_modeling_conceptual.rst.txt |    63 -
 .../data_modeling/data_modeling_logical.rst.txt    |   219 -
 .../data_modeling/data_modeling_physical.rst.txt   |   117 -
 .../data_modeling/data_modeling_queries.rst.txt    |    85 -
 .../data_modeling/data_modeling_rdbms.rst.txt      |   171 -
 .../data_modeling/data_modeling_refining.rst.txt   |   218 -
 .../data_modeling/data_modeling_schema.rst.txt     |   144 -
 .../data_modeling/data_modeling_tools.rst.txt      |    64 -
 .../_sources/data_modeling/index.rst.txt           |    36 -
 .../_sources/data_modeling/intro.rst.txt           |   146 -
 src/doc/4.0-alpha4/_sources/development/ci.rst.txt |    72 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    53 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 .../4.0-alpha4/_sources/development/ide.rst.txt    |   185 -
 .../4.0-alpha4/_sources/development/index.rst.txt  |    33 -
 .../_sources/development/patches.rst.txt           |   141 -
 .../_sources/development/release_process.rst.txt   |   248 -
 .../_sources/development/testing.rst.txt           |    98 -
 src/doc/4.0-alpha4/_sources/faq/index.rst.txt      |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    34 -
 .../_sources/getting_started/installing.rst.txt    |   324 -
 .../_sources/getting_started/production.rst.txt    |   156 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-alpha4/_sources/index.rst.txt          |    43 -
 .../4.0-alpha4/_sources/new/auditlogging.rst.txt   |   440 -
 src/doc/4.0-alpha4/_sources/new/fqllogging.rst.txt |   689 --
 src/doc/4.0-alpha4/_sources/new/index.rst.txt      |    32 -
 src/doc/4.0-alpha4/_sources/new/java11.rst.txt     |   274 -
 src/doc/4.0-alpha4/_sources/new/messaging.rst.txt  |   257 -
 src/doc/4.0-alpha4/_sources/new/streaming.rst.txt  |   162 -
 .../_sources/new/transientreplication.rst.txt      |   155 -
 .../4.0-alpha4/_sources/new/virtualtables.rst.txt  |   342 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-alpha4/_sources/operating/backups.rst.txt  |   660 --
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |   660 --
 src/doc/4.0-alpha4/_sources/operating/cdc.rst.txt  |    96 -
 .../_sources/operating/compaction/index.rst.txt    |   301 -
 .../_sources/operating/compaction/lcs.rst.txt      |    90 -
 .../_sources/operating/compaction/stcs.rst.txt     |    58 -
 .../_sources/operating/compaction/twcs.rst.txt     |    76 -
 .../_sources/operating/compression.rst.txt         |    97 -
 .../4.0-alpha4/_sources/operating/hardware.rst.txt |    85 -
 .../4.0-alpha4/_sources/operating/hints.rst.txt    |   279 -
 .../4.0-alpha4/_sources/operating/index.rst.txt    |    39 -
 .../4.0-alpha4/_sources/operating/metrics.rst.txt  |   793 --
 .../_sources/operating/read_repair.rst.txt         |   169 -
 .../4.0-alpha4/_sources/operating/repair.rst.txt   |   208 -
 .../4.0-alpha4/_sources/operating/security.rst.txt |   441 -
 .../4.0-alpha4/_sources/operating/snitch.rst.txt   |    82 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-alpha4/_sources/plugins/index.rst.txt  |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   269 -
 src/doc/4.0-alpha4/_sources/tools/cqlsh.rst.txt    |   458 -
 src/doc/4.0-alpha4/_sources/tools/index.rst.txt    |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../_sources/tools/nodetool/help.rst.txt           |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../_sources/tools/nodetool/info.rst.txt           |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../_sources/tools/nodetool/join.rst.txt           |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../_sources/tools/nodetool/move.rst.txt           |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   256 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/ring.rst.txt           |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../4.0-alpha4/_sources/tools/nodetool/sjk.rst.txt |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../_sources/tools/nodetool/stop.rst.txt           |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../_sources/tools/sstable/index.rst.txt           |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-alpha4/_static/ajax-loader.gif         |   Bin 673 -> 0 bytes
 src/doc/4.0-alpha4/_static/basic.css               |   676 --
 src/doc/4.0-alpha4/_static/comment-bright.png      |   Bin 756 -> 0 bytes
 src/doc/4.0-alpha4/_static/comment-close.png       |   Bin 829 -> 0 bytes
 src/doc/4.0-alpha4/_static/comment.png             |   Bin 641 -> 0 bytes
 src/doc/4.0-alpha4/_static/doctools.js             |   315 -
 .../4.0-alpha4/_static/documentation_options.js    |    10 -
 src/doc/4.0-alpha4/_static/down-pressed.png        |   Bin 222 -> 0 bytes
 src/doc/4.0-alpha4/_static/down.png                |   Bin 202 -> 0 bytes
 src/doc/4.0-alpha4/_static/extra.css               |    76 -
 src/doc/4.0-alpha4/_static/file.png                |   Bin 286 -> 0 bytes
 src/doc/4.0-alpha4/_static/jquery-3.2.1.js         | 10253 -------------------
 src/doc/4.0-alpha4/_static/jquery.js               |     4 -
 src/doc/4.0-alpha4/_static/language_data.js        |   297 -
 src/doc/4.0-alpha4/_static/minus.png               |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha4/_static/plus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-alpha4/_static/pygments.css            |    69 -
 src/doc/4.0-alpha4/_static/searchtools.js          |   481 -
 src/doc/4.0-alpha4/_static/underscore-1.3.1.js     |   999 --
 src/doc/4.0-alpha4/_static/underscore.js           |    31 -
 src/doc/4.0-alpha4/_static/up-pressed.png          |   Bin 214 -> 0 bytes
 src/doc/4.0-alpha4/_static/up.png                  |   Bin 203 -> 0 bytes
 src/doc/4.0-alpha4/_static/websupport.js           |   808 --
 src/doc/4.0-alpha4/architecture/dynamo.html        |   563 -
 src/doc/4.0-alpha4/architecture/guarantees.html    |   175 -
 src/doc/4.0-alpha4/architecture/index.html         |   143 -
 src/doc/4.0-alpha4/architecture/overview.html      |   198 -
 .../4.0-alpha4/architecture/storage_engine.html    |   294 -
 src/doc/4.0-alpha4/bugs.html                       |   110 -
 .../configuration/cassandra_config_file.html       |  1950 ----
 src/doc/4.0-alpha4/configuration/index.html        |   111 -
 src/doc/4.0-alpha4/contactus.html                  |   127 -
 src/doc/4.0-alpha4/cql/appendices.html             |   568 -
 src/doc/4.0-alpha4/cql/changes.html                |   364 -
 src/doc/4.0-alpha4/cql/ddl.html                    |   908 --
 src/doc/4.0-alpha4/cql/definitions.html            |   317 -
 src/doc/4.0-alpha4/cql/dml.html                    |   561 -
 src/doc/4.0-alpha4/cql/functions.html              |   706 --
 src/doc/4.0-alpha4/cql/index.html                  |   247 -
 src/doc/4.0-alpha4/cql/indexes.html                |   171 -
 src/doc/4.0-alpha4/cql/json.html                   |   318 -
 src/doc/4.0-alpha4/cql/mvs.html                    |   261 -
 src/doc/4.0-alpha4/cql/operators.html              |   301 -
 src/doc/4.0-alpha4/cql/security.html               |   743 --
 src/doc/4.0-alpha4/cql/triggers.html               |   156 -
 src/doc/4.0-alpha4/cql/types.html                  |   700 --
 .../data_modeling/data_modeling_conceptual.html    |   151 -
 .../data_modeling/data_modeling_logical.html       |   285 -
 .../data_modeling/data_modeling_physical.html      |   200 -
 .../data_modeling/data_modeling_queries.html       |   171 -
 .../data_modeling/data_modeling_rdbms.html         |   252 -
 .../data_modeling/data_modeling_refining.html      |   288 -
 .../data_modeling/data_modeling_schema.html        |   236 -
 .../data_modeling/data_modeling_tools.html         |   157 -
 src/doc/4.0-alpha4/data_modeling/index.html        |   154 -
 src/doc/4.0-alpha4/data_modeling/intro.html        |   230 -
 src/doc/4.0-alpha4/development/ci.html             |   160 -
 src/doc/4.0-alpha4/development/code_style.html     |   215 -
 src/doc/4.0-alpha4/development/dependencies.html   |   155 -
 src/doc/4.0-alpha4/development/documentation.html  |   193 -
 src/doc/4.0-alpha4/development/gettingstarted.html |   161 -
 src/doc/4.0-alpha4/development/how_to_commit.html  |   187 -
 src/doc/4.0-alpha4/development/how_to_review.html  |   179 -
 src/doc/4.0-alpha4/development/ide.html            |   268 -
 src/doc/4.0-alpha4/development/index.html          |   185 -
 src/doc/4.0-alpha4/development/patches.html        |   274 -
 .../4.0-alpha4/development/release_process.html    |   370 -
 src/doc/4.0-alpha4/development/testing.html        |   185 -
 src/doc/4.0-alpha4/faq/index.html                  |   318 -
 src/doc/4.0-alpha4/genindex.html                   |    95 -
 .../4.0-alpha4/getting_started/configuring.html    |   161 -
 src/doc/4.0-alpha4/getting_started/drivers.html    |   248 -
 src/doc/4.0-alpha4/getting_started/index.html      |   165 -
 src/doc/4.0-alpha4/getting_started/installing.html |   388 -
 src/doc/4.0-alpha4/getting_started/production.html |   246 -
 src/doc/4.0-alpha4/getting_started/querying.html   |   147 -
 src/doc/4.0-alpha4/index.html                      |    86 -
 src/doc/4.0-alpha4/new/auditlogging.html           |   549 -
 src/doc/4.0-alpha4/new/fqllogging.html             |   721 --
 src/doc/4.0-alpha4/new/index.html                  |   189 -
 src/doc/4.0-alpha4/new/java11.html                 |   354 -
 src/doc/4.0-alpha4/new/messaging.html              |   344 -
 src/doc/4.0-alpha4/new/streaming.html              |   260 -
 src/doc/4.0-alpha4/new/transientreplication.html   |   228 -
 src/doc/4.0-alpha4/new/virtualtables.html          |   427 -
 src/doc/4.0-alpha4/objects.inv                     |   Bin 9472 -> 0 bytes
 src/doc/4.0-alpha4/operating/audit_logging.html    |   281 -
 src/doc/4.0-alpha4/operating/backups.html          |   666 --
 src/doc/4.0-alpha4/operating/bloom_filters.html    |   162 -
 src/doc/4.0-alpha4/operating/bulk_loading.html     |   680 --
 src/doc/4.0-alpha4/operating/cdc.html              |   194 -
 src/doc/4.0-alpha4/operating/compaction/index.html |   387 -
 src/doc/4.0-alpha4/operating/compaction/lcs.html   |   147 -
 src/doc/4.0-alpha4/operating/compaction/stcs.html  |   122 -
 src/doc/4.0-alpha4/operating/compaction/twcs.html  |   140 -
 src/doc/4.0-alpha4/operating/compression.html      |   195 -
 src/doc/4.0-alpha4/operating/hardware.html         |   189 -
 src/doc/4.0-alpha4/operating/hints.html            |   402 -
 src/doc/4.0-alpha4/operating/index.html            |   252 -
 src/doc/4.0-alpha4/operating/metrics.html          |  1801 ----
 src/doc/4.0-alpha4/operating/read_repair.html      |   267 -
 src/doc/4.0-alpha4/operating/repair.html           |   278 -
 src/doc/4.0-alpha4/operating/security.html         |   474 -
 src/doc/4.0-alpha4/operating/snitch.html           |   180 -
 src/doc/4.0-alpha4/operating/topo_changes.html     |   222 -
 src/doc/4.0-alpha4/plugins/index.html              |   117 -
 src/doc/4.0-alpha4/search.html                     |   105 -
 src/doc/4.0-alpha4/searchindex.js                  |     1 -
 src/doc/4.0-alpha4/tools/cassandra_stress.html     |   353 -
 src/doc/4.0-alpha4/tools/cqlsh.html                |   488 -
 src/doc/4.0-alpha4/tools/index.html                |   258 -
 src/doc/4.0-alpha4/tools/nodetool/assassinate.html |   134 -
 src/doc/4.0-alpha4/tools/nodetool/bootstrap.html   |   133 -
 src/doc/4.0-alpha4/tools/nodetool/cleanup.html     |   139 -
 .../4.0-alpha4/tools/nodetool/clearsnapshot.html   |   142 -
 src/doc/4.0-alpha4/tools/nodetool/clientstats.html |   135 -
 src/doc/4.0-alpha4/tools/nodetool/compact.html     |   151 -
 .../tools/nodetool/compactionhistory.html          |   129 -
 .../4.0-alpha4/tools/nodetool/compactionstats.html |   129 -
 .../4.0-alpha4/tools/nodetool/decommission.html    |   129 -
 .../4.0-alpha4/tools/nodetool/describecluster.html |   126 -
 .../4.0-alpha4/tools/nodetool/describering.html    |   133 -
 .../4.0-alpha4/tools/nodetool/disableauditlog.html |   125 -
 .../tools/nodetool/disableautocompaction.html      |   135 -
 .../4.0-alpha4/tools/nodetool/disablebackup.html   |   125 -
 .../4.0-alpha4/tools/nodetool/disablebinary.html   |   125 -
 .../tools/nodetool/disablefullquerylog.html        |   125 -
 .../4.0-alpha4/tools/nodetool/disablegossip.html   |   126 -
 .../4.0-alpha4/tools/nodetool/disablehandoff.html  |   125 -
 .../tools/nodetool/disablehintsfordc.html          |   134 -
 .../tools/nodetool/disableoldprotocolversions.html |   125 -
 src/doc/4.0-alpha4/tools/nodetool/drain.html       |   126 -
 .../4.0-alpha4/tools/nodetool/enableauditlog.html  |   159 -
 .../tools/nodetool/enableautocompaction.html       |   135 -
 .../4.0-alpha4/tools/nodetool/enablebackup.html    |   125 -
 .../4.0-alpha4/tools/nodetool/enablebinary.html    |   125 -
 .../tools/nodetool/enablefullquerylog.html         |   156 -
 .../4.0-alpha4/tools/nodetool/enablegossip.html    |   125 -
 .../4.0-alpha4/tools/nodetool/enablehandoff.html   |   126 -
 .../tools/nodetool/enablehintsfordc.html           |   135 -
 .../tools/nodetool/enableoldprotocolversions.html  |   125 -
 .../4.0-alpha4/tools/nodetool/failuredetector.html |   126 -
 src/doc/4.0-alpha4/tools/nodetool/flush.html       |   134 -
 .../4.0-alpha4/tools/nodetool/garbagecollect.html  |   144 -
 src/doc/4.0-alpha4/tools/nodetool/gcstats.html     |   125 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   127 -
 .../tools/nodetool/getcompactionthreshold.html     |   135 -
 .../tools/nodetool/getcompactionthroughput.html    |   126 -
 .../4.0-alpha4/tools/nodetool/getconcurrency.html  |   134 -
 .../tools/nodetool/getconcurrentcompactors.html    |   126 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   126 -
 .../4.0-alpha4/tools/nodetool/getendpoints.html    |   135 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   126 -
 .../tools/nodetool/getlogginglevels.html           |   125 -
 .../tools/nodetool/getmaxhintwindow.html           |   125 -
 src/doc/4.0-alpha4/tools/nodetool/getreplicas.html |   135 -
 src/doc/4.0-alpha4/tools/nodetool/getseeds.html    |   126 -
 src/doc/4.0-alpha4/tools/nodetool/getsstables.html |   137 -
 .../tools/nodetool/getstreamthroughput.html        |   126 -
 src/doc/4.0-alpha4/tools/nodetool/gettimeout.html  |   135 -
 .../tools/nodetool/gettraceprobability.html        |   125 -
 src/doc/4.0-alpha4/tools/nodetool/gossipinfo.html  |   125 -
 .../4.0-alpha4/tools/nodetool/handoffwindow.html   |   125 -
 src/doc/4.0-alpha4/tools/nodetool/help.html        |   112 -
 src/doc/4.0-alpha4/tools/nodetool/import.html      |   160 -
 src/doc/4.0-alpha4/tools/nodetool/info.html        |   128 -
 .../tools/nodetool/invalidatecountercache.html     |   125 -
 .../tools/nodetool/invalidatekeycache.html         |   125 -
 .../tools/nodetool/invalidaterowcache.html         |   125 -
 src/doc/4.0-alpha4/tools/nodetool/join.html        |   125 -
 .../4.0-alpha4/tools/nodetool/listsnapshots.html   |   128 -
 src/doc/4.0-alpha4/tools/nodetool/move.html        |   133 -
 src/doc/4.0-alpha4/tools/nodetool/netstats.html    |   130 -
 src/doc/4.0-alpha4/tools/nodetool/nodetool.html    |   246 -
 .../4.0-alpha4/tools/nodetool/pausehandoff.html    |   125 -
 src/doc/4.0-alpha4/tools/nodetool/profileload.html |   144 -
 .../4.0-alpha4/tools/nodetool/proxyhistograms.html |   126 -
 .../4.0-alpha4/tools/nodetool/rangekeysample.html  |   126 -
 src/doc/4.0-alpha4/tools/nodetool/rebuild.html     |   150 -
 .../4.0-alpha4/tools/nodetool/rebuild_index.html   |   135 -
 src/doc/4.0-alpha4/tools/nodetool/refresh.html     |   135 -
 .../tools/nodetool/refreshsizeestimates.html       |   125 -
 .../tools/nodetool/reloadlocalschema.html          |   125 -
 src/doc/4.0-alpha4/tools/nodetool/reloadseeds.html |   126 -
 src/doc/4.0-alpha4/tools/nodetool/reloadssl.html   |   125 -
 .../4.0-alpha4/tools/nodetool/reloadtriggers.html  |   125 -
 .../tools/nodetool/relocatesstables.html           |   138 -
 src/doc/4.0-alpha4/tools/nodetool/removenode.html  |   136 -
 src/doc/4.0-alpha4/tools/nodetool/repair.html      |   199 -
 .../4.0-alpha4/tools/nodetool/repair_admin.html    |   139 -
 .../4.0-alpha4/tools/nodetool/replaybatchlog.html  |   125 -
 .../tools/nodetool/resetfullquerylog.html          |   127 -
 .../tools/nodetool/resetlocalschema.html           |   125 -
 .../4.0-alpha4/tools/nodetool/resumehandoff.html   |   125 -
 src/doc/4.0-alpha4/tools/nodetool/ring.html        |   138 -
 src/doc/4.0-alpha4/tools/nodetool/scrub.html       |   159 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   136 -
 .../tools/nodetool/setcachecapacity.html           |   135 -
 .../tools/nodetool/setcachekeystosave.html         |   137 -
 .../tools/nodetool/setcompactionthreshold.html     |   135 -
 .../tools/nodetool/setcompactionthroughput.html    |   135 -
 .../4.0-alpha4/tools/nodetool/setconcurrency.html  |   136 -
 .../tools/nodetool/setconcurrentcompactors.html    |   135 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   135 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   135 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   135 -
 .../4.0-alpha4/tools/nodetool/setlogginglevel.html |   138 -
 .../tools/nodetool/setmaxhintwindow.html           |   134 -
 .../tools/nodetool/setstreamthroughput.html        |   135 -
 src/doc/4.0-alpha4/tools/nodetool/settimeout.html  |   138 -
 .../tools/nodetool/settraceprobability.html        |   136 -
 src/doc/4.0-alpha4/tools/nodetool/sjk.html         |   134 -
 src/doc/4.0-alpha4/tools/nodetool/snapshot.html    |   152 -
 src/doc/4.0-alpha4/tools/nodetool/status.html      |   137 -
 .../tools/nodetool/statusautocompaction.html       |   138 -
 .../4.0-alpha4/tools/nodetool/statusbackup.html    |   125 -
 .../4.0-alpha4/tools/nodetool/statusbinary.html    |   125 -
 .../4.0-alpha4/tools/nodetool/statusgossip.html    |   125 -
 .../4.0-alpha4/tools/nodetool/statushandoff.html   |   126 -
 src/doc/4.0-alpha4/tools/nodetool/stop.html        |   142 -
 src/doc/4.0-alpha4/tools/nodetool/stopdaemon.html  |   125 -
 .../4.0-alpha4/tools/nodetool/tablehistograms.html |   134 -
 src/doc/4.0-alpha4/tools/nodetool/tablestats.html  |   169 -
 .../4.0-alpha4/tools/nodetool/toppartitions.html   |   143 -
 src/doc/4.0-alpha4/tools/nodetool/tpstats.html     |   129 -
 .../4.0-alpha4/tools/nodetool/truncatehints.html   |   136 -
 .../4.0-alpha4/tools/nodetool/upgradesstables.html |   145 -
 src/doc/4.0-alpha4/tools/nodetool/verify.html      |   154 -
 src/doc/4.0-alpha4/tools/nodetool/version.html     |   125 -
 .../4.0-alpha4/tools/nodetool/viewbuildstatus.html |   134 -
 src/doc/4.0-alpha4/tools/sstable/index.html        |   229 -
 src/doc/4.0-alpha4/tools/sstable/sstabledump.html  |   404 -
 .../tools/sstable/sstableexpiredblockers.html      |   149 -
 .../tools/sstable/sstablelevelreset.html           |   175 -
 .../4.0-alpha4/tools/sstable/sstableloader.html    |   409 -
 .../4.0-alpha4/tools/sstable/sstablemetadata.html  |   473 -
 .../tools/sstable/sstableofflinerelevel.html       |   190 -
 .../tools/sstable/sstablerepairedset.html          |   193 -
 src/doc/4.0-alpha4/tools/sstable/sstablescrub.html |   211 -
 src/doc/4.0-alpha4/tools/sstable/sstablesplit.html |   202 -
 .../4.0-alpha4/tools/sstable/sstableupgrade.html   |   249 -
 src/doc/4.0-alpha4/tools/sstable/sstableutil.html  |   205 -
 .../4.0-alpha4/tools/sstable/sstableverify.html    |   205 -
 .../4.0-alpha4/troubleshooting/finding_nodes.html  |   241 -
 src/doc/4.0-alpha4/troubleshooting/index.html      |   148 -
 .../4.0-alpha4/troubleshooting/reading_logs.html   |   351 -
 .../4.0-alpha4/troubleshooting/use_nodetool.html   |   321 -
 src/doc/4.0-alpha4/troubleshooting/use_tools.html  |   609 --
 src/doc/4.0-beta1/.buildinfo                       |     4 -
 .../stress-lwt-example.yaml                        |    70 -
 .../stress-example.yaml                            |    44 -
 src/doc/4.0-beta1/_images/Figure_1_backups.jpg     |   Bin 38551 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_1_data_model.jpg  |   Bin 17469 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_1_guarantees.jpg  |   Bin 17993 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_1_read_repair.jpg |   Bin 36919 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_2_data_model.jpg  |   Bin 20925 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_2_read_repair.jpg |   Bin 45595 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_3_read_repair.jpg |   Bin 43021 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_4_read_repair.jpg |   Bin 43021 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_5_read_repair.jpg |   Bin 42560 -> 0 bytes
 src/doc/4.0-beta1/_images/Figure_6_read_repair.jpg |   Bin 57489 -> 0 bytes
 .../_images/data_modeling_chebotko_logical.png     |   Bin 87366 -> 0 bytes
 .../_images/data_modeling_chebotko_physical.png    |   Bin 4553809 -> 0 bytes
 .../_images/data_modeling_hotel_bucketing.png      |   Bin 22009 -> 0 bytes
 .../4.0-beta1/_images/data_modeling_hotel_erd.png  |   Bin 233309 -> 0 bytes
 .../_images/data_modeling_hotel_logical.png        |   Bin 116998 -> 0 bytes
 .../_images/data_modeling_hotel_physical.png       |   Bin 119795 -> 0 bytes
 .../_images/data_modeling_hotel_queries.png        |   Bin 103940 -> 0 bytes
 .../_images/data_modeling_hotel_relational.png     |   Bin 102656 -> 0 bytes
 .../_images/data_modeling_reservation_logical.png  |   Bin 121750 -> 0 bytes
 .../_images/data_modeling_reservation_physical.png |   Bin 142416 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_commit.png          |   Bin 104667 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_create_branch.png   |   Bin 181860 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_create_file.png     |   Bin 209110 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_editor.png          |   Bin 106175 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_fork.png            |   Bin 76159 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_pr.png              |   Bin 156081 -> 0 bytes
 src/doc/4.0-beta1/_images/docs_preview.png         |   Bin 123826 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug0.png       |   Bin 48174 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug1.png       |   Bin 34446 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug2.png       |   Bin 57032 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug3.png       |   Bin 58677 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug4.png       |   Bin 24793 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug5.png       |   Bin 66632 -> 0 bytes
 src/doc/4.0-beta1/_images/eclipse_debug6.png       |   Bin 87568 -> 0 bytes
 src/doc/4.0-beta1/_images/example-stress-graph.png |   Bin 359103 -> 0 bytes
 src/doc/4.0-beta1/_images/hints.svg                |     9 -
 src/doc/4.0-beta1/_images/ring.svg                 |    11 -
 src/doc/4.0-beta1/_images/vnodes.svg               |    11 -
 .../4.0-beta1/_sources/architecture/dynamo.rst.txt |   537 -
 .../_sources/architecture/guarantees.rst.txt       |    76 -
 .../4.0-beta1/_sources/architecture/index.rst.txt  |    29 -
 .../_sources/architecture/overview.rst.txt         |   114 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-beta1/_sources/bugs.rst.txt            |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  2075 ----
 .../4.0-beta1/_sources/configuration/index.rst.txt |    25 -
 src/doc/4.0-beta1/_sources/contactus.rst.txt       |    50 -
 src/doc/4.0-beta1/_sources/cql/appendices.rst.txt  |   330 -
 src/doc/4.0-beta1/_sources/cql/changes.rst.txt     |   211 -
 src/doc/4.0-beta1/_sources/cql/ddl.rst.txt         |   852 --
 src/doc/4.0-beta1/_sources/cql/definitions.rst.txt |   234 -
 src/doc/4.0-beta1/_sources/cql/dml.rst.txt         |   522 -
 src/doc/4.0-beta1/_sources/cql/functions.rst.txt   |   581 --
 src/doc/4.0-beta1/_sources/cql/index.rst.txt       |    47 -
 src/doc/4.0-beta1/_sources/cql/indexes.rst.txt     |    83 -
 src/doc/4.0-beta1/_sources/cql/json.rst.txt        |   115 -
 src/doc/4.0-beta1/_sources/cql/mvs.rst.txt         |   179 -
 src/doc/4.0-beta1/_sources/cql/operators.rst.txt   |    74 -
 src/doc/4.0-beta1/_sources/cql/security.rst.txt    |   538 -
 src/doc/4.0-beta1/_sources/cql/triggers.rst.txt    |    63 -
 src/doc/4.0-beta1/_sources/cql/types.rst.txt       |   559 -
 .../data_modeling/data_modeling_conceptual.rst.txt |    63 -
 .../data_modeling/data_modeling_logical.rst.txt    |   219 -
 .../data_modeling/data_modeling_physical.rst.txt   |   117 -
 .../data_modeling/data_modeling_queries.rst.txt    |    85 -
 .../data_modeling/data_modeling_rdbms.rst.txt      |   171 -
 .../data_modeling/data_modeling_refining.rst.txt   |   218 -
 .../data_modeling/data_modeling_schema.rst.txt     |   144 -
 .../data_modeling/data_modeling_tools.rst.txt      |    64 -
 .../4.0-beta1/_sources/data_modeling/index.rst.txt |    36 -
 .../4.0-beta1/_sources/data_modeling/intro.rst.txt |   146 -
 src/doc/4.0-beta1/_sources/development/ci.rst.txt  |    72 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    53 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 src/doc/4.0-beta1/_sources/development/ide.rst.txt |   185 -
 .../4.0-beta1/_sources/development/index.rst.txt   |    33 -
 .../4.0-beta1/_sources/development/patches.rst.txt |   141 -
 .../_sources/development/release_process.rst.txt   |   251 -
 .../4.0-beta1/_sources/development/testing.rst.txt |    98 -
 src/doc/4.0-beta1/_sources/faq/index.rst.txt       |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    34 -
 .../_sources/getting_started/installing.rst.txt    |   324 -
 .../_sources/getting_started/production.rst.txt    |   156 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-beta1/_sources/index.rst.txt           |    43 -
 .../4.0-beta1/_sources/new/auditlogging.rst.txt    |   440 -
 src/doc/4.0-beta1/_sources/new/fqllogging.rst.txt  |   689 --
 src/doc/4.0-beta1/_sources/new/index.rst.txt       |    32 -
 src/doc/4.0-beta1/_sources/new/java11.rst.txt      |   274 -
 src/doc/4.0-beta1/_sources/new/messaging.rst.txt   |   257 -
 src/doc/4.0-beta1/_sources/new/streaming.rst.txt   |   162 -
 .../_sources/new/transientreplication.rst.txt      |   155 -
 .../4.0-beta1/_sources/new/virtualtables.rst.txt   |   342 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-beta1/_sources/operating/backups.rst.txt   |   660 --
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |   660 --
 src/doc/4.0-beta1/_sources/operating/cdc.rst.txt   |    96 -
 .../_sources/operating/compaction/index.rst.txt    |   301 -
 .../_sources/operating/compaction/lcs.rst.txt      |    90 -
 .../_sources/operating/compaction/stcs.rst.txt     |    58 -
 .../_sources/operating/compaction/twcs.rst.txt     |    76 -
 .../_sources/operating/compression.rst.txt         |   164 -
 .../4.0-beta1/_sources/operating/hardware.rst.txt  |    85 -
 src/doc/4.0-beta1/_sources/operating/hints.rst.txt |   279 -
 src/doc/4.0-beta1/_sources/operating/index.rst.txt |    39 -
 .../4.0-beta1/_sources/operating/metrics.rst.txt   |   793 --
 .../_sources/operating/read_repair.rst.txt         |   169 -
 .../4.0-beta1/_sources/operating/repair.rst.txt    |   208 -
 .../4.0-beta1/_sources/operating/security.rst.txt  |   441 -
 .../4.0-beta1/_sources/operating/snitch.rst.txt    |    82 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-beta1/_sources/plugins/index.rst.txt   |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   269 -
 src/doc/4.0-beta1/_sources/tools/cqlsh.rst.txt     |   458 -
 src/doc/4.0-beta1/_sources/tools/index.rst.txt     |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../4.0-beta1/_sources/tools/nodetool/help.rst.txt |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../4.0-beta1/_sources/tools/nodetool/info.rst.txt |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../4.0-beta1/_sources/tools/nodetool/join.rst.txt |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../4.0-beta1/_sources/tools/nodetool/move.rst.txt |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   256 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../4.0-beta1/_sources/tools/nodetool/ring.rst.txt |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../4.0-beta1/_sources/tools/nodetool/sjk.rst.txt  |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../4.0-beta1/_sources/tools/nodetool/stop.rst.txt |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../4.0-beta1/_sources/tools/sstable/index.rst.txt |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-beta1/_static/ajax-loader.gif          |   Bin 673 -> 0 bytes
 src/doc/4.0-beta1/_static/basic.css                |   676 --
 src/doc/4.0-beta1/_static/comment-bright.png       |   Bin 756 -> 0 bytes
 src/doc/4.0-beta1/_static/comment-close.png        |   Bin 829 -> 0 bytes
 src/doc/4.0-beta1/_static/comment.png              |   Bin 641 -> 0 bytes
 src/doc/4.0-beta1/_static/doctools.js              |   315 -
 src/doc/4.0-beta1/_static/documentation_options.js |    10 -
 src/doc/4.0-beta1/_static/down-pressed.png         |   Bin 222 -> 0 bytes
 src/doc/4.0-beta1/_static/down.png                 |   Bin 202 -> 0 bytes
 src/doc/4.0-beta1/_static/extra.css                |    76 -
 src/doc/4.0-beta1/_static/file.png                 |   Bin 286 -> 0 bytes
 src/doc/4.0-beta1/_static/jquery-3.2.1.js          | 10253 -------------------
 src/doc/4.0-beta1/_static/jquery.js                |     4 -
 src/doc/4.0-beta1/_static/language_data.js         |   297 -
 src/doc/4.0-beta1/_static/minus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-beta1/_static/plus.png                 |   Bin 90 -> 0 bytes
 src/doc/4.0-beta1/_static/pygments.css             |    69 -
 src/doc/4.0-beta1/_static/searchtools.js           |   481 -
 src/doc/4.0-beta1/_static/underscore-1.3.1.js      |   999 --
 src/doc/4.0-beta1/_static/underscore.js            |    31 -
 src/doc/4.0-beta1/_static/up-pressed.png           |   Bin 214 -> 0 bytes
 src/doc/4.0-beta1/_static/up.png                   |   Bin 203 -> 0 bytes
 src/doc/4.0-beta1/_static/websupport.js            |   808 --
 src/doc/4.0-beta1/architecture/dynamo.html         |   563 -
 src/doc/4.0-beta1/architecture/guarantees.html     |   175 -
 src/doc/4.0-beta1/architecture/index.html          |   143 -
 src/doc/4.0-beta1/architecture/overview.html       |   198 -
 src/doc/4.0-beta1/architecture/storage_engine.html |   294 -
 src/doc/4.0-beta1/bugs.html                        |   110 -
 .../configuration/cassandra_config_file.html       |  1974 ----
 src/doc/4.0-beta1/configuration/index.html         |   111 -
 src/doc/4.0-beta1/contactus.html                   |   127 -
 src/doc/4.0-beta1/cql/appendices.html              |   568 -
 src/doc/4.0-beta1/cql/changes.html                 |   364 -
 src/doc/4.0-beta1/cql/ddl.html                     |   908 --
 src/doc/4.0-beta1/cql/definitions.html             |   317 -
 src/doc/4.0-beta1/cql/dml.html                     |   561 -
 src/doc/4.0-beta1/cql/functions.html               |   706 --
 src/doc/4.0-beta1/cql/index.html                   |   247 -
 src/doc/4.0-beta1/cql/indexes.html                 |   171 -
 src/doc/4.0-beta1/cql/json.html                    |   318 -
 src/doc/4.0-beta1/cql/mvs.html                     |   261 -
 src/doc/4.0-beta1/cql/operators.html               |   301 -
 src/doc/4.0-beta1/cql/security.html                |   743 --
 src/doc/4.0-beta1/cql/triggers.html                |   156 -
 src/doc/4.0-beta1/cql/types.html                   |   700 --
 .../data_modeling/data_modeling_conceptual.html    |   151 -
 .../data_modeling/data_modeling_logical.html       |   285 -
 .../data_modeling/data_modeling_physical.html      |   200 -
 .../data_modeling/data_modeling_queries.html       |   171 -
 .../data_modeling/data_modeling_rdbms.html         |   252 -
 .../data_modeling/data_modeling_refining.html      |   288 -
 .../data_modeling/data_modeling_schema.html        |   236 -
 .../data_modeling/data_modeling_tools.html         |   157 -
 src/doc/4.0-beta1/data_modeling/index.html         |   154 -
 src/doc/4.0-beta1/data_modeling/intro.html         |   230 -
 src/doc/4.0-beta1/development/ci.html              |   160 -
 src/doc/4.0-beta1/development/code_style.html      |   215 -
 src/doc/4.0-beta1/development/dependencies.html    |   155 -
 src/doc/4.0-beta1/development/documentation.html   |   193 -
 src/doc/4.0-beta1/development/gettingstarted.html  |   161 -
 src/doc/4.0-beta1/development/how_to_commit.html   |   187 -
 src/doc/4.0-beta1/development/how_to_review.html   |   179 -
 src/doc/4.0-beta1/development/ide.html             |   268 -
 src/doc/4.0-beta1/development/index.html           |   185 -
 src/doc/4.0-beta1/development/patches.html         |   274 -
 src/doc/4.0-beta1/development/release_process.html |   362 -
 src/doc/4.0-beta1/development/testing.html         |   185 -
 src/doc/4.0-beta1/faq/index.html                   |   318 -
 src/doc/4.0-beta1/genindex.html                    |    95 -
 src/doc/4.0-beta1/getting_started/configuring.html |   161 -
 src/doc/4.0-beta1/getting_started/drivers.html     |   248 -
 src/doc/4.0-beta1/getting_started/index.html       |   165 -
 src/doc/4.0-beta1/getting_started/installing.html  |   388 -
 src/doc/4.0-beta1/getting_started/production.html  |   246 -
 src/doc/4.0-beta1/getting_started/querying.html    |   147 -
 src/doc/4.0-beta1/index.html                       |    86 -
 src/doc/4.0-beta1/new/auditlogging.html            |   549 -
 src/doc/4.0-beta1/new/fqllogging.html              |   721 --
 src/doc/4.0-beta1/new/index.html                   |   189 -
 src/doc/4.0-beta1/new/java11.html                  |   354 -
 src/doc/4.0-beta1/new/messaging.html               |   344 -
 src/doc/4.0-beta1/new/streaming.html               |   260 -
 src/doc/4.0-beta1/new/transientreplication.html    |   228 -
 src/doc/4.0-beta1/new/virtualtables.html           |   427 -
 src/doc/4.0-beta1/objects.inv                      |   Bin 9472 -> 0 bytes
 src/doc/4.0-beta1/operating/audit_logging.html     |   281 -
 src/doc/4.0-beta1/operating/backups.html           |   666 --
 src/doc/4.0-beta1/operating/bloom_filters.html     |   162 -
 src/doc/4.0-beta1/operating/bulk_loading.html      |   680 --
 src/doc/4.0-beta1/operating/cdc.html               |   194 -
 src/doc/4.0-beta1/operating/compaction/index.html  |   387 -
 src/doc/4.0-beta1/operating/compaction/lcs.html    |   147 -
 src/doc/4.0-beta1/operating/compaction/stcs.html   |   122 -
 src/doc/4.0-beta1/operating/compaction/twcs.html   |   140 -
 src/doc/4.0-beta1/operating/compression.html       |   294 -
 src/doc/4.0-beta1/operating/hardware.html          |   189 -
 src/doc/4.0-beta1/operating/hints.html             |   402 -
 src/doc/4.0-beta1/operating/index.html             |   252 -
 src/doc/4.0-beta1/operating/metrics.html           |  1801 ----
 src/doc/4.0-beta1/operating/read_repair.html       |   267 -
 src/doc/4.0-beta1/operating/repair.html            |   278 -
 src/doc/4.0-beta1/operating/security.html          |   474 -
 src/doc/4.0-beta1/operating/snitch.html            |   180 -
 src/doc/4.0-beta1/operating/topo_changes.html      |   222 -
 src/doc/4.0-beta1/plugins/index.html               |   117 -
 src/doc/4.0-beta1/search.html                      |   105 -
 src/doc/4.0-beta1/searchindex.js                   |     1 -
 src/doc/4.0-beta1/tools/cassandra_stress.html      |   353 -
 src/doc/4.0-beta1/tools/cqlsh.html                 |   488 -
 src/doc/4.0-beta1/tools/index.html                 |   258 -
 src/doc/4.0-beta1/tools/nodetool/assassinate.html  |   134 -
 src/doc/4.0-beta1/tools/nodetool/bootstrap.html    |   133 -
 src/doc/4.0-beta1/tools/nodetool/cleanup.html      |   139 -
 .../4.0-beta1/tools/nodetool/clearsnapshot.html    |   142 -
 src/doc/4.0-beta1/tools/nodetool/clientstats.html  |   135 -
 src/doc/4.0-beta1/tools/nodetool/compact.html      |   151 -
 .../tools/nodetool/compactionhistory.html          |   129 -
 .../4.0-beta1/tools/nodetool/compactionstats.html  |   129 -
 src/doc/4.0-beta1/tools/nodetool/decommission.html |   129 -
 .../4.0-beta1/tools/nodetool/describecluster.html  |   126 -
 src/doc/4.0-beta1/tools/nodetool/describering.html |   133 -
 .../4.0-beta1/tools/nodetool/disableauditlog.html  |   125 -
 .../tools/nodetool/disableautocompaction.html      |   135 -
 .../4.0-beta1/tools/nodetool/disablebackup.html    |   125 -
 .../4.0-beta1/tools/nodetool/disablebinary.html    |   125 -
 .../tools/nodetool/disablefullquerylog.html        |   125 -
 .../4.0-beta1/tools/nodetool/disablegossip.html    |   126 -
 .../4.0-beta1/tools/nodetool/disablehandoff.html   |   125 -
 .../tools/nodetool/disablehintsfordc.html          |   134 -
 .../tools/nodetool/disableoldprotocolversions.html |   125 -
 src/doc/4.0-beta1/tools/nodetool/drain.html        |   126 -
 .../4.0-beta1/tools/nodetool/enableauditlog.html   |   159 -
 .../tools/nodetool/enableautocompaction.html       |   135 -
 src/doc/4.0-beta1/tools/nodetool/enablebackup.html |   125 -
 src/doc/4.0-beta1/tools/nodetool/enablebinary.html |   125 -
 .../tools/nodetool/enablefullquerylog.html         |   156 -
 src/doc/4.0-beta1/tools/nodetool/enablegossip.html |   125 -
 .../4.0-beta1/tools/nodetool/enablehandoff.html    |   126 -
 .../4.0-beta1/tools/nodetool/enablehintsfordc.html |   135 -
 .../tools/nodetool/enableoldprotocolversions.html  |   125 -
 .../4.0-beta1/tools/nodetool/failuredetector.html  |   126 -
 src/doc/4.0-beta1/tools/nodetool/flush.html        |   134 -
 .../4.0-beta1/tools/nodetool/garbagecollect.html   |   144 -
 src/doc/4.0-beta1/tools/nodetool/gcstats.html      |   125 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   127 -
 .../tools/nodetool/getcompactionthreshold.html     |   135 -
 .../tools/nodetool/getcompactionthroughput.html    |   126 -
 .../4.0-beta1/tools/nodetool/getconcurrency.html   |   134 -
 .../tools/nodetool/getconcurrentcompactors.html    |   126 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   126 -
 src/doc/4.0-beta1/tools/nodetool/getendpoints.html |   135 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   126 -
 .../4.0-beta1/tools/nodetool/getlogginglevels.html |   125 -
 .../4.0-beta1/tools/nodetool/getmaxhintwindow.html |   125 -
 src/doc/4.0-beta1/tools/nodetool/getreplicas.html  |   135 -
 src/doc/4.0-beta1/tools/nodetool/getseeds.html     |   126 -
 src/doc/4.0-beta1/tools/nodetool/getsstables.html  |   137 -
 .../tools/nodetool/getstreamthroughput.html        |   126 -
 src/doc/4.0-beta1/tools/nodetool/gettimeout.html   |   135 -
 .../tools/nodetool/gettraceprobability.html        |   125 -
 src/doc/4.0-beta1/tools/nodetool/gossipinfo.html   |   125 -
 .../4.0-beta1/tools/nodetool/handoffwindow.html    |   125 -
 src/doc/4.0-beta1/tools/nodetool/help.html         |   112 -
 src/doc/4.0-beta1/tools/nodetool/import.html       |   160 -
 src/doc/4.0-beta1/tools/nodetool/info.html         |   128 -
 .../tools/nodetool/invalidatecountercache.html     |   125 -
 .../tools/nodetool/invalidatekeycache.html         |   125 -
 .../tools/nodetool/invalidaterowcache.html         |   125 -
 src/doc/4.0-beta1/tools/nodetool/join.html         |   125 -
 .../4.0-beta1/tools/nodetool/listsnapshots.html    |   128 -
 src/doc/4.0-beta1/tools/nodetool/move.html         |   133 -
 src/doc/4.0-beta1/tools/nodetool/netstats.html     |   130 -
 src/doc/4.0-beta1/tools/nodetool/nodetool.html     |   246 -
 src/doc/4.0-beta1/tools/nodetool/pausehandoff.html |   125 -
 src/doc/4.0-beta1/tools/nodetool/profileload.html  |   144 -
 .../4.0-beta1/tools/nodetool/proxyhistograms.html  |   126 -
 .../4.0-beta1/tools/nodetool/rangekeysample.html   |   126 -
 src/doc/4.0-beta1/tools/nodetool/rebuild.html      |   150 -
 .../4.0-beta1/tools/nodetool/rebuild_index.html    |   135 -
 src/doc/4.0-beta1/tools/nodetool/refresh.html      |   135 -
 .../tools/nodetool/refreshsizeestimates.html       |   125 -
 .../tools/nodetool/reloadlocalschema.html          |   125 -
 src/doc/4.0-beta1/tools/nodetool/reloadseeds.html  |   126 -
 src/doc/4.0-beta1/tools/nodetool/reloadssl.html    |   125 -
 .../4.0-beta1/tools/nodetool/reloadtriggers.html   |   125 -
 .../4.0-beta1/tools/nodetool/relocatesstables.html |   138 -
 src/doc/4.0-beta1/tools/nodetool/removenode.html   |   136 -
 src/doc/4.0-beta1/tools/nodetool/repair.html       |   199 -
 src/doc/4.0-beta1/tools/nodetool/repair_admin.html |   139 -
 .../4.0-beta1/tools/nodetool/replaybatchlog.html   |   125 -
 .../tools/nodetool/resetfullquerylog.html          |   127 -
 .../4.0-beta1/tools/nodetool/resetlocalschema.html |   125 -
 .../4.0-beta1/tools/nodetool/resumehandoff.html    |   125 -
 src/doc/4.0-beta1/tools/nodetool/ring.html         |   138 -
 src/doc/4.0-beta1/tools/nodetool/scrub.html        |   159 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   136 -
 .../4.0-beta1/tools/nodetool/setcachecapacity.html |   135 -
 .../tools/nodetool/setcachekeystosave.html         |   137 -
 .../tools/nodetool/setcompactionthreshold.html     |   135 -
 .../tools/nodetool/setcompactionthroughput.html    |   135 -
 .../4.0-beta1/tools/nodetool/setconcurrency.html   |   136 -
 .../tools/nodetool/setconcurrentcompactors.html    |   135 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   135 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   135 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   135 -
 .../4.0-beta1/tools/nodetool/setlogginglevel.html  |   138 -
 .../4.0-beta1/tools/nodetool/setmaxhintwindow.html |   134 -
 .../tools/nodetool/setstreamthroughput.html        |   135 -
 src/doc/4.0-beta1/tools/nodetool/settimeout.html   |   138 -
 .../tools/nodetool/settraceprobability.html        |   136 -
 src/doc/4.0-beta1/tools/nodetool/sjk.html          |   134 -
 src/doc/4.0-beta1/tools/nodetool/snapshot.html     |   152 -
 src/doc/4.0-beta1/tools/nodetool/status.html       |   137 -
 .../tools/nodetool/statusautocompaction.html       |   138 -
 src/doc/4.0-beta1/tools/nodetool/statusbackup.html |   125 -
 src/doc/4.0-beta1/tools/nodetool/statusbinary.html |   125 -
 src/doc/4.0-beta1/tools/nodetool/statusgossip.html |   125 -
 .../4.0-beta1/tools/nodetool/statushandoff.html    |   126 -
 src/doc/4.0-beta1/tools/nodetool/stop.html         |   142 -
 src/doc/4.0-beta1/tools/nodetool/stopdaemon.html   |   125 -
 .../4.0-beta1/tools/nodetool/tablehistograms.html  |   134 -
 src/doc/4.0-beta1/tools/nodetool/tablestats.html   |   169 -
 .../4.0-beta1/tools/nodetool/toppartitions.html    |   143 -
 src/doc/4.0-beta1/tools/nodetool/tpstats.html      |   129 -
 .../4.0-beta1/tools/nodetool/truncatehints.html    |   136 -
 .../4.0-beta1/tools/nodetool/upgradesstables.html  |   145 -
 src/doc/4.0-beta1/tools/nodetool/verify.html       |   154 -
 src/doc/4.0-beta1/tools/nodetool/version.html      |   125 -
 .../4.0-beta1/tools/nodetool/viewbuildstatus.html  |   134 -
 src/doc/4.0-beta1/tools/sstable/index.html         |   229 -
 src/doc/4.0-beta1/tools/sstable/sstabledump.html   |   404 -
 .../tools/sstable/sstableexpiredblockers.html      |   149 -
 .../4.0-beta1/tools/sstable/sstablelevelreset.html |   175 -
 src/doc/4.0-beta1/tools/sstable/sstableloader.html |   409 -
 .../4.0-beta1/tools/sstable/sstablemetadata.html   |   473 -
 .../tools/sstable/sstableofflinerelevel.html       |   190 -
 .../tools/sstable/sstablerepairedset.html          |   193 -
 src/doc/4.0-beta1/tools/sstable/sstablescrub.html  |   211 -
 src/doc/4.0-beta1/tools/sstable/sstablesplit.html  |   202 -
 .../4.0-beta1/tools/sstable/sstableupgrade.html    |   249 -
 src/doc/4.0-beta1/tools/sstable/sstableutil.html   |   205 -
 src/doc/4.0-beta1/tools/sstable/sstableverify.html |   205 -
 .../4.0-beta1/troubleshooting/finding_nodes.html   |   241 -
 src/doc/4.0-beta1/troubleshooting/index.html       |   148 -
 .../4.0-beta1/troubleshooting/reading_logs.html    |   351 -
 .../4.0-beta1/troubleshooting/use_nodetool.html    |   321 -
 src/doc/4.0-beta1/troubleshooting/use_tools.html   |   609 --
 src/doc/4.0-beta2/.buildinfo                       |     4 -
 .../stress-lwt-example.yaml                        |    70 -
 .../stress-example.yaml                            |    44 -
 src/doc/4.0-beta2/_images/Figure_1_backups.jpg     |   Bin 38551 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_1_data_model.jpg  |   Bin 17469 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_1_guarantees.jpg  |   Bin 17993 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_1_read_repair.jpg |   Bin 36919 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_2_data_model.jpg  |   Bin 20925 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_2_read_repair.jpg |   Bin 45595 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_3_read_repair.jpg |   Bin 43021 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_4_read_repair.jpg |   Bin 43021 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_5_read_repair.jpg |   Bin 42560 -> 0 bytes
 src/doc/4.0-beta2/_images/Figure_6_read_repair.jpg |   Bin 57489 -> 0 bytes
 .../_images/data_modeling_chebotko_logical.png     |   Bin 87366 -> 0 bytes
 .../_images/data_modeling_chebotko_physical.png    |   Bin 4553809 -> 0 bytes
 .../_images/data_modeling_hotel_bucketing.png      |   Bin 22009 -> 0 bytes
 .../4.0-beta2/_images/data_modeling_hotel_erd.png  |   Bin 233309 -> 0 bytes
 .../_images/data_modeling_hotel_logical.png        |   Bin 116998 -> 0 bytes
 .../_images/data_modeling_hotel_physical.png       |   Bin 119795 -> 0 bytes
 .../_images/data_modeling_hotel_queries.png        |   Bin 103940 -> 0 bytes
 .../_images/data_modeling_hotel_relational.png     |   Bin 102656 -> 0 bytes
 .../_images/data_modeling_reservation_logical.png  |   Bin 121750 -> 0 bytes
 .../_images/data_modeling_reservation_physical.png |   Bin 142416 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_commit.png          |   Bin 104667 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_create_branch.png   |   Bin 181860 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_create_file.png     |   Bin 209110 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_editor.png          |   Bin 106175 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_fork.png            |   Bin 76159 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_pr.png              |   Bin 156081 -> 0 bytes
 src/doc/4.0-beta2/_images/docs_preview.png         |   Bin 123826 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug0.png       |   Bin 48174 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug1.png       |   Bin 34446 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug2.png       |   Bin 57032 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug3.png       |   Bin 58677 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug4.png       |   Bin 24793 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug5.png       |   Bin 66632 -> 0 bytes
 src/doc/4.0-beta2/_images/eclipse_debug6.png       |   Bin 87568 -> 0 bytes
 src/doc/4.0-beta2/_images/example-stress-graph.png |   Bin 359103 -> 0 bytes
 src/doc/4.0-beta2/_images/hints.svg                |     9 -
 src/doc/4.0-beta2/_images/ring.svg                 |    11 -
 src/doc/4.0-beta2/_images/vnodes.svg               |    11 -
 .../4.0-beta2/_sources/architecture/dynamo.rst.txt |   537 -
 .../_sources/architecture/guarantees.rst.txt       |    76 -
 .../4.0-beta2/_sources/architecture/index.rst.txt  |    29 -
 .../_sources/architecture/overview.rst.txt         |   114 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-beta2/_sources/bugs.rst.txt            |    30 -
 .../configuration/cassandra_config_file.rst.txt    |  2075 ----
 .../4.0-beta2/_sources/configuration/index.rst.txt |    25 -
 src/doc/4.0-beta2/_sources/contactus.rst.txt       |    50 -
 src/doc/4.0-beta2/_sources/cql/appendices.rst.txt  |   330 -
 src/doc/4.0-beta2/_sources/cql/changes.rst.txt     |   211 -
 src/doc/4.0-beta2/_sources/cql/ddl.rst.txt         |   852 --
 src/doc/4.0-beta2/_sources/cql/definitions.rst.txt |   234 -
 src/doc/4.0-beta2/_sources/cql/dml.rst.txt         |   522 -
 src/doc/4.0-beta2/_sources/cql/functions.rst.txt   |   581 --
 src/doc/4.0-beta2/_sources/cql/index.rst.txt       |    47 -
 src/doc/4.0-beta2/_sources/cql/indexes.rst.txt     |    83 -
 src/doc/4.0-beta2/_sources/cql/json.rst.txt        |   115 -
 src/doc/4.0-beta2/_sources/cql/mvs.rst.txt         |   179 -
 src/doc/4.0-beta2/_sources/cql/operators.rst.txt   |    74 -
 src/doc/4.0-beta2/_sources/cql/security.rst.txt    |   538 -
 src/doc/4.0-beta2/_sources/cql/triggers.rst.txt    |    63 -
 src/doc/4.0-beta2/_sources/cql/types.rst.txt       |   559 -
 .../data_modeling/data_modeling_conceptual.rst.txt |    63 -
 .../data_modeling/data_modeling_logical.rst.txt    |   219 -
 .../data_modeling/data_modeling_physical.rst.txt   |   117 -
 .../data_modeling/data_modeling_queries.rst.txt    |    85 -
 .../data_modeling/data_modeling_rdbms.rst.txt      |   171 -
 .../data_modeling/data_modeling_refining.rst.txt   |   218 -
 .../data_modeling/data_modeling_schema.rst.txt     |   144 -
 .../data_modeling/data_modeling_tools.rst.txt      |    64 -
 .../4.0-beta2/_sources/data_modeling/index.rst.txt |    36 -
 .../4.0-beta2/_sources/data_modeling/intro.rst.txt |   146 -
 src/doc/4.0-beta2/_sources/development/ci.rst.txt  |    72 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    53 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    75 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 src/doc/4.0-beta2/_sources/development/ide.rst.txt |   185 -
 .../4.0-beta2/_sources/development/index.rst.txt   |    33 -
 .../4.0-beta2/_sources/development/patches.rst.txt |   141 -
 .../_sources/development/release_process.rst.txt   |   251 -
 .../4.0-beta2/_sources/development/testing.rst.txt |    98 -
 src/doc/4.0-beta2/_sources/faq/index.rst.txt       |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    67 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    34 -
 .../_sources/getting_started/installing.rst.txt    |   324 -
 .../_sources/getting_started/production.rst.txt    |   156 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-beta2/_sources/index.rst.txt           |    43 -
 .../4.0-beta2/_sources/new/auditlogging.rst.txt    |   440 -
 src/doc/4.0-beta2/_sources/new/fqllogging.rst.txt  |   689 --
 src/doc/4.0-beta2/_sources/new/index.rst.txt       |    32 -
 src/doc/4.0-beta2/_sources/new/java11.rst.txt      |   274 -
 src/doc/4.0-beta2/_sources/new/messaging.rst.txt   |   257 -
 src/doc/4.0-beta2/_sources/new/streaming.rst.txt   |   162 -
 .../_sources/new/transientreplication.rst.txt      |   155 -
 .../4.0-beta2/_sources/new/virtualtables.rst.txt   |   342 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-beta2/_sources/operating/backups.rst.txt   |   660 --
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |   660 --
 src/doc/4.0-beta2/_sources/operating/cdc.rst.txt   |    96 -
 .../_sources/operating/compaction/index.rst.txt    |   301 -
 .../_sources/operating/compaction/lcs.rst.txt      |    90 -
 .../_sources/operating/compaction/stcs.rst.txt     |    58 -
 .../_sources/operating/compaction/twcs.rst.txt     |    76 -
 .../_sources/operating/compression.rst.txt         |   164 -
 .../4.0-beta2/_sources/operating/hardware.rst.txt  |    85 -
 src/doc/4.0-beta2/_sources/operating/hints.rst.txt |   279 -
 src/doc/4.0-beta2/_sources/operating/index.rst.txt |    39 -
 .../4.0-beta2/_sources/operating/metrics.rst.txt   |   793 --
 .../_sources/operating/read_repair.rst.txt         |   169 -
 .../4.0-beta2/_sources/operating/repair.rst.txt    |   208 -
 .../4.0-beta2/_sources/operating/security.rst.txt  |   441 -
 .../4.0-beta2/_sources/operating/snitch.rst.txt    |    82 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-beta2/_sources/plugins/index.rst.txt   |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   269 -
 src/doc/4.0-beta2/_sources/tools/cqlsh.rst.txt     |   458 -
 src/doc/4.0-beta2/_sources/tools/index.rst.txt     |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getreplicas.rst.txt    |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../_sources/tools/nodetool/handoffwindow.rst.txt  |    11 -
 .../4.0-beta2/_sources/tools/nodetool/help.rst.txt |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../4.0-beta2/_sources/tools/nodetool/info.rst.txt |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../4.0-beta2/_sources/tools/nodetool/join.rst.txt |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../4.0-beta2/_sources/tools/nodetool/move.rst.txt |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   256 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../4.0-beta2/_sources/tools/nodetool/ring.rst.txt |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../4.0-beta2/_sources/tools/nodetool/sjk.rst.txt  |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../4.0-beta2/_sources/tools/nodetool/stop.rst.txt |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../4.0-beta2/_sources/tools/sstable/index.rst.txt |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-beta2/_static/ajax-loader.gif          |   Bin 673 -> 0 bytes
 src/doc/4.0-beta2/_static/basic.css                |   676 --
 src/doc/4.0-beta2/_static/comment-bright.png       |   Bin 756 -> 0 bytes
 src/doc/4.0-beta2/_static/comment-close.png        |   Bin 829 -> 0 bytes
 src/doc/4.0-beta2/_static/comment.png              |   Bin 641 -> 0 bytes
 src/doc/4.0-beta2/_static/doctools.js              |   315 -
 src/doc/4.0-beta2/_static/documentation_options.js |    10 -
 src/doc/4.0-beta2/_static/down-pressed.png         |   Bin 222 -> 0 bytes
 src/doc/4.0-beta2/_static/down.png                 |   Bin 202 -> 0 bytes
 src/doc/4.0-beta2/_static/extra.css                |    76 -
 src/doc/4.0-beta2/_static/file.png                 |   Bin 286 -> 0 bytes
 src/doc/4.0-beta2/_static/jquery-3.2.1.js          | 10253 -------------------
 src/doc/4.0-beta2/_static/jquery.js                |     4 -
 src/doc/4.0-beta2/_static/language_data.js         |   297 -
 src/doc/4.0-beta2/_static/minus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-beta2/_static/plus.png                 |   Bin 90 -> 0 bytes
 src/doc/4.0-beta2/_static/pygments.css             |    69 -
 src/doc/4.0-beta2/_static/searchtools.js           |   481 -
 src/doc/4.0-beta2/_static/underscore-1.3.1.js      |   999 --
 src/doc/4.0-beta2/_static/underscore.js            |    31 -
 src/doc/4.0-beta2/_static/up-pressed.png           |   Bin 214 -> 0 bytes
 src/doc/4.0-beta2/_static/up.png                   |   Bin 203 -> 0 bytes
 src/doc/4.0-beta2/_static/websupport.js            |   808 --
 src/doc/4.0-beta2/architecture/dynamo.html         |   563 -
 src/doc/4.0-beta2/architecture/guarantees.html     |   175 -
 src/doc/4.0-beta2/architecture/index.html          |   143 -
 src/doc/4.0-beta2/architecture/overview.html       |   198 -
 src/doc/4.0-beta2/architecture/storage_engine.html |   294 -
 src/doc/4.0-beta2/bugs.html                        |   110 -
 .../configuration/cassandra_config_file.html       |  1974 ----
 src/doc/4.0-beta2/configuration/index.html         |   111 -
 src/doc/4.0-beta2/contactus.html                   |   127 -
 src/doc/4.0-beta2/cql/appendices.html              |   568 -
 src/doc/4.0-beta2/cql/changes.html                 |   364 -
 src/doc/4.0-beta2/cql/ddl.html                     |   908 --
 src/doc/4.0-beta2/cql/definitions.html             |   317 -
 src/doc/4.0-beta2/cql/dml.html                     |   561 -
 src/doc/4.0-beta2/cql/functions.html               |   706 --
 src/doc/4.0-beta2/cql/index.html                   |   247 -
 src/doc/4.0-beta2/cql/indexes.html                 |   171 -
 src/doc/4.0-beta2/cql/json.html                    |   318 -
 src/doc/4.0-beta2/cql/mvs.html                     |   261 -
 src/doc/4.0-beta2/cql/operators.html               |   301 -
 src/doc/4.0-beta2/cql/security.html                |   743 --
 src/doc/4.0-beta2/cql/triggers.html                |   156 -
 src/doc/4.0-beta2/cql/types.html                   |   700 --
 .../data_modeling/data_modeling_conceptual.html    |   151 -
 .../data_modeling/data_modeling_logical.html       |   285 -
 .../data_modeling/data_modeling_physical.html      |   200 -
 .../data_modeling/data_modeling_queries.html       |   171 -
 .../data_modeling/data_modeling_rdbms.html         |   252 -
 .../data_modeling/data_modeling_refining.html      |   288 -
 .../data_modeling/data_modeling_schema.html        |   236 -
 .../data_modeling/data_modeling_tools.html         |   157 -
 src/doc/4.0-beta2/data_modeling/index.html         |   154 -
 src/doc/4.0-beta2/data_modeling/intro.html         |   230 -
 src/doc/4.0-beta2/development/ci.html              |   160 -
 src/doc/4.0-beta2/development/code_style.html      |   215 -
 src/doc/4.0-beta2/development/dependencies.html    |   155 -
 src/doc/4.0-beta2/development/documentation.html   |   193 -
 src/doc/4.0-beta2/development/gettingstarted.html  |   161 -
 src/doc/4.0-beta2/development/how_to_commit.html   |   187 -
 src/doc/4.0-beta2/development/how_to_review.html   |   179 -
 src/doc/4.0-beta2/development/ide.html             |   268 -
 src/doc/4.0-beta2/development/index.html           |   185 -
 src/doc/4.0-beta2/development/patches.html         |   274 -
 src/doc/4.0-beta2/development/release_process.html |   362 -
 src/doc/4.0-beta2/development/testing.html         |   185 -
 src/doc/4.0-beta2/faq/index.html                   |   318 -
 src/doc/4.0-beta2/genindex.html                    |    95 -
 src/doc/4.0-beta2/getting_started/configuring.html |   161 -
 src/doc/4.0-beta2/getting_started/drivers.html     |   248 -
 src/doc/4.0-beta2/getting_started/index.html       |   165 -
 src/doc/4.0-beta2/getting_started/installing.html  |   388 -
 src/doc/4.0-beta2/getting_started/production.html  |   246 -
 src/doc/4.0-beta2/getting_started/querying.html    |   147 -
 src/doc/4.0-beta2/index.html                       |    86 -
 src/doc/4.0-beta2/new/auditlogging.html            |   549 -
 src/doc/4.0-beta2/new/fqllogging.html              |   721 --
 src/doc/4.0-beta2/new/index.html                   |   189 -
 src/doc/4.0-beta2/new/java11.html                  |   354 -
 src/doc/4.0-beta2/new/messaging.html               |   344 -
 src/doc/4.0-beta2/new/streaming.html               |   260 -
 src/doc/4.0-beta2/new/transientreplication.html    |   228 -
 src/doc/4.0-beta2/new/virtualtables.html           |   427 -
 src/doc/4.0-beta2/objects.inv                      |   Bin 9472 -> 0 bytes
 src/doc/4.0-beta2/operating/audit_logging.html     |   281 -
 src/doc/4.0-beta2/operating/backups.html           |   666 --
 src/doc/4.0-beta2/operating/bloom_filters.html     |   162 -
 src/doc/4.0-beta2/operating/bulk_loading.html      |   680 --
 src/doc/4.0-beta2/operating/cdc.html               |   194 -
 src/doc/4.0-beta2/operating/compaction/index.html  |   387 -
 src/doc/4.0-beta2/operating/compaction/lcs.html    |   147 -
 src/doc/4.0-beta2/operating/compaction/stcs.html   |   122 -
 src/doc/4.0-beta2/operating/compaction/twcs.html   |   140 -
 src/doc/4.0-beta2/operating/compression.html       |   294 -
 src/doc/4.0-beta2/operating/hardware.html          |   189 -
 src/doc/4.0-beta2/operating/hints.html             |   402 -
 src/doc/4.0-beta2/operating/index.html             |   252 -
 src/doc/4.0-beta2/operating/metrics.html           |  1801 ----
 src/doc/4.0-beta2/operating/read_repair.html       |   267 -
 src/doc/4.0-beta2/operating/repair.html            |   278 -
 src/doc/4.0-beta2/operating/security.html          |   474 -
 src/doc/4.0-beta2/operating/snitch.html            |   180 -
 src/doc/4.0-beta2/operating/topo_changes.html      |   222 -
 src/doc/4.0-beta2/plugins/index.html               |   117 -
 src/doc/4.0-beta2/search.html                      |   105 -
 src/doc/4.0-beta2/searchindex.js                   |     1 -
 src/doc/4.0-beta2/tools/cassandra_stress.html      |   353 -
 src/doc/4.0-beta2/tools/cqlsh.html                 |   488 -
 src/doc/4.0-beta2/tools/index.html                 |   258 -
 src/doc/4.0-beta2/tools/nodetool/assassinate.html  |   134 -
 src/doc/4.0-beta2/tools/nodetool/bootstrap.html    |   133 -
 src/doc/4.0-beta2/tools/nodetool/cleanup.html      |   139 -
 .../4.0-beta2/tools/nodetool/clearsnapshot.html    |   142 -
 src/doc/4.0-beta2/tools/nodetool/clientstats.html  |   135 -
 src/doc/4.0-beta2/tools/nodetool/compact.html      |   151 -
 .../tools/nodetool/compactionhistory.html          |   129 -
 .../4.0-beta2/tools/nodetool/compactionstats.html  |   129 -
 src/doc/4.0-beta2/tools/nodetool/decommission.html |   129 -
 .../4.0-beta2/tools/nodetool/describecluster.html  |   126 -
 src/doc/4.0-beta2/tools/nodetool/describering.html |   133 -
 .../4.0-beta2/tools/nodetool/disableauditlog.html  |   125 -
 .../tools/nodetool/disableautocompaction.html      |   135 -
 .../4.0-beta2/tools/nodetool/disablebackup.html    |   125 -
 .../4.0-beta2/tools/nodetool/disablebinary.html    |   125 -
 .../tools/nodetool/disablefullquerylog.html        |   125 -
 .../4.0-beta2/tools/nodetool/disablegossip.html    |   126 -
 .../4.0-beta2/tools/nodetool/disablehandoff.html   |   125 -
 .../tools/nodetool/disablehintsfordc.html          |   134 -
 .../tools/nodetool/disableoldprotocolversions.html |   125 -
 src/doc/4.0-beta2/tools/nodetool/drain.html        |   126 -
 .../4.0-beta2/tools/nodetool/enableauditlog.html   |   159 -
 .../tools/nodetool/enableautocompaction.html       |   135 -
 src/doc/4.0-beta2/tools/nodetool/enablebackup.html |   125 -
 src/doc/4.0-beta2/tools/nodetool/enablebinary.html |   125 -
 .../tools/nodetool/enablefullquerylog.html         |   156 -
 src/doc/4.0-beta2/tools/nodetool/enablegossip.html |   125 -
 .../4.0-beta2/tools/nodetool/enablehandoff.html    |   126 -
 .../4.0-beta2/tools/nodetool/enablehintsfordc.html |   135 -
 .../tools/nodetool/enableoldprotocolversions.html  |   125 -
 .../4.0-beta2/tools/nodetool/failuredetector.html  |   126 -
 src/doc/4.0-beta2/tools/nodetool/flush.html        |   134 -
 .../4.0-beta2/tools/nodetool/garbagecollect.html   |   144 -
 src/doc/4.0-beta2/tools/nodetool/gcstats.html      |   125 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   127 -
 .../tools/nodetool/getcompactionthreshold.html     |   135 -
 .../tools/nodetool/getcompactionthroughput.html    |   126 -
 .../4.0-beta2/tools/nodetool/getconcurrency.html   |   134 -
 .../tools/nodetool/getconcurrentcompactors.html    |   126 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   126 -
 src/doc/4.0-beta2/tools/nodetool/getendpoints.html |   135 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   126 -
 .../4.0-beta2/tools/nodetool/getlogginglevels.html |   125 -
 .../4.0-beta2/tools/nodetool/getmaxhintwindow.html |   125 -
 src/doc/4.0-beta2/tools/nodetool/getreplicas.html  |   135 -
 src/doc/4.0-beta2/tools/nodetool/getseeds.html     |   126 -
 src/doc/4.0-beta2/tools/nodetool/getsstables.html  |   137 -
 .../tools/nodetool/getstreamthroughput.html        |   126 -
 src/doc/4.0-beta2/tools/nodetool/gettimeout.html   |   135 -
 .../tools/nodetool/gettraceprobability.html        |   125 -
 src/doc/4.0-beta2/tools/nodetool/gossipinfo.html   |   125 -
 .../4.0-beta2/tools/nodetool/handoffwindow.html    |   125 -
 src/doc/4.0-beta2/tools/nodetool/help.html         |   112 -
 src/doc/4.0-beta2/tools/nodetool/import.html       |   160 -
 src/doc/4.0-beta2/tools/nodetool/info.html         |   128 -
 .../tools/nodetool/invalidatecountercache.html     |   125 -
 .../tools/nodetool/invalidatekeycache.html         |   125 -
 .../tools/nodetool/invalidaterowcache.html         |   125 -
 src/doc/4.0-beta2/tools/nodetool/join.html         |   125 -
 .../4.0-beta2/tools/nodetool/listsnapshots.html    |   128 -
 src/doc/4.0-beta2/tools/nodetool/move.html         |   133 -
 src/doc/4.0-beta2/tools/nodetool/netstats.html     |   130 -
 src/doc/4.0-beta2/tools/nodetool/nodetool.html     |   246 -
 src/doc/4.0-beta2/tools/nodetool/pausehandoff.html |   125 -
 src/doc/4.0-beta2/tools/nodetool/profileload.html  |   144 -
 .../4.0-beta2/tools/nodetool/proxyhistograms.html  |   126 -
 .../4.0-beta2/tools/nodetool/rangekeysample.html   |   126 -
 src/doc/4.0-beta2/tools/nodetool/rebuild.html      |   150 -
 .../4.0-beta2/tools/nodetool/rebuild_index.html    |   135 -
 src/doc/4.0-beta2/tools/nodetool/refresh.html      |   135 -
 .../tools/nodetool/refreshsizeestimates.html       |   125 -
 .../tools/nodetool/reloadlocalschema.html          |   125 -
 src/doc/4.0-beta2/tools/nodetool/reloadseeds.html  |   126 -
 src/doc/4.0-beta2/tools/nodetool/reloadssl.html    |   125 -
 .../4.0-beta2/tools/nodetool/reloadtriggers.html   |   125 -
 .../4.0-beta2/tools/nodetool/relocatesstables.html |   138 -
 src/doc/4.0-beta2/tools/nodetool/removenode.html   |   136 -
 src/doc/4.0-beta2/tools/nodetool/repair.html       |   199 -
 src/doc/4.0-beta2/tools/nodetool/repair_admin.html |   139 -
 .../4.0-beta2/tools/nodetool/replaybatchlog.html   |   125 -
 .../tools/nodetool/resetfullquerylog.html          |   127 -
 .../4.0-beta2/tools/nodetool/resetlocalschema.html |   125 -
 .../4.0-beta2/tools/nodetool/resumehandoff.html    |   125 -
 src/doc/4.0-beta2/tools/nodetool/ring.html         |   138 -
 src/doc/4.0-beta2/tools/nodetool/scrub.html        |   159 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   136 -
 .../4.0-beta2/tools/nodetool/setcachecapacity.html |   135 -
 .../tools/nodetool/setcachekeystosave.html         |   137 -
 .../tools/nodetool/setcompactionthreshold.html     |   135 -
 .../tools/nodetool/setcompactionthroughput.html    |   135 -
 .../4.0-beta2/tools/nodetool/setconcurrency.html   |   136 -
 .../tools/nodetool/setconcurrentcompactors.html    |   135 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   135 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   135 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   135 -
 .../4.0-beta2/tools/nodetool/setlogginglevel.html  |   138 -
 .../4.0-beta2/tools/nodetool/setmaxhintwindow.html |   134 -
 .../tools/nodetool/setstreamthroughput.html        |   135 -
 src/doc/4.0-beta2/tools/nodetool/settimeout.html   |   138 -
 .../tools/nodetool/settraceprobability.html        |   136 -
 src/doc/4.0-beta2/tools/nodetool/sjk.html          |   134 -
 src/doc/4.0-beta2/tools/nodetool/snapshot.html     |   152 -
 src/doc/4.0-beta2/tools/nodetool/status.html       |   137 -
 .../tools/nodetool/statusautocompaction.html       |   138 -
 src/doc/4.0-beta2/tools/nodetool/statusbackup.html |   125 -
 src/doc/4.0-beta2/tools/nodetool/statusbinary.html |   125 -
 src/doc/4.0-beta2/tools/nodetool/statusgossip.html |   125 -
 .../4.0-beta2/tools/nodetool/statushandoff.html    |   126 -
 src/doc/4.0-beta2/tools/nodetool/stop.html         |   142 -
 src/doc/4.0-beta2/tools/nodetool/stopdaemon.html   |   125 -
 .../4.0-beta2/tools/nodetool/tablehistograms.html  |   134 -
 src/doc/4.0-beta2/tools/nodetool/tablestats.html   |   169 -
 .../4.0-beta2/tools/nodetool/toppartitions.html    |   143 -
 src/doc/4.0-beta2/tools/nodetool/tpstats.html      |   129 -
 .../4.0-beta2/tools/nodetool/truncatehints.html    |   136 -
 .../4.0-beta2/tools/nodetool/upgradesstables.html  |   145 -
 src/doc/4.0-beta2/tools/nodetool/verify.html       |   154 -
 src/doc/4.0-beta2/tools/nodetool/version.html      |   125 -
 .../4.0-beta2/tools/nodetool/viewbuildstatus.html  |   134 -
 src/doc/4.0-beta2/tools/sstable/index.html         |   229 -
 src/doc/4.0-beta2/tools/sstable/sstabledump.html   |   404 -
 .../tools/sstable/sstableexpiredblockers.html      |   149 -
 .../4.0-beta2/tools/sstable/sstablelevelreset.html |   175 -
 src/doc/4.0-beta2/tools/sstable/sstableloader.html |   409 -
 .../4.0-beta2/tools/sstable/sstablemetadata.html   |   473 -
 .../tools/sstable/sstableofflinerelevel.html       |   190 -
 .../tools/sstable/sstablerepairedset.html          |   193 -
 src/doc/4.0-beta2/tools/sstable/sstablescrub.html  |   211 -
 src/doc/4.0-beta2/tools/sstable/sstablesplit.html  |   202 -
 .../4.0-beta2/tools/sstable/sstableupgrade.html    |   249 -
 src/doc/4.0-beta2/tools/sstable/sstableutil.html   |   205 -
 src/doc/4.0-beta2/tools/sstable/sstableverify.html |   205 -
 .../4.0-beta2/troubleshooting/finding_nodes.html   |   241 -
 src/doc/4.0-beta2/troubleshooting/index.html       |   148 -
 .../4.0-beta2/troubleshooting/reading_logs.html    |   351 -
 .../4.0-beta2/troubleshooting/use_nodetool.html    |   321 -
 src/doc/4.0-beta2/troubleshooting/use_tools.html   |   609 --
 src/doc/4.0-beta3/.buildinfo                       |     4 -
 .../stress-lwt-example.yaml                        |    70 -
 .../stress-example.yaml                            |    44 -
 src/doc/4.0-beta3/_images/Figure_1_backups.jpg     |   Bin 38551 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_1_data_model.jpg  |   Bin 17469 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_1_guarantees.jpg  |   Bin 17993 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_1_read_repair.jpg |   Bin 36919 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_2_data_model.jpg  |   Bin 20925 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_2_read_repair.jpg |   Bin 45595 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_3_read_repair.jpg |   Bin 43021 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_4_read_repair.jpg |   Bin 43021 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_5_read_repair.jpg |   Bin 42560 -> 0 bytes
 src/doc/4.0-beta3/_images/Figure_6_read_repair.jpg |   Bin 57489 -> 0 bytes
 .../_images/data_modeling_chebotko_logical.png     |   Bin 87366 -> 0 bytes
 .../_images/data_modeling_chebotko_physical.png    |   Bin 4553809 -> 0 bytes
 .../_images/data_modeling_hotel_bucketing.png      |   Bin 22009 -> 0 bytes
 .../4.0-beta3/_images/data_modeling_hotel_erd.png  |   Bin 233309 -> 0 bytes
 .../_images/data_modeling_hotel_logical.png        |   Bin 116998 -> 0 bytes
 .../_images/data_modeling_hotel_physical.png       |   Bin 119795 -> 0 bytes
 .../_images/data_modeling_hotel_queries.png        |   Bin 103940 -> 0 bytes
 .../_images/data_modeling_hotel_relational.png     |   Bin 102656 -> 0 bytes
 .../_images/data_modeling_reservation_logical.png  |   Bin 121750 -> 0 bytes
 .../_images/data_modeling_reservation_physical.png |   Bin 142416 -> 0 bytes
 src/doc/4.0-beta3/_images/example-stress-graph.png |   Bin 359103 -> 0 bytes
 src/doc/4.0-beta3/_images/hints.svg                |     9 -
 src/doc/4.0-beta3/_images/ring.svg                 |    11 -
 src/doc/4.0-beta3/_images/vnodes.svg               |    11 -
 .../4.0-beta3/_sources/architecture/dynamo.rst.txt |   537 -
 .../_sources/architecture/guarantees.rst.txt       |    76 -
 .../4.0-beta3/_sources/architecture/index.rst.txt  |    29 -
 .../_sources/architecture/overview.rst.txt         |   114 -
 .../_sources/architecture/storage_engine.rst.txt   |   208 -
 src/doc/4.0-beta3/_sources/bugs.rst.txt            |    30 -
 .../configuration/cass_cl_archive_file.rst.txt     |    46 -
 .../configuration/cass_env_sh_file.rst.txt         |   132 -
 .../configuration/cass_jvm_options_file.rst.txt    |    10 -
 .../configuration/cass_logback_xml_file.rst.txt    |   157 -
 .../configuration/cass_rackdc_file.rst.txt         |    67 -
 .../_sources/configuration/cass_topo_file.rst.txt  |    48 -
 .../_sources/configuration/cass_yaml_file.rst.txt  |  2074 ----
 .../configuration/cassandra_config_file.rst.txt    |  2103 ----
 .../4.0-beta3/_sources/configuration/index.rst.txt |    31 -
 src/doc/4.0-beta3/_sources/contactus.rst.txt       |    50 -
 src/doc/4.0-beta3/_sources/cql/appendices.rst.txt  |   330 -
 src/doc/4.0-beta3/_sources/cql/changes.rst.txt     |   211 -
 src/doc/4.0-beta3/_sources/cql/ddl.rst.txt         |  1151 ---
 src/doc/4.0-beta3/_sources/cql/definitions.rst.txt |   234 -
 src/doc/4.0-beta3/_sources/cql/dml.rst.txt         |   522 -
 src/doc/4.0-beta3/_sources/cql/functions.rst.txt   |   581 --
 src/doc/4.0-beta3/_sources/cql/index.rst.txt       |    47 -
 src/doc/4.0-beta3/_sources/cql/indexes.rst.txt     |    83 -
 src/doc/4.0-beta3/_sources/cql/json.rst.txt        |   115 -
 src/doc/4.0-beta3/_sources/cql/mvs.rst.txt         |   179 -
 src/doc/4.0-beta3/_sources/cql/operators.rst.txt   |    74 -
 src/doc/4.0-beta3/_sources/cql/security.rst.txt    |   538 -
 src/doc/4.0-beta3/_sources/cql/triggers.rst.txt    |    63 -
 src/doc/4.0-beta3/_sources/cql/types.rst.txt       |   562 -
 .../data_modeling/data_modeling_conceptual.rst.txt |    63 -
 .../data_modeling/data_modeling_logical.rst.txt    |   219 -
 .../data_modeling/data_modeling_physical.rst.txt   |   117 -
 .../data_modeling/data_modeling_queries.rst.txt    |    85 -
 .../data_modeling/data_modeling_rdbms.rst.txt      |   171 -
 .../data_modeling/data_modeling_refining.rst.txt   |   218 -
 .../data_modeling/data_modeling_schema.rst.txt     |   144 -
 .../data_modeling/data_modeling_tools.rst.txt      |    64 -
 .../4.0-beta3/_sources/data_modeling/index.rst.txt |    36 -
 .../4.0-beta3/_sources/data_modeling/intro.rst.txt |   146 -
 src/doc/4.0-beta3/_sources/development/ci.rst.txt  |    81 -
 .../_sources/development/code_style.rst.txt        |    94 -
 .../_sources/development/dependencies.rst.txt      |    53 -
 .../_sources/development/documentation.rst.txt     |   104 -
 .../_sources/development/gettingstarted.rst.txt    |    60 -
 .../_sources/development/how_to_commit.rst.txt     |    98 -
 .../_sources/development/how_to_review.rst.txt     |    73 -
 src/doc/4.0-beta3/_sources/development/ide.rst.txt |   185 -
 .../4.0-beta3/_sources/development/index.rst.txt   |    33 -
 .../4.0-beta3/_sources/development/patches.rst.txt |   141 -
 .../_sources/development/release_process.rst.txt   |   251 -
 .../4.0-beta3/_sources/development/testing.rst.txt |    98 -
 src/doc/4.0-beta3/_sources/faq/index.rst.txt       |   299 -
 .../_sources/getting_started/configuring.rst.txt   |    80 -
 .../_sources/getting_started/drivers.rst.txt       |   123 -
 .../_sources/getting_started/index.rst.txt         |    34 -
 .../_sources/getting_started/installing.rst.txt    |   324 -
 .../_sources/getting_started/production.rst.txt    |   156 -
 .../_sources/getting_started/querying.rst.txt      |    52 -
 src/doc/4.0-beta3/_sources/glossary.rst.txt        |    35 -
 src/doc/4.0-beta3/_sources/index.rst.txt           |    43 -
 .../4.0-beta3/_sources/new/auditlogging.rst.txt    |   461 -
 src/doc/4.0-beta3/_sources/new/fqllogging.rst.txt  |   595 --
 src/doc/4.0-beta3/_sources/new/index.rst.txt       |    32 -
 src/doc/4.0-beta3/_sources/new/java11.rst.txt      |   274 -
 src/doc/4.0-beta3/_sources/new/messaging.rst.txt   |   257 -
 src/doc/4.0-beta3/_sources/new/streaming.rst.txt   |   162 -
 .../_sources/new/transientreplication.rst.txt      |   155 -
 .../4.0-beta3/_sources/new/virtualtables.rst.txt   |   342 -
 .../_sources/operating/audit_logging.rst.txt       |   236 -
 .../4.0-beta3/_sources/operating/backups.rst.txt   |   660 --
 .../_sources/operating/bloom_filters.rst.txt       |    65 -
 .../_sources/operating/bulk_loading.rst.txt        |   660 --
 src/doc/4.0-beta3/_sources/operating/cdc.rst.txt   |    96 -
 .../_sources/operating/compaction/index.rst.txt    |   301 -
 .../_sources/operating/compaction/lcs.rst.txt      |    90 -
 .../_sources/operating/compaction/stcs.rst.txt     |    58 -
 .../_sources/operating/compaction/twcs.rst.txt     |    76 -
 .../_sources/operating/compression.rst.txt         |   164 -
 .../4.0-beta3/_sources/operating/hardware.rst.txt  |    85 -
 src/doc/4.0-beta3/_sources/operating/hints.rst.txt |   279 -
 src/doc/4.0-beta3/_sources/operating/index.rst.txt |    39 -
 .../4.0-beta3/_sources/operating/metrics.rst.txt   |   773 --
 .../_sources/operating/read_repair.rst.txt         |   169 -
 .../4.0-beta3/_sources/operating/repair.rst.txt    |   208 -
 .../4.0-beta3/_sources/operating/security.rst.txt  |   441 -
 .../4.0-beta3/_sources/operating/snitch.rst.txt    |    82 -
 .../_sources/operating/topo_changes.rst.txt        |   129 -
 src/doc/4.0-beta3/_sources/plugins/index.rst.txt   |    35 -
 .../_sources/tools/cassandra_stress.rst.txt        |   273 -
 src/doc/4.0-beta3/_sources/tools/cqlsh.rst.txt     |   458 -
 src/doc/4.0-beta3/_sources/tools/index.rst.txt     |    28 -
 .../_sources/tools/nodetool/assassinate.rst.txt    |    11 -
 .../_sources/tools/nodetool/bootstrap.rst.txt      |    11 -
 .../_sources/tools/nodetool/cleanup.rst.txt        |    11 -
 .../_sources/tools/nodetool/clearsnapshot.rst.txt  |    11 -
 .../_sources/tools/nodetool/clientstats.rst.txt    |    11 -
 .../_sources/tools/nodetool/compact.rst.txt        |    11 -
 .../tools/nodetool/compactionhistory.rst.txt       |    11 -
 .../tools/nodetool/compactionstats.rst.txt         |    11 -
 .../_sources/tools/nodetool/decommission.rst.txt   |    11 -
 .../tools/nodetool/describecluster.rst.txt         |    11 -
 .../_sources/tools/nodetool/describering.rst.txt   |    11 -
 .../tools/nodetool/disableauditlog.rst.txt         |    11 -
 .../tools/nodetool/disableautocompaction.rst.txt   |    11 -
 .../_sources/tools/nodetool/disablebackup.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablebinary.rst.txt  |    11 -
 .../tools/nodetool/disablefullquerylog.rst.txt     |    11 -
 .../_sources/tools/nodetool/disablegossip.rst.txt  |    11 -
 .../_sources/tools/nodetool/disablehandoff.rst.txt |    11 -
 .../tools/nodetool/disablehintsfordc.rst.txt       |    11 -
 .../nodetool/disableoldprotocolversions.rst.txt    |    11 -
 .../_sources/tools/nodetool/drain.rst.txt          |    11 -
 .../_sources/tools/nodetool/enableauditlog.rst.txt |    11 -
 .../tools/nodetool/enableautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/enablebackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablebinary.rst.txt   |    11 -
 .../tools/nodetool/enablefullquerylog.rst.txt      |    11 -
 .../_sources/tools/nodetool/enablegossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/enablehandoff.rst.txt  |    11 -
 .../tools/nodetool/enablehintsfordc.rst.txt        |    11 -
 .../nodetool/enableoldprotocolversions.rst.txt     |    11 -
 .../tools/nodetool/failuredetector.rst.txt         |    11 -
 .../_sources/tools/nodetool/flush.rst.txt          |    11 -
 .../_sources/tools/nodetool/garbagecollect.rst.txt |    11 -
 .../_sources/tools/nodetool/gcstats.rst.txt        |    11 -
 .../nodetool/getbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/getcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/getcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/getconcurrency.rst.txt |    11 -
 .../tools/nodetool/getconcurrentcompactors.rst.txt |    11 -
 .../nodetool/getconcurrentviewbuilders.rst.txt     |    11 -
 .../_sources/tools/nodetool/getendpoints.rst.txt   |    11 -
 .../nodetool/getinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/getlogginglevels.rst.txt        |    11 -
 .../tools/nodetool/getmaxhintwindow.rst.txt        |    11 -
 .../_sources/tools/nodetool/getseeds.rst.txt       |    11 -
 .../_sources/tools/nodetool/getsstables.rst.txt    |    11 -
 .../tools/nodetool/getstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/gettimeout.rst.txt     |    11 -
 .../tools/nodetool/gettraceprobability.rst.txt     |    11 -
 .../_sources/tools/nodetool/gossipinfo.rst.txt     |    11 -
 .../4.0-beta3/_sources/tools/nodetool/help.rst.txt |    11 -
 .../_sources/tools/nodetool/import.rst.txt         |    11 -
 .../4.0-beta3/_sources/tools/nodetool/info.rst.txt |    11 -
 .../tools/nodetool/invalidatecountercache.rst.txt  |    11 -
 .../tools/nodetool/invalidatekeycache.rst.txt      |    11 -
 .../tools/nodetool/invalidaterowcache.rst.txt      |    11 -
 .../4.0-beta3/_sources/tools/nodetool/join.rst.txt |    11 -
 .../_sources/tools/nodetool/listsnapshots.rst.txt  |    11 -
 .../4.0-beta3/_sources/tools/nodetool/move.rst.txt |    11 -
 .../_sources/tools/nodetool/netstats.rst.txt       |    11 -
 .../_sources/tools/nodetool/nodetool.rst.txt       |   252 -
 .../_sources/tools/nodetool/pausehandoff.rst.txt   |    11 -
 .../_sources/tools/nodetool/profileload.rst.txt    |    11 -
 .../tools/nodetool/proxyhistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/rangekeysample.rst.txt |    11 -
 .../_sources/tools/nodetool/rebuild.rst.txt        |    11 -
 .../_sources/tools/nodetool/rebuild_index.rst.txt  |    11 -
 .../_sources/tools/nodetool/refresh.rst.txt        |    11 -
 .../tools/nodetool/refreshsizeestimates.rst.txt    |    11 -
 .../tools/nodetool/reloadlocalschema.rst.txt       |    11 -
 .../_sources/tools/nodetool/reloadseeds.rst.txt    |    11 -
 .../_sources/tools/nodetool/reloadssl.rst.txt      |    11 -
 .../_sources/tools/nodetool/reloadtriggers.rst.txt |    11 -
 .../tools/nodetool/relocatesstables.rst.txt        |    11 -
 .../_sources/tools/nodetool/removenode.rst.txt     |    11 -
 .../_sources/tools/nodetool/repair.rst.txt         |    11 -
 .../_sources/tools/nodetool/repair_admin.rst.txt   |    11 -
 .../_sources/tools/nodetool/replaybatchlog.rst.txt |    11 -
 .../tools/nodetool/resetfullquerylog.rst.txt       |    11 -
 .../tools/nodetool/resetlocalschema.rst.txt        |    11 -
 .../_sources/tools/nodetool/resumehandoff.rst.txt  |    11 -
 .../4.0-beta3/_sources/tools/nodetool/ring.rst.txt |    11 -
 .../_sources/tools/nodetool/scrub.rst.txt          |    11 -
 .../nodetool/setbatchlogreplaythrottle.rst.txt     |    11 -
 .../tools/nodetool/setcachecapacity.rst.txt        |    11 -
 .../tools/nodetool/setcachekeystosave.rst.txt      |    11 -
 .../tools/nodetool/setcompactionthreshold.rst.txt  |    11 -
 .../tools/nodetool/setcompactionthroughput.rst.txt |    11 -
 .../_sources/tools/nodetool/setconcurrency.rst.txt |    11 -
 .../tools/nodetool/setconcurrentcompactors.rst.txt |    11 -
 .../nodetool/setconcurrentviewbuilders.rst.txt     |    11 -
 .../nodetool/sethintedhandoffthrottlekb.rst.txt    |    11 -
 .../nodetool/setinterdcstreamthroughput.rst.txt    |    11 -
 .../tools/nodetool/setlogginglevel.rst.txt         |    11 -
 .../tools/nodetool/setmaxhintwindow.rst.txt        |    11 -
 .../tools/nodetool/setstreamthroughput.rst.txt     |    11 -
 .../_sources/tools/nodetool/settimeout.rst.txt     |    11 -
 .../tools/nodetool/settraceprobability.rst.txt     |    11 -
 .../4.0-beta3/_sources/tools/nodetool/sjk.rst.txt  |    11 -
 .../_sources/tools/nodetool/snapshot.rst.txt       |    11 -
 .../_sources/tools/nodetool/status.rst.txt         |    11 -
 .../tools/nodetool/statusautocompaction.rst.txt    |    11 -
 .../_sources/tools/nodetool/statusbackup.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusbinary.rst.txt   |    11 -
 .../_sources/tools/nodetool/statusgossip.rst.txt   |    11 -
 .../_sources/tools/nodetool/statushandoff.rst.txt  |    11 -
 .../4.0-beta3/_sources/tools/nodetool/stop.rst.txt |    11 -
 .../_sources/tools/nodetool/stopdaemon.rst.txt     |    11 -
 .../tools/nodetool/tablehistograms.rst.txt         |    11 -
 .../_sources/tools/nodetool/tablestats.rst.txt     |    11 -
 .../_sources/tools/nodetool/toppartitions.rst.txt  |    11 -
 .../_sources/tools/nodetool/tpstats.rst.txt        |    11 -
 .../_sources/tools/nodetool/truncatehints.rst.txt  |    11 -
 .../tools/nodetool/upgradesstables.rst.txt         |    11 -
 .../_sources/tools/nodetool/verify.rst.txt         |    11 -
 .../_sources/tools/nodetool/version.rst.txt        |    11 -
 .../tools/nodetool/viewbuildstatus.rst.txt         |    11 -
 .../4.0-beta3/_sources/tools/sstable/index.rst.txt |    39 -
 .../_sources/tools/sstable/sstabledump.rst.txt     |   294 -
 .../tools/sstable/sstableexpiredblockers.rst.txt   |    48 -
 .../tools/sstable/sstablelevelreset.rst.txt        |    82 -
 .../_sources/tools/sstable/sstableloader.rst.txt   |   273 -
 .../_sources/tools/sstable/sstablemetadata.rst.txt |   300 -
 .../tools/sstable/sstableofflinerelevel.rst.txt    |    95 -
 .../tools/sstable/sstablerepairedset.rst.txt       |    79 -
 .../_sources/tools/sstable/sstablescrub.rst.txt    |    93 -
 .../_sources/tools/sstable/sstablesplit.rst.txt    |    93 -
 .../_sources/tools/sstable/sstableupgrade.rst.txt  |   137 -
 .../_sources/tools/sstable/sstableutil.rst.txt     |    91 -
 .../_sources/tools/sstable/sstableverify.rst.txt   |    91 -
 .../_sources/troubleshooting/finding_nodes.rst.txt |   149 -
 .../_sources/troubleshooting/index.rst.txt         |    39 -
 .../_sources/troubleshooting/reading_logs.rst.txt  |   267 -
 .../_sources/troubleshooting/use_nodetool.rst.txt  |   245 -
 .../_sources/troubleshooting/use_tools.rst.txt     |   542 -
 src/doc/4.0-beta3/_static/ajax-loader.gif          |   Bin 673 -> 0 bytes
 src/doc/4.0-beta3/_static/basic.css                |   676 --
 src/doc/4.0-beta3/_static/comment-bright.png       |   Bin 756 -> 0 bytes
 src/doc/4.0-beta3/_static/comment-close.png        |   Bin 829 -> 0 bytes
 src/doc/4.0-beta3/_static/comment.png              |   Bin 641 -> 0 bytes
 src/doc/4.0-beta3/_static/doctools.js              |   315 -
 src/doc/4.0-beta3/_static/documentation_options.js |    10 -
 src/doc/4.0-beta3/_static/down-pressed.png         |   Bin 222 -> 0 bytes
 src/doc/4.0-beta3/_static/down.png                 |   Bin 202 -> 0 bytes
 src/doc/4.0-beta3/_static/extra.css                |    76 -
 src/doc/4.0-beta3/_static/file.png                 |   Bin 286 -> 0 bytes
 src/doc/4.0-beta3/_static/jquery-3.2.1.js          | 10253 -------------------
 src/doc/4.0-beta3/_static/jquery.js                |     4 -
 src/doc/4.0-beta3/_static/language_data.js         |   297 -
 src/doc/4.0-beta3/_static/minus.png                |   Bin 90 -> 0 bytes
 src/doc/4.0-beta3/_static/plus.png                 |   Bin 90 -> 0 bytes
 src/doc/4.0-beta3/_static/pygments.css             |    69 -
 src/doc/4.0-beta3/_static/searchtools.js           |   481 -
 src/doc/4.0-beta3/_static/underscore-1.3.1.js      |   999 --
 src/doc/4.0-beta3/_static/underscore.js            |    31 -
 src/doc/4.0-beta3/_static/up-pressed.png           |   Bin 214 -> 0 bytes
 src/doc/4.0-beta3/_static/up.png                   |   Bin 203 -> 0 bytes
 src/doc/4.0-beta3/_static/websupport.js            |   808 --
 src/doc/4.0-beta3/architecture/dynamo.html         |   563 -
 src/doc/4.0-beta3/architecture/guarantees.html     |   175 -
 src/doc/4.0-beta3/architecture/index.html          |   143 -
 src/doc/4.0-beta3/architecture/overview.html       |   198 -
 src/doc/4.0-beta3/architecture/storage_engine.html |   294 -
 src/doc/4.0-beta3/bugs.html                        |   110 -
 .../configuration/cass_cl_archive_file.html        |   149 -
 .../4.0-beta3/configuration/cass_env_sh_file.html  |   251 -
 .../configuration/cass_jvm_options_file.html       |   120 -
 .../configuration/cass_logback_xml_file.html       |   248 -
 .../4.0-beta3/configuration/cass_rackdc_file.html  |   175 -
 .../4.0-beta3/configuration/cass_topo_file.html    |   155 -
 .../4.0-beta3/configuration/cass_yaml_file.html    |  1978 ----
 .../configuration/cassandra_config_file.html       |  1806 ----
 src/doc/4.0-beta3/configuration/index.html         |   123 -
 src/doc/4.0-beta3/contactus.html                   |   127 -
 src/doc/4.0-beta3/cql/appendices.html              |   568 -
 src/doc/4.0-beta3/cql/changes.html                 |   364 -
 src/doc/4.0-beta3/cql/ddl.html                     |  1485 ---
 src/doc/4.0-beta3/cql/definitions.html             |   317 -
 src/doc/4.0-beta3/cql/dml.html                     |   561 -
 src/doc/4.0-beta3/cql/functions.html               |   706 --
 src/doc/4.0-beta3/cql/index.html                   |   248 -
 src/doc/4.0-beta3/cql/indexes.html                 |   171 -
 src/doc/4.0-beta3/cql/json.html                    |   318 -
 src/doc/4.0-beta3/cql/mvs.html                     |   261 -
 src/doc/4.0-beta3/cql/operators.html               |   301 -
 src/doc/4.0-beta3/cql/security.html                |   743 --
 src/doc/4.0-beta3/cql/triggers.html                |   156 -
 src/doc/4.0-beta3/cql/types.html                   |   702 --
 .../data_modeling/data_modeling_conceptual.html    |   151 -
 .../data_modeling/data_modeling_logical.html       |   285 -
 .../data_modeling/data_modeling_physical.html      |   200 -
 .../data_modeling/data_modeling_queries.html       |   171 -
 .../data_modeling/data_modeling_rdbms.html         |   252 -
 .../data_modeling/data_modeling_refining.html      |   288 -
 .../data_modeling/data_modeling_schema.html        |   236 -
 .../data_modeling/data_modeling_tools.html         |   157 -
 src/doc/4.0-beta3/data_modeling/index.html         |   154 -
 src/doc/4.0-beta3/data_modeling/intro.html         |   230 -
 src/doc/4.0-beta3/development/ci.html              |   167 -
 src/doc/4.0-beta3/development/code_style.html      |   215 -
 src/doc/4.0-beta3/development/dependencies.html    |   155 -
 src/doc/4.0-beta3/development/documentation.html   |   193 -
 src/doc/4.0-beta3/development/gettingstarted.html  |   161 -
 src/doc/4.0-beta3/development/how_to_commit.html   |   219 -
 src/doc/4.0-beta3/development/how_to_review.html   |   179 -
 src/doc/4.0-beta3/development/ide.html             |   268 -
 src/doc/4.0-beta3/development/index.html           |   185 -
 src/doc/4.0-beta3/development/patches.html         |   274 -
 src/doc/4.0-beta3/development/release_process.html |   362 -
 src/doc/4.0-beta3/development/testing.html         |   185 -
 src/doc/4.0-beta3/faq/index.html                   |   318 -
 src/doc/4.0-beta3/genindex.html                    |    95 -
 src/doc/4.0-beta3/getting_started/configuring.html |   176 -
 src/doc/4.0-beta3/getting_started/drivers.html     |   248 -
 src/doc/4.0-beta3/getting_started/index.html       |   165 -
 src/doc/4.0-beta3/getting_started/installing.html  |   388 -
 src/doc/4.0-beta3/getting_started/production.html  |   246 -
 src/doc/4.0-beta3/getting_started/querying.html    |   147 -
 src/doc/4.0-beta3/glossary.html                    |   119 -
 src/doc/4.0-beta3/index.html                       |    86 -
 src/doc/4.0-beta3/new/auditlogging.html            |   567 -
 src/doc/4.0-beta3/new/fqllogging.html              |   665 --
 src/doc/4.0-beta3/new/index.html                   |   190 -
 src/doc/4.0-beta3/new/java11.html                  |   354 -
 src/doc/4.0-beta3/new/messaging.html               |   344 -
 src/doc/4.0-beta3/new/streaming.html               |   260 -
 src/doc/4.0-beta3/new/transientreplication.html    |   228 -
 src/doc/4.0-beta3/new/virtualtables.html           |   427 -
 src/doc/4.0-beta3/objects.inv                      |   Bin 9791 -> 0 bytes
 src/doc/4.0-beta3/operating/audit_logging.html     |   281 -
 src/doc/4.0-beta3/operating/backups.html           |   666 --
 src/doc/4.0-beta3/operating/bloom_filters.html     |   162 -
 src/doc/4.0-beta3/operating/bulk_loading.html      |   680 --
 src/doc/4.0-beta3/operating/cdc.html               |   194 -
 src/doc/4.0-beta3/operating/compaction/index.html  |   387 -
 src/doc/4.0-beta3/operating/compaction/lcs.html    |   147 -
 src/doc/4.0-beta3/operating/compaction/stcs.html   |   122 -
 src/doc/4.0-beta3/operating/compaction/twcs.html   |   140 -
 src/doc/4.0-beta3/operating/compression.html       |   294 -
 src/doc/4.0-beta3/operating/hardware.html          |   189 -
 src/doc/4.0-beta3/operating/hints.html             |   402 -
 src/doc/4.0-beta3/operating/index.html             |   251 -
 src/doc/4.0-beta3/operating/metrics.html           |  1486 ---
 src/doc/4.0-beta3/operating/read_repair.html       |   267 -
 src/doc/4.0-beta3/operating/repair.html            |   278 -
 src/doc/4.0-beta3/operating/security.html          |   474 -
 src/doc/4.0-beta3/operating/snitch.html            |   180 -
 src/doc/4.0-beta3/operating/topo_changes.html      |   222 -
 src/doc/4.0-beta3/plugins/index.html               |   117 -
 src/doc/4.0-beta3/search.html                      |   105 -
 src/doc/4.0-beta3/searchindex.js                   |     1 -
 src/doc/4.0-beta3/tools/cassandra_stress.html      |   355 -
 src/doc/4.0-beta3/tools/cqlsh.html                 |   488 -
 src/doc/4.0-beta3/tools/index.html                 |   258 -
 src/doc/4.0-beta3/tools/nodetool/assassinate.html  |   134 -
 src/doc/4.0-beta3/tools/nodetool/bootstrap.html    |   133 -
 src/doc/4.0-beta3/tools/nodetool/cleanup.html      |   139 -
 .../4.0-beta3/tools/nodetool/clearsnapshot.html    |   142 -
 src/doc/4.0-beta3/tools/nodetool/clientstats.html  |   135 -
 src/doc/4.0-beta3/tools/nodetool/compact.html      |   151 -
 .../tools/nodetool/compactionhistory.html          |   129 -
 .../4.0-beta3/tools/nodetool/compactionstats.html  |   129 -
 src/doc/4.0-beta3/tools/nodetool/decommission.html |   129 -
 .../4.0-beta3/tools/nodetool/describecluster.html  |   126 -
 src/doc/4.0-beta3/tools/nodetool/describering.html |   133 -
 .../4.0-beta3/tools/nodetool/disableauditlog.html  |   125 -
 .../tools/nodetool/disableautocompaction.html      |   135 -
 .../4.0-beta3/tools/nodetool/disablebackup.html    |   125 -
 .../4.0-beta3/tools/nodetool/disablebinary.html    |   125 -
 .../tools/nodetool/disablefullquerylog.html        |   125 -
 .../4.0-beta3/tools/nodetool/disablegossip.html    |   126 -
 .../4.0-beta3/tools/nodetool/disablehandoff.html   |   125 -
 .../tools/nodetool/disablehintsfordc.html          |   134 -
 .../tools/nodetool/disableoldprotocolversions.html |   125 -
 src/doc/4.0-beta3/tools/nodetool/drain.html        |   126 -
 .../4.0-beta3/tools/nodetool/enableauditlog.html   |   159 -
 .../tools/nodetool/enableautocompaction.html       |   135 -
 src/doc/4.0-beta3/tools/nodetool/enablebackup.html |   125 -
 src/doc/4.0-beta3/tools/nodetool/enablebinary.html |   125 -
 .../tools/nodetool/enablefullquerylog.html         |   157 -
 src/doc/4.0-beta3/tools/nodetool/enablegossip.html |   125 -
 .../4.0-beta3/tools/nodetool/enablehandoff.html    |   126 -
 .../4.0-beta3/tools/nodetool/enablehintsfordc.html |   135 -
 .../tools/nodetool/enableoldprotocolversions.html  |   125 -
 .../4.0-beta3/tools/nodetool/failuredetector.html  |   126 -
 src/doc/4.0-beta3/tools/nodetool/flush.html        |   134 -
 .../4.0-beta3/tools/nodetool/garbagecollect.html   |   144 -
 src/doc/4.0-beta3/tools/nodetool/gcstats.html      |   125 -
 .../tools/nodetool/getbatchlogreplaythrottle.html  |   127 -
 .../tools/nodetool/getcompactionthreshold.html     |   135 -
 .../tools/nodetool/getcompactionthroughput.html    |   126 -
 .../4.0-beta3/tools/nodetool/getconcurrency.html   |   134 -
 .../tools/nodetool/getconcurrentcompactors.html    |   126 -
 .../tools/nodetool/getconcurrentviewbuilders.html  |   126 -
 src/doc/4.0-beta3/tools/nodetool/getendpoints.html |   135 -
 .../tools/nodetool/getinterdcstreamthroughput.html |   126 -
 .../4.0-beta3/tools/nodetool/getlogginglevels.html |   125 -
 .../4.0-beta3/tools/nodetool/getmaxhintwindow.html |   125 -
 src/doc/4.0-beta3/tools/nodetool/getseeds.html     |   126 -
 src/doc/4.0-beta3/tools/nodetool/getsstables.html  |   137 -
 .../tools/nodetool/getstreamthroughput.html        |   126 -
 src/doc/4.0-beta3/tools/nodetool/gettimeout.html   |   135 -
 .../tools/nodetool/gettraceprobability.html        |   125 -
 src/doc/4.0-beta3/tools/nodetool/gossipinfo.html   |   125 -
 src/doc/4.0-beta3/tools/nodetool/help.html         |   112 -
 src/doc/4.0-beta3/tools/nodetool/import.html       |   160 -
 src/doc/4.0-beta3/tools/nodetool/info.html         |   128 -
 .../tools/nodetool/invalidatecountercache.html     |   125 -
 .../tools/nodetool/invalidatekeycache.html         |   125 -
 .../tools/nodetool/invalidaterowcache.html         |   125 -
 src/doc/4.0-beta3/tools/nodetool/join.html         |   125 -
 .../4.0-beta3/tools/nodetool/listsnapshots.html    |   128 -
 src/doc/4.0-beta3/tools/nodetool/move.html         |   133 -
 src/doc/4.0-beta3/tools/nodetool/netstats.html     |   130 -
 src/doc/4.0-beta3/tools/nodetool/nodetool.html     |   244 -
 src/doc/4.0-beta3/tools/nodetool/pausehandoff.html |   125 -
 src/doc/4.0-beta3/tools/nodetool/profileload.html  |   144 -
 .../4.0-beta3/tools/nodetool/proxyhistograms.html  |   126 -
 .../4.0-beta3/tools/nodetool/rangekeysample.html   |   126 -
 src/doc/4.0-beta3/tools/nodetool/rebuild.html      |   150 -
 .../4.0-beta3/tools/nodetool/rebuild_index.html    |   135 -
 src/doc/4.0-beta3/tools/nodetool/refresh.html      |   135 -
 .../tools/nodetool/refreshsizeestimates.html       |   125 -
 .../tools/nodetool/reloadlocalschema.html          |   125 -
 src/doc/4.0-beta3/tools/nodetool/reloadseeds.html  |   126 -
 src/doc/4.0-beta3/tools/nodetool/reloadssl.html    |   125 -
 .../4.0-beta3/tools/nodetool/reloadtriggers.html   |   125 -
 .../4.0-beta3/tools/nodetool/relocatesstables.html |   138 -
 src/doc/4.0-beta3/tools/nodetool/removenode.html   |   136 -
 src/doc/4.0-beta3/tools/nodetool/repair.html       |   199 -
 src/doc/4.0-beta3/tools/nodetool/repair_admin.html |   221 -
 .../4.0-beta3/tools/nodetool/replaybatchlog.html   |   125 -
 .../tools/nodetool/resetfullquerylog.html          |   127 -
 .../4.0-beta3/tools/nodetool/resetlocalschema.html |   125 -
 .../4.0-beta3/tools/nodetool/resumehandoff.html    |   125 -
 src/doc/4.0-beta3/tools/nodetool/ring.html         |   138 -
 src/doc/4.0-beta3/tools/nodetool/scrub.html        |   159 -
 .../tools/nodetool/setbatchlogreplaythrottle.html  |   136 -
 .../4.0-beta3/tools/nodetool/setcachecapacity.html |   135 -
 .../tools/nodetool/setcachekeystosave.html         |   137 -
 .../tools/nodetool/setcompactionthreshold.html     |   135 -
 .../tools/nodetool/setcompactionthroughput.html    |   135 -
 .../4.0-beta3/tools/nodetool/setconcurrency.html   |   136 -
 .../tools/nodetool/setconcurrentcompactors.html    |   135 -
 .../tools/nodetool/setconcurrentviewbuilders.html  |   135 -
 .../tools/nodetool/sethintedhandoffthrottlekb.html |   135 -
 .../tools/nodetool/setinterdcstreamthroughput.html |   135 -
 .../4.0-beta3/tools/nodetool/setlogginglevel.html  |   138 -
 .../4.0-beta3/tools/nodetool/setmaxhintwindow.html |   134 -
 .../tools/nodetool/setstreamthroughput.html        |   135 -
 src/doc/4.0-beta3/tools/nodetool/settimeout.html   |   138 -
 .../tools/nodetool/settraceprobability.html        |   136 -
 src/doc/4.0-beta3/tools/nodetool/sjk.html          |   134 -
 src/doc/4.0-beta3/tools/nodetool/snapshot.html     |   152 -
 src/doc/4.0-beta3/tools/nodetool/status.html       |   137 -
 .../tools/nodetool/statusautocompaction.html       |   138 -
 src/doc/4.0-beta3/tools/nodetool/statusbackup.html |   125 -
 src/doc/4.0-beta3/tools/nodetool/statusbinary.html |   125 -
 src/doc/4.0-beta3/tools/nodetool/statusgossip.html |   125 -
 .../4.0-beta3/tools/nodetool/statushandoff.html    |   126 -
 src/doc/4.0-beta3/tools/nodetool/stop.html         |   142 -
 src/doc/4.0-beta3/tools/nodetool/stopdaemon.html   |   125 -
 .../4.0-beta3/tools/nodetool/tablehistograms.html  |   134 -
 src/doc/4.0-beta3/tools/nodetool/tablestats.html   |   169 -
 .../4.0-beta3/tools/nodetool/toppartitions.html    |   143 -
 src/doc/4.0-beta3/tools/nodetool/tpstats.html      |   129 -
 .../4.0-beta3/tools/nodetool/truncatehints.html    |   136 -
 .../4.0-beta3/tools/nodetool/upgradesstables.html  |   145 -
 src/doc/4.0-beta3/tools/nodetool/verify.html       |   154 -
 src/doc/4.0-beta3/tools/nodetool/version.html      |   125 -
 .../4.0-beta3/tools/nodetool/viewbuildstatus.html  |   134 -
 src/doc/4.0-beta3/tools/sstable/index.html         |   229 -
 src/doc/4.0-beta3/tools/sstable/sstabledump.html   |   404 -
 .../tools/sstable/sstableexpiredblockers.html      |   149 -
 .../4.0-beta3/tools/sstable/sstablelevelreset.html |   175 -
 src/doc/4.0-beta3/tools/sstable/sstableloader.html |   409 -
 .../4.0-beta3/tools/sstable/sstablemetadata.html   |   473 -
 .../tools/sstable/sstableofflinerelevel.html       |   190 -
 .../tools/sstable/sstablerepairedset.html          |   193 -
 src/doc/4.0-beta3/tools/sstable/sstablescrub.html  |   211 -
 src/doc/4.0-beta3/tools/sstable/sstablesplit.html  |   202 -
 .../4.0-beta3/tools/sstable/sstableupgrade.html    |   249 -
 src/doc/4.0-beta3/tools/sstable/sstableutil.html   |   205 -
 src/doc/4.0-beta3/tools/sstable/sstableverify.html |   205 -
 .../4.0-beta3/troubleshooting/finding_nodes.html   |   241 -
 src/doc/4.0-beta3/troubleshooting/index.html       |   148 -
 .../4.0-beta3/troubleshooting/reading_logs.html    |   351 -
 .../4.0-beta3/troubleshooting/use_nodetool.html    |   321 -
 src/doc/4.0-beta3/troubleshooting/use_tools.html   |   609 --
 src/doc/latest                                     |     1 -
 src/doc/old/CQL-2.1.html                           |   456 -
 src/doc/old/CQL-2.2.html                           |   647 --
 src/doc/old/CQL-3.0.html                           |   670 --
 src/doc/old/CQL.css                                |   103 -
 src/doc/stable                                     |     1 -
 src/download.md                                    |   129 -
 src/icons/back.gif                                 |   Bin 42 -> 0 bytes
 src/icons/blank.gif                                |   Bin 42 -> 0 bytes
 src/icons/folder.gif                               |   Bin 42 -> 0 bytes
 src/img/1x1.png                                    |   Bin 95 -> 0 bytes
 src/img/apachecon-2019.jpg                         |   Bin 52675 -> 0 bytes
 src/img/asf_feather.png                            |   Bin 1209 -> 0 bytes
 .../apache-cassandra-infographic-final.jpg         |   Bin 714941 -> 0 bytes
 .../cassandra_streaming.png                        |   Bin 14271 -> 0 bytes
 .../.placeholder                                   |     1 -
 .../operator-capabilities.png                      |   Bin 48785 -> 0 bytes
 .../single-region-multi-datacenter.png             |   Bin 156440 -> 0 bytes
 .../single-region-single-datacenter.png            |   Bin 117544 -> 0 bytes
 src/img/blog-post-improving-resiliency/image1.png  |   Bin 147739 -> 0 bytes
 src/img/blog-post-improving-resiliency/image10.png |   Bin 461089 -> 0 bytes
 src/img/blog-post-improving-resiliency/image11.png |   Bin 466079 -> 0 bytes
 src/img/blog-post-improving-resiliency/image12.png |   Bin 252461 -> 0 bytes
 src/img/blog-post-improving-resiliency/image13.png |   Bin 260371 -> 0 bytes
 src/img/blog-post-improving-resiliency/image14.png |   Bin 274174 -> 0 bytes
 src/img/blog-post-improving-resiliency/image15.png |   Bin 274880 -> 0 bytes
 src/img/blog-post-improving-resiliency/image16.png |   Bin 606925 -> 0 bytes
 src/img/blog-post-improving-resiliency/image2.png  |   Bin 199026 -> 0 bytes
 src/img/blog-post-improving-resiliency/image3.png  |   Bin 234728 -> 0 bytes
 src/img/blog-post-improving-resiliency/image4.png  |   Bin 256522 -> 0 bytes
 src/img/blog-post-improving-resiliency/image5.png  |   Bin 278163 -> 0 bytes
 src/img/blog-post-improving-resiliency/image6.png  |   Bin 354831 -> 0 bytes
 src/img/blog-post-improving-resiliency/image7.png  |   Bin 392171 -> 0 bytes
 src/img/blog-post-improving-resiliency/image8.png  |   Bin 509083 -> 0 bytes
 src/img/blog-post-improving-resiliency/image9.png  |   Bin 355440 -> 0 bytes
 .../diagram-hash-ring-with-transient-replica.gif   |   Bin 16730 -> 0 bytes
 .../diagram-hash-ring.gif                          |   Bin 13646 -> 0 bytes
 .../diagram-rapid-write-protection.gif             |   Bin 30057 -> 0 bytes
 .../diagram-regular-write.gif                      |   Bin 20896 -> 0 bytes
 .../diagram-transient-write-down-node.gif          |   Bin 23482 -> 0 bytes
 .../diagram-transient-write.gif                    |   Bin 20480 -> 0 bytes
 src/img/blog-post-usage-report-2020/image1.jpg     |   Bin 73535 -> 0 bytes
 src/img/blog-post-usage-report-2020/image2.jpg     |   Bin 77037 -> 0 bytes
 src/img/blog-post-usage-report-2020/image3.jpg     |   Bin 92250 -> 0 bytes
 src/img/blog-post-usage-report-2020/image4.jpg     |   Bin 100861 -> 0 bytes
 src/img/blog-post-usage-report-2020/image5.jpg     |   Bin 172291 -> 0 bytes
 src/img/cassandra_logo.png                         |   Bin 14246 -> 0 bytes
 src/img/changelog_footer.jpg                       |   Bin 81652 -> 0 bytes
 src/img/changelog_header.jpg                       |   Bin 151061 -> 0 bytes
 src/img/world-party-2021-footer.png                |   Bin 197343 -> 0 bytes
 src/index.html                                     |   125 -
 src/js/doctools.js                                 |   287 -
 src/js/searchtools.js                              |   651 --
 src/js/underscore-min.js                           |     6 -
 src/js/underscore-min.map                          |     1 -
 src/robots.txt                                     |     5 -
 src/third-party.md                                 |   100 -
 src/world_party-2021.md                            |    65 -
 5630 files changed, 5581 insertions(+), 910415 deletions(-)

diff --git a/.gitignore b/.gitignore
index 4dbc175..d827413 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,2 @@
 /.idea/
-.DS_Store
-/src/.sass-cache/
+.DS_Store
\ No newline at end of file
diff --git a/README.md b/README.md
index 0fbbe28..5c87a9a 100644
--- a/README.md
+++ b/README.md
@@ -4,17 +4,18 @@ Apache Cassandra website
 Development Cycle
 -----------------
 
-Making changes to the website is done with the following steps.
+Making changes to the website content can be done using the following steps.
 
-1. Test changes locally
-2. Commit changes in `src/` to a fork and branch, and create a pull request
-3. Get the pull request reviewed and merged to `trunk`
-4. Preview the rendered site on https://cassandra.staged.apache.org/ (wait til [ci-cassandra.apache.org](https://ci-cassandra.apache.org/job/cassandra-website/) has deployed it)
-5. Merge `asf-staging` to `asf-site`
-6. View the rendered site on https://cassandra.apache.org/
+1. Preview changes locally. See below for further details about how to do this.
+2. Commit changes in `site-content/source` to a fork and branch.
+3. Create a pull request back to this repository.
+3. Get the pull request reviewed and merged to `trunk`.
+4. Preview the rendered site on https://cassandra.staged.apache.org/ (wait til [ci-cassandra.apache.org](https://ci-cassandra.apache.org/job/cassandra-website/) has deployed it).
+5. Merge `asf-staging` to `asf-site`.
+6. View the rendered site on https://cassandra.apache.org/.
 
 
-To test changes before committing, it is a requirement that you build the website locally. Building the Apache Cassandra website takes a number of steps. To make things easier we have provided a Docker container which can build the full website in two simple commands and have it ready to commit via git. If you are interested in the process head over to the [README](./src/README) in _src_ directory.
+To test changes before committing, it is a requirement that you build the website locally. Building the Apache Cassandra website takes a number of steps. To make things easier we have provided a Docker container which can build the full website in two simple commands and have it ready to commit via git.
 
 Building Prerequisites
 ----------------------
@@ -22,6 +23,9 @@ Building Prerequisites
 To build and run the Docker container you will need `Docker` version 2.0.0.0 or greater. If you need a copy of the site code you will need `git` as well.
 
 
+# WARNING: The content below is incorrect and needs to be updated.
+
+
 Building the site
 -----------------
 
@@ -51,7 +55,7 @@ $ docker-compose run cassandra-website
 
 Go make yourself a cup of coffee, this will take a while...
 
-Once building has completed, the site content will be in the `./cassandra-website/content` directory ready to be tested.
+Once building has completed, the site content will be in the `./cassandra-website/site-content/build` directory ready to be tested.
 
 
 Previewing the site
diff --git a/content/.keepdir b/content/.keepdir
deleted file mode 100644
index 0488e10..0000000
--- a/content/.keepdir
+++ /dev/null
@@ -1 +0,0 @@
-# dummy file to keep git directory
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index 5d4f546..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-version: '3.3'
-
-services:
-  cassandra-website:
-    build: .
-    image: cassandra-website:latest
-    user: build
-    volumes:
-      - ./src:/home/build/cassandra-site/src
-      - ./content:/home/build/cassandra-site/publish
-
-  cassandra-website-serve:
-    build: .
-    image: cassandra-website:latest
-    user: build
-    entrypoint: /home/build/docker-entrypoint-jekyll-serve.sh
-    ports:
-      - 4000:4000
-    volumes:
-      - ./src:/home/build/cassandra-site/src
-      - ./content:/home/build/cassandra-site/publish
-      - ./docker-entrypoint-jekyll-serve.sh:/home/build/docker-entrypoint-jekyll-serve.sh
-
-  preview:
-    image: nginx
-    ports:
-      - "8000:80"
-    volumes:
-      - "./content:/usr/share/nginx/html"
-    command: [nginx-debug, '-g', 'daemon off;']
-
diff --git a/docker-entrypoint-jekyll-serve.sh b/docker-entrypoint-jekyll-serve.sh
deleted file mode 100755
index b34b927..0000000
--- a/docker-entrypoint-jekyll-serve.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-export CASSANDRA_SITE_DIR="/home/build/cassandra-site"
-
-GREEN='\033[1;32m'
-YELLOW='\033[0;33m'
-NC='\033[0m' # No Color
-
-# Run a process in the background to correct the resource paths for the landing pages of each
-# version in the publish directory
-while [ 1 ]
-do
-    sed -i 's/\.\/\.\.\//\.\/\.\.\/\.\.\//g' ${CASSANDRA_SITE_DIR}/publish/doc/*/index.html
-    sleep 5
-done &
-
-cd ${CASSANDRA_SITE_DIR}/src
-
-JEKYLL_COMMAND="jekyll serve --host 0.0.0.0"
-
-echo
-echo "   Starting Jekyll: ${JEKYLL_COMMAND}"
-echo "------------------------------------------------"
-echo -e "${GREEN}      Site Address: http://127.0.0.1:4000/${NC}"
-echo "------------------------------------------------"
-
-${JEKYLL_COMMAND}
diff --git a/site-content/lib/tabs-block.js b/site-content/lib/tabs-block.js
new file mode 100644
index 0000000..6a84944
--- /dev/null
+++ b/site-content/lib/tabs-block.js
@@ -0,0 +1,80 @@
+/* Copyright (c) 2018 OpenDevise, Inc.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/**
+ * Extends the AsciiDoc syntax to support a tabset. The tabset is created from
+ * a dlist enclosed in an example block that is marked with the tabs style.
+ *
+ * Usage:
+ *
+ *  [tabs]
+ *  ====
+ *  Tab A::
+ *  +
+ *  --
+ *  Contents of tab A.
+ *  --
+ *  Tab B::
+ *  +
+ *  --
+ *  Contents of tab B.
+ *  --
+ *  ====
+ *
+ * @author Dan Allen <da...@opendevise.com>
+ */
+const IdSeparatorCh = '-'
+const ExtraIdSeparatorsRx = /^-+|-+$|-(-)+/g
+const InvalidIdCharsRx = /[^a-zA-Z0-9_]/g
+const List = Opal.const_get_local(Opal.module(null, 'Asciidoctor'), 'List')
+const ListItem = Opal.const_get_local(Opal.module(null, 'Asciidoctor'), 'ListItem')
+
+const generateId = (str, idx) =>
+  `tabset${idx}_${str.toLowerCase().replace(InvalidIdCharsRx, IdSeparatorCh).replace(ExtraIdSeparatorsRx, '$1')}`
+
+function tabsBlock () {
+  this.onContext('example')
+  this.process((parent, reader, attrs) => {
+    const createHtmlFragment = (html) => this.createBlock(parent, 'pass', html)
+    const tabsetIdx = parent.getDocument().counter('idx-tabset')
+    const nodes = []
+    nodes.push(createHtmlFragment('<div class="tabset is-loading">'))
+    const container = this.parseContent(this.createBlock(parent, 'open'), reader)
+    const sourceTabs = container.getBlocks()[0]
+    if (!(sourceTabs && sourceTabs.getContext() === 'dlist' && sourceTabs.getItems().length)) return
+    const tabs = List.$new(parent, 'ulist')
+    tabs.addRole('tabs')
+    const panes = {}
+    sourceTabs.getItems().forEach(([[title], details]) => {
+      const tab = ListItem.$new(tabs)
+      tabs.$append(tab)
+      const id = generateId(title.getText(), tabsetIdx)
+      tab.text = `[[${id}]]${title.text}`
+      let blocks = details.getBlocks()
+      const numBlocks = blocks.length
+      if (numBlocks) {
+        if (blocks[0].context === 'open' && numBlocks === 1) blocks = blocks[0].getBlocks()
+        panes[id] = blocks.map((block) => (block.parent = parent) && block)
+      }
+    })
+    nodes.push(tabs)
+    nodes.push(createHtmlFragment('<div class="content">'))
+    Object.entries(panes).forEach(([id, blocks]) => {
+      nodes.push(createHtmlFragment(`<div class="tab-pane" aria-labelledby="${id}">`))
+      nodes.push(...blocks)
+      nodes.push(createHtmlFragment('</div>'))
+    })
+    nodes.push(createHtmlFragment('</div>'))
+    nodes.push(createHtmlFragment('</div>'))
+    parent.blocks.push(...nodes)
+  })
+}
+
+function register (registry, context) {
+  registry.block('tabs', tabsBlock)
+}
+
+module.exports.register = register
diff --git a/site-content/source/antora.yml b/site-content/source/antora.yml
new file mode 100644
index 0000000..97d5773
--- /dev/null
+++ b/site-content/source/antora.yml
@@ -0,0 +1,4 @@
+name: Website
+version: master
+nav:
+- modules/ROOT/nav.adoc
diff --git a/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v3.spec b/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v3.spec
new file mode 100644
index 0000000..9b1084b
--- /dev/null
+++ b/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v3.spec
@@ -0,0 +1,1040 @@
+
+                             CQL BINARY PROTOCOL v3
+
+
+Table of Contents
+
+  1. Overview
+  2. Frame header
+    2.1. version
+    2.2. flags
+    2.3. stream
+    2.4. opcode
+    2.5. length
+  3. Notations
+  4. Messages
+    4.1. Requests
+      4.1.1. STARTUP
+      4.1.2. AUTH_RESPONSE
+      4.1.3. OPTIONS
+      4.1.4. QUERY
+      4.1.5. PREPARE
+      4.1.6. EXECUTE
+      4.1.7. BATCH
+      4.1.8. REGISTER
+    4.2. Responses
+      4.2.1. ERROR
+      4.2.2. READY
+      4.2.3. AUTHENTICATE
+      4.2.4. SUPPORTED
+      4.2.5. RESULT
+        4.2.5.1. Void
+        4.2.5.2. Rows
+        4.2.5.3. Set_keyspace
+        4.2.5.4. Prepared
+        4.2.5.5. Schema_change
+      4.2.6. EVENT
+      4.2.7. AUTH_CHALLENGE
+      4.2.8. AUTH_SUCCESS
+  5. Compression
+  6. Data Type Serialization Formats
+  7. User Defined Type Serialization
+  8. Result paging
+  9. Error codes
+  10. Changes from v2
+
+
+1. Overview
+
+  The CQL binary protocol is a frame based protocol. Frames are defined as:
+
+      0         8        16        24        32         40
+      +---------+---------+---------+---------+---------+
+      | version |  flags  |      stream       | opcode  |
+      +---------+---------+---------+---------+---------+
+      |                length                 |
+      +---------+---------+---------+---------+
+      |                                       |
+      .            ...  body ...              .
+      .                                       .
+      .                                       .
+      +----------------------------------------
+
+  The protocol is big-endian (network byte order).
+
+  Each frame contains a fixed size header (9 bytes) followed by a variable size
+  body. The header is described in Section 2. The content of the body depends
+  on the header opcode value (the body can in particular be empty for some
+  opcode values). The list of allowed opcode is defined Section 2.4 and the
+  details of each corresponding message is described Section 4.
+
+  The protocol distinguishes 2 types of frames: requests and responses. Requests
+  are those frame sent by the clients to the server, response are the ones sent
+  by the server. Note however that the protocol supports server pushes (events)
+  so responses does not necessarily come right after a client request.
+
+  Note to client implementors: clients library should always assume that the
+  body of a given frame may contain more data than what is described in this
+  document. It will however always be safe to ignore the remaining of the frame
+  body in such cases. The reason is that this may allow to sometimes extend the
+  protocol with optional features without needing to change the protocol
+  version.
+
+
+
+2. Frame header
+
+2.1. version
+
+  The version is a single byte that indicate both the direction of the message
+  (request or response) and the version of the protocol in use. The up-most bit
+  of version is used to define the direction of the message: 0 indicates a
+  request, 1 indicates a responses. This can be useful for protocol analyzers to
+  distinguish the nature of the packet from the direction which it is moving.
+  The rest of that byte is the protocol version (3 for the protocol defined in
+  this document). In other words, for this version of the protocol, version will
+  have one of:
+    0x03    Request frame for this protocol version
+    0x83    Response frame for this protocol version
+
+  Please note that the while every message ship with the version, only one version
+  of messages is accepted on a given connection. In other words, the first message
+  exchanged (STARTUP) sets the version for the connection for the lifetime of this
+  connection.
+
+  This document describe the version 3 of the protocol. For the changes made since
+  version 2, see Section 10.
+
+
+2.2. flags
+
+  Flags applying to this frame. The flags have the following meaning (described
+  by the mask that allow to select them):
+    0x01: Compression flag. If set, the frame body is compressed. The actual
+          compression to use should have been set up beforehand through the
+          Startup message (which thus cannot be compressed; Section 4.1.1).
+    0x02: Tracing flag. For a request frame, this indicate the client requires
+          tracing of the request. Note that not all requests support tracing.
+          Currently, only QUERY, PREPARE and EXECUTE queries support tracing.
+          Other requests will simply ignore the tracing flag if set. If a
+          request support tracing and the tracing flag was set, the response to
+          this request will have the tracing flag set and contain tracing
+          information.
+          If a response frame has the tracing flag set, its body contains
+          a tracing ID. The tracing ID is a [uuid] and is the first thing in
+          the frame body. The rest of the body will then be the usual body
+          corresponding to the response opcode.
+
+  The rest of the flags is currently unused and ignored.
+
+2.3. stream
+
+  A frame has a stream id (a [short] value). When sending request messages, this
+  stream id must be set by the client to a non-negative value (negative stream id
+  are reserved for streams initiated by the server; currently all EVENT messages
+  (section 4.2.6) have a streamId of -1). If a client sends a request message
+  with the stream id X, it is guaranteed that the stream id of the response to
+  that message will be X.
+
+  This allow to deal with the asynchronous nature of the protocol. If a client
+  sends multiple messages simultaneously (without waiting for responses), there
+  is no guarantee on the order of the responses. For instance, if the client
+  writes REQ_1, REQ_2, REQ_3 on the wire (in that order), the server might
+  respond to REQ_3 (or REQ_2) first. Assigning different stream id to these 3
+  requests allows the client to distinguish to which request an received answer
+  respond to. As there can only be 32768 different simultaneous streams, it is up
+  to the client to reuse stream id.
+
+  Note that clients are free to use the protocol synchronously (i.e. wait for
+  the response to REQ_N before sending REQ_N+1). In that case, the stream id
+  can be safely set to 0. Clients should also feel free to use only a subset of
+  the 32768 maximum possible stream ids if it is simpler for those
+  implementation.
+
+2.4. opcode
+
+  An integer byte that distinguish the actual message:
+    0x00    ERROR
+    0x01    STARTUP
+    0x02    READY
+    0x03    AUTHENTICATE
+    0x05    OPTIONS
+    0x06    SUPPORTED
+    0x07    QUERY
+    0x08    RESULT
+    0x09    PREPARE
+    0x0A    EXECUTE
+    0x0B    REGISTER
+    0x0C    EVENT
+    0x0D    BATCH
+    0x0E    AUTH_CHALLENGE
+    0x0F    AUTH_RESPONSE
+    0x10    AUTH_SUCCESS
+
+  Messages are described in Section 4.
+
+  (Note that there is no 0x04 message in this version of the protocol)
+
+
+2.5. length
+
+  A 4 byte integer representing the length of the body of the frame (note:
+  currently a frame is limited to 256MB in length).
+
+
+3. Notations
+
+  To describe the layout of the frame body for the messages in Section 4, we
+  define the following:
+
+    [int]          A 4 bytes signed integer
+    [long]         A 8 bytes signed integer
+    [short]        A 2 bytes unsigned integer
+    [string]       A [short] n, followed by n bytes representing an UTF-8
+                   string.
+    [long string]  An [int] n, followed by n bytes representing an UTF-8 string.
+    [uuid]         A 16 bytes long uuid.
+    [string list]  A [short] n, followed by n [string].
+    [bytes]        A [int] n, followed by n bytes if n >= 0. If n < 0,
+                   no byte should follow and the value represented is `null`.
+    [short bytes]  A [short] n, followed by n bytes if n >= 0.
+
+    [option]       A pair of <id><value> where <id> is a [short] representing
+                   the option id and <value> depends on that option (and can be
+                   of size 0). The supported id (and the corresponding <value>)
+                   will be described when this is used.
+    [option list]  A [short] n, followed by n [option].
+    [inet]         An address (ip and port) to a node. It consists of one
+                   [byte] n, that represents the address size, followed by n
+                   [byte] representing the IP address (in practice n can only be
+                   either 4 (IPv4) or 16 (IPv6)), following by one [int]
+                   representing the port.
+    [consistency]  A consistency level specification. This is a [short]
+                   representing a consistency level with the following
+                   correspondance:
+                     0x0000    ANY
+                     0x0001    ONE
+                     0x0002    TWO
+                     0x0003    THREE
+                     0x0004    QUORUM
+                     0x0005    ALL
+                     0x0006    LOCAL_QUORUM
+                     0x0007    EACH_QUORUM
+                     0x0008    SERIAL
+                     0x0009    LOCAL_SERIAL
+                     0x000A    LOCAL_ONE
+
+    [string map]      A [short] n, followed by n pair <k><v> where <k> and <v>
+                      are [string].
+    [string multimap] A [short] n, followed by n pair <k><v> where <k> is a
+                      [string] and <v> is a [string list].
+
+
+4. Messages
+
+4.1. Requests
+
+  Note that outside of their normal responses (described below), all requests
+  can get an ERROR message (Section 4.2.1) as response.
+
+4.1.1. STARTUP
+
+  Initialize the connection. The server will respond by either a READY message
+  (in which case the connection is ready for queries) or an AUTHENTICATE message
+  (in which case credentials will need to be provided using AUTH_RESPONSE).
+
+  This must be the first message of the connection, except for OPTIONS that can
+  be sent before to find out the options supported by the server. Once the
+  connection has been initialized, a client should not send any more STARTUP
+  message.
+
+  The body is a [string map] of options. Possible options are:
+    - "CQL_VERSION": the version of CQL to use. This option is mandatory and
+      currenty, the only version supported is "3.0.0". Note that this is
+      different from the protocol version.
+    - "COMPRESSION": the compression algorithm to use for frames (See section 5).
+      This is optional, if not specified no compression will be used.
+
+
+4.1.2. AUTH_RESPONSE
+
+  Answers a server authentication challenge.
+
+  Authentication in the protocol is SASL based. The server sends authentication
+  challenges (a bytes token) to which the client answer with this message. Those
+  exchanges continue until the server accepts the authentication by sending a
+  AUTH_SUCCESS message after a client AUTH_RESPONSE. It is however that client that
+  initiate the exchange by sending an initial AUTH_RESPONSE in response to a
+  server AUTHENTICATE request.
+
+  The body of this message is a single [bytes] token. The details of what this
+  token contains (and when it can be null/empty, if ever) depends on the actual
+  authenticator used.
+
+  The response to a AUTH_RESPONSE is either a follow-up AUTH_CHALLENGE message,
+  an AUTH_SUCCESS message or an ERROR message.
+
+
+4.1.3. OPTIONS
+
+  Asks the server to return what STARTUP options are supported. The body of an
+  OPTIONS message should be empty and the server will respond with a SUPPORTED
+  message.
+
+
+4.1.4. QUERY
+
+  Performs a CQL query. The body of the message must be:
+    <query><query_parameters>
+  where <query> is a [long string] representing the query and
+  <query_parameters> must be
+    <consistency><flags>[<n>[name_1]<value_1>...[name_n]<value_n>][<result_page_size>][<paging_state>][<serial_consistency>][<timestamp>]
+  where:
+    - <consistency> is the [consistency] level for the operation.
+    - <flags> is a [byte] whose bits define the options for this query and
+      in particular influence what the remainder of the message contains.
+      A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given there mask:
+        0x01: Values. In that case, a [short] <n> followed by <n> [bytes]
+              values are provided. Those value are used for bound variables in
+              the query. Optionally, if the 0x40 flag is present, each value
+              will be preceded by a [string] name, representing the name of
+              the marker the value must be binded to. This is optional, and
+              if not present, values will be binded by position.
+        0x02: Skip_metadata. If present, the Result Set returned as a response
+              to that query (if any) will have the NO_METADATA flag (see
+              Section 4.2.5.2).
+        0x04: Page_size. In that case, <result_page_size> is an [int]
+              controlling the desired page size of the result (in CQL3 rows).
+              See the section on paging (Section 8) for more details.
+        0x08: With_paging_state. If present, <paging_state> should be present.
+              <paging_state> is a [bytes] value that should have been returned
+              in a result set (Section 4.2.5.2). If provided, the query will be
+              executed but starting from a given paging state. This also to
+              continue paging on a different node from the one it has been
+              started (See Section 8 for more details).
+        0x10: With serial consistency. If present, <serial_consistency> should be
+              present. <serial_consistency> is the [consistency] level for the
+              serial phase of conditional updates. That consitency can only be
+              either SERIAL or LOCAL_SERIAL and if not present, it defaults to
+              SERIAL. This option will be ignored for anything else that a
+              conditional update/insert.
+        0x20: With default timestamp. If present, <timestamp> should be present.
+              <timestamp> is a [long] representing the default timestamp for the query
+              in microseconds (negative values are discouraged but supported for
+              backward compatibility reasons except for the smallest negative
+              value (-2^63) that is forbidden). If provided, this will
+              replace the server side assigned timestamp as default timestamp.
+              Note that a timestamp in the query itself will still override
+              this timestamp. This is entirely optional.
+        0x40: With names for values. This only makes sense if the 0x01 flag is set and
+              is ignored otherwise. If present, the values from the 0x01 flag will
+              be preceded by a name (see above). Note that this is only useful for
+              QUERY requests where named bind markers are used; for EXECUTE statements,
+              since the names for the expected values was returned during preparation,
+              a client can always provide values in the right order without any names
+              and using this flag, while supported, is almost surely inefficient.
+
+  Note that the consistency is ignored by some queries (USE, CREATE, ALTER,
+  TRUNCATE, ...).
+
+  The server will respond to a QUERY message with a RESULT message, the content
+  of which depends on the query.
+
+
+4.1.5. PREPARE
+
+  Prepare a query for later execution (through EXECUTE). The body consists of
+  the CQL query to prepare as a [long string].
+
+  The server will respond with a RESULT message with a `prepared` kind (0x0004,
+  see Section 4.2.5).
+
+
+4.1.6. EXECUTE
+
+  Executes a prepared query. The body of the message must be:
+    <id><query_parameters>
+  where <id> is the prepared query ID. It's the [short bytes] returned as a
+  response to a PREPARE message. As for <query_parameters>, it has the exact
+  same definition than in QUERY (see Section 4.1.4).
+
+  The response from the server will be a RESULT message.
+
+
+4.1.7. BATCH
+
+  Allows executing a list of queries (prepared or not) as a batch (note that
+  only DML statements are accepted in a batch). The body of the message must
+  be:
+    <type><n><query_1>...<query_n><consistency><flags>[<serial_consistency>][<timestamp>]
+  where:
+    - <type> is a [byte] indicating the type of batch to use:
+        - If <type> == 0, the batch will be "logged". This is equivalent to a
+          normal CQL3 batch statement.
+        - If <type> == 1, the batch will be "unlogged".
+        - If <type> == 2, the batch will be a "counter" batch (and non-counter
+          statements will be rejected).
+    - <flags> is a [byte] whose bits define the options for this query and
+      in particular influence the remainder of the message contains. It is similar
+      to the <flags> from QUERY and EXECUTE methods, except that the 4 rightmost
+      bits must always be 0 as their corresponding option do not make sense for
+      Batch. A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given there mask:
+        0x10: With serial consistency. If present, <serial_consistency> should be
+              present. <serial_consistency> is the [consistency] level for the
+              serial phase of conditional updates. That consitency can only be
+              either SERIAL or LOCAL_SERIAL and if not present, it defaults to
+              SERIAL. This option will be ignored for anything else that a
+              conditional update/insert.
+        0x20: With default timestamp. If present, <timestamp> should be present.
+              <timestamp> is a [long] representing the default timestamp for the query
+              in microseconds. If provided, this will replace the server side assigned
+              timestamp as default timestamp. Note that a timestamp in the query itself
+              will still override this timestamp. This is entirely optional.
+        0x40: With names for values. If set, then all values for all <query_i> must be
+              preceded by a [string] <name_i> that have the same meaning as in QUERY
+              requests [IMPORTANT NOTE: this feature does not work and should not be
+              used. It is specified in a way that makes it impossible for the server
+              to implement. This will be fixed in a future version of the native
+              protocol. See https://issues.apache.org/jira/browse/CASSANDRA-10246 for
+              more details].
+    - <n> is a [short] indicating the number of following queries.
+    - <query_1>...<query_n> are the queries to execute. A <query_i> must be of the
+      form:
+        <kind><string_or_id><n>[<name_1>]<value_1>...[<name_n>]<value_n>
+      where:
+       - <kind> is a [byte] indicating whether the following query is a prepared
+         one or not. <kind> value must be either 0 or 1.
+       - <string_or_id> depends on the value of <kind>. If <kind> == 0, it should be
+         a [long string] query string (as in QUERY, the query string might contain
+         bind markers). Otherwise (that is, if <kind> == 1), it should be a
+         [short bytes] representing a prepared query ID.
+       - <n> is a [short] indicating the number (possibly 0) of following values.
+       - <name_i> is the optional name of the following <value_i>. It must be present
+         if and only if the 0x40 flag is provided for the batch.
+       - <value_i> is the [bytes] to use for bound variable i (of bound variable <name_i>
+         if the 0x40 flag is used).
+    - <consistency> is the [consistency] level for the operation.
+    - <serial_consistency> is only present if the 0x10 flag is set. In that case,
+      <serial_consistency> is the [consistency] level for the serial phase of
+      conditional updates. That consitency can only be either SERIAL or
+      LOCAL_SERIAL and if not present will defaults to SERIAL. This option will
+      be ignored for anything else that a conditional update/insert.
+
+  The server will respond with a RESULT message.
+
+
+4.1.8. REGISTER
+
+  Register this connection to receive some type of events. The body of the
+  message is a [string list] representing the event types to register to. See
+  section 4.2.6 for the list of valid event types.
+
+  The response to a REGISTER message will be a READY message.
+
+  Please note that if a client driver maintains multiple connections to a
+  Cassandra node and/or connections to multiple nodes, it is advised to
+  dedicate a handful of connections to receive events, but to *not* register
+  for events on all connections, as this would only result in receiving
+  multiple times the same event messages, wasting bandwidth.
+
+
+4.2. Responses
+
+  This section describes the content of the frame body for the different
+  responses. Please note that to make room for future evolution, clients should
+  support extra informations (that they should simply discard) to the one
+  described in this document at the end of the frame body.
+
+4.2.1. ERROR
+
+  Indicates an error processing a request. The body of the message will be an
+  error code ([int]) followed by a [string] error message. Then, depending on
+  the exception, more content may follow. The error codes are defined in
+  Section 9, along with their additional content if any.
+
+
+4.2.2. READY
+
+  Indicates that the server is ready to process queries. This message will be
+  sent by the server either after a STARTUP message if no authentication is
+  required, or after a successful CREDENTIALS message.
+
+  The body of a READY message is empty.
+
+
+4.2.3. AUTHENTICATE
+
+  Indicates that the server require authentication, and which authentication
+  mechanism to use.
+
+  The authentication is SASL based and thus consists on a number of server
+  challenges (AUTH_CHALLENGE, Section 4.2.7) followed by client responses
+  (AUTH_RESPONSE, Section 4.1.2). The Initial exchange is however boostrapped
+  by an initial client response. The details of that exchange (including how
+  much challenge-response pair are required) are specific to the authenticator
+  in use. The exchange ends when the server sends an AUTH_SUCCESS message or
+  an ERROR message.
+
+  This message will be sent following a STARTUP message if authentication is
+  required and must be answered by a AUTH_RESPONSE message from the client.
+
+  The body consists of a single [string] indicating the full class name of the
+  IAuthenticator in use.
+
+
+4.2.4. SUPPORTED
+
+  Indicates which startup options are supported by the server. This message
+  comes as a response to an OPTIONS message.
+
+  The body of a SUPPORTED message is a [string multimap]. This multimap gives
+  for each of the supported STARTUP options, the list of supported values.
+
+
+4.2.5. RESULT
+
+  The result to a query (QUERY, PREPARE, EXECUTE or BATCH messages).
+
+  The first element of the body of a RESULT message is an [int] representing the
+  `kind` of result. The rest of the body depends on the kind. The kind can be
+  one of:
+    0x0001    Void: for results carrying no information.
+    0x0002    Rows: for results to select queries, returning a set of rows.
+    0x0003    Set_keyspace: the result to a `use` query.
+    0x0004    Prepared: result to a PREPARE message.
+    0x0005    Schema_change: the result to a schema altering query.
+
+  The body for each kind (after the [int] kind) is defined below.
+
+
+4.2.5.1. Void
+
+  The rest of the body for a Void result is empty. It indicates that a query was
+  successful without providing more information.
+
+
+4.2.5.2. Rows
+
+  Indicates a set of rows. The rest of body of a Rows result is:
+    <metadata><rows_count><rows_content>
+  where:
+    - <metadata> is composed of:
+        <flags><columns_count>[<paging_state>][<global_table_spec>?<col_spec_1>...<col_spec_n>]
+      where:
+        - <flags> is an [int]. The bits of <flags> provides information on the
+          formatting of the remaining informations. A flag is set if the bit
+          corresponding to its `mask` is set. Supported flags are, given there
+          mask:
+            0x0001    Global_tables_spec: if set, only one table spec (keyspace
+                      and table name) is provided as <global_table_spec>. If not
+                      set, <global_table_spec> is not present.
+            0x0002    Has_more_pages: indicates whether this is not the last
+                      page of results and more should be retrieve. If set, the
+                      <paging_state> will be present. The <paging_state> is a
+                      [bytes] value that should be used in QUERY/EXECUTE to
+                      continue paging and retrieve the remained of the result for
+                      this query (See Section 8 for more details).
+            0x0004    No_metadata: if set, the <metadata> is only composed of
+                      these <flags>, the <column_count> and optionally the
+                      <paging_state> (depending on the Has_more_pages flage) but
+                      no other information (so no <global_table_spec> nor <col_spec_i>).
+                      This will only ever be the case if this was requested
+                      during the query (see QUERY and RESULT messages).
+        - <columns_count> is an [int] representing the number of columns selected
+          by the query this result is of. It defines the number of <col_spec_i>
+          elements in and the number of element for each row in <rows_content>.
+        - <global_table_spec> is present if the Global_tables_spec is set in
+          <flags>. If present, it is composed of two [string] representing the
+          (unique) keyspace name and table name the columns return are of.
+        - <col_spec_i> specifies the columns returned in the query. There is
+          <column_count> such column specifications that are composed of:
+            (<ksname><tablename>)?<name><type>
+          The initial <ksname> and <tablename> are two [string] are only present
+          if the Global_tables_spec flag is not set. The <column_name> is a
+          [string] and <type> is an [option] that correspond to the description
+          (what this description is depends a bit on the context: in results to
+          selects, this will be either the user chosen alias or the selection used
+          (often a colum name, but it can be a function call too). In results to
+          a PREPARE, this will be either the name of the bind variable corresponding
+          or the column name for the variable if it is "anonymous") and type of
+          the corresponding result. The option for <type> is either a native
+          type (see below), in which case the option has no value, or a
+          'custom' type, in which case the value is a [string] representing
+          the full qualified class name of the type represented. Valid option
+          ids are:
+            0x0000    Custom: the value is a [string], see above.
+            0x0001    Ascii
+            0x0002    Bigint
+            0x0003    Blob
+            0x0004    Boolean
+            0x0005    Counter
+            0x0006    Decimal
+            0x0007    Double
+            0x0008    Float
+            0x0009    Int
+            0x000B    Timestamp
+            0x000C    Uuid
+            0x000D    Varchar
+            0x000E    Varint
+            0x000F    Timeuuid
+            0x0010    Inet
+            0x0020    List: the value is an [option], representing the type
+                            of the elements of the list.
+            0x0021    Map: the value is two [option], representing the types of the
+                           keys and values of the map
+            0x0022    Set: the value is an [option], representing the type
+                            of the elements of the set
+            0x0030    UDT: the value is <ks><udt_name><n><name_1><type_1>...<name_n><type_n>
+                           where:
+                              - <ks> is a [string] representing the keyspace name this
+                                UDT is part of.
+                              - <udt_name> is a [string] representing the UDT name.
+                              - <n> is a [short] reprensenting the number of fields of
+                                the UDT, and thus the number of <name_i><type_i> pair
+                                following
+                              - <name_i> is a [string] representing the name of the
+                                i_th field of the UDT.
+                              - <type_i> is an [option] representing the type of the
+                                i_th field of the UDT.
+            0x0031    Tuple: the value is <n><type_1>...<type_n> where <n> is a [short]
+                             representing the number of value in the type, and <type_i>
+                             are [option] representing the type of the i_th component
+                             of the tuple
+
+    - <rows_count> is an [int] representing the number of rows present in this
+      result. Those rows are serialized in the <rows_content> part.
+    - <rows_content> is composed of <row_1>...<row_m> where m is <rows_count>.
+      Each <row_i> is composed of <value_1>...<value_n> where n is
+      <columns_count> and where <value_j> is a [bytes] representing the value
+      returned for the jth column of the ith row. In other words, <rows_content>
+      is composed of (<rows_count> * <columns_count>) [bytes].
+
+
+4.2.5.3. Set_keyspace
+
+  The result to a `use` query. The body (after the kind [int]) is a single
+  [string] indicating the name of the keyspace that has been set.
+
+
+4.2.5.4. Prepared
+
+  The result to a PREPARE message. The rest of the body of a Prepared result is:
+    <id><metadata><result_metadata>
+  where:
+    - <id> is [short bytes] representing the prepared query ID.
+    - <metadata> is defined exactly as for a Rows RESULT (See section 4.2.5.2; you
+      can however assume that the Has_more_pages flag is always off) and
+      is the specification for the variable bound in this prepare statement.
+    - <result_metadata> is defined exactly as <metadata> but correspond to the
+      metadata for the resultSet that execute this query will yield. Note that
+      <result_metadata> may be empty (have the No_metadata flag and 0 columns, See
+      section 4.2.5.2) and will be for any query that is not a Select. There is
+      in fact never a guarantee that this will non-empty so client should protect
+      themselves accordingly. The presence of this information is an
+      optimization that allows to later execute the statement that has been
+      prepared without requesting the metadata (Skip_metadata flag in EXECUTE).
+      Clients can safely discard this metadata if they do not want to take
+      advantage of that optimization.
+
+  Note that prepared query ID return is global to the node on which the query
+  has been prepared. It can be used on any connection to that node and this
+  until the node is restarted (after which the query must be reprepared).
+
+4.2.5.5. Schema_change
+
+  The result to a schema altering query (creation/update/drop of a
+  keyspace/table/index). The body (after the kind [int]) is the same
+  as the body for a "SCHEMA_CHANGE" event, so 3 strings:
+    <change_type><target><options>
+  Please refer to the section 4.2.6 below for the meaning of those fields.
+
+  Note that queries to create and drop an index are considered as change
+  updating the table the index is on.
+
+
+4.2.6. EVENT
+
+  And event pushed by the server. A client will only receive events for the
+  type it has REGISTER to. The body of an EVENT message will start by a
+  [string] representing the event type. The rest of the message depends on the
+  event type. The valid event types are:
+    - "TOPOLOGY_CHANGE": events related to change in the cluster topology.
+      Currently, events are sent when new nodes are added to the cluster, and
+      when nodes are removed. The body of the message (after the event type)
+      consists of a [string] and an [inet], corresponding respectively to the
+      type of change ("NEW_NODE", "REMOVED_NODE", or "MOVED_NODE") followed
+      by the address of the new/removed/moved node.
+    - "STATUS_CHANGE": events related to change of node status. Currently,
+      up/down events are sent. The body of the message (after the event type)
+      consists of a [string] and an [inet], corresponding respectively to the
+      type of status change ("UP" or "DOWN") followed by the address of the
+      concerned node.
+    - "SCHEMA_CHANGE": events related to schema change. After the event type,
+      the rest of the message will be <change_type><target><options> where:
+        - <change_type> is a [string] representing the type of changed involved.
+          It will be one of "CREATED", "UPDATED" or "DROPPED".
+        - <target> is a [string] that can be one of "KEYSPACE", "TABLE" or "TYPE"
+          and describes what has been modified ("TYPE" stands for modifications
+          related to user types).
+        - <options> depends on the preceding <target>. If <target> is
+          "KEYSPACE", then <options> will be a single [string] representing the
+          keyspace changed. Otherwise, if <target> is "TABLE" or "TYPE", then
+          <options> will be 2 [string]: the first one will be the keyspace
+          containing the affected object, and the second one will be the name
+          of said affected object (so either the table name or the user type
+          name).
+
+  All EVENT message have a streamId of -1 (Section 2.3).
+
+  Please note that "NEW_NODE" and "UP" events are sent based on internal Gossip
+  communication and as such may be sent a short delay before the binary
+  protocol server on the newly up node is fully started. Clients are thus
+  advise to wait a short time before trying to connect to the node (1 seconds
+  should be enough), otherwise they may experience a connection refusal at
+  first.
+
+  It is possible for the same event to be sent multiple times. Therefore,
+  a client library should ignore the same event if it has already been notified
+  of a change.
+
+4.2.7. AUTH_CHALLENGE
+
+  A server authentication challenge (see AUTH_RESPONSE (Section 4.1.2) for more
+  details).
+
+  The body of this message is a single [bytes] token. The details of what this
+  token contains (and when it can be null/empty, if ever) depends on the actual
+  authenticator used.
+
+  Clients are expected to answer the server challenge by an AUTH_RESPONSE
+  message.
+
+4.2.7. AUTH_SUCCESS
+
+  Indicate the success of the authentication phase. See Section 4.2.3 for more
+  details.
+
+  The body of this message is a single [bytes] token holding final information
+  from the server that the client may require to finish the authentication
+  process. What that token contains and whether it can be null depends on the
+  actual authenticator used.
+
+
+5. Compression
+
+  Frame compression is supported by the protocol, but then only the frame body
+  is compressed (the frame header should never be compressed).
+
+  Before being used, client and server must agree on a compression algorithm to
+  use, which is done in the STARTUP message. As a consequence, a STARTUP message
+  must never be compressed.  However, once the STARTUP frame has been received
+  by the server can be compressed (including the response to the STARTUP
+  request). Frame do not have to be compressed however, even if compression has
+  been agreed upon (a server may only compress frame above a certain size at its
+  discretion). A frame body should be compressed if and only if the compressed
+  flag (see Section 2.2) is set.
+
+  As of this version 2 of the protocol, the following compressions are available:
+    - lz4 (https://code.google.com/p/lz4/). In that, note that the 4 first bytes
+      of the body will be the uncompressed length (followed by the compressed
+      bytes).
+    - snappy (https://code.google.com/p/snappy/). This compression might not be
+      available as it depends on a native lib (server-side) that might not be
+      avaivable on some installation.
+
+
+6. Data Type Serialization Formats
+
+  This sections describes the serialization formats for all CQL data types
+  supported by Cassandra through the native protocol.  These serialization
+  formats should be used by client drivers to encode values for EXECUTE
+  messages.  Cassandra will use these formats when returning values in
+  RESULT messages.
+
+  All values are represented as [bytes] in EXECUTE and RESULT messages.
+  The [bytes] format includes an int prefix denoting the length of the value.
+  For that reason, the serialization formats described here will not include
+  a length component.
+
+  For legacy compatibility reasons, note that most non-string types support
+  "empty" values (i.e. a value with zero length).  An empty value is distinct
+  from NULL, which is encoded with a negative length.
+
+  As with the rest of the native protocol, all encodings are big-endian.
+
+6.1. ascii
+
+  A sequence of bytes in the ASCII range [0, 127].  Bytes with values outside of
+  this range will result in a validation error.
+
+6.2 bigint
+
+  An eight-byte two's complement integer.
+
+6.3 blob
+
+  Any sequence of bytes.
+
+6.4 boolean
+
+  A single byte.  A value of 0 denotes "false"; any other value denotes "true".
+  (However, it is recommended that a value of 1 be used to represent "true".)
+
+6.5 decimal
+
+  The decimal format represents an arbitrary-precision number.  It contains an
+  [int] "scale" component followed by a varint encoding (see section 6.17)
+  of the unscaled value.  The encoded value represents "<unscaled>E<-scale>".
+  In other words, "<unscaled> * 10 ^ (-1 * <scale>)".
+
+6.6 double
+
+  An eight-byte floating point number in the IEEE 754 binary64 format.
+
+6.7 float
+
+  An four-byte floating point number in the IEEE 754 binary32 format.
+
+6.8 inet
+
+  A 4 byte or 16 byte sequence denoting an IPv4 or IPv6 address, respectively.
+
+6.9 int
+
+  A four-byte two's complement integer.
+
+6.10 list
+
+  A [int] n indicating the number of elements in the list, followed by n
+  elements.  Each element is [bytes] representing the serialized value.
+
+6.11 map
+
+  A [int] n indicating the number of key/value pairs in the map, followed by
+  n entries.  Each entry is composed of two [bytes] representing the key
+  and value.
+
+6.12 set
+
+  A [int] n indicating the number of elements in the set, followed by n
+  elements.  Each element is [bytes] representing the serialized value.
+
+6.13 text
+
+  A sequence of bytes conforming to the UTF-8 specifications.
+
+6.14 timestamp
+
+  An eight-byte two's complement integer representing a millisecond-precision
+  offset from the unix epoch (00:00:00, January 1st, 1970).  Negative values
+  represent a negative offset from the epoch.
+
+6.15 uuid
+
+  A 16 byte sequence representing any valid UUID as defined by RFC 4122.
+
+6.16 varchar
+
+  An alias of the "text" type.
+
+6.17 varint
+
+  A variable-length two's complement encoding of a signed integer.
+
+  The following examples may help implementors of this spec:
+
+  Value | Encoding
+  ------|---------
+      0 |     0x00
+      1 |     0x01
+    127 |     0x7F
+    128 |   0x0080
+    129 |   0x0081
+     -1 |     0xFF
+   -128 |     0x80
+   -129 |   0xFF7F
+
+  Note that positive numbers must use a most-significant byte with a value
+  less than 0x80, because a most-significant bit of 1 indicates a negative
+  value.  Implementors should pad positive values that have a MSB >= 0x80
+  with a leading 0x00 byte.
+
+6.18 timeuuid
+
+  A 16 byte sequence representing a version 1 UUID as defined by RFC 4122.
+
+6.19 tuple
+
+  A sequence of [bytes] values representing the items in a tuple.  The encoding
+  of each element depends on the data type for that position in the tuple.
+  Null values may be represented by using length -1 for the [bytes]
+  representation of an element.
+
+  Within a tuple, all data types should use the v3 protocol serialization format.
+
+
+7. User Defined Types
+
+  This section describes the serialization format for User defined types (UDT),
+  as described in section 4.2.5.2.
+
+  A UDT value is composed of successive [bytes] values, one for each field of the UDT
+  value (in the order defined by the type). A UDT value will generally have one value
+  for each field of the type it represents, but it is allowed to have less values than
+  the type has fields.
+
+  Within a user-defined type value, all data types should use the v3 protocol
+  serialization format.
+
+
+8. Result paging
+
+  The protocol allows for paging the result of queries. For that, the QUERY and
+  EXECUTE messages have a <result_page_size> value that indicate the desired
+  page size in CQL3 rows.
+
+  If a positive value is provided for <result_page_size>, the result set of the
+  RESULT message returned for the query will contain at most the
+  <result_page_size> first rows of the query result. If that first page of result
+  contains the full result set for the query, the RESULT message (of kind `Rows`)
+  will have the Has_more_pages flag *not* set. However, if some results are not
+  part of the first response, the Has_more_pages flag will be set and the result
+  will contain a <paging_state> value. In that case, the <paging_state> value
+  should be used in a QUERY or EXECUTE message (that has the *same* query than
+  the original one or the behavior is undefined) to retrieve the next page of
+  results.
+
+  Only CQL3 queries that return a result set (RESULT message with a Rows `kind`)
+  support paging. For other type of queries, the <result_page_size> value is
+  ignored.
+
+  Note to client implementors:
+  - While <result_page_size> can be as low as 1, it will likely be detrimental
+    to performance to pick a value too low. A value below 100 is probably too
+    low for most use cases.
+  - Clients should not rely on the actual size of the result set returned to
+    decide if there is more result to fetch or not. Instead, they should always
+    check the Has_more_pages flag (unless they did not enabled paging for the query
+    obviously). Clients should also not assert that no result will have more than
+    <result_page_size> results. While the current implementation always respect
+    the exact value of <result_page_size>, we reserve ourselves the right to return
+    slightly smaller or bigger pages in the future for performance reasons.
+  - The <paging_state> is specific to a protocol version and drivers should not
+    send a <paging_state> returned by a node using the protocol v3 to query a node
+    using the protocol v4 for instance.
+
+
+9. Error codes
+
+  The supported error codes are described below:
+    0x0000    Server error: something unexpected happened. This indicates a
+              server-side bug.
+    0x000A    Protocol error: some client message triggered a protocol
+              violation (for instance a QUERY message is sent before a STARTUP
+              one has been sent)
+    0x0100    Bad credentials: CREDENTIALS request failed because Cassandra
+              did not accept the provided credentials.
+
+    0x1000    Unavailable exception. The rest of the ERROR message body will be
+                <cl><required><alive>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <required> is an [int] representing the number of node that
+                           should be alive to respect <cl>
+                <alive> is an [int] representing the number of replica that
+                        were known to be alive when the request has been
+                        processed (since an unavailable exception has been
+                        triggered, there will be <alive> < <required>)
+    0x1001    Overloaded: the request cannot be processed because the
+              coordinator node is overloaded
+    0x1002    Is_bootstrapping: the request was a read request but the
+              coordinator node is bootstrapping
+    0x1003    Truncate_error: error during a truncation error.
+    0x1100    Write_timeout: Timeout exception during a write request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><writeType>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           acknowledged the request.
+                <blockfor> is an [int] representing the number of replica whose
+                           acknowledgement is required to achieve <cl>.
+                <writeType> is a [string] that describe the type of the write
+                            that timeouted. The value of that string can be one
+                            of:
+                             - "SIMPLE": the write was a non-batched
+                               non-counter write.
+                             - "BATCH": the write was a (logged) batch write.
+                               If this type is received, it means the batch log
+                               has been successfully written (otherwise a
+                               "BATCH_LOG" type would have been send instead).
+                             - "UNLOGGED_BATCH": the write was an unlogged
+                               batch. Not batch log write has been attempted.
+                             - "COUNTER": the write was a counter write
+                               (batched or not).
+                             - "BATCH_LOG": the timeout occured during the
+                               write to the batch log when a (logged) batch
+                               write was requested.
+                             - "CAS": the timeout occured during the Compare And Set write/update.
+    0x1200    Read_timeout: Timeout exception during a read request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><data_present>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replica whose
+                           response is required to achieve <cl>. Please note that
+                           it is possible to have <received> >= <blockfor> if
+                           <data_present> is false. And also in the (unlikely)
+                           case were <cl> is achieved but the coordinator node
+                           timeout while waiting for read-repair
+                           acknowledgement.
+                <data_present> is a single byte. If its value is 0, it means
+                               the replica that was asked for data has not
+                               responded. Otherwise, the value is != 0.
+
+    0x2000    Syntax_error: The submitted query has a syntax error.
+    0x2100    Unauthorized: The logged user doesn't have the right to perform
+              the query.
+    0x2200    Invalid: The query is syntactically correct but invalid.
+    0x2300    Config_error: The query is invalid because of some configuration issue
+    0x2400    Already_exists: The query attempted to create a keyspace or a
+              table that was already existing. The rest of the ERROR message
+              body will be <ks><table> where:
+                <ks> is a [string] representing either the keyspace that
+                     already exists, or the keyspace in which the table that
+                     already exists is.
+                <table> is a [string] representing the name of the table that
+                        already exists. If the query was attempting to create a
+                        keyspace, <table> will be present but will be the empty
+                        string.
+    0x2500    Unprepared: Can be thrown while a prepared statement tries to be
+              executed if the provide prepared statement ID is not known by
+              this host. The rest of the ERROR message body will be [short
+              bytes] representing the unknown ID.
+
+10. Changes from v2
+  * stream id is now 2 bytes long (a [short] value), so the header is now 1 byte longer (9 bytes total).
+  * BATCH messages now have <flags> (like QUERY and EXECUTE) and a corresponding optional
+    <serial_consistency> parameters (see Section 4.1.7).
+  * User Defined Types and tuple types have to added to ResultSet metadata (see 4.2.5.2) and a
+    new section on the serialization format of UDT and tuple values has been added to the documentation
+    (Section 7).
+  * The serialization format for collection has changed (both the collection size and
+    the length of each argument is now 4 bytes long). See Section 6.
+  * QUERY, EXECUTE and BATCH messages can now optionally provide the default timestamp for the query.
+    As this feature is optionally enabled by clients, implementing it is at the discretion of the
+    client.
+  * QUERY and EXECUTE messages can now optionally provide the names for the values of the
+    query. As this feature is optionally enabled by clients, implementing it is at the discretion of the
+    client (Note that while the BATCH message has a flag for this, it actually doesn't work for BATCH,
+    see Section 4.1.7 for details).
+  * The format of "Schema_change" results (Section 4.2.5.5) and "SCHEMA_CHANGE" events (Section 4.2.6)
+    has been modified, and now includes changes related to user types.
+
diff --git a/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v4.spec b/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v4.spec
new file mode 100644
index 0000000..5670241
--- /dev/null
+++ b/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v4.spec
@@ -0,0 +1,1191 @@
+
+                             CQL BINARY PROTOCOL v4
+
+
+Table of Contents
+
+  1. Overview
+  2. Frame header
+    2.1. version
+    2.2. flags
+    2.3. stream
+    2.4. opcode
+    2.5. length
+  3. Notations
+  4. Messages
+    4.1. Requests
+      4.1.1. STARTUP
+      4.1.2. AUTH_RESPONSE
+      4.1.3. OPTIONS
+      4.1.4. QUERY
+      4.1.5. PREPARE
+      4.1.6. EXECUTE
+      4.1.7. BATCH
+      4.1.8. REGISTER
+    4.2. Responses
+      4.2.1. ERROR
+      4.2.2. READY
+      4.2.3. AUTHENTICATE
+      4.2.4. SUPPORTED
+      4.2.5. RESULT
+        4.2.5.1. Void
+        4.2.5.2. Rows
+        4.2.5.3. Set_keyspace
+        4.2.5.4. Prepared
+        4.2.5.5. Schema_change
+      4.2.6. EVENT
+      4.2.7. AUTH_CHALLENGE
+      4.2.8. AUTH_SUCCESS
+  5. Compression
+  6. Data Type Serialization Formats
+  7. User Defined Type Serialization
+  8. Result paging
+  9. Error codes
+  10. Changes from v3
+
+
+1. Overview
+
+  The CQL binary protocol is a frame based protocol. Frames are defined as:
+
+      0         8        16        24        32         40
+      +---------+---------+---------+---------+---------+
+      | version |  flags  |      stream       | opcode  |
+      +---------+---------+---------+---------+---------+
+      |                length                 |
+      +---------+---------+---------+---------+
+      |                                       |
+      .            ...  body ...              .
+      .                                       .
+      .                                       .
+      +----------------------------------------
+
+  The protocol is big-endian (network byte order).
+
+  Each frame contains a fixed size header (9 bytes) followed by a variable size
+  body. The header is described in Section 2. The content of the body depends
+  on the header opcode value (the body can in particular be empty for some
+  opcode values). The list of allowed opcodes is defined in Section 2.4 and the
+  details of each corresponding message are described Section 4.
+
+  The protocol distinguishes two types of frames: requests and responses. Requests
+  are those frames sent by the client to the server. Responses are those frames sent
+  by the server to the client. Note, however, that the protocol supports server pushes
+  (events) so a response does not necessarily come right after a client request.
+
+  Note to client implementors: client libraries should always assume that the
+  body of a given frame may contain more data than what is described in this
+  document. It will however always be safe to ignore the remainder of the frame
+  body in such cases. The reason is that this may enable extending the protocol
+  with optional features without needing to change the protocol version.
+
+
+
+2. Frame header
+
+2.1. version
+
+  The version is a single byte that indicates both the direction of the message
+  (request or response) and the version of the protocol in use. The most
+  significant bit of version is used to define the direction of the message:
+  0 indicates a request, 1 indicates a response. This can be useful for protocol
+  analyzers to distinguish the nature of the packet from the direction in which
+  it is moving. The rest of that byte is the protocol version (4 for the protocol
+  defined in this document). In other words, for this version of the protocol,
+  version will be one of:
+    0x04    Request frame for this protocol version
+    0x84    Response frame for this protocol version
+
+  Please note that while every message ships with the version, only one version
+  of messages is accepted on a given connection. In other words, the first message
+  exchanged (STARTUP) sets the version for the connection for the lifetime of this
+  connection.
+
+  This document describes version 4 of the protocol. For the changes made since
+  version 3, see Section 10.
+
+
+2.2. flags
+
+  Flags applying to this frame. The flags have the following meaning (described
+  by the mask that allows selecting them):
+    0x01: Compression flag. If set, the frame body is compressed. The actual
+          compression to use should have been set up beforehand through the
+          Startup message (which thus cannot be compressed; Section 4.1.1).
+    0x02: Tracing flag. For a request frame, this indicates the client requires
+          tracing of the request. Note that only QUERY, PREPARE and EXECUTE queries
+          support tracing. Other requests will simply ignore the tracing flag if 
+          set. If a request supports tracing and the tracing flag is set, the response
+          to this request will have the tracing flag set and contain tracing
+          information.
+          If a response frame has the tracing flag set, its body contains
+          a tracing ID. The tracing ID is a [uuid] and is the first thing in
+          the frame body. The rest of the body will then be the usual body
+          corresponding to the response opcode.
+    0x04: Custom payload flag. For a request or response frame, this indicates
+          that a generic key-value custom payload for a custom QueryHandler
+          implementation is present in the frame. Such a custom payload is simply
+          ignored by the default QueryHandler implementation.
+          Currently, only QUERY, PREPARE, EXECUTE and BATCH requests support
+          payload.
+          Type of custom payload is [bytes map] (see below).
+    0x08: Warning flag. The response contains warnings which were generated by the
+          server to go along with this response.
+          If a response frame has the warning flag set, its body will contain the
+          text of the warnings. The warnings are a [string list] and will be the
+          first value in the frame body if the tracing flag is not set, or directly
+          after the tracing ID if it is.
+
+  The rest of flags is currently unused and ignored.
+
+2.3. stream
+
+  A frame has a stream id (a [short] value). When sending request messages, this
+  stream id must be set by the client to a non-negative value (negative stream id
+  are reserved for streams initiated by the server; currently all EVENT messages
+  (section 4.2.6) have a streamId of -1). If a client sends a request message
+  with the stream id X, it is guaranteed that the stream id of the response to
+  that message will be X.
+
+  This helps to enable the asynchronous nature of the protocol. If a client
+  sends multiple messages simultaneously (without waiting for responses), there
+  is no guarantee on the order of the responses. For instance, if the client
+  writes REQ_1, REQ_2, REQ_3 on the wire (in that order), the server might
+  respond to REQ_3 (or REQ_2) first. Assigning different stream ids to these 3
+  requests allows the client to distinguish to which request a received answer
+  responds to. As there can only be 32768 different simultaneous streams, it is up
+  to the client to reuse stream id.
+
+  Note that clients are free to use the protocol synchronously (i.e. wait for
+  the response to REQ_N before sending REQ_N+1). In that case, the stream id
+  can be safely set to 0. Clients should also feel free to use only a subset of
+  the 32768 maximum possible stream ids if it is simpler for its implementation.
+
+2.4. opcode
+
+  An integer byte that distinguishes the actual message:
+    0x00    ERROR
+    0x01    STARTUP
+    0x02    READY
+    0x03    AUTHENTICATE
+    0x05    OPTIONS
+    0x06    SUPPORTED
+    0x07    QUERY
+    0x08    RESULT
+    0x09    PREPARE
+    0x0A    EXECUTE
+    0x0B    REGISTER
+    0x0C    EVENT
+    0x0D    BATCH
+    0x0E    AUTH_CHALLENGE
+    0x0F    AUTH_RESPONSE
+    0x10    AUTH_SUCCESS
+
+  Messages are described in Section 4.
+
+  (Note that there is no 0x04 message in this version of the protocol)
+
+
+2.5. length
+
+  A 4 byte integer representing the length of the body of the frame (note:
+  currently a frame is limited to 256MB in length).
+
+
+3. Notations
+
+  To describe the layout of the frame body for the messages in Section 4, we
+  define the following:
+
+    [int]          A 4 bytes integer
+    [long]         A 8 bytes integer
+    [short]        A 2 bytes unsigned integer
+    [string]       A [short] n, followed by n bytes representing an UTF-8
+                   string.
+    [long string]  An [int] n, followed by n bytes representing an UTF-8 string.
+    [uuid]         A 16 bytes long uuid.
+    [string list]  A [short] n, followed by n [string].
+    [bytes]        A [int] n, followed by n bytes if n >= 0. If n < 0,
+                   no byte should follow and the value represented is `null`.
+    [value]        A [int] n, followed by n bytes if n >= 0.
+                   If n == -1 no byte should follow and the value represented is `null`.
+                   If n == -2 no byte should follow and the value represented is
+                   `not set` not resulting in any change to the existing value.
+                   n < -2 is an invalid value and results in an error.
+    [short bytes]  A [short] n, followed by n bytes if n >= 0.
+
+    [option]       A pair of <id><value> where <id> is a [short] representing
+                   the option id and <value> depends on that option (and can be
+                   of size 0). The supported id (and the corresponding <value>)
+                   will be described when this is used.
+    [option list]  A [short] n, followed by n [option].
+    [inet]         An address (ip and port) to a node. It consists of one
+                   [byte] n, that represents the address size, followed by n
+                   [byte] representing the IP address (in practice n can only be
+                   either 4 (IPv4) or 16 (IPv6)), following by one [int]
+                   representing the port.
+    [consistency]  A consistency level specification. This is a [short]
+                   representing a consistency level with the following
+                   correspondance:
+                     0x0000    ANY
+                     0x0001    ONE
+                     0x0002    TWO
+                     0x0003    THREE
+                     0x0004    QUORUM
+                     0x0005    ALL
+                     0x0006    LOCAL_QUORUM
+                     0x0007    EACH_QUORUM
+                     0x0008    SERIAL
+                     0x0009    LOCAL_SERIAL
+                     0x000A    LOCAL_ONE
+
+    [string map]      A [short] n, followed by n pair <k><v> where <k> and <v>
+                      are [string].
+    [string multimap] A [short] n, followed by n pair <k><v> where <k> is a
+                      [string] and <v> is a [string list].
+    [bytes map]       A [short] n, followed by n pair <k><v> where <k> is a
+                      [string] and <v> is a [bytes].
+
+
+4. Messages
+
+4.1. Requests
+
+  Note that outside of their normal responses (described below), all requests
+  can get an ERROR message (Section 4.2.1) as response.
+
+4.1.1. STARTUP
+
+  Initialize the connection. The server will respond by either a READY message
+  (in which case the connection is ready for queries) or an AUTHENTICATE message
+  (in which case credentials will need to be provided using AUTH_RESPONSE).
+
+  This must be the first message of the connection, except for OPTIONS that can
+  be sent before to find out the options supported by the server. Once the
+  connection has been initialized, a client should not send any more STARTUP
+  messages.
+
+  The body is a [string map] of options. Possible options are:
+    - "CQL_VERSION": the version of CQL to use. This option is mandatory and
+      currently the only version supported is "3.0.0". Note that this is
+      different from the protocol version.
+    - "COMPRESSION": the compression algorithm to use for frames (See section 5).
+      This is optional; if not specified no compression will be used.
+    - "NO_COMPACT": whether or not connection has to be established in compatibility
+      mode. This mode will make all Thrift and Compact Tables to be exposed as if
+      they were CQL Tables. This is optional; if not specified, the option will
+      not be used.
+    - "THROW_ON_OVERLOAD": In case of server overloaded with too many requests, by default the server puts
+            back pressure on the client connection. Instead, the server can send an OverloadedException error message back to
+            the client if this option is set to true.
+
+
+4.1.2. AUTH_RESPONSE
+
+  Answers a server authentication challenge.
+
+  Authentication in the protocol is SASL based. The server sends authentication
+  challenges (a bytes token) to which the client answers with this message. Those
+  exchanges continue until the server accepts the authentication by sending a
+  AUTH_SUCCESS message after a client AUTH_RESPONSE. Note that the exchange
+  begins with the client sending an initial AUTH_RESPONSE in response to a
+  server AUTHENTICATE request.
+
+  The body of this message is a single [bytes] token. The details of what this
+  token contains (and when it can be null/empty, if ever) depends on the actual
+  authenticator used.
+
+  The response to a AUTH_RESPONSE is either a follow-up AUTH_CHALLENGE message,
+  an AUTH_SUCCESS message or an ERROR message.
+
+
+4.1.3. OPTIONS
+
+  Asks the server to return which STARTUP options are supported. The body of an
+  OPTIONS message should be empty and the server will respond with a SUPPORTED
+  message.
+
+
+4.1.4. QUERY
+
+  Performs a CQL query. The body of the message must be:
+    <query><query_parameters>
+  where <query> is a [long string] representing the query and
+  <query_parameters> must be
+    <consistency><flags>[<n>[name_1]<value_1>...[name_n]<value_n>][<result_page_size>][<paging_state>][<serial_consistency>][<timestamp>]
+  where:
+    - <consistency> is the [consistency] level for the operation.
+    - <flags> is a [byte] whose bits define the options for this query and
+      in particular influence what the remainder of the message contains.
+      A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given their mask:
+        0x01: Values. If set, a [short] <n> followed by <n> [value]
+              values are provided. Those values are used for bound variables in
+              the query. Optionally, if the 0x40 flag is present, each value
+              will be preceded by a [string] name, representing the name of
+              the marker the value must be bound to.
+        0x02: Skip_metadata. If set, the Result Set returned as a response
+              to the query (if any) will have the NO_METADATA flag (see
+              Section 4.2.5.2).
+        0x04: Page_size. If set, <result_page_size> is an [int]
+              controlling the desired page size of the result (in CQL3 rows).
+              See the section on paging (Section 8) for more details.
+        0x08: With_paging_state. If set, <paging_state> should be present.
+              <paging_state> is a [bytes] value that should have been returned
+              in a result set (Section 4.2.5.2). The query will be
+              executed but starting from a given paging state. This is also to
+              continue paging on a different node than the one where it
+              started (See Section 8 for more details).
+        0x10: With serial consistency. If set, <serial_consistency> should be
+              present. <serial_consistency> is the [consistency] level for the
+              serial phase of conditional updates. That consitency can only be
+              either SERIAL or LOCAL_SERIAL and if not present, it defaults to
+              SERIAL. This option will be ignored for anything else other than a
+              conditional update/insert.
+        0x20: With default timestamp. If set, <timestamp> should be present.
+              <timestamp> is a [long] representing the default timestamp for the query
+              in microseconds (negative values are forbidden). This will
+              replace the server side assigned timestamp as default timestamp.
+              Note that a timestamp in the query itself will still override
+              this timestamp. This is entirely optional.
+        0x40: With names for values. This only makes sense if the 0x01 flag is set and
+              is ignored otherwise. If present, the values from the 0x01 flag will
+              be preceded by a name (see above). Note that this is only useful for
+              QUERY requests where named bind markers are used; for EXECUTE statements,
+              since the names for the expected values was returned during preparation,
+              a client can always provide values in the right order without any names
+              and using this flag, while supported, is almost surely inefficient.
+
+  Note that the consistency is ignored by some queries (USE, CREATE, ALTER,
+  TRUNCATE, ...).
+
+  The server will respond to a QUERY message with a RESULT message, the content
+  of which depends on the query.
+
+
+4.1.5. PREPARE
+
+  Prepare a query for later execution (through EXECUTE). The body consists of
+  the CQL query to prepare as a [long string].
+
+  The server will respond with a RESULT message with a `prepared` kind (0x0004,
+  see Section 4.2.5).
+
+
+4.1.6. EXECUTE
+
+  Executes a prepared query. The body of the message must be:
+    <id><query_parameters>
+  where <id> is the prepared query ID. It's the [short bytes] returned as a
+  response to a PREPARE message. As for <query_parameters>, it has the exact
+  same definition as in QUERY (see Section 4.1.4).
+
+  The response from the server will be a RESULT message.
+
+
+4.1.7. BATCH
+
+  Allows executing a list of queries (prepared or not) as a batch (note that
+  only DML statements are accepted in a batch). The body of the message must
+  be:
+    <type><n><query_1>...<query_n><consistency><flags>[<serial_consistency>][<timestamp>]
+  where:
+    - <type> is a [byte] indicating the type of batch to use:
+        - If <type> == 0, the batch will be "logged". This is equivalent to a
+          normal CQL3 batch statement.
+        - If <type> == 1, the batch will be "unlogged".
+        - If <type> == 2, the batch will be a "counter" batch (and non-counter
+          statements will be rejected).
+    - <flags> is a [byte] whose bits define the options for this query and
+      in particular influence what the remainder of the message contains. It is similar
+      to the <flags> from QUERY and EXECUTE methods, except that the 4 rightmost
+      bits must always be 0 as their corresponding options do not make sense for
+      Batch. A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given their mask:
+        0x10: With serial consistency. If set, <serial_consistency> should be
+              present. <serial_consistency> is the [consistency] level for the
+              serial phase of conditional updates. That consistency can only be
+              either SERIAL or LOCAL_SERIAL and if not present, it defaults to
+              SERIAL. This option will be ignored for anything else other than a
+              conditional update/insert.
+        0x20: With default timestamp. If set, <timestamp> should be present.
+              <timestamp> is a [long] representing the default timestamp for the query
+              in microseconds. This will replace the server side assigned
+              timestamp as default timestamp. Note that a timestamp in the query itself
+              will still override this timestamp. This is entirely optional.
+        0x40: With names for values. If set, then all values for all <query_i> must be
+              preceded by a [string] <name_i> that have the same meaning as in QUERY
+              requests [IMPORTANT NOTE: this feature does not work and should not be
+              used. It is specified in a way that makes it impossible for the server
+              to implement. This will be fixed in a future version of the native
+              protocol. See https://issues.apache.org/jira/browse/CASSANDRA-10246 for
+              more details].
+    - <n> is a [short] indicating the number of following queries.
+    - <query_1>...<query_n> are the queries to execute. A <query_i> must be of the
+      form:
+        <kind><string_or_id><n>[<name_1>]<value_1>...[<name_n>]<value_n>
+      where:
+       - <kind> is a [byte] indicating whether the following query is a prepared
+         one or not. <kind> value must be either 0 or 1.
+       - <string_or_id> depends on the value of <kind>. If <kind> == 0, it should be
+         a [long string] query string (as in QUERY, the query string might contain
+         bind markers). Otherwise (that is, if <kind> == 1), it should be a
+         [short bytes] representing a prepared query ID.
+       - <n> is a [short] indicating the number (possibly 0) of following values.
+       - <name_i> is the optional name of the following <value_i>. It must be present
+         if and only if the 0x40 flag is provided for the batch.
+       - <value_i> is the [value] to use for bound variable i (of bound variable <name_i>
+         if the 0x40 flag is used).
+    - <consistency> is the [consistency] level for the operation.
+    - <serial_consistency> is only present if the 0x10 flag is set. In that case,
+      <serial_consistency> is the [consistency] level for the serial phase of
+      conditional updates. That consitency can only be either SERIAL or
+      LOCAL_SERIAL and if not present will defaults to SERIAL. This option will
+      be ignored for anything else other than a conditional update/insert.
+
+  The server will respond with a RESULT message.
+
+
+4.1.8. REGISTER
+
+  Register this connection to receive some types of events. The body of the
+  message is a [string list] representing the event types to register for. See
+  section 4.2.6 for the list of valid event types.
+
+  The response to a REGISTER message will be a READY message.
+
+  Please note that if a client driver maintains multiple connections to a
+  Cassandra node and/or connections to multiple nodes, it is advised to
+  dedicate a handful of connections to receive events, but to *not* register
+  for events on all connections, as this would only result in receiving
+  multiple times the same event messages, wasting bandwidth.
+
+
+4.2. Responses
+
+  This section describes the content of the frame body for the different
+  responses. Please note that to make room for future evolution, clients should
+  support extra informations (that they should simply discard) to the one
+  described in this document at the end of the frame body.
+
+4.2.1. ERROR
+
+  Indicates an error processing a request. The body of the message will be an
+  error code ([int]) followed by a [string] error message. Then, depending on
+  the exception, more content may follow. The error codes are defined in
+  Section 9, along with their additional content if any.
+
+
+4.2.2. READY
+
+  Indicates that the server is ready to process queries. This message will be
+  sent by the server either after a STARTUP message if no authentication is
+  required (if authentication is required, the server indicates readiness by
+  sending a AUTH_RESPONSE message).
+
+  The body of a READY message is empty.
+
+
+4.2.3. AUTHENTICATE
+
+  Indicates that the server requires authentication, and which authentication
+  mechanism to use.
+
+  The authentication is SASL based and thus consists of a number of server
+  challenges (AUTH_CHALLENGE, Section 4.2.7) followed by client responses
+  (AUTH_RESPONSE, Section 4.1.2). The initial exchange is however boostrapped
+  by an initial client response. The details of that exchange (including how
+  many challenge-response pairs are required) are specific to the authenticator
+  in use. The exchange ends when the server sends an AUTH_SUCCESS message or
+  an ERROR message.
+
+  This message will be sent following a STARTUP message if authentication is
+  required and must be answered by a AUTH_RESPONSE message from the client.
+
+  The body consists of a single [string] indicating the full class name of the
+  IAuthenticator in use.
+
+
+4.2.4. SUPPORTED
+
+  Indicates which startup options are supported by the server. This message
+  comes as a response to an OPTIONS message.
+
+  The body of a SUPPORTED message is a [string multimap]. This multimap gives
+  for each of the supported STARTUP options, the list of supported values.
+
+
+4.2.5. RESULT
+
+  The result to a query (QUERY, PREPARE, EXECUTE or BATCH messages).
+
+  The first element of the body of a RESULT message is an [int] representing the
+  `kind` of result. The rest of the body depends on the kind. The kind can be
+  one of:
+    0x0001    Void: for results carrying no information.
+    0x0002    Rows: for results to select queries, returning a set of rows.
+    0x0003    Set_keyspace: the result to a `use` query.
+    0x0004    Prepared: result to a PREPARE message.
+    0x0005    Schema_change: the result to a schema altering query.
+
+  The body for each kind (after the [int] kind) is defined below.
+
+
+4.2.5.1. Void
+
+  The rest of the body for a Void result is empty. It indicates that a query was
+  successful without providing more information.
+
+
+4.2.5.2. Rows
+
+  Indicates a set of rows. The rest of the body of a Rows result is:
+    <metadata><rows_count><rows_content>
+  where:
+    - <metadata> is composed of:
+        <flags><columns_count>[<paging_state>][<global_table_spec>?<col_spec_1>...<col_spec_n>]
+      where:
+        - <flags> is an [int]. The bits of <flags> provides information on the
+          formatting of the remaining information. A flag is set if the bit
+          corresponding to its `mask` is set. Supported flags are, given their
+          mask:
+            0x0001    Global_tables_spec: if set, only one table spec (keyspace
+                      and table name) is provided as <global_table_spec>. If not
+                      set, <global_table_spec> is not present.
+            0x0002    Has_more_pages: indicates whether this is not the last
+                      page of results and more should be retrieved. If set, the
+                      <paging_state> will be present. The <paging_state> is a
+                      [bytes] value that should be used in QUERY/EXECUTE to
+                      continue paging and retrieve the remainder of the result for
+                      this query (See Section 8 for more details).
+            0x0004    No_metadata: if set, the <metadata> is only composed of
+                      these <flags>, the <column_count> and optionally the
+                      <paging_state> (depending on the Has_more_pages flag) but
+                      no other information (so no <global_table_spec> nor <col_spec_i>).
+                      This will only ever be the case if this was requested
+                      during the query (see QUERY and RESULT messages).
+        - <columns_count> is an [int] representing the number of columns selected
+          by the query that produced this result. It defines the number of <col_spec_i>
+          elements in and the number of elements for each row in <rows_content>.
+        - <global_table_spec> is present if the Global_tables_spec is set in
+          <flags>. It is composed of two [string] representing the
+          (unique) keyspace name and table name the columns belong to.
+        - <col_spec_i> specifies the columns returned in the query. There are
+          <column_count> such column specifications that are composed of:
+            (<ksname><tablename>)?<name><type>
+          The initial <ksname> and <tablename> are two [string] and are only present
+          if the Global_tables_spec flag is not set. The <column_name> is a
+          [string] and <type> is an [option] that corresponds to the description
+          (what this description is depends a bit on the context: in results to
+          selects, this will be either the user chosen alias or the selection used
+          (often a colum name, but it can be a function call too). In results to
+          a PREPARE, this will be either the name of the corresponding bind variable
+          or the column name for the variable if it is "anonymous") and type of
+          the corresponding result. The option for <type> is either a native
+          type (see below), in which case the option has no value, or a
+          'custom' type, in which case the value is a [string] representing
+          the fully qualified class name of the type represented. Valid option
+          ids are:
+            0x0000    Custom: the value is a [string], see above.
+            0x0001    Ascii
+            0x0002    Bigint
+            0x0003    Blob
+            0x0004    Boolean
+            0x0005    Counter
+            0x0006    Decimal
+            0x0007    Double
+            0x0008    Float
+            0x0009    Int
+            0x000B    Timestamp
+            0x000C    Uuid
+            0x000D    Varchar
+            0x000E    Varint
+            0x000F    Timeuuid
+            0x0010    Inet
+            0x0011    Date
+            0x0012    Time
+            0x0013    Smallint
+            0x0014    Tinyint
+            0x0020    List: the value is an [option], representing the type
+                            of the elements of the list.
+            0x0021    Map: the value is two [option], representing the types of the
+                           keys and values of the map
+            0x0022    Set: the value is an [option], representing the type
+                            of the elements of the set
+            0x0030    UDT: the value is <ks><udt_name><n><name_1><type_1>...<name_n><type_n>
+                           where:
+                              - <ks> is a [string] representing the keyspace name this
+                                UDT is part of.
+                              - <udt_name> is a [string] representing the UDT name.
+                              - <n> is a [short] representing the number of fields of
+                                the UDT, and thus the number of <name_i><type_i> pairs
+                                following
+                              - <name_i> is a [string] representing the name of the
+                                i_th field of the UDT.
+                              - <type_i> is an [option] representing the type of the
+                                i_th field of the UDT.
+            0x0031    Tuple: the value is <n><type_1>...<type_n> where <n> is a [short]
+                             representing the number of values in the type, and <type_i>
+                             are [option] representing the type of the i_th component
+                             of the tuple
+
+    - <rows_count> is an [int] representing the number of rows present in this
+      result. Those rows are serialized in the <rows_content> part.
+    - <rows_content> is composed of <row_1>...<row_m> where m is <rows_count>.
+      Each <row_i> is composed of <value_1>...<value_n> where n is
+      <columns_count> and where <value_j> is a [bytes] representing the value
+      returned for the jth column of the ith row. In other words, <rows_content>
+      is composed of (<rows_count> * <columns_count>) [bytes].
+
+
+4.2.5.3. Set_keyspace
+
+  The result to a `use` query. The body (after the kind [int]) is a single
+  [string] indicating the name of the keyspace that has been set.
+
+
+4.2.5.4. Prepared
+
+  The result to a PREPARE message. The body of a Prepared result is:
+    <id><metadata><result_metadata>
+  where:
+    - <id> is [short bytes] representing the prepared query ID.
+    - <metadata> is composed of:
+        <flags><columns_count><pk_count>[<pk_index_1>...<pk_index_n>][<global_table_spec>?<col_spec_1>...<col_spec_n>]
+      where:
+        - <flags> is an [int]. The bits of <flags> provides information on the
+          formatting of the remaining information. A flag is set if the bit
+          corresponding to its `mask` is set. Supported masks and their flags
+          are:
+            0x0001    Global_tables_spec: if set, only one table spec (keyspace
+                      and table name) is provided as <global_table_spec>. If not
+                      set, <global_table_spec> is not present.
+        - <columns_count> is an [int] representing the number of bind markers
+          in the prepared statement.  It defines the number of <col_spec_i>
+          elements.
+        - <pk_count> is an [int] representing the number of <pk_index_i>
+          elements to follow. If this value is zero, at least one of the
+          partition key columns in the table that the statement acts on
+          did not have a corresponding bind marker (or the bind marker
+          was wrapped in a function call).
+        - <pk_index_i> is a short that represents the index of the bind marker
+          that corresponds to the partition key column in position i.
+          For example, a <pk_index> sequence of [2, 0, 1] indicates that the
+          table has three partition key columns; the full partition key
+          can be constructed by creating a composite of the values for
+          the bind markers at index 2, at index 0, and at index 1.
+          This allows implementations with token-aware routing to correctly
+          construct the partition key without needing to inspect table
+          metadata.
+        - <global_table_spec> is present if the Global_tables_spec is set in
+          <flags>. If present, it is composed of two [string]s. The first
+          [string] is the name of the keyspace that the statement acts on.
+          The second [string] is the name of the table that the columns
+          represented by the bind markers belong to.
+        - <col_spec_i> specifies the bind markers in the prepared statement.
+          There are <column_count> such column specifications, each with the
+          following format:
+            (<ksname><tablename>)?<name><type>
+          The initial <ksname> and <tablename> are two [string] that are only
+          present if the Global_tables_spec flag is not set. The <name> field
+          is a [string] that holds the name of the bind marker (if named),
+          or the name of the column, field, or expression that the bind marker
+          corresponds to (if the bind marker is "anonymous").  The <type>
+          field is an [option] that represents the expected type of values for
+          the bind marker.  See the Rows documentation (section 4.2.5.2) for
+          full details on the <type> field.
+
+    - <result_metadata> is defined exactly the same as <metadata> in the Rows
+      documentation (section 4.2.5.2).  This describes the metadata for the
+      result set that will be returned when this prepared statement is executed.
+      Note that <result_metadata> may be empty (have the No_metadata flag and
+      0 columns, See section 4.2.5.2) and will be for any query that is not a
+      Select. In fact, there is never a guarantee that this will be non-empty, so
+      implementations should protect themselves accordingly. This result metadata
+      is an optimization that allows implementations to later execute the
+      prepared statement without requesting the metadata (see the Skip_metadata
+      flag in EXECUTE).  Clients can safely discard this metadata if they do not
+      want to take advantage of that optimization.
+
+  Note that the prepared query ID returned is global to the node on which the query
+  has been prepared. It can be used on any connection to that node
+  until the node is restarted (after which the query must be reprepared).
+
+4.2.5.5. Schema_change
+
+  The result to a schema altering query (creation/update/drop of a
+  keyspace/table/index). The body (after the kind [int]) is the same
+  as the body for a "SCHEMA_CHANGE" event, so 3 strings:
+    <change_type><target><options>
+  Please refer to section 4.2.6 below for the meaning of those fields.
+
+  Note that a query to create or drop an index is considered to be a change
+  to the table the index is on.
+
+
+4.2.6. EVENT
+
+  An event pushed by the server. A client will only receive events for the
+  types it has REGISTERed to. The body of an EVENT message will start with a
+  [string] representing the event type. The rest of the message depends on the
+  event type. The valid event types are:
+    - "TOPOLOGY_CHANGE": events related to change in the cluster topology.
+      Currently, events are sent when new nodes are added to the cluster, and
+      when nodes are removed. The body of the message (after the event type)
+      consists of a [string] and an [inet], corresponding respectively to the
+      type of change ("NEW_NODE" or "REMOVED_NODE") followed by the address of
+      the new/removed node.
+    - "STATUS_CHANGE": events related to change of node status. Currently,
+      up/down events are sent. The body of the message (after the event type)
+      consists of a [string] and an [inet], corresponding respectively to the
+      type of status change ("UP" or "DOWN") followed by the address of the
+      concerned node.
+    - "SCHEMA_CHANGE": events related to schema change. After the event type,
+      the rest of the message will be <change_type><target><options> where:
+        - <change_type> is a [string] representing the type of changed involved.
+          It will be one of "CREATED", "UPDATED" or "DROPPED".
+        - <target> is a [string] that can be one of "KEYSPACE", "TABLE", "TYPE",
+          "FUNCTION" or "AGGREGATE" and describes what has been modified
+          ("TYPE" stands for modifications related to user types, "FUNCTION"
+          for modifications related to user defined functions, "AGGREGATE"
+          for modifications related to user defined aggregates).
+        - <options> depends on the preceding <target>:
+          - If <target> is "KEYSPACE", then <options> will be a single [string]
+            representing the keyspace changed.
+          - If <target> is "TABLE" or "TYPE", then
+            <options> will be 2 [string]: the first one will be the keyspace
+            containing the affected object, and the second one will be the name
+            of said affected object (either the table, user type, function, or
+            aggregate name).
+          - If <target> is "FUNCTION" or "AGGREGATE", multiple arguments follow:
+            - [string] keyspace containing the user defined function / aggregate
+            - [string] the function/aggregate name
+            - [string list] one string for each argument type (as CQL type)
+
+  All EVENT messages have a streamId of -1 (Section 2.3).
+
+  Please note that "NEW_NODE" and "UP" events are sent based on internal Gossip
+  communication and as such may be sent a short delay before the binary
+  protocol server on the newly up node is fully started. Clients are thus
+  advised to wait a short time before trying to connect to the node (1 second
+  should be enough), otherwise they may experience a connection refusal at
+  first.
+
+4.2.7. AUTH_CHALLENGE
+
+  A server authentication challenge (see AUTH_RESPONSE (Section 4.1.2) for more
+  details).
+
+  The body of this message is a single [bytes] token. The details of what this
+  token contains (and when it can be null/empty, if ever) depends on the actual
+  authenticator used.
+
+  Clients are expected to answer the server challenge with an AUTH_RESPONSE
+  message.
+
+4.2.8. AUTH_SUCCESS
+
+  Indicates the success of the authentication phase. See Section 4.2.3 for more
+  details.
+
+  The body of this message is a single [bytes] token holding final information
+  from the server that the client may require to finish the authentication
+  process. What that token contains and whether it can be null depends on the
+  actual authenticator used.
+
+
+5. Compression
+
+  Frame compression is supported by the protocol, but then only the frame body
+  is compressed (the frame header should never be compressed).
+
+  Before being used, client and server must agree on a compression algorithm to
+  use, which is done in the STARTUP message. As a consequence, a STARTUP message
+  must never be compressed.  However, once the STARTUP frame has been received
+  by the server, messages can be compressed (including the response to the STARTUP
+  request). Frames do not have to be compressed, however, even if compression has
+  been agreed upon (a server may only compress frames above a certain size at its
+  discretion). A frame body should be compressed if and only if the compressed
+  flag (see Section 2.2) is set.
+
+  As of version 2 of the protocol, the following compressions are available:
+    - lz4 (https://code.google.com/p/lz4/). In that, note that the first four bytes
+      of the body will be the uncompressed length (followed by the compressed
+      bytes).
+    - snappy (https://code.google.com/p/snappy/). This compression might not be
+      available as it depends on a native lib (server-side) that might not be
+      avaivable on some installations.
+
+
+6. Data Type Serialization Formats
+
+  This sections describes the serialization formats for all CQL data types
+  supported by Cassandra through the native protocol.  These serialization
+  formats should be used by client drivers to encode values for EXECUTE
+  messages.  Cassandra will use these formats when returning values in
+  RESULT messages.
+
+  All values are represented as [bytes] in EXECUTE and RESULT messages.
+  The [bytes] format includes an int prefix denoting the length of the value.
+  For that reason, the serialization formats described here will not include
+  a length component.
+
+  For legacy compatibility reasons, note that most non-string types support
+  "empty" values (i.e. a value with zero length).  An empty value is distinct
+  from NULL, which is encoded with a negative length.
+
+  As with the rest of the native protocol, all encodings are big-endian.
+
+6.1. ascii
+
+  A sequence of bytes in the ASCII range [0, 127].  Bytes with values outside of
+  this range will result in a validation error.
+
+6.2 bigint
+
+  An eight-byte two's complement integer.
+
+6.3 blob
+
+  Any sequence of bytes.
+
+6.4 boolean
+
+  A single byte.  A value of 0 denotes "false"; any other value denotes "true".
+  (However, it is recommended that a value of 1 be used to represent "true".)
+
+6.5 date
+
+  An unsigned integer representing days with epoch centered at 2^31.
+  (unix epoch January 1st, 1970).
+  A few examples:
+    0:    -5877641-06-23
+    2^31: 1970-1-1
+    2^32: 5881580-07-11
+
+6.6 decimal
+
+  The decimal format represents an arbitrary-precision number.  It contains an
+  [int] "scale" component followed by a varint encoding (see section 6.17)
+  of the unscaled value.  The encoded value represents "<unscaled>E<-scale>".
+  In other words, "<unscaled> * 10 ^ (-1 * <scale>)".
+
+6.7 double
+
+  An 8 byte floating point number in the IEEE 754 binary64 format.
+
+6.8 float
+
+  A 4 byte floating point number in the IEEE 754 binary32 format.
+
+6.9 inet
+
+  A 4 byte or 16 byte sequence denoting an IPv4 or IPv6 address, respectively.
+
+6.10 int
+
+  A 4 byte two's complement integer.
+
+6.11 list
+
+  A [int] n indicating the number of elements in the list, followed by n
+  elements.  Each element is [bytes] representing the serialized value.
+
+6.12 map
+
+  A [int] n indicating the number of key/value pairs in the map, followed by
+  n entries.  Each entry is composed of two [bytes] representing the key
+  and value.
+
+6.13 set
+
+  A [int] n indicating the number of elements in the set, followed by n
+  elements.  Each element is [bytes] representing the serialized value.
+
+6.14 smallint
+
+  A 2 byte two's complement integer.
+
+6.15 text
+
+  A sequence of bytes conforming to the UTF-8 specifications.
+
+6.16 time
+
+  An 8 byte two's complement long representing nanoseconds since midnight.
+  Valid values are in the range 0 to 86399999999999
+
+6.17 timestamp
+
+  An 8 byte two's complement integer representing a millisecond-precision
+  offset from the unix epoch (00:00:00, January 1st, 1970).  Negative values
+  represent a negative offset from the epoch.
+
+6.18 timeuuid
+
+  A 16 byte sequence representing a version 1 UUID as defined by RFC 4122.
+
+6.19 tinyint
+
+  A 1 byte two's complement integer.
+
+6.20 tuple
+
+  A sequence of [bytes] values representing the items in a tuple.  The encoding
+  of each element depends on the data type for that position in the tuple.
+  Null values may be represented by using length -1 for the [bytes]
+  representation of an element.
+
+6.21 uuid
+
+  A 16 byte sequence representing any valid UUID as defined by RFC 4122.
+
+6.22 varchar
+
+  An alias of the "text" type.
+
+6.23 varint
+
+  A variable-length two's complement encoding of a signed integer.
+
+  The following examples may help implementors of this spec:
+
+  Value | Encoding
+  ------|---------
+      0 |     0x00
+      1 |     0x01
+    127 |     0x7F
+    128 |   0x0080
+    129 |   0x0081
+     -1 |     0xFF
+   -128 |     0x80
+   -129 |   0xFF7F
+
+  Note that positive numbers must use a most-significant byte with a value
+  less than 0x80, because a most-significant bit of 1 indicates a negative
+  value.  Implementors should pad positive values that have a MSB >= 0x80
+  with a leading 0x00 byte.
+
+
+7. User Defined Types
+
+  This section describes the serialization format for User defined types (UDT),
+  as described in section 4.2.5.2.
+
+  A UDT value is composed of successive [bytes] values, one for each field of the UDT
+  value (in the order defined by the type). A UDT value will generally have one value
+  for each field of the type it represents, but it is allowed to have less values than
+  the type has fields.
+
+
+8. Result paging
+
+  The protocol allows for paging the result of queries. For that, the QUERY and
+  EXECUTE messages have a <result_page_size> value that indicate the desired
+  page size in CQL3 rows.
+
+  If a positive value is provided for <result_page_size>, the result set of the
+  RESULT message returned for the query will contain at most the
+  <result_page_size> first rows of the query result. If that first page of results
+  contains the full result set for the query, the RESULT message (of kind `Rows`)
+  will have the Has_more_pages flag *not* set. However, if some results are not
+  part of the first response, the Has_more_pages flag will be set and the result
+  will contain a <paging_state> value. In that case, the <paging_state> value
+  should be used in a QUERY or EXECUTE message (that has the *same* query as
+  the original one or the behavior is undefined) to retrieve the next page of
+  results.
+
+  Only CQL3 queries that return a result set (RESULT message with a Rows `kind`)
+  support paging. For other type of queries, the <result_page_size> value is
+  ignored.
+
+  Note to client implementors:
+  - While <result_page_size> can be as low as 1, it will likely be detrimental
+    to performance to pick a value too low. A value below 100 is probably too
+    low for most use cases.
+  - Clients should not rely on the actual size of the result set returned to
+    decide if there are more results to fetch or not. Instead, they should always
+    check the Has_more_pages flag (unless they did not enable paging for the query
+    obviously). Clients should also not assert that no result will have more than
+    <result_page_size> results. While the current implementation always respects
+    the exact value of <result_page_size>, we reserve the right to return
+    slightly smaller or bigger pages in the future for performance reasons.
+  - The <paging_state> is specific to a protocol version and drivers should not
+    send a <paging_state> returned by a node using the protocol v3 to query a node
+    using the protocol v4 for instance.
+
+
+9. Error codes
+
+  Let us recall that an ERROR message is composed of <code><message>[...]
+  (see 4.2.1 for details). The supported error codes, as well as any additional
+  information the message may contain after the <message> are described below:
+    0x0000    Server error: something unexpected happened. This indicates a
+              server-side bug.
+    0x000A    Protocol error: some client message triggered a protocol
+              violation (for instance a QUERY message is sent before a STARTUP
+              one has been sent)
+    0x0100    Authentication error: authentication was required and failed. The
+              possible reason for failing depends on the authenticator in use,
+              which may or may not include more detail in the accompanying
+              error message.
+    0x1000    Unavailable exception. The rest of the ERROR message body will be
+                <cl><required><alive>
+              where:
+                <cl> is the [consistency] level of the query that triggered
+                     the exception.
+                <required> is an [int] representing the number of nodes that
+                           should be alive to respect <cl>
+                <alive> is an [int] representing the number of replicas that
+                        were known to be alive when the request had been
+                        processed (since an unavailable exception has been
+                        triggered, there will be <alive> < <required>)
+    0x1001    Overloaded: the request cannot be processed because the
+              coordinator node is overloaded
+    0x1002    Is_bootstrapping: the request was a read request but the
+              coordinator node is bootstrapping
+    0x1003    Truncate_error: error during a truncation error.
+    0x1100    Write_timeout: Timeout exception during a write request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><writeType>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           acknowledged the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+                <writeType> is a [string] that describe the type of the write
+                            that timed out. The value of that string can be one
+                            of:
+                             - "SIMPLE": the write was a non-batched
+                               non-counter write.
+                             - "BATCH": the write was a (logged) batch write.
+                               If this type is received, it means the batch log
+                               has been successfully written (otherwise a
+                               "BATCH_LOG" type would have been sent instead).
+                             - "UNLOGGED_BATCH": the write was an unlogged
+                               batch. No batch log write has been attempted.
+                             - "COUNTER": the write was a counter write
+                               (batched or not).
+                             - "BATCH_LOG": the timeout occurred during the
+                               write to the batch log when a (logged) batch
+                               write was requested.
+                             - "CAS": the timeout occured during the Compare And Set write/update.
+                             - "VIEW": the timeout occured when a write involves
+                                VIEW update and failure to acqiure local view(MV)
+                                lock for key within timeout
+                             - "CDC": the timeout occured when cdc_total_space_in_mb is
+                                exceeded when doing a write to data tracked by cdc.
+    0x1200    Read_timeout: Timeout exception during a read request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><data_present>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           response is required to achieve <cl>. Please note that
+                           it is possible to have <received> >= <blockfor> if
+                           <data_present> is false. Also in the (unlikely)
+                           case where <cl> is achieved but the coordinator node
+                           times out while waiting for read-repair acknowledgement.
+                <data_present> is a single byte. If its value is 0, it means
+                               the replica that was asked for data has not
+                               responded. Otherwise, the value is != 0.
+    0x1300    Read_failure: A non-timeout exception during a read request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><numfailures><data_present>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+                <numfailures> is an [int] representing the number of nodes that
+                              experience a failure while executing the request.
+                <data_present> is a single byte. If its value is 0, it means
+                               the replica that was asked for data had not
+                               responded. Otherwise, the value is != 0.
+    0x1400    Function_failure: A (user defined) function failed during execution.
+              The rest of the ERROR message body will be
+                <keyspace><function><arg_types>
+              where:
+                <keyspace> is the keyspace [string] of the failed function
+                <function> is the name [string] of the failed function
+                <arg_types> [string list] one string for each argument type (as CQL type) of the failed function
+    0x1500    Write_failure: A non-timeout exception during a write request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><numfailures><write_type>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+                <numfailures> is an [int] representing the number of nodes that
+                              experience a failure while executing the request.
+                <writeType> is a [string] that describes the type of the write
+                            that failed. The value of that string can be one
+                            of:
+                             - "SIMPLE": the write was a non-batched
+                               non-counter write.
+                             - "BATCH": the write was a (logged) batch write.
+                               If this type is received, it means the batch log
+                               has been successfully written (otherwise a
+                               "BATCH_LOG" type would have been sent instead).
+                             - "UNLOGGED_BATCH": the write was an unlogged
+                               batch. No batch log write has been attempted.
+                             - "COUNTER": the write was a counter write
+                               (batched or not).
+                             - "BATCH_LOG": the failure occured during the
+                               write to the batch log when a (logged) batch
+                               write was requested.
+                             - "CAS": the failure occured during the Compare And Set write/update.
+                             - "VIEW": the failure occured when a write involves
+                                VIEW update and failure to acqiure local view(MV)
+                                lock for key within timeout
+                             - "CDC": the failure occured when cdc_total_space_in_mb is
+                                exceeded when doing a write to data tracked by cdc.
+
+    0x2000    Syntax_error: The submitted query has a syntax error.
+    0x2100    Unauthorized: The logged user doesn't have the right to perform
+              the query.
+    0x2200    Invalid: The query is syntactically correct but invalid.
+    0x2300    Config_error: The query is invalid because of some configuration issue
+    0x2400    Already_exists: The query attempted to create a keyspace or a
+              table that was already existing. The rest of the ERROR message
+              body will be <ks><table> where:
+                <ks> is a [string] representing either the keyspace that
+                     already exists, or the keyspace in which the table that
+                     already exists is.
+                <table> is a [string] representing the name of the table that
+                        already exists. If the query was attempting to create a
+                        keyspace, <table> will be present but will be the empty
+                        string.
+    0x2500    Unprepared: Can be thrown while a prepared statement tries to be
+              executed if the provided prepared statement ID is not known by
+              this host. The rest of the ERROR message body will be [short
+              bytes] representing the unknown ID.
+
+10. Changes from v3
+
+  * Prepared responses (Section 4.2.5.4) now include partition-key bind indexes
+  * The format of "SCHEMA_CHANGE" events (Section 4.2.6) (and implicitly
+    "Schema_change" results (Section 4.2.5.5)) has been modified, and now includes
+    changes related to user defined functions and user defined aggregates.
+  * Read_failure error code was added.
+  * Function_failure error code was added.
+  * Add custom payload to frames for custom QueryHandler implementations (ignored by
+    Cassandra's standard QueryHandler)
+  * Add warnings to frames for responses for which the server generated a warning
+    during processing, which the client needs to address.
+  * Add the date and time data types
+  * Add the tinyint and smallint data types
+  * The <paging_state> returned in the v4 protocol is not compatible with the v3
+    protocol. In other words, a <paging_state> returned by a node using protocol v4
+    should not be used to query a node using protocol v3 (and vice-versa).
+  * Added THROW_ON_OVERLOAD startup option (Section 4.1.1).
diff --git a/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v5.spec b/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v5.spec
new file mode 100644
index 0000000..d279453
--- /dev/null
+++ b/site-content/source/modules/ROOT/examples/TEXT/native_protocol_v5.spec
@@ -0,0 +1,1281 @@
+
+                             CQL BINARY PROTOCOL v5
+
+
+Table of Contents
+
+  1. Overview
+  2. Frame header
+    2.1. version
+    2.2. flags
+    2.3. stream
+    2.4. opcode
+    2.5. length
+  3. Notations
+  4. Messages
+    4.1. Requests
+      4.1.1. STARTUP
+      4.1.2. AUTH_RESPONSE
+      4.1.3. OPTIONS
+      4.1.4. QUERY
+      4.1.5. PREPARE
+      4.1.6. EXECUTE
+      4.1.7. BATCH
+      4.1.8. REGISTER
+    4.2. Responses
+      4.2.1. ERROR
+      4.2.2. READY
+      4.2.3. AUTHENTICATE
+      4.2.4. SUPPORTED
+      4.2.5. RESULT
+        4.2.5.1. Void
+        4.2.5.2. Rows
+        4.2.5.3. Set_keyspace
+        4.2.5.4. Prepared
+        4.2.5.5. Schema_change
+      4.2.6. EVENT
+      4.2.7. AUTH_CHALLENGE
+      4.2.8. AUTH_SUCCESS
+  5. Compression
+  6. Data Type Serialization Formats
+  7. User Defined Type Serialization
+  8. Result paging
+  9. Error codes
+  10. Changes from v4
+
+
+1. Overview
+
+  The CQL binary protocol is a frame based protocol. Frames are defined as:
+
+      0         8        16        24        32         40
+      +---------+---------+---------+---------+---------+
+      | version |  flags  |      stream       | opcode  |
+      +---------+---------+---------+---------+---------+
+      |                length                 |
+      +---------+---------+---------+---------+
+      |                                       |
+      .            ...  body ...              .
+      .                                       .
+      .                                       .
+      +----------------------------------------
+
+  The protocol is big-endian (network byte order).
+
+  Each frame contains a fixed size header (9 bytes) followed by a variable size
+  body. The header is described in Section 2. The content of the body depends
+  on the header opcode value (the body can in particular be empty for some
+  opcode values). The list of allowed opcodes is defined in Section 2.4 and the
+  details of each corresponding message are described Section 4.
+
+  The protocol distinguishes two types of frames: requests and responses. Requests
+  are those frames sent by the client to the server. Responses are those frames sent
+  by the server to the client. Note, however, that the protocol supports server pushes
+  (events) so a response does not necessarily come right after a client request.
+
+  Note to client implementors: client libraries should always assume that the
+  body of a given frame may contain more data than what is described in this
+  document. It will however always be safe to ignore the remainder of the frame
+  body in such cases. The reason is that this may enable extending the protocol
+  with optional features without needing to change the protocol version.
+
+
+
+2. Frame header
+
+2.1. version
+
+  The version is a single byte that indicates both the direction of the message
+  (request or response) and the version of the protocol in use. The most
+  significant bit of version is used to define the direction of the message:
+  0 indicates a request, 1 indicates a response. This can be useful for protocol
+  analyzers to distinguish the nature of the packet from the direction in which
+  it is moving. The rest of that byte is the protocol version (5 for the protocol
+  defined in this document). In other words, for this version of the protocol,
+  version will be one of:
+    0x05    Request frame for this protocol version
+    0x85    Response frame for this protocol version
+
+  Please note that while every message ships with the version, only one version
+  of messages is accepted on a given connection. In other words, the first message
+  exchanged (STARTUP) sets the version for the connection for the lifetime of this
+  connection. The single exception to this behavior is when a startup message
+  is sent with a version that is higher than the current server version. In this
+  case, the server will respond with its current version.
+
+  This document describes version 5 of the protocol. For the changes made since
+  version 4, see Section 10.
+
+
+2.2. flags
+
+  Flags applying to this frame. The flags have the following meaning (described
+  by the mask that allows selecting them):
+    0x01: Compression flag. If set, the frame body is compressed. The actual
+          compression to use should have been set up beforehand through the
+          Startup message (which thus cannot be compressed; Section 4.1.1).
+    0x02: Tracing flag. For a request frame, this indicates the client requires
+          tracing of the request. Note that only QUERY, PREPARE and EXECUTE queries
+          support tracing. Other requests will simply ignore the tracing flag if
+          set. If a request supports tracing and the tracing flag is set, the response
+          to this request will have the tracing flag set and contain tracing
+          information.
+          If a response frame has the tracing flag set, its body contains
+          a tracing ID. The tracing ID is a [uuid] and is the first thing in
+          the frame body. The rest of the body will then be the usual body
+          corresponding to the response opcode.
+    0x04: Custom payload flag. For a request or response frame, this indicates
+          that a generic key-value custom payload for a custom QueryHandler
+          implementation is present in the frame. Such a custom payload is simply
+          ignored by the default QueryHandler implementation.
+          Currently, only QUERY, PREPARE, EXECUTE and BATCH requests support
+          payload.
+          Type of custom payload is [bytes map] (see below).
+    0x08: Warning flag. The response contains warnings which were generated by the
+          server to go along with this response.
+          If a response frame has the warning flag set, its body will contain the
+          text of the warnings. The warnings are a [string list] and will be the
+          first value in the frame body if the tracing flag is not set, or directly
+          after the tracing ID if it is.
+    0x10: Use beta flag. Indicates that the client opts in to use protocol version
+          that is currently in beta. Server will respond with ERROR if protocol
+          version is marked as beta on server and client does not provide this flag.
+
+  The rest of flags is currently unused and ignored.
+
+2.3. stream
+
+  A frame has a stream id (a [short] value). When sending request messages, this
+  stream id must be set by the client to a non-negative value (negative stream id
+  are reserved for streams initiated by the server; currently all EVENT messages
+  (section 4.2.6) have a streamId of -1). If a client sends a request message
+  with the stream id X, it is guaranteed that the stream id of the response to
+  that message will be X.
+
+  This helps to enable the asynchronous nature of the protocol. If a client
+  sends multiple messages simultaneously (without waiting for responses), there
+  is no guarantee on the order of the responses. For instance, if the client
+  writes REQ_1, REQ_2, REQ_3 on the wire (in that order), the server might
+  respond to REQ_3 (or REQ_2) first. Assigning different stream ids to these 3
+  requests allows the client to distinguish to which request a received answer
+  responds to. As there can only be 32768 different simultaneous streams, it is up
+  to the client to reuse stream id.
+
+  Note that clients are free to use the protocol synchronously (i.e. wait for
+  the response to REQ_N before sending REQ_N+1). In that case, the stream id
+  can be safely set to 0. Clients should also feel free to use only a subset of
+  the 32768 maximum possible stream ids if it is simpler for its implementation.
+
+2.4. opcode
+
+  An integer byte that distinguishes the actual message:
+    0x00    ERROR
+    0x01    STARTUP
+    0x02    READY
+    0x03    AUTHENTICATE
+    0x05    OPTIONS
+    0x06    SUPPORTED
+    0x07    QUERY
+    0x08    RESULT
+    0x09    PREPARE
+    0x0A    EXECUTE
+    0x0B    REGISTER
+    0x0C    EVENT
+    0x0D    BATCH
+    0x0E    AUTH_CHALLENGE
+    0x0F    AUTH_RESPONSE
+    0x10    AUTH_SUCCESS
+
+  Messages are described in Section 4.
+
+  (Note that there is no 0x04 message in this version of the protocol)
+
+
+2.5. length
+
+  A 4 byte integer representing the length of the body of the frame (note:
+  currently a frame is limited to 256MB in length).
+
+
+3. Notations
+
+  To describe the layout of the frame body for the messages in Section 4, we
+  define the following:
+
+    [int]             A 4 bytes integer
+    [long]            A 8 bytes integer
+    [byte]            A 1 byte unsigned integer
+    [short]           A 2 bytes unsigned integer
+    [string]          A [short] n, followed by n bytes representing an UTF-8
+                      string.
+    [long string]     An [int] n, followed by n bytes representing an UTF-8 string.
+    [uuid]            A 16 bytes long uuid.
+    [string list]     A [short] n, followed by n [string].
+    [bytes]           A [int] n, followed by n bytes if n >= 0. If n < 0,
+                      no byte should follow and the value represented is `null`.
+    [value]           A [int] n, followed by n bytes if n >= 0.
+                      If n == -1 no byte should follow and the value represented is `null`.
+                      If n == -2 no byte should follow and the value represented is
+                      `not set` not resulting in any change to the existing value.
+                      n < -2 is an invalid value and results in an error.
+    [short bytes]     A [short] n, followed by n bytes if n >= 0.
+
+    [unsigned vint]   An unsigned variable length integer. A vint is encoded with the most significant byte (MSB) first.
+                      The most significant byte will contains the information about how many extra bytes need to be read
+                      as well as the most significant bits of the integer.
+                      The number of extra bytes to read is encoded as 1 bits on the left side.
+                      For example, if we need to read 2 more bytes the first byte will start with 110
+                      (e.g. 256 000 will be encoded on 3 bytes as [110]00011 11101000 00000000)
+                      If the encoded integer is 8 bytes long the vint will be encoded on 9 bytes and the first
+                      byte will be: 11111111
+
+   [vint]             A signed variable length integer. This is encoded using zig-zag encoding and then sent
+                      like an [unsigned vint]. Zig-zag encoding converts numbers as follows:
+                      0 = 0, -1 = 1, 1 = 2, -2 = 3, 2 = 4, -3 = 5, 3 = 6 and so forth.
+                      The purpose is to send small negative values as small unsigned values, so that we save bytes on the wire.
+                      To encode a value n use "(n >> 31) ^ (n << 1)" for 32 bit values, and "(n >> 63) ^ (n << 1)"
+                      for 64 bit values where "^" is the xor operation, "<<" is the left shift operation and ">>" is
+                      the arithemtic right shift operation (highest-order bit is replicated).
+                      Decode with "(n >> 1) ^ -(n & 1)".
+
+    [option]          A pair of <id><value> where <id> is a [short] representing
+                      the option id and <value> depends on that option (and can be
+                      of size 0). The supported id (and the corresponding <value>)
+                      will be described when this is used.
+    [option list]     A [short] n, followed by n [option].
+    [inet]            An address (ip and port) to a node. It consists of one
+                      [byte] n, that represents the address size, followed by n
+                      [byte] representing the IP address (in practice n can only be
+                      either 4 (IPv4) or 16 (IPv6)), following by one [int]
+                      representing the port.
+    [inetaddr]        An IP address (without a port) to a node. It consists of one
+                      [byte] n, that represents the address size, followed by n
+                      [byte] representing the IP address.
+    [consistency]     A consistency level specification. This is a [short]
+                      representing a consistency level with the following
+                      correspondance:
+                        0x0000    ANY
+                        0x0001    ONE
+                        0x0002    TWO
+                        0x0003    THREE
+                        0x0004    QUORUM
+                        0x0005    ALL
+                        0x0006    LOCAL_QUORUM
+                        0x0007    EACH_QUORUM
+                        0x0008    SERIAL
+                        0x0009    LOCAL_SERIAL
+                        0x000A    LOCAL_ONE
+
+    [string map]      A [short] n, followed by n pair <k><v> where <k> and <v>
+                      are [string].
+    [string multimap] A [short] n, followed by n pair <k><v> where <k> is a
+                      [string] and <v> is a [string list].
+    [bytes map]       A [short] n, followed by n pair <k><v> where <k> is a
+                      [string] and <v> is a [bytes].
+
+
+4. Messages
+
+4.1. Requests
+
+  Note that outside of their normal responses (described below), all requests
+  can get an ERROR message (Section 4.2.1) as response.
+
+4.1.1. STARTUP
+
+  Initialize the connection. The server will respond by either a READY message
+  (in which case the connection is ready for queries) or an AUTHENTICATE message
+  (in which case credentials will need to be provided using AUTH_RESPONSE).
+
+  This must be the first message of the connection, except for OPTIONS that can
+  be sent before to find out the options supported by the server. Once the
+  connection has been initialized, a client should not send any more STARTUP
+  messages.
+
+  The body is a [string map] of options. Possible options are:
+    - "CQL_VERSION": the version of CQL to use. This option is mandatory and
+      currently the only version supported is "3.0.0". Note that this is
+      different from the protocol version.
+    - "COMPRESSION": the compression algorithm to use for frames (See section 5).
+      This is optional; if not specified no compression will be used.
+
+
+4.1.2. AUTH_RESPONSE
+
+  Answers a server authentication challenge.
+
+  Authentication in the protocol is SASL based. The server sends authentication
+  challenges (a bytes token) to which the client answers with this message. Those
+  exchanges continue until the server accepts the authentication by sending a
+  AUTH_SUCCESS message after a client AUTH_RESPONSE. Note that the exchange
+  begins with the client sending an initial AUTH_RESPONSE in response to a
+  server AUTHENTICATE request.
+
+  The body of this message is a single [bytes] token. The details of what this
+  token contains (and when it can be null/empty, if ever) depends on the actual
+  authenticator used.
+
+  The response to a AUTH_RESPONSE is either a follow-up AUTH_CHALLENGE message,
+  an AUTH_SUCCESS message or an ERROR message.
+
+
+4.1.3. OPTIONS
+
+  Asks the server to return which STARTUP options are supported. The body of an
+  OPTIONS message should be empty and the server will respond with a SUPPORTED
+  message.
+
+
+4.1.4. QUERY
+
+  Performs a CQL query. The body of the message must be:
+    <query><query_parameters>
+  where <query> is a [long string] representing the query and
+  <query_parameters> must be
+    <consistency><flags>[<n>[name_1]<value_1>...[name_n]<value_n>][<result_page_size>][<paging_state>][<serial_consistency>][<timestamp>][<keyspace>][<now_in_seconds>]
+  where:
+    - <consistency> is the [consistency] level for the operation.
+    - <flags> is a [int] whose bits define the options for this query and
+      in particular influence what the remainder of the message contains.
+      A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given their mask:
+        0x0001: Values. If set, a [short] <n> followed by <n> [value]
+                values are provided. Those values are used for bound variables in
+                the query. Optionally, if the 0x40 flag is present, each value
+                will be preceded by a [string] name, representing the name of
+                the marker the value must be bound to.
+        0x0002: Skip_metadata. If set, the Result Set returned as a response
+                to the query (if any) will have the NO_METADATA flag (see
+                Section 4.2.5.2).
+        0x0004: Page_size. If set, <result_page_size> is an [int]
+                controlling the desired page size of the result (in CQL3 rows).
+                See the section on paging (Section 8) for more details.
+        0x0008: With_paging_state. If set, <paging_state> should be present.
+                <paging_state> is a [bytes] value that should have been returned
+                in a result set (Section 4.2.5.2). The query will be
+                executed but starting from a given paging state. This is also to
+                continue paging on a different node than the one where it
+                started (See Section 8 for more details).
+        0x0010: With serial consistency. If set, <serial_consistency> should be
+                present. <serial_consistency> is the [consistency] level for the
+                serial phase of conditional updates. That consitency can only be
+                either SERIAL or LOCAL_SERIAL and if not present, it defaults to
+                SERIAL. This option will be ignored for anything else other than a
+                conditional update/insert.
+        0x0020: With default timestamp. If set, <timestamp> must be present.
+                <timestamp> is a [long] representing the default timestamp for the query
+                in microseconds (negative values are forbidden). This will
+                replace the server side assigned timestamp as default timestamp.
+                Note that a timestamp in the query itself will still override
+                this timestamp. This is entirely optional.
+        0x0040: With names for values. This only makes sense if the 0x01 flag is set and
+                is ignored otherwise. If present, the values from the 0x01 flag will
+                be preceded by a name (see above). Note that this is only useful for
+                QUERY requests where named bind markers are used; for EXECUTE statements,
+                since the names for the expected values was returned during preparation,
+                a client can always provide values in the right order without any names
+                and using this flag, while supported, is almost surely inefficient.
+        0x0080: With keyspace. If set, <keyspace> must be present. <keyspace> is a
+                [string] indicating the keyspace that the query should be executed in.
+                It supercedes the keyspace that the connection is bound to, if any.
+        0x0100: With now in seconds. If set, <now_in_seconds> must be present.
+                <now_in_seconds> is an [int] representing the current time (now) for
+                the query. Affects TTL cell liveness in read queries and local deletion
+                time for tombstones and TTL cells in update requests. It's intended
+                for testing purposes and is optional.
+
+  Note that the consistency is ignored by some queries (USE, CREATE, ALTER,
+  TRUNCATE, ...).
+
+  The server will respond to a QUERY message with a RESULT message, the content
+  of which depends on the query.
+
+
+4.1.5. PREPARE
+
+  Prepare a query for later execution (through EXECUTE). The body of the message must be:
+    <query><flags>[<keyspace>]
+  where:
+    - <query> is a [long string] representing the CQL query.
+    - <flags> is a [int] whose bits define the options for this statement and in particular
+      influence what the remainder of the message contains.
+      A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given their mask:
+        0x01: With keyspace. If set, <keyspace> must be present. <keyspace> is a
+              [string] indicating the keyspace that the query should be executed in.
+              It supercedes the keyspace that the connection is bound to, if any.
+
+  The server will respond with a RESULT message with a `prepared` kind (0x0004,
+  see Section 4.2.5).
+
+
+4.1.6. EXECUTE
+
+  Executes a prepared query. The body of the message must be:
+  <id><result_metadata_id><query_parameters>
+  where
+    - <id> is the prepared query ID. It's the [short bytes] returned as a
+      response to a PREPARE message.
+    - <result_metadata_id> is the ID of the resultset metadata that was sent
+      along with response to PREPARE message. If a RESULT/Rows message reports
+      changed resultset metadata with the Metadata_changed flag, the reported new
+      resultset metadata must be used in subsequent executions.
+    - <query_parameters> has the exact same definition as in QUERY (see Section 4.1.4).
+
+
+4.1.7. BATCH
+
+  Allows executing a list of queries (prepared or not) as a batch (note that
+  only DML statements are accepted in a batch). The body of the message must
+  be:
+    <type><n><query_1>...<query_n><consistency><flags>[<serial_consistency>][<timestamp>][<keyspace>][<now_in_seconds>]
+  where:
+    - <type> is a [byte] indicating the type of batch to use:
+        - If <type> == 0, the batch will be "logged". This is equivalent to a
+          normal CQL3 batch statement.
+        - If <type> == 1, the batch will be "unlogged".
+        - If <type> == 2, the batch will be a "counter" batch (and non-counter
+          statements will be rejected).
+    - <flags> is a [int] whose bits define the options for this query and
+      in particular influence what the remainder of the message contains. It is similar
+      to the <flags> from QUERY and EXECUTE methods, except that the 4 rightmost
+      bits must always be 0 as their corresponding options do not make sense for
+      Batch. A flag is set if the bit corresponding to its `mask` is set. Supported
+      flags are, given their mask:
+        0x0010: With serial consistency. If set, <serial_consistency> should be
+                present. <serial_consistency> is the [consistency] level for the
+                serial phase of conditional updates. That consistency can only be
+                either SERIAL or LOCAL_SERIAL and if not present, it defaults to
+                SERIAL. This option will be ignored for anything else other than a
+                conditional update/insert.
+        0x0020: With default timestamp. If set, <timestamp> should be present.
+                <timestamp> is a [long] representing the default timestamp for the query
+                in microseconds. This will replace the server side assigned
+                timestamp as default timestamp. Note that a timestamp in the query itself
+                will still override this timestamp. This is entirely optional.
+        0x0040: With names for values. If set, then all values for all <query_i> must be
+                preceded by a [string] <name_i> that have the same meaning as in QUERY
+                requests [IMPORTANT NOTE: this feature does not work and should not be
+                used. It is specified in a way that makes it impossible for the server
+                to implement. This will be fixed in a future version of the native
+                protocol. See https://issues.apache.org/jira/browse/CASSANDRA-10246 for
+                more details].
+        0x0080: With keyspace. If set, <keyspace> must be present. <keyspace> is a
+                [string] indicating the keyspace that the query should be executed in.
+                It supercedes the keyspace that the connection is bound to, if any.
+        0x0100: With now in seconds. If set, <now_in_seconds> must be present.
+                <now_in_seconds> is an [int] representing the current time (now) for
+                the query. Affects TTL cell liveness in read queries and local deletion
+                time for tombstones and TTL cells in update requests. It's intended
+                for testing purposes and is optional.
+    - <n> is a [short] indicating the number of following queries.
+    - <query_1>...<query_n> are the queries to execute. A <query_i> must be of the
+      form:
+        <kind><string_or_id><n>[<name_1>]<value_1>...[<name_n>]<value_n>
+      where:
+       - <kind> is a [byte] indicating whether the following query is a prepared
+         one or not. <kind> value must be either 0 or 1.
+       - <string_or_id> depends on the value of <kind>. If <kind> == 0, it should be
+         a [long string] query string (as in QUERY, the query string might contain
+         bind markers). Otherwise (that is, if <kind> == 1), it should be a
+         [short bytes] representing a prepared query ID.
+       - <n> is a [short] indicating the number (possibly 0) of following values.
+       - <name_i> is the optional name of the following <value_i>. It must be present
+         if and only if the 0x40 flag is provided for the batch.
+       - <value_i> is the [value] to use for bound variable i (of bound variable <name_i>
+         if the 0x40 flag is used).
+    - <consistency> is the [consistency] level for the operation.
+    - <serial_consistency> is only present if the 0x10 flag is set. In that case,
+      <serial_consistency> is the [consistency] level for the serial phase of
+      conditional updates. That consitency can only be either SERIAL or
+      LOCAL_SERIAL and if not present will defaults to SERIAL. This option will
+      be ignored for anything else other than a conditional update/insert.
+
+  The server will respond with a RESULT message.
+
+
+4.1.8. REGISTER
+
+  Register this connection to receive some types of events. The body of the
+  message is a [string list] representing the event types to register for. See
+  section 4.2.6 for the list of valid event types.
+
+  The response to a REGISTER message will be a READY message.
+
+  Please note that if a client driver maintains multiple connections to a
+  Cassandra node and/or connections to multiple nodes, it is advised to
+  dedicate a handful of connections to receive events, but to *not* register
+  for events on all connections, as this would only result in receiving
+  multiple times the same event messages, wasting bandwidth.
+
+
+4.2. Responses
+
+  This section describes the content of the frame body for the different
+  responses. Please note that to make room for future evolution, clients should
+  support extra informations (that they should simply discard) to the one
+  described in this document at the end of the frame body.
+
+4.2.1. ERROR
+
+  Indicates an error processing a request. The body of the message will be an
+  error code ([int]) followed by a [string] error message. Then, depending on
+  the exception, more content may follow. The error codes are defined in
+  Section 9, along with their additional content if any.
+
+
+4.2.2. READY
+
+  Indicates that the server is ready to process queries. This message will be
+  sent by the server either after a STARTUP message if no authentication is
+  required (if authentication is required, the server indicates readiness by
+  sending a AUTH_RESPONSE message).
+
+  The body of a READY message is empty.
+
+
+4.2.3. AUTHENTICATE
+
+  Indicates that the server requires authentication, and which authentication
+  mechanism to use.
+
+  The authentication is SASL based and thus consists of a number of server
+  challenges (AUTH_CHALLENGE, Section 4.2.7) followed by client responses
+  (AUTH_RESPONSE, Section 4.1.2). The initial exchange is however boostrapped
+  by an initial client response. The details of that exchange (including how
+  many challenge-response pairs are required) are specific to the authenticator
+  in use. The exchange ends when the server sends an AUTH_SUCCESS message or
+  an ERROR message.
+
+  This message will be sent following a STARTUP message if authentication is
+  required and must be answered by a AUTH_RESPONSE message from the client.
+
+  The body consists of a single [string] indicating the full class name of the
+  IAuthenticator in use.
+
+
+4.2.4. SUPPORTED
+
+  Indicates which startup options are supported by the server. This message
+  comes as a response to an OPTIONS message.
+
+  The body of a SUPPORTED message is a [string multimap]. This multimap gives
+  for each of the supported STARTUP options, the list of supported values. It
+  also includes:
+      - "PROTOCOL_VERSIONS": the list of native protocol versions that are
+      supported, encoded as the version number followed by a slash and the
+      version description. For example: 3/v3, 4/v4, 5/v5-beta. If a version is
+      in beta, it will have the word "beta" in its description.
+
+
+4.2.5. RESULT
+
+  The result to a query (QUERY, PREPARE, EXECUTE or BATCH messages).
+
+  The first element of the body of a RESULT message is an [int] representing the
+  `kind` of result. The rest of the body depends on the kind. The kind can be
+  one of:
+    0x0001    Void: for results carrying no information.
+    0x0002    Rows: for results to select queries, returning a set of rows.
+    0x0003    Set_keyspace: the result to a `use` query.
+    0x0004    Prepared: result to a PREPARE message.
+    0x0005    Schema_change: the result to a schema altering query.
+
+  The body for each kind (after the [int] kind) is defined below.
+
+
+4.2.5.1. Void
+
+  The rest of the body for a Void result is empty. It indicates that a query was
+  successful without providing more information.
+
+
+4.2.5.2. Rows
+
+  Indicates a set of rows. The rest of the body of a Rows result is:
+    <metadata><rows_count><rows_content>
+  where:
+    - <metadata> is composed of:
+        <flags><columns_count>[<paging_state>][<new_metadata_id>][<global_table_spec>?<col_spec_1>...<col_spec_n>]
+      where:
+        - <flags> is an [int]. The bits of <flags> provides information on the
+          formatting of the remaining information. A flag is set if the bit
+          corresponding to its `mask` is set. Supported flags are, given their
+          mask:
+            0x0001    Global_tables_spec: if set, only one table spec (keyspace
+                      and table name) is provided as <global_table_spec>. If not
+                      set, <global_table_spec> is not present.
+            0x0002    Has_more_pages: indicates whether this is not the last
+                      page of results and more should be retrieved. If set, the
+                      <paging_state> will be present. The <paging_state> is a
+                      [bytes] value that should be used in QUERY/EXECUTE to
+                      continue paging and retrieve the remainder of the result for
+                      this query (See Section 8 for more details).
+            0x0004    No_metadata: if set, the <metadata> is only composed of
+                      these <flags>, the <column_count> and optionally the
+                      <paging_state> (depending on the Has_more_pages flag) but
+                      no other information (so no <global_table_spec> nor <col_spec_i>).
+                      This will only ever be the case if this was requested
+                      during the query (see QUERY and RESULT messages).
+            0x0008    Metadata_changed: if set, the No_metadata flag has to be unset
+                      and <new_metadata_id> has to be supplied. This flag is to be
+                      used to avoid a roundtrip in case of metadata changes for queries
+                      that requested metadata to be skipped.
+        - <columns_count> is an [int] representing the number of columns selected
+          by the query that produced this result. It defines the number of <col_spec_i>
+          elements in and the number of elements for each row in <rows_content>.
+        - <new_metadata_id> is [short bytes] representing the new, changed resultset
+           metadata. The new metadata ID must also be used in subsequent executions of
+           the corresponding prepared statement, if any.
+        - <global_table_spec> is present if the Global_tables_spec is set in
+          <flags>. It is composed of two [string] representing the
+          (unique) keyspace name and table name the columns belong to.
+        - <col_spec_i> specifies the columns returned in the query. There are
+          <column_count> such column specifications that are composed of:
+            (<ksname><tablename>)?<name><type>
+          The initial <ksname> and <tablename> are two [string] and are only present
+          if the Global_tables_spec flag is not set. The <column_name> is a
+          [string] and <type> is an [option] that corresponds to the description
+          (what this description is depends a bit on the context: in results to
+          selects, this will be either the user chosen alias or the selection used
+          (often a colum name, but it can be a function call too). In results to
+          a PREPARE, this will be either the name of the corresponding bind variable
+          or the column name for the variable if it is "anonymous") and type of
+          the corresponding result. The option for <type> is either a native
+          type (see below), in which case the option has no value, or a
+          'custom' type, in which case the value is a [string] representing
+          the fully qualified class name of the type represented. Valid option
+          ids are:
+            0x0000    Custom: the value is a [string], see above.
+            0x0001    Ascii
+            0x0002    Bigint
+            0x0003    Blob
+            0x0004    Boolean
+            0x0005    Counter
+            0x0006    Decimal
+            0x0007    Double
+            0x0008    Float
+            0x0009    Int
+            0x000B    Timestamp
+            0x000C    Uuid
+            0x000D    Varchar
+            0x000E    Varint
+            0x000F    Timeuuid
+            0x0010    Inet
+            0x0011    Date
+            0x0012    Time
+            0x0013    Smallint
+            0x0014    Tinyint
+            0x0015    Duration
+            0x0020    List: the value is an [option], representing the type
+                            of the elements of the list.
+            0x0021    Map: the value is two [option], representing the types of the
+                           keys and values of the map
+            0x0022    Set: the value is an [option], representing the type
+                            of the elements of the set
+            0x0030    UDT: the value is <ks><udt_name><n><name_1><type_1>...<name_n><type_n>
+                           where:
+                              - <ks> is a [string] representing the keyspace name this
+                                UDT is part of.
+                              - <udt_name> is a [string] representing the UDT name.
+                              - <n> is a [short] representing the number of fields of
+                                the UDT, and thus the number of <name_i><type_i> pairs
+                                following
+                              - <name_i> is a [string] representing the name of the
+                                i_th field of the UDT.
+                              - <type_i> is an [option] representing the type of the
+                                i_th field of the UDT.
+            0x0031    Tuple: the value is <n><type_1>...<type_n> where <n> is a [short]
+                             representing the number of values in the type, and <type_i>
+                             are [option] representing the type of the i_th component
+                             of the tuple
+
+    - <rows_count> is an [int] representing the number of rows present in this
+      result. Those rows are serialized in the <rows_content> part.
+    - <rows_content> is composed of <row_1>...<row_m> where m is <rows_count>.
+      Each <row_i> is composed of <value_1>...<value_n> where n is
+      <columns_count> and where <value_j> is a [bytes] representing the value
+      returned for the jth column of the ith row. In other words, <rows_content>
+      is composed of (<rows_count> * <columns_count>) [bytes].
+
+
+4.2.5.3. Set_keyspace
+
+  The result to a `use` query. The body (after the kind [int]) is a single
+  [string] indicating the name of the keyspace that has been set.
+
+
+4.2.5.4. Prepared
+
+  The result to a PREPARE message. The body of a Prepared result is:
+    <id><result_metadata_id><metadata><result_metadata>
+  where:
+    - <id> is [short bytes] representing the prepared query ID.
+    - <result_metadata_id> is [short bytes] representing the resultset metadata ID.
+    - <metadata> is composed of:
+        <flags><columns_count><pk_count>[<pk_index_1>...<pk_index_n>][<global_table_spec>?<col_spec_1>...<col_spec_n>]
+      where:
+        - <flags> is an [int]. The bits of <flags> provides information on the
+          formatting of the remaining information. A flag is set if the bit
+          corresponding to its `mask` is set. Supported masks and their flags
+          are:
+            0x0001    Global_tables_spec: if set, only one table spec (keyspace
+                      and table name) is provided as <global_table_spec>. If not
+                      set, <global_table_spec> is not present.
+        - <columns_count> is an [int] representing the number of bind markers
+          in the prepared statement.  It defines the number of <col_spec_i>
+          elements.
+        - <pk_count> is an [int] representing the number of <pk_index_i>
+          elements to follow. If this value is zero, at least one of the
+          partition key columns in the table that the statement acts on
+          did not have a corresponding bind marker (or the bind marker
+          was wrapped in a function call).
+        - <pk_index_i> is a short that represents the index of the bind marker
+          that corresponds to the partition key column in position i.
+          For example, a <pk_index> sequence of [2, 0, 1] indicates that the
+          table has three partition key columns; the full partition key
+          can be constructed by creating a composite of the values for
+          the bind markers at index 2, at index 0, and at index 1.
+          This allows implementations with token-aware routing to correctly
+          construct the partition key without needing to inspect table
+          metadata.
+        - <global_table_spec> is present if the Global_tables_spec is set in
+          <flags>. If present, it is composed of two [string]s. The first
+          [string] is the name of the keyspace that the statement acts on.
+          The second [string] is the name of the table that the columns
+          represented by the bind markers belong to.
+        - <col_spec_i> specifies the bind markers in the prepared statement.
+          There are <column_count> such column specifications, each with the
+          following format:
+            (<ksname><tablename>)?<name><type>
+          The initial <ksname> and <tablename> are two [string] that are only
+          present if the Global_tables_spec flag is not set. The <name> field
+          is a [string] that holds the name of the bind marker (if named),
+          or the name of the column, field, or expression that the bind marker
+          corresponds to (if the bind marker is "anonymous").  The <type>
+          field is an [option] that represents the expected type of values for
+          the bind marker.  See the Rows documentation (section 4.2.5.2) for
+          full details on the <type> field.
+
+    - <result_metadata> is defined exactly the same as <metadata> in the Rows
+      documentation (section 4.2.5.2).  This describes the metadata for the
+      result set that will be returned when this prepared statement is executed.
+      Note that <result_metadata> may be empty (have the No_metadata flag and
+      0 columns, See section 4.2.5.2) and will be for any query that is not a
+      Select. In fact, there is never a guarantee that this will be non-empty, so
+      implementations should protect themselves accordingly. This result metadata
+      is an optimization that allows implementations to later execute the
+      prepared statement without requesting the metadata (see the Skip_metadata
+      flag in EXECUTE).  Clients can safely discard this metadata if they do not
+      want to take advantage of that optimization.
+
+  Note that the prepared query ID returned is global to the node on which the query
+  has been prepared. It can be used on any connection to that node
+  until the node is restarted (after which the query must be reprepared).
+
+4.2.5.5. Schema_change
+
+  The result to a schema altering query (creation/update/drop of a
+  keyspace/table/index). The body (after the kind [int]) is the same
+  as the body for a "SCHEMA_CHANGE" event, so 3 strings:
+    <change_type><target><options>
+  Please refer to section 4.2.6 below for the meaning of those fields.
+
+  Note that a query to create or drop an index is considered to be a change
+  to the table the index is on.
+
+
+4.2.6. EVENT
+
+  An event pushed by the server. A client will only receive events for the
+  types it has REGISTERed to. The body of an EVENT message will start with a
+  [string] representing the event type. The rest of the message depends on the
+  event type. The valid event types are:
+    - "TOPOLOGY_CHANGE": events related to change in the cluster topology.
+      Currently, events are sent when new nodes are added to the cluster, and
+      when nodes are removed. The body of the message (after the event type)
+      consists of a [string] and an [inet], corresponding respectively to the
+      type of change ("NEW_NODE" or "REMOVED_NODE") followed by the address of
+      the new/removed node.
+    - "STATUS_CHANGE": events related to change of node status. Currently,
+      up/down events are sent. The body of the message (after the event type)
+      consists of a [string] and an [inet], corresponding respectively to the
+      type of status change ("UP" or "DOWN") followed by the address of the
+      concerned node.
+    - "SCHEMA_CHANGE": events related to schema change. After the event type,
+      the rest of the message will be <change_type><target><options> where:
+        - <change_type> is a [string] representing the type of changed involved.
+          It will be one of "CREATED", "UPDATED" or "DROPPED".
+        - <target> is a [string] that can be one of "KEYSPACE", "TABLE", "TYPE",
+          "FUNCTION" or "AGGREGATE" and describes what has been modified
+          ("TYPE" stands for modifications related to user types, "FUNCTION"
+          for modifications related to user defined functions, "AGGREGATE"
+          for modifications related to user defined aggregates).
+        - <options> depends on the preceding <target>:
+          - If <target> is "KEYSPACE", then <options> will be a single [string]
+            representing the keyspace changed.
+          - If <target> is "TABLE" or "TYPE", then
+            <options> will be 2 [string]: the first one will be the keyspace
+            containing the affected object, and the second one will be the name
+            of said affected object (either the table, user type, function, or
+            aggregate name).
+          - If <target> is "FUNCTION" or "AGGREGATE", multiple arguments follow:
+            - [string] keyspace containing the user defined function / aggregate
+            - [string] the function/aggregate name
+            - [string list] one string for each argument type (as CQL type)
+
+  All EVENT messages have a streamId of -1 (Section 2.3).
+
+  Please note that "NEW_NODE" and "UP" events are sent based on internal Gossip
+  communication and as such may be sent a short delay before the binary
+  protocol server on the newly up node is fully started. Clients are thus
+  advised to wait a short time before trying to connect to the node (1 second
+  should be enough), otherwise they may experience a connection refusal at
+  first.
+
+4.2.7. AUTH_CHALLENGE
+
+  A server authentication challenge (see AUTH_RESPONSE (Section 4.1.2) for more
+  details).
+
+  The body of this message is a single [bytes] token. The details of what this
+  token contains (and when it can be null/empty, if ever) depends on the actual
+  authenticator used.
+
+  Clients are expected to answer the server challenge with an AUTH_RESPONSE
+  message.
+
+4.2.8. AUTH_SUCCESS
+
+  Indicates the success of the authentication phase. See Section 4.2.3 for more
+  details.
+
+  The body of this message is a single [bytes] token holding final information
+  from the server that the client may require to finish the authentication
+  process. What that token contains and whether it can be null depends on the
+  actual authenticator used.
+
+
+5. Compression
+
+  Frame compression is supported by the protocol, but then only the frame body
+  is compressed (the frame header should never be compressed).
+
+  Before being used, client and server must agree on a compression algorithm to
+  use, which is done in the STARTUP message. As a consequence, a STARTUP message
+  must never be compressed.  However, once the STARTUP frame has been received
+  by the server, messages can be compressed (including the response to the STARTUP
+  request). Frames do not have to be compressed, however, even if compression has
+  been agreed upon (a server may only compress frames above a certain size at its
+  discretion). A frame body should be compressed if and only if the compressed
+  flag (see Section 2.2) is set.
+
+  As of version 2 of the protocol, the following compressions are available:
+    - lz4 (https://code.google.com/p/lz4/). In that, note that the first four bytes
+      of the body will be the uncompressed length (followed by the compressed
+      bytes).
+    - snappy (https://code.google.com/p/snappy/). This compression might not be
+      available as it depends on a native lib (server-side) that might not be
+      avaivable on some installations.
+
+
+6. Data Type Serialization Formats
+
+  This sections describes the serialization formats for all CQL data types
+  supported by Cassandra through the native protocol.  These serialization
+  formats should be used by client drivers to encode values for EXECUTE
+  messages.  Cassandra will use these formats when returning values in
+  RESULT messages.
+
+  All values are represented as [bytes] in EXECUTE and RESULT messages.
+  The [bytes] format includes an int prefix denoting the length of the value.
+  For that reason, the serialization formats described here will not include
+  a length component.
+
+  For legacy compatibility reasons, note that most non-string types support
+  "empty" values (i.e. a value with zero length).  An empty value is distinct
+  from NULL, which is encoded with a negative length.
+
+  As with the rest of the native protocol, all encodings are big-endian.
+
+6.1. ascii
+
+  A sequence of bytes in the ASCII range [0, 127].  Bytes with values outside of
+  this range will result in a validation error.
+
+6.2 bigint
+
+  An eight-byte two's complement integer.
+
+6.3 blob
+
+  Any sequence of bytes.
+
+6.4 boolean
+
+  A single byte.  A value of 0 denotes "false"; any other value denotes "true".
+  (However, it is recommended that a value of 1 be used to represent "true".)
+
+6.5 date
+
+  An unsigned integer representing days with epoch centered at 2^31.
+  (unix epoch January 1st, 1970).
+  A few examples:
+    0:    -5877641-06-23
+    2^31: 1970-1-1
+    2^32: 5881580-07-11
+
+6.6 decimal
+
+  The decimal format represents an arbitrary-precision number.  It contains an
+  [int] "scale" component followed by a varint encoding (see section 6.17)
+  of the unscaled value.  The encoded value represents "<unscaled>E<-scale>".
+  In other words, "<unscaled> * 10 ^ (-1 * <scale>)".
+
+6.7 double
+
+  An 8 byte floating point number in the IEEE 754 binary64 format.
+
+6.8 duration
+
+  A duration is composed of 3 signed variable length integers ([vint]s).
+  The first [vint] represents a number of months, the second [vint] represents
+  a number of days, and the last [vint] represents a number of nanoseconds.
+  The number of months and days must be valid 32 bits integers whereas the
+  number of nanoseconds must be a valid 64 bits integer.
+  A duration can either be positive or negative. If a duration is positive
+  all the integers must be positive or zero. If a duration is
+  negative all the numbers must be negative or zero.
+
+6.9 float
+
+  A 4 byte floating point number in the IEEE 754 binary32 format.
+
+6.10 inet
+
+  A 4 byte or 16 byte sequence denoting an IPv4 or IPv6 address, respectively.
+
+6.11 int
+
+  A 4 byte two's complement integer.
+
+6.12 list
+
+  A [int] n indicating the number of elements in the list, followed by n
+  elements.  Each element is [bytes] representing the serialized value.
+
+6.13 map
+
+  A [int] n indicating the number of key/value pairs in the map, followed by
+  n entries.  Each entry is composed of two [bytes] representing the key
+  and value.
+
+6.14 set
+
+  A [int] n indicating the number of elements in the set, followed by n
+  elements.  Each element is [bytes] representing the serialized value.
+
+6.15 smallint
+
+  A 2 byte two's complement integer.
+
+6.16 text
+
+  A sequence of bytes conforming to the UTF-8 specifications.
+
+6.17 time
+
+  An 8 byte two's complement long representing nanoseconds since midnight.
+  Valid values are in the range 0 to 86399999999999
+
+6.18 timestamp
+
+  An 8 byte two's complement integer representing a millisecond-precision
+  offset from the unix epoch (00:00:00, January 1st, 1970).  Negative values
+  represent a negative offset from the epoch.
+
+6.19 timeuuid
+
+  A 16 byte sequence representing a version 1 UUID as defined by RFC 4122.
+
+6.20 tinyint
+
+  A 1 byte two's complement integer.
+
+6.21 tuple
+
+  A sequence of [bytes] values representing the items in a tuple.  The encoding
+  of each element depends on the data type for that position in the tuple.
+  Null values may be represented by using length -1 for the [bytes]
+  representation of an element.
+
+6.22 uuid
+
+  A 16 byte sequence representing any valid UUID as defined by RFC 4122.
+
+6.23 varchar
+
+  An alias of the "text" type.
+
+6.24 varint
+
+  A variable-length two's complement encoding of a signed integer.
+
+  The following examples may help implementors of this spec:
+
+  Value | Encoding
+  ------|---------
+      0 |     0x00
+      1 |     0x01
+    127 |     0x7F
+    128 |   0x0080
+    129 |   0x0081
+     -1 |     0xFF
+   -128 |     0x80
+   -129 |   0xFF7F
+
+  Note that positive numbers must use a most-significant byte with a value
+  less than 0x80, because a most-significant bit of 1 indicates a negative
+  value.  Implementors should pad positive values that have a MSB >= 0x80
+  with a leading 0x00 byte.
+
+
+7. User Defined Types
+
+  This section describes the serialization format for User defined types (UDT),
+  as described in section 4.2.5.2.
+
+  A UDT value is composed of successive [bytes] values, one for each field of the UDT
+  value (in the order defined by the type). A UDT value will generally have one value
+  for each field of the type it represents, but it is allowed to have less values than
+  the type has fields.
+
+
+8. Result paging
+
+  The protocol allows for paging the result of queries. For that, the QUERY and
+  EXECUTE messages have a <result_page_size> value that indicate the desired
+  page size in CQL3 rows.
+
+  If a positive value is provided for <result_page_size>, the result set of the
+  RESULT message returned for the query will contain at most the
+  <result_page_size> first rows of the query result. If that first page of results
+  contains the full result set for the query, the RESULT message (of kind `Rows`)
+  will have the Has_more_pages flag *not* set. However, if some results are not
+  part of the first response, the Has_more_pages flag will be set and the result
+  will contain a <paging_state> value. In that case, the <paging_state> value
+  should be used in a QUERY or EXECUTE message (that has the *same* query as
+  the original one or the behavior is undefined) to retrieve the next page of
+  results.
+
+  Only CQL3 queries that return a result set (RESULT message with a Rows `kind`)
+  support paging. For other type of queries, the <result_page_size> value is
+  ignored.
+
+  Note to client implementors:
+  - While <result_page_size> can be as low as 1, it will likely be detrimental
+    to performance to pick a value too low. A value below 100 is probably too
+    low for most use cases.
+  - Clients should not rely on the actual size of the result set returned to
+    decide if there are more results to fetch or not. Instead, they should always
+    check the Has_more_pages flag (unless they did not enable paging for the query
+    obviously). Clients should also not assert that no result will have more than
+    <result_page_size> results. While the current implementation always respects
+    the exact value of <result_page_size>, we reserve the right to return
+    slightly smaller or bigger pages in the future for performance reasons.
+  - The <paging_state> is specific to a protocol version and drivers should not
+    send a <paging_state> returned by a node using the protocol v3 to query a node
+    using the protocol v4 for instance.
+
+
+9. Error codes
+
+  Let us recall that an ERROR message is composed of <code><message>[...]
+  (see 4.2.1 for details). The supported error codes, as well as any additional
+  information the message may contain after the <message> are described below:
+    0x0000    Server error: something unexpected happened. This indicates a
+              server-side bug.
+    0x000A    Protocol error: some client message triggered a protocol
+              violation (for instance a QUERY message is sent before a STARTUP
+              one has been sent)
+    0x0100    Authentication error: authentication was required and failed. The
+              possible reason for failing depends on the authenticator in use,
+              which may or may not include more detail in the accompanying
+              error message.
+    0x1000    Unavailable exception. The rest of the ERROR message body will be
+                <cl><required><alive>
+              where:
+                <cl> is the [consistency] level of the query that triggered
+                     the exception.
+                <required> is an [int] representing the number of nodes that
+                           should be alive to respect <cl>
+                <alive> is an [int] representing the number of replicas that
+                        were known to be alive when the request had been
+                        processed (since an unavailable exception has been
+                        triggered, there will be <alive> < <required>)
+    0x1001    Overloaded: the request cannot be processed because the
+              coordinator node is overloaded
+    0x1002    Is_bootstrapping: the request was a read request but the
+              coordinator node is bootstrapping
+    0x1003    Truncate_error: error during a truncation error.
+    0x1100    Write_timeout: Timeout exception during a write request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><writeType><contentions>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           acknowledged the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+                <writeType> is a [string] that describe the type of the write
+                            that timed out. The value of that string can be one
+                            of:
+                             - "SIMPLE": the write was a non-batched
+                               non-counter write.
+                             - "BATCH": the write was a (logged) batch write.
+                               If this type is received, it means the batch log
+                               has been successfully written (otherwise a
+                               "BATCH_LOG" type would have been sent instead).
+                             - "UNLOGGED_BATCH": the write was an unlogged
+                               batch. No batch log write has been attempted.
+                             - "COUNTER": the write was a counter write
+                               (batched or not).
+                             - "BATCH_LOG": the timeout occurred during the
+                               write to the batch log when a (logged) batch
+                               write was requested.
+                             - "CAS": the timeout occured during the Compare And Set write/update.
+                             - "VIEW": the timeout occured when a write involves
+                               VIEW update and failure to acqiure local view(MV)
+                               lock for key within timeout
+                             - "CDC": the timeout occured when cdc_total_space_in_mb is
+                               exceeded when doing a write to data tracked by cdc.
+                <contentions> is a [short] that describes the number of contentions occured during the CAS operation.
+                              The field only presents when the <writeType> is "CAS".
+    0x1200    Read_timeout: Timeout exception during a read request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><data_present>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           response is required to achieve <cl>. Please note that
+                           it is possible to have <received> >= <blockfor> if
+                           <data_present> is false. Also in the (unlikely)
+                           case where <cl> is achieved but the coordinator node
+                           times out while waiting for read-repair acknowledgement.
+                <data_present> is a single byte. If its value is 0, it means
+                               the replica that was asked for data has not
+                               responded. Otherwise, the value is != 0.
+    0x1300    Read_failure: A non-timeout exception during a read request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><reasonmap><data_present>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+                <reasonmap> is a map of endpoint to failure reason codes. This maps
+                            the endpoints of the replica nodes that failed when
+                            executing the request to a code representing the reason
+                            for the failure. The map is encoded starting with an [int] n
+                            followed by n pairs of <endpoint><failurecode> where
+                            <endpoint> is an [inetaddr] and <failurecode> is a [short].
+                <data_present> is a single byte. If its value is 0, it means
+                               the replica that was asked for data had not
+                               responded. Otherwise, the value is != 0.
+    0x1400    Function_failure: A (user defined) function failed during execution.
+              The rest of the ERROR message body will be
+                <keyspace><function><arg_types>
+              where:
+                <keyspace> is the keyspace [string] of the failed function
+                <function> is the name [string] of the failed function
+                <arg_types> [string list] one string for each argument type (as CQL type) of the failed function
+    0x1500    Write_failure: A non-timeout exception during a write request. The rest
+              of the ERROR message body will be
+                <cl><received><blockfor><reasonmap><write_type>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           answered the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+                <reasonmap> is a map of endpoint to failure reason codes. This maps
+                            the endpoints of the replica nodes that failed when
+                            executing the request to a code representing the reason
+                            for the failure. The map is encoded starting with an [int] n
+                            followed by n pairs of <endpoint><failurecode> where
+                            <endpoint> is an [inetaddr] and <failurecode> is a [short].
+                <writeType> is a [string] that describes the type of the write
+                            that failed. The value of that string can be one
+                            of:
+                             - "SIMPLE": the write was a non-batched
+                               non-counter write.
+                             - "BATCH": the write was a (logged) batch write.
+                               If this type is received, it means the batch log
+                               has been successfully written (otherwise a
+                               "BATCH_LOG" type would have been sent instead).
+                             - "UNLOGGED_BATCH": the write was an unlogged
+                               batch. No batch log write has been attempted.
+                             - "COUNTER": the write was a counter write
+                               (batched or not).
+                             - "BATCH_LOG": the failure occured during the
+                               write to the batch log when a (logged) batch
+                               write was requested.
+                             - "CAS": the failure occured during the Compare And Set write/update.
+                             - "VIEW": the failure occured when a write involves
+                               VIEW update and failure to acqiure local view(MV)
+                               lock for key within timeout
+                             - "CDC": the failure occured when cdc_total_space_in_mb is
+                               exceeded when doing a write to data tracked by cdc.
+    0x1600    CDC_WRITE_FAILURE: // todo
+    0x1700    CAS_WRITE_UNKNOWN: An exception occured due to contended Compare And Set write/update.
+              The CAS operation was only partially completed and the operation may or may not get completed by
+              the contending CAS write or SERIAL/LOCAL_SERIAL read. The rest of the ERROR message body will be
+                <cl><received><blockfor>
+              where:
+                <cl> is the [consistency] level of the query having triggered
+                     the exception.
+                <received> is an [int] representing the number of nodes having
+                           acknowledged the request.
+                <blockfor> is an [int] representing the number of replicas whose
+                           acknowledgement is required to achieve <cl>.
+
+    0x2000    Syntax_error: The submitted query has a syntax error.
+    0x2100    Unauthorized: The logged user doesn't have the right to perform
+              the query.
+    0x2200    Invalid: The query is syntactically correct but invalid.
+    0x2300    Config_error: The query is invalid because of some configuration issue
+    0x2400    Already_exists: The query attempted to create a keyspace or a
+              table that was already existing. The rest of the ERROR message
+              body will be <ks><table> where:
+                <ks> is a [string] representing either the keyspace that
+                     already exists, or the keyspace in which the table that
+                     already exists is.
+                <table> is a [string] representing the name of the table that
+                        already exists. If the query was attempting to create a
+                        keyspace, <table> will be present but will be the empty
+                        string.
+    0x2500    Unprepared: Can be thrown while a prepared statement tries to be
+              executed if the provided prepared statement ID is not known by
+              this host. The rest of the ERROR message body will be [short
+              bytes] representing the unknown ID.
+
+10. Changes from v4
+
+  * Beta protocol flag for v5 native protocol is added (Section 2.2)
+  * <numfailures> in Read_failure and Write_failure error message bodies (Section 9)
+    has been replaced with <reasonmap>. The <reasonmap> maps node IP addresses to
+    a failure reason code which indicates why the request failed on that node.
+  * Enlarged flag's bitmaps for QUERY, EXECUTE and BATCH messages from [byte] to [int]
+    (Sections 4.1.4, 4.1.6 and 4.1.7).
+  * Add the duration data type
+  * Added keyspace field in QUERY, PREPARE, and BATCH messages (Sections 4.1.4, 4.1.5, and 4.1.7).
+  * Added now_in_seconds field in QUERY, EXECUTE, and BATCH messages (Sections 4.1.4, 4.1.6, and 4.1.7).
+  * Added [int] flags field in PREPARE message (Section 4.1.5).
+  * Removed NO_COMPACT startup option (Section 4.1.1.)
diff --git a/src/doc/4.0-beta3/_images/docs_commit.png b/site-content/source/modules/ROOT/images/docs_commit.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_commit.png
rename to site-content/source/modules/ROOT/images/docs_commit.png
diff --git a/src/doc/4.0-beta3/_images/docs_create_branch.png b/site-content/source/modules/ROOT/images/docs_create_branch.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_create_branch.png
rename to site-content/source/modules/ROOT/images/docs_create_branch.png
diff --git a/src/doc/4.0-beta3/_images/docs_create_file.png b/site-content/source/modules/ROOT/images/docs_create_file.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_create_file.png
rename to site-content/source/modules/ROOT/images/docs_create_file.png
diff --git a/src/doc/4.0-beta3/_images/docs_editor.png b/site-content/source/modules/ROOT/images/docs_editor.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_editor.png
rename to site-content/source/modules/ROOT/images/docs_editor.png
diff --git a/src/doc/4.0-beta3/_images/docs_fork.png b/site-content/source/modules/ROOT/images/docs_fork.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_fork.png
rename to site-content/source/modules/ROOT/images/docs_fork.png
diff --git a/src/doc/4.0-beta3/_images/docs_pr.png b/site-content/source/modules/ROOT/images/docs_pr.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_pr.png
rename to site-content/source/modules/ROOT/images/docs_pr.png
diff --git a/src/doc/4.0-beta3/_images/docs_preview.png b/site-content/source/modules/ROOT/images/docs_preview.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/docs_preview.png
rename to site-content/source/modules/ROOT/images/docs_preview.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug0.png b/site-content/source/modules/ROOT/images/eclipse_debug0.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug0.png
rename to site-content/source/modules/ROOT/images/eclipse_debug0.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug1.png b/site-content/source/modules/ROOT/images/eclipse_debug1.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug1.png
rename to site-content/source/modules/ROOT/images/eclipse_debug1.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug2.png b/site-content/source/modules/ROOT/images/eclipse_debug2.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug2.png
rename to site-content/source/modules/ROOT/images/eclipse_debug2.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug3.png b/site-content/source/modules/ROOT/images/eclipse_debug3.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug3.png
rename to site-content/source/modules/ROOT/images/eclipse_debug3.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug4.png b/site-content/source/modules/ROOT/images/eclipse_debug4.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug4.png
rename to site-content/source/modules/ROOT/images/eclipse_debug4.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug5.png b/site-content/source/modules/ROOT/images/eclipse_debug5.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug5.png
rename to site-content/source/modules/ROOT/images/eclipse_debug5.png
diff --git a/src/doc/4.0-beta3/_images/eclipse_debug6.png b/site-content/source/modules/ROOT/images/eclipse_debug6.png
similarity index 100%
rename from src/doc/4.0-beta3/_images/eclipse_debug6.png
rename to site-content/source/modules/ROOT/images/eclipse_debug6.png
diff --git a/site-content/source/modules/ROOT/nav.adoc b/site-content/source/modules/ROOT/nav.adoc
new file mode 100644
index 0000000..4f76346
--- /dev/null
+++ b/site-content/source/modules/ROOT/nav.adoc
@@ -0,0 +1,17 @@
+* xref:glossary.adoc[Glossary]
+* xref:bugs.adoc[How to report bugs]
+* xref:contactus.adoc[Contact us]
+
+* xref:development/index.adoc[Contribute to Cassandra code]
+** xref:development/gettingstarted.adoc[Getting started]
+** xref:development/ide.adoc[IDE]
+** xref:development/testing.adoc[Testing]
+** xref:development/code_style.adoc[Code style]
+** xref:development/how_to_commit.adoc[How to commit]
+** xref:development/how_to_review.adoc[How to review]
+** xref:development/patches.adoc[Patches]
+** xref:development/ci.adoc[CI]
+** xref:development/dependencies.adoc[Dependencies]
+** xref:development/release_process.adoc[Release process]
+
+* xref:development/documentation.adoc[Contribute to the documentation]
diff --git a/site-content/source/modules/ROOT/pages/apachecon_cfp.adoc b/site-content/source/modules/ROOT/pages/apachecon_cfp.adoc
new file mode 100644
index 0000000..288f70a
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/apachecon_cfp.adoc
@@ -0,0 +1,83 @@
+= Announcing the 2019 Apache Cassandra Summit
+
+== Announcing the 2019 Apache Cassandra Summit
+
+Join the Apache Cassandra community for the 2019 Apache Cassandra
+Summit, hosted with ApacheCon in Las Vegas, NV (Sept 9 - 13).
+
+'''''
+
+=== Apache Cassandra at ApacheCon
+
+image:/img/apachecon-2019.jpg[ApacheCon 2019]\{:style=``float: right;
+width: 400px''}
+
+For more information about other events at ApacheCon, see
+https://apachecon.com/acna19/index.html[ApacheCon 2019].
+
+ 
+
+==== Day One: Next Generation Cassandra Conference (NGCC)
+
+NGCC (Next Generation Cassandra Conference), a one-day event for Apache
+Cassandra contributors and large system operators to meet, discuss, and
+plan future development in the project. NGCC will take place on
+*Tuesday, September 10th*.
+
+NGCC is an advanced event targeted toward Apache Cassandra contributors
+and large system / platform operators. Content will focus on Cassandra
+internals and is geared toward those with detailed knowledge of the
+codebase and architecture. All are welcome to attend.
+
+ 
+
+==== Day Two: Apache Cassandra Summit
+
+The Apache Cassandra Summit, a one-day event for Apache Cassandra users
+to meet, network, and learn about what’s new and what’s coming in
+Cassandra. The Apache Cassandra Summit will be held on *Wednesday, Sept
+11*.
+
+The Apache Cassandra Summit is targeted toward a wider audience. Topics
+should be interesting and accessible to those whose first introduction
+to Cassandra is at this event, and those who have been active in the
+community for many years.
+
+'''''
+
+=== Call for Presentations
+
+We’re excited to announce the Call for Presentations is now open for
+both, closing Monday, May 13 at 2pm BST (UTC+1).
+
+ 
+
+==== Apache Cassandra Summit CFP (40-minute presentation, 5-minute Q&A) –
+
+*Example proposals might include:* - Lessons learned operating Apache
+Cassandra at scale. - Customizations and ways members of the community
+have extended Apache Cassandra to make it a great fit for their use
+case. - Stability improvements, performance enhancements, and new
+features in an upcoming Cassandra release. - Something we haven’t
+thought about that a general audience would be interested to hear.
+
+ 
+
+==== Next Generation Cassandra Conference CFP (30-minute presentation, 15m breakout) –
+
+*Example proposals might include:* - Presentations from contributors and
+large operators covering pain points and proposals to address them -
+Planned or proposed improvements in specific areas of the Apache
+Cassandra codebase - Planned or proposed improvements we can make to
+strengthen and empower the Apache Cassandra community. - Something we
+haven’t thought about that advanced operators / contributors would be
+interested to hear.
+
+ 
+
+https://asf.jamhosted.net/cfp.html[Click here] to submit a proposal for
+the Apache Cassandra Summit or NGCC.
+
+When submitting, please ensure you select ``Cassandra'' as the category.
+For NGCC submissions, please include ``NGCC Proposal'' in the ``Optional
+Notes'' field.
diff --git a/site-content/source/modules/ROOT/pages/bugs.adoc b/site-content/source/modules/ROOT/pages/bugs.adoc
new file mode 100644
index 0000000..d2d06de
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/bugs.adoc
@@ -0,0 +1,17 @@
+= Reporting Bugs
+
+If you encounter a problem with Cassandra, the first places to ask for help are the 
+link:++https://lists.apache.org/list.html?user@cassandra.apache.org++[user mailing list] and 
+the https://s.apache.org/slack-invite[Cassandra slack room].
+
+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
+xref:https://issues.apache.org/jira/browse/CASSANDRA[Apache Cassandra JIRA].
+Please provide as much details as you can on your problem, and don't
+forget to indicate which version of Cassandra you are running and on
+which environment.
+
+Further details on how to contribute can be found at our
+xref:cassandra:development/index.adoc[Contributing to Cassandra] 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 same path.
diff --git a/site-content/source/modules/ROOT/pages/community.adoc b/site-content/source/modules/ROOT/pages/community.adoc
new file mode 100644
index 0000000..21a51e5
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/community.adoc
@@ -0,0 +1,78 @@
+= Community
+
+== Getting and keeping in touch
+
+== Mailing lists
+
+Discussion and questions on Cassandra’s usage and development happens
+mainly on the following mailing lists:
+
+* http://www.mail-archive.com/user@cassandra.apache.org/[Users]: General
+mailing list for user questions and discussions. This is also where new
+releases are announced
+(mailto:user-subscribe@cassandra.apache.org[subscribe] |
+mailto:user-unsubscribe@cassandra.apache.org[unsubscribe] |
+https://lists.apache.org/list.html&#63;user&#64;cassandra.apache.org[Archives]).
+* http://www.mail-archive.com/dev@cassandra.apache.org/[Developers]:
+Questions and discussions related to Cassandra development
+(mailto:dev-subscribe@cassandra.apache.org[subscribe] |
+mailto:dev-unsubscribe@cassandra.apache.org[unsubscribe] |
+https://lists.apache.org/list.html&#63;dev&#64;cassandra.apache.org[Archives]).
+* http://www.mail-archive.com/commits@cassandra.apache.org/[Commits]:
+Notification on commits done to the source repository and on
+https://issues.apache.org/jira/browse/CASSANDRA[JIRA] updates. This is a
+fairly noisy mailing list mostly useful for Cassandra developers and
+those who would like to keep close tabs on Cassandra’s development
+(mailto:commits-subscribe@cassandra.apache.org[subscribe] |
+mailto:commits-unsubscribe@cassandra.apache.org[unsubscribe] |
+https://lists.apache.org/list.html&#63;commits&#64;cassandra.apache.org[Archives]).
+
+== Slack
+
+We have recently moved to the ASF Slack organization for all chat.
+Please https://s.apache.org/slack-invite[sign up for an account] to
+participate.
+
+* `#cassandra` - for user questions and general discussions
+* `#cassandra-dev` - strictly for questions or discussions related to
+Cassandra development
+* `#cassandra-builds` - results of automated test builds
+* `#cassandra-builds-patches` - results of patch test builds
+
+== Stack Overflow
+
+You can also check the
+http://stackoverflow.com/questions/tagged/cassandra[Q&A about using
+Cassandra] on Stack Overflow.
+
+== Books and publications
+
+* http://shop.oreilly.com/product/0636920299837.do[Cassandra: The
+Definitive Guide, 3rd Edition], by Jeff Carpenter and Eben Hewitt.
+Updated for Cassandra 4.0
+* https://www.amazon.com/Mastering-Apache-Cassandra-Nishant-Neeraj/dp/1784392618/[Mastering
+Apache Cassandra, 2nd Edition], by Nishant Neeraj
+* https://www.amazon.com/Learning-Apache-Cassandra-Tolerant-Real-Time/dp/1783989203/[Learning
+Apache Cassandra - Manage Fault Tolerant and Scalable Real-Time Data],
+by Mat Brown
+* https://dl.acm.org/citation.cfm?id=1773922[Cassandra: a decentralized
+structured storage system], by Avinash Lakshman and Prashant Malik
+
+== Third-party projects
+
+There are a number of third-party Cassandra projects that could be
+useful. Check out this
+https://cassandra.apache.org/third-party/[listing].
+
+== Reporting bugs
+
+If you encounter a problem with Cassandra, the first places to ask for
+help are the link:#mailing[user mailing list] and the `#cassandra`
+https://s.apache.org/slack-invite[Slack channel].
+
+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
+https://issues.apache.org/jira/browse/CASSANDRA[Apache Cassandra JIRA
+tracking system]. Please provide as much detail as you can on your
+problem. Don’t forget to indicate which version of Cassandra you are
+running and on which environment.
diff --git a/site-content/source/modules/ROOT/pages/contactus.adoc b/site-content/source/modules/ROOT/pages/contactus.adoc
new file mode 100644
index 0000000..7382f10
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/contactus.adoc
@@ -0,0 +1,30 @@
+= Contact us
+
+You can get in touch with the Cassandra community either via the mailing
+lists or Slack rooms.
+
+== Mailing lists
+
+The following mailing lists are available:
+
+* http://www.mail-archive.com/user@cassandra.apache.org/[Users]:
+General discussion list for users - link:mail-to:user-subscribe@cassandra.apache.org[Subscribe]
+* http://www.mail-archive.com/dev@cassandra.apache.org/[Developers]: 
+Development related discussion - link:mail-to:dev-subscribe@cassandra.apache.org[Subscribe]
+* http://www.mail-archive.com/commits@cassandra.apache.org/[Commits]: 
+Commit notification source repository - link:mail-to:commits-subscribe@cassandra.apache.org[Subscribe]
+* http://www.mail-archive.com/client-dev@cassandra.apache.org/[Client Libraries]:  
+Discussion related to the development of idiomatic client APIs - link:mail-to:client-dev-subscribe@cassandra.apache.org[Subscribe]
+
+Subscribe by clicking on the Subscribe links above. Follow the instructions 
+in the welcome email to confirm your subscription. Make sure to keep the welcome email 
+as it contains instructions on how to unsubscribe.
+
+== Slack
+
+To chat with users or developers in real-time, join our rooms on
+https://s.apache.org/slack-invite[ASF Slack]:
+
+* `cassandra` - for user questions and general discussions.
+* `cassandra-dev` - strictly for questions or discussions related to
+Cassandra development.
diff --git a/site-content/source/modules/ROOT/pages/development/ci.adoc b/site-content/source/modules/ROOT/pages/development/ci.adoc
new file mode 100644
index 0000000..9a9105f
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/development/ci.adoc
@@ -0,0 +1,102 @@
+== CI Environments
+
+=== About CI testing and Apache Cassandra
+
+Cassandra can be automatically tested using various test suites, that
+are either implemented based on JUnit or the
+https://github.com/riptano/cassandra-dtest[dtest] scripts written in
+Python. As outlined in `testing`, each kind of test suite addresses a
+different way to test Cassandra. Eventually, all of the tests will be
+executed together on the CI platform at
+https://builds.apache.org[builds.apache.org], running
+http://jenkins-ci.org[Jenkins].
+
+=== Setting up your own Jenkins server
+
+Jenkins is an open source solution that can be installed on a large
+number of platforms. Setting up a custom Jenkins instance for Cassandra
+may be desirable for users who have hardware to spare, or organizations
+that want to run Cassandra tests for custom patches before contribution.
+
+Please refer to the Jenkins download and documentation pages for details
+on how to get Jenkins running, possibly also including slave build
+executor instances. The rest of the document will focus on how to setup
+Cassandra jobs in your Jenkins environment.
+
+==== Required plugins
+
+In addition, the following plugins need to be installed along with the standard
+plugins (git, ant, ..).
+
+You can install any missing plugins using the install manager.
+
+Go to `Manage Jenkins -> Manage Plugins -> Available` and install the
+following plugins and respective dependencies:
+
+* Job DSL
+* Javadoc Plugin
+* description setter plugin
+* Throttle Concurrent Builds Plug-in
+* Test stability history
+* Hudson Post build task
+
+==== Setup seed job
+
+. Config `New Item`
+
+* Name it `Cassandra-Job-DSL`
+* Select `Freestyle project`
+
+. Under `Source Code Management` select Git using the repository:
+`https://github.com/apache/cassandra-builds`
+
+. Under `Build`, confirm `Add build step` -> `Process Job DSLs` and enter
+at `Look on Filesystem`: `jenkins-dsl/cassandra_job_dsl_seed.groovy`
+
+Generated jobs will be created based on the Groovy script's default
+settings. You may want to override settings by checking
+`This project is parameterized` and add `String Parameter` for on the
+variables that can be found in the top of the script. This will allow
+you to setup jobs for your own repository and branches (e.g. working
+branches).
+
+[arabic, start=4]
+. When done, confirm "Save".
+
+You should now find a new entry with the given name in your project
+list. However, building the project will still fail and abort with an
+error message "Processing DSL script
+cassandra_job_dsl_seed.groovy ERROR: script not yet approved for use".
+Go to `Manage Jenkins` -> `In-process Script Approval` to fix this issue.
+Afterwards you should be able to run the script and have it generate
+numerous new jobs based on the found branches and configured templates.
+
+Jobs are triggered by either changes in Git or are scheduled to execute
+periodically, e.g. on daily basis.
+Jenkins will use any available executor with the label "cassandra", once the job
+is to be run.
+Please make sure to make any executors available by selecting
+`Build Executor Status` -> `Configure` -> Add "`cassandra`" as label and
+save.
+
+Executors need to have "JDK 1.8 (latest)" installed. This is done under
+`Manage Jenkins -> Global Tool Configuration -> JDK Installations…`.
+Executors also need to have the `virtualenv` package installed on their
+system.
+
+=== CircleCI
+
+Cassandra ships with a default https://circleci.com[CircleCI]
+configuration to enable running tests on your branches.
+Go to the CircleCI website, click "Login" and log in with your github account.
+Then give CircleCI permission to watch your repositories.
+
+Once you have done that, you can optionally configure CircleCI to run
+tests in parallel if you wish:
+
+[arabic,start=1]
+. Click `Projects` and select your github account, and then click the settings for your project.
+. Set the parallelism setting. If you leave the default value of 1
+for Cassandra, only `ant eclipse-warnings` and `ant test` will be run.
+If you change the value to 4, Circle CI also runs `ant long-test`,
+`ant test-compression` and `ant stress-test`.
diff --git a/site-content/source/modules/ROOT/pages/development/code_style.adoc b/site-content/source/modules/ROOT/pages/development/code_style.adoc
new file mode 100644
index 0000000..cd9048b
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/development/code_style.adoc
@@ -0,0 +1,99 @@
+== Code Style
+
+=== General Code Conventions
+
+* The Cassandra project follows
+http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html[Sun's Java
+coding conventions] with one important exception: `{` and `}` are always
+placed on a new line.
+
+=== Exception handling
+
+* Never ever write `catch (...) {}` or `catch (...) { logger.error() }`
+merely to satisfy Java's compile-time exception checking. Always
+propagate the exception up or throw `RuntimeException` (or, if it "can't
+happen," `AssertionError`). This makes the exceptions visible to
+automated tests.
+* Avoid propagating up checked exceptions that no caller handles.
+Rethrow as `RuntimeException` (or `IOError`, if that is more
+applicable).
+* 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.
+* 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.
+
+=== Boilerplate
+
+* Avoid redundant `@Override` annotations when implementing abstract or
+interface methods.
+* Do not implement equals or hashcode methods unless they are actually
+needed.
+* Prefer public final fields to private fields with getters. (But prefer
+encapsulating behavior in "real" methods to either.)
+* Prefer requiring initialization in the constructor to setters.
+* Avoid redundant `this` references to member fields or methods.
+* Do not extract interfaces (or abstract classes) unless you actually
+need multiple implementations of it.
+* Always include braces for nested levels of conditionals and loops.
+Only avoid braces for single level.
+
+=== Multiline statements
+
+* Try to keep lines under 120 characters, but use good judgement.
+It is better to exceed 120 by a little, than split a line that has no natural
+splitting points.
+* When splitting inside a method call, use one line per parameter and
+align the items called:
+
+[source,none]
+----
+SSTableWriter writer = new SSTableWriter(cfs.getTempSSTablePath(),
+                                         columnFamilies.size(),
+                                         StorageService.getPartitioner());
+----
+
+* When splitting a ternary, use one line per clause, carry the operator,
+and align by indenting with 4 white spaces:
+
+[source,none]
+----
+var = bar == null
+    ? doFoo()
+    : doBar();
+----
+
+=== Whitespace
+
+* Make sure to use 4 spaces instead of the tab character for all
+your indentation.
+* Many lines in the current files have a bunch of trailing whitespace.
+If you encounter incorrect whitespace, clean up in a separate patch.
+Current and future reviewers won't want to review whitespace diffs.
+
+=== Imports
+
+Observe the following order for your imports:
+
+[source,none]
+----
+java
+[blank line]
+com.google.common
+org.apache.commons
+org.junit
+org.slf4j
+[blank line]
+everything else alphabetically
+----
+
+=== Format files for IDEs
+
+* IntelliJ:
+https://wiki.apache.org/cassandra/CodeStyle?action=AttachFile&do=view&target=intellij-codestyle.jar[intellij-codestyle.jar]
+* IntelliJ 13:
+https://gist.github.com/jdsumsion/9ab750a05c2a567c6afc[gist for IntelliJ
+13] (this is a work in progress, still working on javadoc, ternary
+style, line continuations, etc)
+* Eclipse: (https://github.com/tjake/cassandra-style-eclipse)
diff --git a/site-content/source/modules/ROOT/pages/development/dependencies.adoc b/site-content/source/modules/ROOT/pages/development/dependencies.adoc
new file mode 100644
index 0000000..5bedae4
--- /dev/null
+++ b/site-content/source/modules/ROOT/pages/development/dependencies.adoc
@@ -0,0 +1,51 @@
+== Dependency Management
+
+Managing libraries for Cassandra is a bit less straight forward compared
... 947193 lines suppressed ...

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org