Home / Companies / DataStax / Blog / June 2011

June 2011 Summaries

2 posts from DataStax

Filter
Month: Year:
Post Summaries Back to Blog
DataStax has released Brisk 1.0 Beta 2, an open-source Hadoop and Hive distribution that utilizes Apache Cassandra for its core services and storage. The new features added in this release include Apache Pig Integration, Job Tracker Failover, Snappy Compression Codec, automatic Cassandra Column Families to Hive Tables mapping, and a second HDFS layer in CassandraFS for long-term data storage. Additionally, Brisk 1.0 Beta 2 includes major fixes such as removing multiple slf4j warnings, using batchMutate instead of insert in HiveCassandraOutputFormat, improving performance of hadoop fs -ls, and addressing compaction issue causing secondary index corruption.
Jun 20, 2011 346 words in the original blog post.
The text discusses the introduction of distributed counters in Cassandra 0.8.0, which allows for efficient counting and summing operations. Prior to this version, there was no simple way to count or sum things in Cassandra. The new feature provides atomic increment operation in a single column value without any of the problems associated with previous solutions. To create a column family holding counters, users need to indicate that the default_validation_class is CounterColumnType. Using counters involves straightforward operations such as incr, decr, and get. The support for counters in CQL was added for the 0.8.1 release. However, counter increments are slightly slower than regular writes due to the read operation involved in replication. Additionally, handling the loss of an SSTable for a counter column family requires removing all data for that column family and restarting the node with specific options before running repair.
Jun 17, 2011 760 words in the original blog post.