mck
ec39ef3193
Merge branch 'cassandra-4.0' into cassandra-4.1
...
* cassandra-4.0:
Add option to disable cqlsh history
2026-03-17 23:06:38 +01:00
Ekaterina Dimitrova
b47179b7d4
Add option to disable cqlsh history
...
We can disable saving of the history either via command-line parameter --disable-history, or by setting disabled = True in the history section of the cqlshrc. Both options will read existing history, and just won't save new commands.
Update help and docs for cqlsh history.
Add startup info logline whenr history logging is enabled.
Add a fix for cqlshrc file path not correctly expanding.
Includes the Backport of
Allows users to change cqlsh history location using env variable
patch by Stefan Miklosovic; reviewed by Brandon Williams for CASSANDRA-17448
patch by Ekaterina Dimitrova; reviewed by Mick Semb Wever for CASSANDRA-XXX
Co-authored-by: Alex Ott alex.ott@datastax.com
Co-authored-by: Jaroslaw Grabowski jaroslaw.grabowski@datastax.com
2026-03-17 23:01:57 +01:00
Stefan Miklosovic
7b312d4329
Merge branch 'cassandra-4.0' into cassandra-4.1
2025-11-07 13:57:43 +01:00
Ruslan Fomkin
2d7e99f7b9
Document new table name length limit
...
CASSANDRA-20389 implemented limit on table name length of 222
characters. This commit updates the documentation to reflect this.
It also adds an assert in CreateTableValidationTest to ensure that the
documented limit matches the actual constant.
patch by Ruslan Fomkin; reviewed by Brad Schoening, Dmitry Konstantinov for CASSANDRA-20914
2025-11-07 13:54:03 +01:00
Stefan Miklosovic
62150b08d5
Merge branch 'cassandra-4.0' into cassandra-4.1
2025-08-08 08:36:37 +02:00
Serban Teodorescu
f4eb55097e
Add documentation for tombstone threshold metrics
...
patch by Serban Teodorescu; reviewed by Stefan Miklosovic for CASSANDRA-20803
2025-08-08 08:33:51 +02:00
Andy Tolbert
9c308ce2f3
Merge branch 'cassandra-4.0' into cassandra-4.1
...
* cassandra-4.0:
Ensure prepared_statement INSERT timestamp precedes eviction DELETE
2025-05-27 22:22:41 -05:00
Andy Tolbert
d077f69553
Ensure prepared_statement INSERT timestamp precedes eviction DELETE
...
Updates SystemKeyspace.writePreparedStatement to accept a timestamp
associated with the Prepared creation time. Using this timestamp
will ensure that an INSERT into system.prepared_statements will
always precede the timestamp for the same Prepared in
SystemKeyspace.removePreparedStatement.
This is needed because Caffeine 2.9.2 may evict an entry as soon
as it is inserted if the maximum weight of the cache is exceeded
causing the DELETE to be executed before the INSERT.
Additionally, any clusters currently experiencing a leaky
system.prepared_statements table from this bug may struggle to
bounce into a version with this fix as
SystemKeyspace.loadPreparedPreparedStatements currently does
not paginate the query to system.prepared_statements, causing heap
OOMs. To fix this this patch adds pagination at 5000 rows and
aborts loading once the cache size is loaded. This should allow
nodes to come up and delete older prepared statements that may no
longer be used as the cache fills up (which should happen immediately).
This patch does not address the issue of Caffeine immediately evicting
a prepared statement, however it will prevent the
system.prepared_statements table from growing unbounded. For most users
this should be adequate, as the cache should only be filled when there
are erroneously many unique prepared statements. In such a case we can
expect that clients will constantly prepare statements regardless
of whether or not the cache is evicting statements.
patch by Andy Tolbert; reviewed by Berenguer Blasi and Caleb Rackliffe for CASSANDRA-19703
2025-05-27 22:17:15 -05:00
Stefan Miklosovic
93e77182d5
Merge branch 'cassandra-4.0' into cassandra-4.1
2025-04-07 10:12:50 +02:00
pranavchaurasia18
07bbf2cd97
Docs should mention that cassandra.yaml should be secure
...
patch by Pranav Chaurasia; reviewed by Stefan Miklosovic for CASSANDRA-18297
2025-04-07 10:11:37 +02:00
Jackson Fleming
891e65e251
Fix rendering issues in cassandra.yaml for gen-asciidoc target
...
patch by Jackson Fleming; reviewed by Stefan Miklosovic and Brandon Williams for CASSANDRA-19767
2024-07-15 14:49:22 +02:00
Мещеряков Вячеслав Юрьевич
d1f2936ccb
Support legacy plain_text_auth section in credentials file removed unintentionally
...
patch by Мещеряков Вячеслав Юрьевич; reviewed by Stefan Miklosovic and Brad Schoening for CASSANDRA-19498
2024-05-14 10:07:19 +02:00
Brandon Williams
7cbf59e9a1
Merge branch 'cassandra-4.0' into cassandra-4.1
2024-04-03 16:50:43 -05:00
Brandon Williams
f0aa6744d2
Merge branch 'cassandra-3.11' into cassandra-4.0
2024-04-03 16:49:35 -05:00
Tibor Répási
338e4ed618
Docs: deprecate the usage of apt-key and adopt distribution name
...
Patch by Tibor Répási; reviewed by brandonwilliams for CASSANDRA-19110
2024-04-03 16:48:06 -05:00
Mick Semb Wever
cfabddcfb0
Merge branch 'cassandra-4.0' into cassandra-4.1
2023-04-29 19:01:14 +02:00
Mick Semb Wever
1929550fc0
Merge branch 'cassandra-3.11' into cassandra-4.0
2023-04-29 18:24:41 +02:00
Steve Putala
90d0857d34
fix typos in data modeling and getting started docs
...
patch by Steve Putala; reviewed by Mick Semb Wever
ref: https://github.com/apache/cassandra/pull/2280
2023-04-29 18:18:48 +02:00
Lorina Poland
9a3a37c5b3
DOC - Added :stem: latexmath to Data Modeling page to fix display of equations
...
patch by Lorina Poland; reviewed by Erick Ramirez for CASSANDRA-16906
2023-04-07 11:14:33 -07:00
Lorina Poland
68bab31b4d
DOC - Added :stem: latexmath to Data Modeling page to fix display of equations
...
patch by Lorina Poland; reviewed by Erick Ramirez for CASSANDRA-16906
2023-04-07 11:14:15 -07:00
Lorina Poland
83dd275d5d
DOC - Added :stem: latexmath to Data Modeling page to fix display of equations
...
patch by Lorina Poland; reviewed by Erick Ramirez for CASSANDRA-16906
2023-04-05 11:19:31 -07:00
Tibor Répási
af82b941a8
Restore 4.1's doc update for virtual table system_views.clients
...
patch by Tibor Répási; reviewed by Ekaterina Dimitrova, Michael Semb Wever for CASSANDRA-18303, CASSANDRA-17344
2023-03-09 20:55:24 +01:00
Brandon Williams
a479989020
Merge branch 'cassandra-4.0' into cassandra-4.1
2023-01-30 15:49:30 -06:00
Brandon Williams
ef2066fe60
Merge branch 'cassandra-3.11' into cassandra-4.0
2023-01-30 15:49:20 -06:00
Brandon Williams
74b0b2086f
remove walrus operator in gen-nodetool-docs.py
...
Patch by brandonwilliams; reviewed by smiklosovic for CASSANDRA-18207
2023-01-30 15:48:21 -06:00
Brandon Williams
60f5efe453
Merge branch 'cassandra-4.0' into cassandra-4.1
2023-01-25 15:16:46 -06:00
Brandon Williams
c2e9e0d841
Merge branch 'cassandra-3.11' into cassandra-4.0
2023-01-25 15:16:32 -06:00
Brandon Williams
03c86cfcb0
Add concurrency to adoc generation in gen-nodetool-docs.py
...
Patch by brandonwiliams; reviewed by mck for CASSANDRA-18197
2023-01-25 15:15:44 -06:00
Ekaterina Dimitrova
bc16752bd7
Restore Virtual Tables page, and update nav for new pages
...
patch by Ekaterina Dimitrova; reviewed by Mick Semb Wever for CASSANDRA-17976
Co-authored-by: Mick Semb Wever <mck@apache.org>
2022-11-18 15:33:49 -05:00
Mick Semb Wever
162d504be0
Update What's New in 4.1 docs page
...
patch by Mick Semb Wever; reviewed by Ekaterina Dimitrova, Berenguer Blasi, Erick Ramirez for CASSANDRA-17976
2022-11-04 13:39:06 +01:00
Erick Ramirez
a4b90fbc01
WEBSITE - Updated What's New page for 4.1
...
patch by Michael Semb Wever, Erick Ramirez; reviewed by Ekaterina Dimitrova, Berenguer Blasi, Erick Ramirez for CASSANDRA-17976
Co-authored by: Mick Semb Wever <mck@apache.org>
Co-authored by: Erick Ramirez <erickramirezau@apache.org>
2022-11-04 13:39:32 +11:00
Benjamin Lerer
00ad7f2ed9
Merge branch cassandra-4.0 into cassandra-4.1
2022-09-28 15:55:23 +02:00
Benjamin Lerer
46d5ef4148
Merge branch cassandra-3.11 into cassandra-4.0
2022-09-28 15:01:46 +02:00
Benjamin Lerer
0894fd97a2
Adds missing changes to CQL.textile
...
Patch by Benjamin Lerer; review by Brandon Williams for CASSANDRA-17709
2022-09-28 14:42:51 +02:00
Ekaterina Dimitrova
4c85c6a403
key_cache_save_period, row_cache_save_period, counter_cache_save_period are not deprecated and we should not emit deprecation warning on startup for them
...
Patch by Ekaterina Dimitrova; reviewed by Stefan Miklosovic for CASSANDRA-17904
2022-09-19 18:10:36 -04:00
Francisco Guerrero
83c169ec9e
Fix BulkLoader to load entireSSTableThrottle and entireSSTableInterDcThrottle
...
patch by Francisco Guerrero; reviewed by Ekaterina Dimitrova, Yifan Cai for CASSANDRA-17677
2022-08-19 14:19:53 -07:00
Ekaterina Dimitrova
43036ecadd
Update docs and NEWS.txt; config docs are reachable now on the website
...
patch by Ekaterina Dimitrova; reviewed by Caleb Rackliffe for CASSANDRA-17778
2022-08-17 18:28:01 -04:00
Mick Semb Wever
e02923305c
Merge branch 'cassandra-4.0' into cassandra-4.1
2022-08-16 21:48:01 +02:00
Mick Semb Wever
5fafa709fb
Merge branch 'cassandra-3.11' into cassandra-4.0
2022-08-16 21:46:36 +02:00
Mick Semb Wever
b492341eb5
Move deb/rpm repositories from dist/downloads .a.o to apache.jfrog.io
...
patch by Mick Semb Wever; reviewed by Brandon Williams for CASSANDRA-17748
2022-08-16 21:45:23 +02:00
Ekaterina Dimitrova
a7d7708976
Merge branch 'cassandra-4.0' into cassandra-4.1
2022-08-08 13:02:48 -04:00
Ekaterina Dimitrova
e5e13c02cc
Fix default value for compaction_throughput_mb_per_sec in Config class to match the one in cassandra.yaml
...
patch by Ekaterina Dimimtrova; reviewed by Francisco Guerrero, Michael Semb Wever for CASSANDRA-17790
2022-08-08 12:45:36 -04:00
Mick Semb Wever
c2148980ce
Remove read_repair table option from docs, and restore read_repair_chance docs
...
patch by Milan Krisko; reviewed by Mick Semb Wever for CASSANDRA-17727
2022-07-16 12:57:38 +02:00
Mick Semb Wever
31eb6852e1
Merge branch 'cassandra-4.0' into cassandra-4.1
2022-07-08 12:25:21 +02:00
Mick Semb Wever
5072bde5fb
Merge branch 'cassandra-3.11' into cassandra-4.0
2022-07-08 12:24:22 +02:00
Andrew Hogg
ef6bce5084
Removing superfluous bullet points in FAQ page
...
patch by Andrew Hogg; reviewed by Mick Semb Wever for CASSANDRA-17275
2022-07-08 11:43:49 +02:00
Bereng
f77a7a29e8
Update the CQL version for the 4.1 release
...
Patch by Berenguer Blasi; reviewed by Benjamin Lerer for CASSANDRA-17570
2022-07-08 09:15:27 +02:00
Andrés de la Peña
33730d9d06
Merge branch 'cassandra-4.0' into cassandra-4.1
2022-06-27 15:15:21 +01:00
Andrés de la Peña
90e2502c6c
Merge branch 'cassandra-3.11' into cassandra-4.0
2022-06-27 15:14:35 +01:00
Andrés de la Peña
bc8a260471
Merge branch 'cassandra-3.0' into cassandra-3.11
2022-06-27 15:13:45 +01:00