youtube image
From YouTube: C* Summit EU 2013: Being Closer to Cassandra at Ok.ru

Description

Speaker: Oleg Anastasyev, Lead Platform Developer at Odnoklassniki.ru
Slides: http://www.slideshare.net/planetcassandra/c-summit-eu-2013-being-closer-to-cassandra-at-okru
Odnoklassniki uses cassandra for its business data, which doesn't fit into RAM. This data is typically fast growing, frequently accessed by our users and must be always available, because it constitute our primary business as a social network. The way we use Cassandra is somewhat unusual - we don't use thrift or Netty based native protocol to communicate with Cassandra nodes remotely. Instead, we co-locate Cassandra nodes in the same JVM with business service logic, exposing not generic data manipulation, but business level interface remotely. This way, we avoid extra network roundtrips within a single business transaction and use internal calls to Cassandra classes to get information faster. Also, this helps us to create many small hacks on Cassandra's internals, making huge gains on efficiency and ease of distributed server development.