Commit Graph

27401 Commits

Author SHA1 Message Date
Jacek Lewandowski 955cf156c8 Merge branch 'cassandra-3.0' into cassandra-3.11
* cassandra-3.0:
  Fix RepairJob unnecessarily reporting cancellation error
2023-03-21 10:08:12 +01:00
Jacek Lewandowski f6a04ca81f Fix RepairJob unnecessarily reporting cancellation error
patch by Jacek Lewandowski; reviewed by Brandon Williams for CASSANDRA-17701
2023-03-21 10:04:24 +01:00
Jacek Lewandowski 5104008db9 Merge branch 'cassandra-3.11' into cassandra-4.0
* cassandra-3.11:
  Fix the ordering of sstables when running sstableupgrade tool
2023-03-14 15:16:22 +01:00
Jacek Lewandowski 58d06d34ab Merge branch 'cassandra-3.0' into cassandra-3.11
* cassandra-3.0:
  Fix the ordering of sstables when running sstableupgrade tool
2023-03-14 15:14:31 +01:00
Claude Warren 8df69c8016 Fix the ordering of sstables when running sstableupgrade tool
patch by Claude Warren; reviewed by Jacek Lewandowski and Stefan Miklosovic for CASSANDRA-18143
2023-03-14 14:52:53 +01:00
Jaroslaw Grabowski 3cfb222122 Fix BufferPool.memoryInUse counter
The counter was incorrectly decremented by the size of the unused portion of the provided buffer.
It is now decremented by the number of bytes actually returned to the pool (that may be different than "size"). The number is calculated as a difference between original and resulting buffer capacity.

patch by Jaroslaw Grabowski <jtgrabowski>, reviewed by Jacek Lewandowski <jacek-lewandowski> for CASSANDRA-18311
2023-03-13 09:51:33 +01:00
Andrés de la Peña 2aedb58123 Merge branch 'cassandra-3.11' into cassandra-4.0 2023-03-10 11:51:25 +00:00
Andrés de la Peña 4b3cb0a772 Merge branch 'cassandra-3.0' into cassandra-3.11 2023-03-10 11:50:04 +00:00
Andrés de la Peña 02048cffea Remove -l / -m / -h designation and have two options: free or paid tier circle config
patch by Andrés de la Peña; reviewed by Ekaterina Dimitrova and Josh McKenzie for CASSANDRA-18012
2023-03-10 11:48:31 +00:00
Brandon Williams a874e02eec Merge branch 'cassandra-3.11' into cassandra-4.0 2023-03-09 10:03:14 -06:00
Brandon Williams 326b5aceb1 Merge branch 'cassandra-3.0' into cassandra-3.11 2023-03-09 10:02:21 -06:00
Brandon Williams be574fc34b Fix default file system error handler for disk_failure_policy die
Patch by Runtian Liu; reviewed by brandonwilliams and smiklosovic for
CASSANDRA-18294
2023-03-09 10:00:49 -06:00
Benedict Elliott Smith 40f9ca60f1 Improve memtable allocator accounting when updating AtomicBTreePartition
patch by Benedict Elliott Smith; reviewed by Benjamin Lerer, Jon Meredith for CASSANDRA-18125
2023-03-07 10:28:32 -07:00
Brandon Williams ccede05bf5 Merge branch 'cassandra-3.11' into cassandra-4.0 2023-02-24 12:32:18 -06:00
Brandon Williams 4b84a8d7ac Merge branch 'cassandra-3.0' into cassandra-3.11 2023-02-24 12:29:37 -06:00
Brandon Williams 5374f56a0a Fix typo in suppressions 2023-02-24 12:28:59 -06:00
Brandon Williams 1d532bce7b Merge branch 'cassandra-3.11' into cassandra-4.0 2023-02-22 10:25:08 -06:00
Brandon Williams a5b05cea5e Merge branch 'cassandra-3.0' into cassandra-3.11 2023-02-22 10:24:22 -06:00
Brandon Williams eb36a86a72 Removing trailing year from copyright.
Patch by brandonwilliams; reviewed by mck for CASSANDRA-18261
2023-02-22 10:23:47 -06:00
Jon Meredith 3a4fff38b5 Ninja fix CASSANDRA-18242 - was not generating IDEA workspace for J11 correctly 2023-02-16 15:05:37 -07:00
Stefan Miklosovic fcc16f5f2b
Update zstd-jni to version 1.5.4-1
patch by Stefan Miklosovic; reviewed by Brandon Williams for CASSANDRA-18259
2023-02-15 13:37:01 +01:00
Stefan Miklosovic 7b079503eb
Increment version to 4.0.9 2023-02-15 10:12:15 +01:00
Jon Meredith 4e0aad3319 Split and order IDEA workspace template VM_PARAMETERS
patch by Jon Meredith; reviewed by David Capwell for CASSANDRA-18242
2023-02-13 17:43:21 -07:00
Ekaterina Dimitrova cb4f90542d Merge branch 'cassandra-3.11' into cassandra-4.0 2023-02-11 14:36:37 -05:00
Ekaterina Dimitrova 788b4eca2d Merge branch 'cassandra-3.0' into cassandra-3.11 2023-02-11 14:34:17 -05:00
Ekaterina Dimitrova 476d31bce2 Add Dtest-large and cqlshlib tests to CircleCI; Fix num tokens in CircleCI tests to match the default value; Fix CircleCI Python tests split bug; Fix CircleCI long unit tests
patch by Ekaterina Dimitrova; reviewed by Andres de la Pena for CASSANDRA-18001
2023-02-11 14:30:24 -05:00
Stefan Miklosovic 32c56df067
Prepare debian changelog for 4.0.8 2023-02-07 22:35:13 +01:00
Stefan Miklosovic b8494a8275
Log warning message on aggregation queries without key or on multiple keys
patch by Stefan Miklosovic; reviewed by Brandon Williams for CASSANDRA-18219
2023-02-07 15:47:36 +01:00
nvharikrishna b74c86404a
Fix the output of FQL dump tool to properly separate entries
patch by N V Harikrishna; reviewed by Stefan Miklosovic and Brandon Williams for CASSANDRA-18215
2023-02-07 14:34:23 +01:00
yongj 0c58fbb8dd Add cache type information for maximum memory usage warning message
Patch by Yong Jiang; reviewed by brandonwilliams and smiklosovic for
CASSANDRA-18184
2023-02-02 11:45:52 -06:00
nvharikrishna ba434b8231
Fix NPE in fqltool dump on null value
If fullquerylog is enabled and a prepared query executed with null value
binded, then fqltool dump is running into NPE. Checking value for null before
wrapping it.

patch by N V Harikrishna; reviewed by Stefan Miklosovic and Brandon Williams for CASSANDRA-18113
2023-02-01 14:46:44 +01:00
Jacek Lewandowski 9bf128aaa3 Improve unit tests performance
- Don't flush schema on every schema update in unit tests
- Use unix command to delete test data
- Shorten teardown
- Stable processor count presented by JMX on Jenkins, CircleCI and local

Patch by <jacek-lewandowski>, reviewed by <michaelsembwever> and <josh-mckenzie> for CASSANDRA-17427
2023-02-01 09:40:50 +01: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 f8ad33ed4e Merge branch 'cassandra-3.11' into cassandra-4.0 2023-01-30 07:30:32 -06:00
Brandon Williams 48d4214f6c Merge branch 'cassandra-3.0' into cassandra-3.11 2023-01-30 07:29:48 -06:00
Brandon Williams 89266aadde Suppress CVE-2022-41915
Patch by brandonwilliams; reviewed by bereng for CASSANDRA-18147
2023-01-30 07:29:14 -06:00
Brandon Williams fa18ea1852 Suppress CVE-2022-41915
Patch by brandonwilliams; reviewed by bereng for CASSANDRA-18147
2023-01-30 07:27:53 -06:00
Brandon Williams 0d0c5695df Merge branch 'cassandra-3.11' into cassandra-4.0 2023-01-30 07:26:16 -06:00
Brandon Williams 5ac75323cd Merge branch 'cassandra-3.0' into cassandra-3.11 2023-01-30 07:24:41 -06:00
Brandon Williams 7ad693581b Suppress CVE-2022-41915
Patch by brandonwilliams; reviewed by bereng for CASSANDRA-18147
2023-01-30 07:23:21 -06:00
Maciej Sokol 0b7e3a8ee7 Connect to listen address when own broadcast address is requested
Patch by Maciej Sokol; reviewed by brandonwilliams and smiklosovic for
CASSANDRA-18200
2023-01-30 07:04:41 -06:00
Stefan Miklosovic 2a8e1972fd
Merge branch 'cassandra-3.11' into cassandra-4.0 2023-01-28 16:54:39 +01:00
Stefan Miklosovic 8076f37c06
Merge branch 'cassandra-3.0' into cassandra-3.11 2023-01-28 16:33:36 +01:00
Stefan Miklosovic 4c8e9097bd
Introduce check for names of test classes
patch by Stefan Miklosovic; reviewed by Berenguer Blasi and David Capwell for CASSANDRA-17943
2023-01-28 16:18:51 +01: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
Brandon Williams 299ead7534 Merge branch 'cassandra-3.11' into cassandra-4.0 2023-01-24 12:26:12 -06:00
Brandon Williams e9aa5ec514 Merge branch 'cassandra-3.0' into cassandra-3.11 2023-01-24 11:59:53 -06:00
Brandon Williams 9a64be3234 Suppress CVE-2021-1471, CVE-2021-3064, CVE-2021-4235 2023-01-24 11:58:21 -06:00