You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2010/01/29 17:01:59 UTC

svn commit: r904536 - in /incubator/cassandra/trunk: CHANGES.txt NEWS.txt interface/cassandra.thrift interface/gen-java/org/apache/cassandra/service/Constants.java

Author: jbellis
Date: Fri Jan 29 16:01:59 2010
New Revision: 904536

URL: http://svn.apache.org/viewvc?rev=904536&view=rev
Log:
update CHANGELOG, NEWS, and thrift version string.  patch by jbellis

Modified:
    incubator/cassandra/trunk/CHANGES.txt
    incubator/cassandra/trunk/NEWS.txt
    incubator/cassandra/trunk/interface/cassandra.thrift
    incubator/cassandra/trunk/interface/gen-java/org/apache/cassandra/service/Constants.java

Modified: incubator/cassandra/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/CHANGES.txt?rev=904536&r1=904535&r2=904536&view=diff
==============================================================================
--- incubator/cassandra/trunk/CHANGES.txt (original)
+++ incubator/cassandra/trunk/CHANGES.txt Fri Jan 29 16:01:59 2010
@@ -15,6 +15,9 @@
  * add bin/sstablekeys (CASSNADRA-679)
  * add ConsistencyLevel.ANY (CASSANDRA-687)
  * make removetoken remove nodes from gossip entirely (CASSANDRA-644)
+ * add ability to set cache sizes at runtime (CASSANDRA-708)
+ * report latency and cache hit rate statistics with lifetime totals
+   instead of average over the last minute (CASSANDRA-702)
 
 
 0.5.1

Modified: incubator/cassandra/trunk/NEWS.txt
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/NEWS.txt?rev=904536&r1=904535&r2=904536&view=diff
==============================================================================
--- incubator/cassandra/trunk/NEWS.txt (original)
+++ incubator/cassandra/trunk/NEWS.txt Fri Jan 29 16:01:59 2010
@@ -1,14 +1,38 @@
 0.6.0
 =====
-0. Configuraton:
-     - MemtableSizeInMB has been replaced by MemtableThroughputInMB which
-       triggers a memtable flush when the specified amount of data has 
-       been written, including overwrites.
-     - MemtableObjectCountInMillions has been replaced by the
-       MemtableOperationsInMillions directive which causes a memtable flush
-       to occur after the specified number of operations.
-     - Like MemtableSizeInMB, BinaryMemtableSizeInMB has been replaced by
-       BinaryMemtableThroughputInMB.
+
+Features
+--------
+    - row caching added; configure with the RowsCached attribute
+      in ColumnFamily definition
+
+Configuraton
+------------
+    - MemtableSizeInMB has been replaced by MemtableThroughputInMB which
+      triggers a memtable flush when the specified amount of data has 
+      been written, including overwrites.
+    - MemtableObjectCountInMillions has been replaced by the
+      MemtableOperationsInMillions directive which causes a memtable flush
+      to occur after the specified number of operations.
+    - Like MemtableSizeInMB, BinaryMemtableSizeInMB has been replaced by
+      BinaryMemtableThroughputInMB.
+
+Thrift API
+----------
+    - removed deprecated get_key_range Thrift method
+
+JMX metrics
+-----------
+    - read and write statistics are reported as lifetime totals,
+      instead of averages over the last minute.
+    - compaction JMX metrics are moved to
+      org.apache.cassandra.db.CompactionManager.  PendingTasks is now
+      a much better estimate of compactions remaining, and the
+      progress of the current compaction has been added.
+    - cache hit rate statistics are now available from JMX under
+      org.apache.cassandra.db.Caches
+
+
 
 0.5.0
 =====

Modified: incubator/cassandra/trunk/interface/cassandra.thrift
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/interface/cassandra.thrift?rev=904536&r1=904535&r2=904536&view=diff
==============================================================================
--- incubator/cassandra/trunk/interface/cassandra.thrift (original)
+++ incubator/cassandra/trunk/interface/cassandra.thrift Fri Jan 29 16:01:59 2010
@@ -46,7 +46,7 @@
 #           for every edit that doesn't result in a change to major/minor.
 #
 # See the Semantic Versioning Specification (SemVer) http://semver.org.
-const string VERSION = "1.0.0"
+const string VERSION = "2.0.0"
 
 #
 # data structures

Modified: incubator/cassandra/trunk/interface/gen-java/org/apache/cassandra/service/Constants.java
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/interface/gen-java/org/apache/cassandra/service/Constants.java?rev=904536&r1=904535&r2=904536&view=diff
==============================================================================
--- incubator/cassandra/trunk/interface/gen-java/org/apache/cassandra/service/Constants.java (original)
+++ incubator/cassandra/trunk/interface/gen-java/org/apache/cassandra/service/Constants.java Fri Jan 29 16:01:59 2010
@@ -21,6 +21,6 @@
 
 public class Constants {
 
-  public static final String VERSION = "1.0.0";
+  public static final String VERSION = "2.0.0";
 
 }