Re: java.net.BindException: Cannot assign requested address

2009-11-20 Thread Gary Dusbabek
On Tue, Nov 3, 2009 at 15:44, mobiledream...@gmail.com wrote: ERROR - Exception encountered during startup. java.net.BindException: Cannot assign requested address     at sun.nio.ch.Net.bind(Native Method)     at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119)     

Re: Unable to compile the version 0.5.0-beta1 from svn

2009-12-08 Thread Gary Dusbabek
On Tue, Dec 8, 2009 at 11:33, Richard Grossman richie...@gmail.com wrote: Hi I've lost a day to try desperately to compile the version but nothing help. try with maven or ant build nothing help it's like the thrift interface have changed or something else I really can't understand what. May

Re: StorageService versus Thrift interface?

2009-12-09 Thread Gary Dusbabek
On Wed, Dec 9, 2009 at 07:25, Jonathan Ellis jbel...@gmail.com wrote: On Wed, Dec 9, 2009 at 12:36 AM, Paul Brown paulrbr...@gmail.com wrote: The example I have in mind is in the Java section of http://wiki.apache.org/cassandra/ClientExamples; it starts out with

Re: [VOTE] Graduation

2010-01-25 Thread Gary Dusbabek
+1 On Mon, Jan 25, 2010 at 15:11, Eric Evans eev...@rackspace.com wrote: I propose a vote for Cassandra's graduation to a top-level project. We'll leave this open for 72 hours, and assuming it passes, we can then take it to a vote with the Incubator PMC.

Re: How do cassandra clients failover?

2010-02-01 Thread Gary Dusbabek
One approach is to discover what other nodes there are before any of them fail. Then when you detect failure, you can connect to a different node that is (hopefully) still responding. There is an API call that allows you get get a list of all the nodes: client.get_string_property(token map),

Re: Bootstrap hung

2010-02-12 Thread Gary Dusbabek
If the processes are still active, could you please post a thread dump of them? You can do this by sending the java process a kill -3 (assuming freebsd is similar enough to linux). Gary On Fri, Feb 12, 2010 at 04:47, ruslan usifov ruslan.usi...@gmail.com wrote: Hello I have two nodes. First

Re: Bootstrap hung

2010-02-15 Thread Gary Dusbabek
Ruslan, I think this indicates that SO_SNDBUF is too small on windows. Windows is the source, freebsd is the destination, correct?) I've created https://issues.apache.org/jira/browse/CASSANDRA-795 to track this. Can you apply the patch attached to it to see if it addresses the problem? Thanks.

Re: Multiple Data Directories

2010-02-25 Thread Gary Dusbabek
Cassandra always compacts to the directory with the most free space. There is not a way to influence this. Gary On Thu, Feb 25, 2010 at 13:23, Anthony Molinaro antho...@alumni.caltech.edu wrote: Hi,  So is there anyway to force distribution among DataFileDirectory entries when you add a new

Re: finding Cassandra servers

2010-03-03 Thread Gary Dusbabek
2010/3/3 Ted Zlatanov t...@lifelogs.com: On Mon, 01 Mar 2010 12:15:11 -0600 Ted Zlatanov t...@lifelogs.com wrote: TZ I need to find Cassandra servers on my network from several types of TZ clients and platforms.  The goal is to make adding and removing servers TZ painless, assuming a leading

Re: finding Cassandra servers

2010-03-03 Thread Gary Dusbabek
2010/3/3 Ted Zlatanov t...@lifelogs.com: On Wed, 3 Mar 2010 08:41:18 -0600 Gary Dusbabek gdusba...@gmail.com wrote: GD It wouldn't be a lot work for you to write a mdns service that would GD query the seeds for endpoints and publish it to interested clients. GD It could go in contrib

Re: exception with python client

2010-03-10 Thread Gary Dusbabek
On Wed, Mar 10, 2010 at 08:33, Matteo Caprari matteo.capr...@gmail.com wrote: protocol = TBinaryProtocol.TBinaryProtocolAccelerated(transport) client = Cassandra.Client(protocol) transport.open() before attempting the mutation, try adding: client.transport = transport Gary.