Re: 0.7 API Change?

2010-10-14 Thread Jesse McConnell
you have to call set_keyspace on the connection now cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Thu, Oct 14, 2010 at 14:41, Brayton Thompson wrote: > Was there a change to the API in 0.7? > > example... > from the api wikki > > insert > >- >

Re: Cassandra Graphical Modeling

2010-07-26 Thread Jesse McConnell
+1 for graphviz (if you like text files) jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Mon, Jul 26, 2010 at 13:10, Jonathan Shook wrote: > +1 for Inkscape/SVG > > On Mon, Jul 26, 2010 at 1:07 PM, uncle mantis wrote: >> What do you all use for this? I am curren

Re: How to stop Cassandra running in embeded mode

2010-07-20 Thread Jesse McConnell
separate jvm is the only mechanism to 'shutdown' in a test scenario right nowand its unlikely to change in the short term so designing around forking is your best bet cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Tue, Jul 20, 2010 at 05:47, Bjorn Borud wrote:

Re: Creating key spaces on the fly

2010-07-06 Thread Jesse McConnell
it is possible on trunk now I believe.. jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Tue, Jul 6, 2010 at 10:13, Tharindu Mathew wrote: > Hi everyone, > > I'm trying to use Cassandra to replace a RDBMS. > > My application handles domains. And, for every domain

Re: 0.7 source code

2010-07-04 Thread Jesse McConnell
ya, trunk is 0.7...just update the version in the build.xml for your local build and just set it to 0.7-local or something...I think by default the build.xml is behind the times with what the trunk actually is cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Sun, Jul 4, 2010 at

Re: Hector vs cassandra-java-client

2010-06-24 Thread Jesse McConnell
managing the install of new versions jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Thu, Jun 24, 2010 at 07:05, Jools wrote: > > I'm currently using apache archiva instance as a private caching maven > repository. I've manually added the nonpublic artifacts to the

Re: Updating (as opposed to just setting) Cassandra data via Hadoop

2010-05-07 Thread Jesse McConnell
does anyone have a feel for how performant m/r operations are when backed by cassandra as opposed to hdfs in terms of network utilization and volume of data being pushed around? jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Fri, May 7, 2010 at 08:54, Ian Kallen wrote: > On 5/6/1

Re: Basic Architecture Question

2010-04-29 Thread Jesse McConnell
apparently there is now range query support for getting all keys using the RP... cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Thu, Apr 29, 2010 at 08:16, David Boxenhorn wrote: > We want to store objects in Cassandra. In general, the mapping is quite > easy. But fo

Re: Question about TimeUUIDType

2010-04-23 Thread Jesse McConnell
try LexicalUUIDType, that will distinguish the secs correctly imo based on the existing impl (last I checked at least) TimeUUIDType was equivalent to LongType cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Fri, Apr 23, 2010 at 17:51, Lucas Di Pentima wrote: > Hello, >

Re: Help with MapReduce

2010-04-19 Thread Jesse McConnell
err not count in your case, but same symptom, cassandra can't return the answer to your query in the configured rpctimeout time cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Mon, Apr 19, 2010 at 19:40, Jesse McConnell wrote: > most likely means that the count() oper

Re: Help with MapReduce

2010-04-19 Thread Jesse McConnell
most likely means that the count() operation is taking too long for the configured RPCTimeout counts get unreliable after a certain number of columns under a key in my experience jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Mon, Apr 19, 2010 at 19:12, Joost Ouwerkerk wrote: >

Re: How to implement TOP TEN in Cassandra

2010-04-15 Thread Jesse McConnell
http://arin.me/code/wtf-is-a-supercolumn-cassandra-data-model if memory serves that article explains it cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Thu, Apr 15, 2010 at 09:36, Pablo Viojo wrote: > Your question is too general to give you an appropiate answer. Can

Re: What is the limitation of row_count in get_range_slice ?

2010-03-27 Thread Jesse McConnell
r a longer time cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Sat, Mar 27, 2010 at 03:31, Jeff Zhang wrote: > Hi all, > > When I invoke the api get_range_slice and set the argument row_count as > Integer.Max, it will throw exception. But if I set it as a small int n

Re: Limit on number of columns

2010-03-24 Thread Jesse McConnell
ry allocated to cassandra there is a limit currently...hopefully gone in 0.7 I will note that another issue I run across with this is that get_count will not return within the rpc timeout after you get a certain amount of columns in there. cheers, jesse -- jesse mcconnell jesse.mcconn...@gmail.com

Re: Issue with TimeUUID

2010-03-19 Thread Jesse McConnell
alternately try using LexicalUUIDType, that seems to work jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Fri, Mar 19, 2010 at 11:00, Sylvain Lebresne wrote: > As said, I agree with that. > I've thus created a jira issue > (https://issues.apache.org/jira/browse/CASSAND

Re: Issue with TimeUUID

2010-03-19 Thread Jesse McConnell
imo it is a terrible bug.. the usage of a TimeUUIDType implies that your actually caring about the unique bits outside of a timestamp... currently it's nothing more then LongType ColumnFamily backed by System.currentTimeInMillis() as a source for name columns. jesse -- jesse mcco

Re: Atomic Operations

2010-03-17 Thread Jesse McConnell
ya, this access pattern doesn't really ring true for cassandra, at least imo jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Wed, Mar 17, 2010 at 14:14, Ned Wolpert wrote: > I could be wrong, but I would say that even if the thrift syntax gave you a > 'get/set'

Re: Atomic Operations

2010-03-17 Thread Jesse McConnell
afaik, nope -- jesse mcconnell jesse.mcconn...@gmail.com 2010/3/17 Juan Manuel GarcĂ­a del Moral : > Hello > > I would like to know if there is any method available to update > (increment/decrement) INTEGER values in Columns/SuperColumns, and how I can > use this method t