Can someone give a head-to-head comparison between them?
We are looking for a suitable storage engine for our weblog history data. We looked at Bigtable's paper and understand it is suitable to us well.
However, I also understand that Document-oriented-DB such as MongoDB seems to provide a little more powerful schema power -- i.e, it c...
Hi all,
Lately I have been reading a lot of blog topics about big sites(facebook, twitter, digg, reddit to name a few) using cassandra as their datastore instead of MysqL.
I would like to gather a list of resources to learn using cassandra. Hopefully some videos or podcasts explaining how to use cassandra.
My list
Twissandra - Twiss...
Assume the following data set:
id age city phone
== === ==== =====
alfred 30 london 3281283
jeff 43 sydney 2342734
joe 29 tokyo 1283881
kelly 54 new york 2394929
molly 20 london 1823881
rob 39 sydney 4928381
To get the following result set ..
id age pho...
How can you pull some # of random keys from a Cassandra supercolumn?
...
I guess the title says it all.
I am looking at whether Cassandra might be an option for a distributed database store for our server software.
The server software is written in Delphi, but I'm having difficulty locating descriptions of how to access a Cassandra database from Delphi.
Any help & suggestions welcome!
...
I'm working on a web project, which have to process so many client
requests. So I am considering to use Cassandra and tornado. Tornado
seems to have a build-in client(tornado.httpclient.AsyncHTTPClient),
which can do http Non-Blocking request. But, Cassandra uses Thrift protocol. Using Thrift, Tornado seems to be blocked while quering to...
Hello,
As I had written in title, I am trying to learn Spring 3.0 (I already know Django, Pylons and few simpler MVC frameworks) and try to use Cassandra as a backend for my web application.
Are there any real world examples of doing this? Or maybe some tutorials? I know about the existence of documentation of both technologies, yet I...
The casandra database seems to be very fast,
now I wanted to use it in my project made with Zend Framework.
Is there a adapter?
...
Hello guys!
I hope there's someone who can help me suggest a suitable data model to be implemented using nosql database Apache Cassandra. More of than I need it to work under high loads and large amounts of data.
Simplified I have 3 types of objects:
Product
Tag
ProductTag
Product:
key - string key
name - string
.... - some other...
I've been evaluating technology stack for developing a social network based application. Below are the stack I think could well suitable for this application type of application:
GUI -- ASP.NET MVC, Flash (Flex)
Business Services -- Thrift based services
One of the advantage of using Thrift is to solve scaling problems that will come i...
Hi guys,
I have a problem, I would like to build logging system which will be using timeuuid type as a column name which will allow me ask for it later.
Since for range queries order by time I need to use timeuuid type I would like to ask you how can I specify range queries for timeuuid column names if timeuuid is every time unique and...
When using the Perl module Net::Cassandra::Easy to interface with Cassandra I use the following code to read colums col[123] from rows row[123] in the column-family Standard1:
my $cassandra = Net::Cassandra::Easy->new(keyspace => 'Keyspace1', server => 'localhost');
$cassandra->connect();
my $result = $cassandra->get(['row1', 'row2', 'r...
When using Perl's Net::Cassandra::Easy the following code will retrieve columns col[1-3] from rows row[1-3]:
$result = $cassandra->get(['row1', 'row2', 'row3'], family => 'Standard1', byname => ['col1', 'col2', 'col3');
The corresponding SQL would be:
SELECT col1, col2, col3 FROM rows WHERE id IN ('row1', 'row2', 'row3');
Suppose i...
The following is a complete catalogue of all log messages generated by Cassandra 0.6 when stress-testing a Cassandra installation over an extended period of time:
AntiEntropyService: Sending AEService tree for (,) to: []
CassandraDaemon: Binding thrift service to localhost/N.N.N.N:N
CassandraDaemon: Cassandra starting up...
ColumnFamil...
The Cassandra command-line utility sstablekeys can be used to extract all defined row keys from a physical SSTABLE file:
sstablekeys .../cassandra/data/Keyspace1/Standard1-N-Data.db
Does the Cassandra API support retrieval of all defined keys? If so, how?
I'm looking for the Cassandra analogy to SELECT id FROM table;.
...
I'm getting NullPointerException:s when using sstable2json in Cassandra 0.6.0-beta3:
$ bin/sstable2json .../cassandra/data/system/LocationInfo-1-Data.db
Exception in thread "main" java.lang.NullPointerException
at java.util.Arrays$ArrayList.<init>(Arrays.java:3357)
at java.util.Arrays.asList(Arrays.java:3343)
at org.apache.c...
Anyone out there using Cassandra (http://cassandra.apache.org/) with PHP? What PHP module would you guys recommend to communicate between PHP and Cassandra?
...
Say I have "user". It's the key. And I need to keep "user count".
I am planning to have record with key "user" and value "0" to "9999+ ;-)" (as many as I'll have).
What problems I will drive in if I use Cassandra, HBase or MySQL for that?
Say, I have thousand of new updates to this "user" key, where I need to increment the value.
Am I i...
Since Cassandra doesn't have MapReduce built in yet (I think it's coming in 0.7), is it dumb to try and MapReduce with my Python client or should I just use CouchDB or Mongo or something?
The application is stats collection, so I need to be able to sum values with grouping to increment counters. I'm not, but pretend I'm making Google an...
I've run into a really strange UTF-8 problem with Net::Cassandra::Easy (which is built upon Net::Cassandra): UTF-8 strings written to Cassandra are garbled upon retrieval.
The following code shows the problem:
use strict;
use utf8;
use warnings;
use Net::Cassandra::Easy;
binmode(STDOUT, ":utf8");
my $key = "some_key";
my $column = "s...