TimedOutException()

2014-03-08 Thread Julio Quierati
Hi, I have 7 nodes in cluster version 2.1.11 replication 3, 4 with this problem above, and 3 is ok. Anyone know what the hell is happening with these 4 nodes [default@prod] list counterCF ; Using default limit of 100 Using default cell limit of 100 null TimedOutException() at

TimedOutException()

2012-01-03 Thread Daning Wang
Hi All, We are getting TimedOutException() when inserting data into Cassandra, it was working fine for a few months, but suddenly got this problem. I have increase rpc_timout_in_ms to 3, but it still timed out in 30 secs. I turned on debug, I saw many of this error in the log DEBUG [pool-2

TimedOutException()

2012-06-01 Thread Oleg Dulin
We are using Cassandra 1.1.0 with an older Pelops version, but I don't think that in itself is a problem here. I am getting this exception: TimedOutException() at org.apache.cassandra.thrift.Cassandra$get_slice_result.read(Cassandra.java:7660)

Re: TimedOutException()

2012-01-04 Thread aaron morton
Look at the nodetool tpstats when you get the TimedOutException, to work out which nodes are backing up with pending messages. Then try to identify why. Check the server logs for GC, and the CPU and IO usage. Somehow the cluster is getting overwhelmed and cannot respond. Either the clients

Re: TimedOutException()

2012-06-01 Thread Tyler Hobbs
On Fri, Jun 1, 2012 at 9:39 AM, Oleg Dulin wrote: > > Is my understanding correct that this is where cassandra is telling us it > can't accomplish something within that timeout value -- as opposed to > network timeout ? Where is it set ? > That's correct. Basically, the coordinator sees that a

Re: TimedOutException()

2012-06-01 Thread Oleg Dulin
Tyler Hobbs wrote: > On Fri, Jun 1, 2012 at 9:39 AM, Oleg Dulin wrote: > > Is my understanding correct that this is where cassandra is telling us it > can't accomplish something within that timeout value -- as opposed to > network timeout ? Where is it set ? > > That's correct. Basically, the

Re: TimedOutException()

2012-06-04 Thread aaron morton
> Is the node we are connecting to try to proxy requests ? Wouldn't our > configuration ensure all nodes have replicas ? It can still time out even when reading locally. (The thread running the query is waiting on the read thread). Look in the server side logs to see if there are any errors. If

TimedOutException in CqlRecordWriter

2013-10-08 Thread Renat Gilfanov
tasks is: java.io.IOException: TimedOutException(acknowledged_by:0) at org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run(CqlRecordWriter.java:245) Caused by: TimedOutException(acknowledged_by:0) at org.apache.cassandra.thrift.Cassandra$execute_prepared_cql3_query_result

0.7RC1 local_quorum -> TimedOutException

2010-12-28 Thread Thor Carpenter
n reading at a CL of local_quorum: 1:44:14.176 [main] ERROR m.p.c.connection.HConnectionManager - Could not fullfill request on this host CassandraClient 11:44:14.182 [main] ERROR m.p.c.connection.HConnectionManager - Exception: me.prettyprint.hector.api.e

Re: TimedOutException caused by

2012-07-24 Thread J . Amding
aise the TimedOutException.  > You options are: > > * allocate more memory > * ease back on the stress test.  > * work as a CL QUORUM so that one node failing does result in the error.  > > see also http://wiki.apache.org/cassandra/FAQ#slows_down_afte

newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Patrik Modesto
Hi, I can see some strange behaviour on my test cluster and in production. Both running cassandra 0.8.10. Strange is that when I compile my mapreduce job against cassandra-all 0.8.7 everything is ok, but if I use higher version I get quite a lots of TimedOutException. java.lang.RuntimeException

Re: 0.7RC1 local_quorum -> TimedOutException

2010-12-28 Thread Jonathan Ellis
xception I get when reading at a CL of local_quorum: > > 1:44:14.176 [main] ERROR m.p.c.connection.HConnectionManager - Could not > fullfill request on this host CassandraClient > 11:44:14.182 [main] ERROR m.p.c.connection.HConnectionManager - Exception: > me.prettyprint.hect

Re: 0.7RC1 local_quorum -> TimedOutException

2010-12-29 Thread Thor Carpenter
any read CL other than LOCAL_QUORUM. At time 15:58 I performed a write with CL = ONE, a subsequent read with CL = LOCAL_QUORUM and received a TimedOutException. System.log and cassandra.log are from server dlc05-sea to corresponds with the hector error message "Closing client CassandraC

Several 'TimedOutException' in stress.py

2011-03-08 Thread A J
Trying out stress.py on AWS EC2 environment (4 Large instances. Each of 2-cores and 7.5GB RAM. All in the same region/zone.) python stress.py -o insert -d 10.253.203.224,10.220.203.48,10.220.17.84,10.124.89.81 -l 2 -e ALL -t 10 -n 500 -S 100 -k (I want to try with column size of about 1MB. I

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Patrik Modesto
Some more info, running the cluster with debug enabled shows this error: DEBUG 14:23:05,749 Thrift transport error occurred during processing of message. org.apache.thrift.transport.TTransportException: java.net.SocketException: Broken pipe at org.apache.thrift.transport.TIOStreamTranspor

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Patrik Modesto
There are two more similar exceptions: DEBUG 14:23:12,817 Thrift transport error occurred during processing of message. org.apache.thrift.transport.TTransportException at org.apache.thrift.transport.TIOStreamTransport.read(TIOStreamTransport.java:132) at org.apache.thrift.transpor

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Jeremy Hanna
see some strange behaviour on my test cluster and in production. > Both running cassandra 0.8.10. Strange is that when I compile my > mapreduce job against cassandra-all 0.8.7 everything is ok, but if I > use higher version I get quite a lots of TimedOutException. > > ja

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Patrik Modesto
Hi Jeremy, I've seen the page and tried the values but to no help. Here goes tcpdump of one failed TCP connection: 15:06:20.231421 IP 10.0.18.87.9160 > 10.0.18.87.39396: Flags [P.], seq 137891735:137904068, ack 708, win 282, options [nop,nop,TS val 4119981636 ecr 4119981636], length 12333 15:06:

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Jeremy Hanna
By chance are you in EC2? On Feb 24, 2012, at 8:33 AM, Patrik Modesto wrote: > Hi Jeremy, > > I've seen the page and tried the values but to no help. > > Here goes tcpdump of one failed TCP connection: > > 15:06:20.231421 IP 10.0.18.87.9160 > 10.0.18.87.39396: Flags [P.], seq > 137891735:13790

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-24 Thread Patrik Modesto
No, we have our own servers, no cloud service. P. On Feb 24, 2012 5:57 PM, "Jeremy Hanna" wrote: > By chance are you in EC2? > > On Feb 24, 2012, at 8:33 AM, Patrik Modesto wrote: > > > Hi Jeremy, > > > > I've seen the page and tried the values but to no help. > > > > Here goes tcpdump of one fa

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-25 Thread Edward Capriolo
Did you see the notes here? http://wiki.apache.org/cassandra/HadoopSupport#Troubleshooting On Sat, Feb 25, 2012 at 2:04 AM, Patrik Modesto wrote: > No, we have our own servers, no cloud service. > > P. > > On Feb 24, 2012 5:57 PM, "Jeremy Hanna" wrote: >> >> By chance are you in EC2? >> >> On F

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-26 Thread Patrik Modesto
On Sun, Feb 26, 2012 at 04:25, Edward Capriolo wrote: > Did you see the notes here? I'm not sure what do you mean by the notes? I'm using the mapred.* settings suggested there: mapred.max.tracker.failures 20 mapred.map.max.attempts 20

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-27 Thread aaron morton
What settings do you have for cassandra.range.batch.size and rpc_timeout_in_ms ? Have you tried reducing the first and/or increasing the second ? Cheers - Aaron Morton Freelance Developer @aaronmorton http://www.thelastpickle.com On 27/02/2012, at 8:02 PM, Patrik Modesto wrote

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-27 Thread Patrik Modesto
Hi aaron, this is our current settings: cassandra.range.batch.size 1024 cassandra.input.split.size 16384 rpc_timeout_in_ms: 3 Regards, P. On Mon, Feb 27, 2012 at 21:54, aaron morton wrote: > What settings do you have for

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-28 Thread aaron morton
Have you tried lowering the batch size and increasing the time out? Even just to get it to work. If you get a TimedOutException it means CL number of servers did not respond in time. Cheers - Aaron Morton Freelance Developer @aaronmorton http://www.thelastpickle.com On 28

Re: newer Cassandra + Hadoop = TimedOutException()

2012-02-28 Thread Patrik Modesto
I'll alter these settings and will let you know. Regards, P. On Tue, Feb 28, 2012 at 09:23, aaron morton wrote: > Have you tried lowering the  batch size and increasing the time out? Even > just to get it to work. > > If you get a TimedOutException it means CL number of server

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Patrik Modesto
ards, > P. > > On Tue, Feb 28, 2012 at 09:23, aaron morton wrote: >> Have you tried lowering the  batch size and increasing the time out? Even >> just to get it to work. >> >> If you get a TimedOutException it means CL number of servers did not respond >> in tim

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Florent Lefillâtre
> > On Tue, Feb 28, 2012 at 12:29, Patrik Modesto > wrote: > > I'll alter these settings and will let you know. > > > > Regards, > > P. > > > > On Tue, Feb 28, 2012 at 09:23, aaron morton > wrote: > >> Have you tried lowering the

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Jeremy Hanna
> wrote: >> I'll alter these settings and will let you know. >> >> Regards, >> P. >> >> On Tue, Feb 28, 2012 at 09:23, aaron morton wrote: >>> Have you tried lowering the batch size and increasing the time out? Even >>> just to g

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Patrik Modesto
alter these settings and will let you know. >> > >> > Regards, >> > P. >> > >> > On Tue, Feb 28, 2012 at 09:23, aaron morton >> > wrote: >> >> Have you tried lowering the  batch size and increasing the time out? >> >> Even >

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Florent Lefillâtre
gt; >> task_201202281457_2027_m_000108 9364.17% > >> > >> None of this happens with cassandra-all 0.8.7. > >> > >> Regards, > >> P. > >> > >> > >> > >> On Tue, Feb 28, 2012 at 12:29, Patrik Modesto > >

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Florent Lefillâtre
t; Task Complete >> >> task_201202281457_2027_m_41 9076.81% >> >> task_201202281457_2027_m_73 9639.04% >> >> task_201202281457_2027_m_000105 10538.60% >> >> task_201202281457_2027_m_000108 9364.17% >> >> >> >> None of this hap

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Patrik Modesto
gt;>> >> 0.8.10: 595 >>> >> >>> >> Task       Complete >>> >> task_201202281457_2027_m_000041 9076.81% >>> >> task_201202281457_2027_m_73 9639.04% >>> >> task_201202281457_2027_m_000105

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Patrik Modesto
t; >> On Tue, Feb 28, 2012 at 12:29, Patrik Modesto >> wrote: >>> I'll alter these settings and will let you know. >>> >>> Regards, >>> P. >>> >>> On Tue, Feb 28, 2012 at 09:23, aaron morton wrote: >>>> Have

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-06 Thread Florent Lefillâtre
t; P. > >> > >> > >> > >> On Tue, Feb 28, 2012 at 12:29, Patrik Modesto > wrote: > >>> I'll alter these settings and will let you know. > >>> > >>> Regards, > >>> P. > >>> > &g

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-07 Thread Patrik Modesto
; task_201202281457_2027_m_000105       10538.60% >> >> task_201202281457_2027_m_000108       9364.17% >> >> >> >> None of this happens with cassandra-all 0.8.7. >> >> >> >> Regards, >> >> P. >> >> >> &

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-07 Thread Florent Lefillâtre
; task_201202281457_2027_m_41 9076.81% > >> >> task_201202281457_2027_m_73 9639.04% > >> >> task_201202281457_2027_m_000105 10538.60% > >> >> task_201202281457_2027_m_000108 9364.17% > >> >> > >> >&

Re: newer Cassandra + Hadoop = TimedOutException()

2012-03-08 Thread Patrik Modesto
s the job creates: >> >> >> 0.8.7: 4680 >> >> >> 0.8.10: 595 >> >> >> >> >> >> Task       Complete >> >> >> task_201202281457_2027_m_41       9076.81% >> >> >> task_201202281457_2027_m_

TimedOutException and UnavailableException from multiGetSliceQuery

2011-10-05 Thread Yuhan Zhang
Hi all, I have been experiencing the unavailableException and TimedOutException on a 3-node cassandra cluster during a multiGetSliceQuery with 1000 columns. Since there are many keys involved in the query, I divided them into groups of 5000 rows and process each group individually in a for loop

TimedOutException when using the ColumnFamilyInputFormat

2010-04-29 Thread Utku Can Topçu
a know issue or am I doing something wrong in implementation. ---error 10/04/29 13:47:37 INFO mapred.JobClient: Task Id : attempt_201004291109_0024_m_00_1, Status : FAILED java.lang.RuntimeException: TimedOutException() at org.apache.cassandra.hadoop.Colu

[SOLVED] Re: 0.7RC1 local_quorum -> TimedOutException

2010-12-30 Thread Thor Carpenter
me I'll get it all in one email. :-) At time 15:55 I performed a write with CL = ONE, a subsequent read with CL = ONE and received correct results. Similar results occur with any read CL other than LOCAL_QUORUM. At time 15:58 I performed a write with CL = ONE, a subsequent read with CL = LOCA

Re: Several 'TimedOutException' in stress.py

2011-03-08 Thread ruslan usifov
2011/3/8 A J > Trying out stress.py on AWS EC2 environment (4 Large instances. Each > of 2-cores and 7.5GB RAM. All in the same region/zone.) > > python stress.py -o insert -d > 10.253.203.224,10.220.203.48,10.220.17.84,10.124.89.81 -l 2 -e ALL -t > 10 -n 500 -S 100 -k > > (I want to try wit

Re: Several 'TimedOutException' in stress.py

2011-03-08 Thread aaron morton
Is this a client side time out or a server side one? What does the error stack look like ? Also check the server side logs for errors. The thrift API will raise a timeout when less the CL level of nodes return in rpc_timeout. Good luck Aaron On 9/03/2011, at 7:37 AM, ruslan usifov wrote: >

Re: Several 'TimedOutException' in stress.py

2011-03-08 Thread A J
ssandra/Cassandra.py", line 899, in recv_batch_mutate raise result.te TimedOutException: TimedOutException() Process Inserter-1: Traceback (most recent call last): File "/usr/lib64/python2.6/multiprocessing/process.py", line 232, in _bootstrap self.run() File "stress.py

Re: Several 'TimedOutException' in stress.py

2011-03-08 Thread aaron morton
Cool, so it's a server side because - in the client side stack the thrift code is raising the error - server side log has this DEBUG 22:29:10,318 ... timed out The TimedOutException is raised when the number of replicas required by your CL have not returned inside the timespan specifi

Re: TimedOutException and UnavailableException from multiGetSliceQuery

2011-10-05 Thread aaron morton
5000 rows in a mutli get is way, way, way (did I say way ? ) to many. Whenever you get a TimedOutException check the tp stats on the nodes, you will normally see a high pending count. Every row get get turns into an message in a TP. So if you ask for 5k rows you flood the TP with 5k messages

Re: TimedOutException and UnavailableException from multiGetSliceQuery

2011-10-05 Thread Yuhan Zhang
Hi Aaron, thanks for the suggestion. It works again after I cut back the # of rows. On Wed, Oct 5, 2011 at 1:43 PM, aaron morton wrote: > 5000 rows in a mutli get is way, way, way (did I say way ? ) to many. > > Whenever you get a TimedOutException check the tp stats on the nodes, y

Re: TimedOutException when using the ColumnFamilyInputFormat

2010-04-29 Thread Joost Ouwerkerk
red.JobClient: Task Id : > attempt_201004291109_0024_m_00_1, Status : FAILED > java.lang.RuntimeException: TimedOutException() >     at > org.apache.cassandra.hadoop.ColumnFamilyRecordReader$RowIterator.maybeInit(ColumnFamilyRecordReader.java:165) >     at > org.apache.cassandra.h

Re: TimedOutException when using the ColumnFamilyInputFormat

2010-04-29 Thread Utku Can Topçu
without anyproblems at all. > > > > Do you thinki it's a know issue or am I doing something wrong in > > implementation. > > > > ---error > > 10/04/29 13:47:37 INFO mapred.JobClient: Task Id : > > attempt_201004291109_0024_m_00

TimedOutException in Java but not in cqlsh

2014-02-13 Thread Cyril Scetbon
Hi, I get a weird issue with cassandra 1.2.13. As written in the subject, a query executed by class CqlPagingRecordReader raises a TimedOutException exception in Java but I don't have any error when I use it with cqlsh. What's the difference between those 2 ways ? Does cqlsh b

TimedOutException caused by "Stop the world" activity

2012-05-27 Thread Jason Tang
Hi My system is 4 nodes 64 bit cassandra cluster, 6G big per node,default configuration (which means 1/3 heap for memtable), replicate number 3, write all, read one. When I run stress load testing, I got this TimedOutException, and some operation failed, and all traffic hang for a while. And

Re: TimedOutException in Java but not in cqlsh

2014-02-14 Thread Cyril Scetbon
, a query > executed by class CqlPagingRecordReader raises a TimedOutException exception > in Java but I don't have any error when I use it with cqlsh. What's the > difference between those 2 ways ? Does cqlsh bypass some configuration > compared to Java ? > >

Re: TimedOutException in Java but not in cqlsh

2014-02-14 Thread Vivek Mishra
- > Cyril SCETBON > > On 13 Feb 2014, at 17:22, Cyril Scetbon wrote: > > > Hi, > > > > I get a weird issue with cassandra 1.2.13. As written in the subject, a > query executed by class CqlPagingRecordReader raises a TimedOutException > exception in Java but I

Re: TimedOutException in Java but not in cqlsh

2014-02-14 Thread Cyril Scetbon
On 13 Feb 2014, at 17:22, Cyril Scetbon wrote: > > > Hi, > > > > I get a weird issue with cassandra 1.2.13. As written in the subject, a > > query executed by class CqlPagingRecordReader raises a TimedOutException > > exception in Java but I don't have any er

Re: TimedOutException in Java but not in cqlsh

2014-02-15 Thread Cyril Scetbon
the query. Whatever cql3 query I >> do, I always get the same exception. If someone sees something ... >> -- >> Cyril SCETBON >> >> On 13 Feb 2014, at 17:22, Cyril Scetbon wrote: >> >> > Hi, >> > >> > I get a weird issue with cassandra 1.2

Re: TimedOutException caused by "Stop the world" activity

2012-05-30 Thread aaron morton
The cluster is running into GC problems and this is slowing it down under the stress test. When it slows down one or more of the nodes is failing to perform the write within rpc_timeout . This causes the coordinator of the write to raise the TimedOutException. You options are: * allocate