Menu
Apache Cassandra 2.0 brings the old school SQL functionality

Apache Cassandra 2.0 brings the old school SQL functionality

Relational database administrators will recognize Cassandra's new triggers, lightweight transactions and SQL-like query language

The Apache Cassandra NoSQL distributed data store continues to accumulate features that mimic traditional databases, with the newly released version 2 of the open source software offering triggers, lightweight transactions and an updated query language similar to SQL.

"A lot of our development is driven [to dissolve] the pain points that our users are feeling the most distress over," said Cassandra vice president Jonathan Ellis, about the release of Cassandra 2.0, which is managed under the Apache Software Foundation.

First created for Facebook, Cassandra is a NoSQL distributed data store easily able to handle large amounts of writes and reads, a quality that has won favor with both high volume Internet services as well as with those firms executing big data-styled analysis.

Organizations such as Adobe, CERN, Comcast, eBay, GoDaddy, Hewlett-Packard, IBM, Instagram, Netflix, and Sony all use the software.

Many of the changes in the new version offer capabilities long enjoyed by relational databases, capabilities that could make Cassandra suitable as a replacement for a traditional database, at least for some use cases.

Perhaps the most notable feature is the support for lightweight transactions, which guarantees that any one data store operation isn't interrupted by any other operation. "We're the first eventually consistent database to implement lightweight transactions," Ellis said.

Long a feature of traditional SQL databases, lightweight transactions assure that, for instance, two accounts with the same user name can't be created at the same time. It essentially locks data that is being read or updated by an operation so another operation doesn't change the data mid-transaction, or reads data that is about to be rendered outdated.

The Cassandra project team found that the lack of support for lightweight transactions in Cassandra had motivated some users to run two databases instead of one.

Such users had split off the most highly consulted portions of their relational databases to run under Cassandra for speedier performance. But they didn't migrate their entire databases to Cassandra because of the concerns around lock management. Others used an external locking mechanism such as Apache ZooKeeper, which brought a new set of complexities.

The new version of Cassandra also reintroduces an old database concept called triggers, a form of stored procedures. Two decades back, triggers had been used with traditional databases to centralize calculations in the database itself, in order to improve consistency of results across different applications that used the database.

Triggers lost favor over time, however, because their operation could slow operations of a database. Thus, many moved their calculations out to application servers, where they could be more easily scaled.

Cassandra has an advantage over relational databases, however, in that it is a distributed database, which means executing triggers no longer has to be a performance bottleneck; if performance slows, another Cassandra node can be added.

"So when it makes sense to have logic closer to the data, you can do that. It has come full circle to where that makes sense again," Ellis said.

The development team also endeavored to ease the jobs of developers building their applications on top of Cassandra, by replacing a notoriously difficult to use API (Application Programming Interface) with the Cassandra Query Language (CQL), which resembles the widely understood SQL used for relational databases.

Cassandra has offered CQL since January, but the 2.0 release has corrected some minor issues, making it ready for full production use.

With the CQL, "we're comfortable with telling people that this is what you should be building your applications with," Ellis said. "You don't need to use that old API that everyone complained was too difficult to use. You can use CQL. The learning curve is dramatically lower."

Also, as with any major release, Cassandra 2.0 sheds a lot of obsolete functionality. Upgrading to version 2.0 requires an old version of at least 1.2, which allowed project keepers to clean up old code and disregard little used or problematic code.

The updated software also includes a number of tweaks to speed performance.

It includes a new method of compaction, one that prevents read performance from suffering when large amounts of material are being written to disk. Message processing latencies have been reduced thanks to an implementation of the Disruptor high performance inter-thread messaging library. The number of timeouts can be reduced thanks to a new technique of sending redundant requests to other nodes, should too much time pass before the original request is fulfilled.

Joab Jackson covers enterprise software and general technology breaking news for The IDG News Service. Follow Joab on Twitter at @Joab_Jackson. Joab's e-mail address is Joab_Jackson@idg.com

Join the CIO Australia group on LinkedIn. The group is open to CIOs, IT Directors, COOs, CTOs and senior IT managers.

Join the newsletter!

Or

Sign up to gain exclusive access to email subscriptions, event invitations, competitions, giveaways, and much more.

Membership is free, and your security and privacy remain protected. View our privacy policy before signing up.

Error: Please check your email address.

Tags open sourcedatabasessoftwareapplicationsApache Software Foundation

More about Adobe SystemsApacheApache Software FoundationCERNComcast CableeBayFacebookHewlett-Packard AustraliaIBM AustraliaIDGNetflixSony

Show Comments
[]