b73f034da12ac5d3f5abb11733d6a1bef87f3af1 | Author: Mick Semb Wever <mck@apache.org>
| 2020-11-12 09:27:17+01:00
Upgrade JNA to 5.6.0
Also remove remaining comments/doc referencing `-Dcassandra.boot_without_jna`
patch by Adrain Cole, Mick Semb Wever; reviewed by Benjamin Lerer, Joey Lynch for CASSANDRA-16212
Co-authored-by: Adrian Cole <adrian.f.cole@gmail.com>
9c1bbf3ac913f9bdf7a0e0922106804af42d2c1e | Author: Joseph Lynch <joe.e.lynch@gmail.com>
| 2019-11-03 16:37:18-08:00
Flush with fast compressors by default
Previously Zstd, Deflate and LZ4HC could hold up the flush thread while
flushing due to their slow compression rates. With this patch we always
default to flush with a fast compressor (default to LZ4) and then
compress into the high compression strategy during normal compactions
that follow. Note that if the existing table compressor is fast (e.g.
LZ4 or Snappy) we use that.
Patch by Joey Lynch; reviewed by Dinesh Joshi for CASSANDRA-15379
674b6cc1a5e905a9c234c649adaad2de79cfa560 | Author: Joseph Lynch <joe.e.lynch@gmail.com>
| 2019-08-16 18:15:55-07:00
Update defaults for server and client TLS settings
This fixes backwards compatibility with the 3.11 server_encryption_options
while exposing the correct defaults after the 4.0 Netty refactor.
Patch by Joseph Lynch; Reviewed by Ekaterina Dimitrova for CASSANDRA-15262
5ec6842b3f6c9e42ed9aa12b8b138391fd5ac335 | Author: Joseph Lynch <joe.e.lynch@gmail.com>
| 2019-01-09 17:14:34-08:00
Docs: Clarify PartitionSize table metric documentation
The documentation has historically referred to (Min|Max|Mean)PartitionSize
metrics as "compacted partition size", but in practice few users know what
that means. Attempt to clarify the meaning of these metrics.
Closes #298
Patch by Joseph Lynch; Reviewed by Jeff Jirsa
3e372ea05b956c60138a55d536c64f3d6aa39183 | Author: mck <mck@13f79535-47bb-0310-9956-ffa450edef68>
| 2019-01-07 07:06:38+00:00
Build nodetool jarfile in $CASSANDRA_DIR before running `python gen-nodetool-docs.py`
Patch by Joey Lynch; reviewed by Mick Semb Wever for CASSANDRA-14955
git-svn-id: http://svn.apache.org/repos/asf/cassandra/site@1850613 13f79535-47bb-0310-9956-ffa450edef68
57b87d21aa4712f63903a191cff6c832c759b97b | Author: Joseph Lynch <joe.e.lynch@gmail.com>
| 2018-07-01 17:56:08-07:00
Add basic troubleshooting documentation
This is just a start, but should help people get out of the most basic of
reliability/performance issues.
Includes information on isolating the node or nodes causing an issue, as
well as detailed information on how to debug a correctness/reliability issue
on a particular node.
Patch by Joseph Lynch, reviewed by Jon Haddad for CASSANDRA-14553
1f19d5f7a243cc4227da923459f5eb2f66066778 | Author: Joseph Lynch <joe.e.lynch@gmail.com>
| 2018-03-12 20:37:30-07:00
Auto-expand replication_factor for NetworkTopologyStrategy
This re-defines the 'replication_factor' configuration option for
NetworkTopologyStrategy to auto-expand out to the datacenters that the
cluster knows about. This allows users to not worry about their cluster
layout when creating keyspaces. On ALTER this keyword will only ever add
datacenters (it keeps all previous datacenters unless explicitly overridden)
Patch by Joseph Lynch; reviewed by Jon Haddad for CASSANDRA-14303