You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by al...@apache.org on 2015/03/22 12:15:08 UTC

cassandra git commit: Stop logging range tombstones when exceeding the threshold

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.0 37eb2a0e2 -> c6ba2bedd


Stop logging range tombstones when exceeding the threshold

patch by Aleksey Yeschenko; reviewed by Sam Tunnicliffe for
CASSANDRA-8559


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/c6ba2bed
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/c6ba2bed
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/c6ba2bed

Branch: refs/heads/cassandra-2.0
Commit: c6ba2beddc5a7170ee449b43ce4a41a14f312791
Parents: 37eb2a0
Author: Aleksey Yeschenko <al...@apache.org>
Authored: Sun Mar 22 14:14:08 2015 +0300
Committer: Aleksey Yeschenko <al...@apache.org>
Committed: Sun Mar 22 14:14:08 2015 +0300

----------------------------------------------------------------------
 CHANGES.txt                                                   | 2 ++
 src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/c6ba2bed/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 25fbd74..863f145 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,6 @@
 2.0.14:
+ * Stop logging range tombstones when exceeding the threshold
+   (CASSANDRA-8559)
  * Fix NullPointerException when nodetool getendpoints is run
    against invalid keyspaces or tables (CASSANDRA-8950)
  * Allow specifying the tmp dir (CASSANDRA-7712)

http://git-wip-us.apache.org/repos/asf/cassandra/blob/c6ba2bed/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java b/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
index 858578f..ad1a92b 100644
--- a/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
+++ b/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
@@ -228,8 +228,8 @@ public class SliceQueryFilter implements IDiskAtomFilter
                 sb.append(']');
             }
 
-            logger.warn("Read {} live and {} tombstoned cells in {}.{} (see tombstone_warn_threshold). {} columns was requested, slices={}, delInfo={}",
-                        columnCounter.live(), columnCounter.ignored(), container.metadata().ksName, container.metadata().cfName, count, sb, container.deletionInfo());
+            logger.warn("Read {} live and {} tombstoned cells in {}.{} (see tombstone_warn_threshold). {} columns was requested, slices={}",
+                        columnCounter.live(), columnCounter.ignored(), container.metadata().ksName, container.metadata().cfName, count, sb);
         }
     }