5,284 reputation
43482
bio website linkedin.com/pub/chris-dutrow/…
location United States
age 32
visits member for 4 years, 1 month
seen 2 hours ago
stats profile views 806

1d
asked Is there a way to find out of an INSERT/UPDATE command in Cassandra resulted in a new row being created or an old row being updated?
1d
accepted Does HBase support indexing on list properties and non-equality operators?
1d
revised RESTful idempotence
edited body
May
15
accepted Cassandra - search by primary key using an arbitrary subset of the primary key columns
May
15
comment Cassandra - search by primary key using an arbitrary subset of the primary key columns
Ah ok, so using an arbitrary subset that is not in order could result on performance that is not O(log n) time?
May
15
asked Cassandra - search by primary key using an arbitrary subset of the primary key columns
May
14
comment Difference between UPDATE and INSERT in Cassandra?
Thanks so much, this really clarifies things!
May
14
accepted Difference between UPDATE and INSERT in Cassandra?
May
13
asked Difference between UPDATE and INSERT in Cassandra?
May
13
comment How does a Python set([]) check if two objects are equal? What methods does an object need to define to customise this?
Had this same problem. I assume you are manipulating small amounts of data inside your code. This is probably not a good candidate for the use of a database. I remember being able to create a set and define a comparator function in C++ and I believe Java as well, however it doesn't look like you can do this with dictionary objects in Python. Seems like someone may have written a "set" library in Python that can do this, but I'm not aware of one.
May
13
asked Use dicts as items in a set in Python
May
13
comment Can a primary key in Cassandra contain a collection column?
Perhaps the source of all the confusion is that traditional databases like PostgreSQL handle all of the indexing behind the scenes. It sounds like Cassandra offers only very low-level indexing and querying capabilities (a sorted key-value store) and excels at handling the server clustering. If using Cassandra for higher-level querying, we would need to have to build an indexing engine on top of it ourselves?
May
13
comment Can a primary key in Cassandra contain a collection column?
Hey Theo, yes, looking back over the question, having the e-mails there does not make sense. At the time I was very confused about how to do queries against Cassandra and just grasping the idea that "queries" are always done against the primary key. The idea was to be able to search for a person based on their first name and one of their e-mails (not a real use case). In reality, a different row would have to be written to an index table for each single_email-username variant.
May
12
comment Can a primary key in Cassandra contain a collection column?
Hey Theo, just want to thank you for your answer. I was very confused that I was able to do this in Big Table, but not in Cassandra, which is supposed to be based off of Big Table. We now are writing a layer on top of Cassandra to create the index table. You don't by any chance know of any databases (other than GAE's Big Table) that take care of this abstraction so we don't have to, do you?
May
12
accepted Can a primary key in Cassandra contain a collection column?
May
11
awarded  Necromancer
May
10
asked Library or good pattern to generate CQL in Python
May
10
revised Hash values with different data types together?
added 111 characters in body
May
10
comment Hash values with different data types together?
It needs to hash the values in a consistent order. It also needs to hash strings, integers, ans possibly floating point numbers.
May
10
asked Hash values with different data types together?