mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
333ebd67a0
|
|
@ -118,6 +118,7 @@ Merged from 3.0:
|
||||||
for a table that's in system_schema.tables (CASSANDRA-13180)
|
for a table that's in system_schema.tables (CASSANDRA-13180)
|
||||||
* Nodetool upgradesstables/scrub/compact ignores system tables (CASSANDRA-13410)
|
* Nodetool upgradesstables/scrub/compact ignores system tables (CASSANDRA-13410)
|
||||||
Merged from 2.2:
|
Merged from 2.2:
|
||||||
|
* Fix weightedSize() for row-cache reported by JMX and NodeTool (CASSANDRA-13393)
|
||||||
* Fix JVM metric names (CASSANDRA-13103)
|
* Fix JVM metric names (CASSANDRA-13103)
|
||||||
* Honor truststore-password parameter in cassandra-stress (CASSANDRA-12773)
|
* Honor truststore-password parameter in cassandra-stress (CASSANDRA-12773)
|
||||||
* Discard in-flight shadow round responses (CASSANDRA-12653)
|
* Discard in-flight shadow round responses (CASSANDRA-12653)
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ public class OHCProvider implements CacheProvider<RowCacheKey, IRowCacheEntry>
|
||||||
|
|
||||||
public long weightedSize()
|
public long weightedSize()
|
||||||
{
|
{
|
||||||
return ohCache.size();
|
return ohCache.memUsed();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clear()
|
public void clear()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue