Skip to content

Commit

Permalink
update CHANGELOG, NEWS, and thrift version string. patch by jbellis
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/trunk@904536 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jbellis committed Jan 29, 2010
1 parent 979a022 commit 3bf9c81
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Expand Up @@ -15,6 +15,9 @@ dev
* 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
Expand Down
42 changes: 33 additions & 9 deletions NEWS.txt
@@ -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
=====
Expand Down
2 changes: 1 addition & 1 deletion interface/cassandra.thrift
Expand Up @@ -46,7 +46,7 @@ namespace rb CassandraThrift
# 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
Expand Down
Expand Up @@ -21,6 +21,6 @@

public class Constants {

public static final String VERSION = "1.0.0";
public static final String VERSION = "2.0.0";

}

0 comments on commit 3bf9c81

Please sign in to comment.