mirror of https://github.com/apache/cassandra
Include SSTable path in compacting large row message
Patch by Sankalp Kohli; Reviewed by Nate McCall for CASSANDRA-12384
This commit is contained in:
parent
4ba91cdadd
commit
8b04ec9088
|
|
@ -1,4 +1,5 @@
|
|||
3.0.10
|
||||
* Include SSTable filename in compacting large row message (CASSANDRA-12384)
|
||||
* Fix potential socket leak (CASSANDRA-12329, CASSANDRA-12330)
|
||||
* Fix ViewTest.testCompaction (CASSANDRA-12789)
|
||||
* Improve avg aggregate functions (CASSANDRA-12417)
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ public class BigTableWriter extends SSTableWriter
|
|||
if (rowSize > DatabaseDescriptor.getCompactionLargePartitionWarningThreshold())
|
||||
{
|
||||
String keyString = metadata.getKeyValidator().getString(key.getKey());
|
||||
logger.warn("Writing large partition {}/{}:{} ({} bytes)", metadata.ksName, metadata.cfName, keyString, rowSize);
|
||||
logger.warn("Writing large partition {}/{}:{} ({} bytes to sstable {}) ", metadata.ksName, metadata.cfName, keyString, rowSize, getFilename());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue