<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>DataStax Support Forums &#187; User Favorites: paulingalls</title>
		<link><a href='http://www.datastax.com/support-forums/profile/paulingalls'>paulingalls</a></link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 10:04:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.datastax.com/support-forums/search.php</link>
		</textInput>
		<atom:link href="http://www.datastax.com/support-forums/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>paulingalls on "CQL3 select fails with &#34;Request did not complete within rpc_timeout&#34;"</title>
			<link>http://www.datastax.com/support-forums/topic/cql3-select-fails-with-request-did-not-complete-within-rpc_timeout#post-8256</link>
			<pubDate>Thu, 03 Jan 2013 01:44:10 +0000</pubDate>
			<dc:creator>paulingalls</dc:creator>
			<guid isPermaLink="false">8256@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;running&#60;br /&#62;
    nodetool invalidatekeycache&#60;br /&#62;
and&#60;br /&#62;
    nodetool invalidaterowcache&#60;/p&#62;
&#60;p&#62;made the problem go away.  I'm guessing there is a bug somewhere in the caching code...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>paulingalls on "CQL3 select fails with &#34;Request did not complete within rpc_timeout&#34;"</title>
			<link>http://www.datastax.com/support-forums/topic/cql3-select-fails-with-request-did-not-complete-within-rpc_timeout#post-8255</link>
			<pubDate>Thu, 03 Jan 2013 00:35:28 +0000</pubDate>
			<dc:creator>paulingalls</dc:creator>
			<guid isPermaLink="false">8255@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I have a pretty simple CQL3 table:&#60;/p&#62;
&#60;p&#62;CREATE TABLE user_team_scores (&#60;br /&#62;
  username text,&#60;br /&#62;
  team_slug text,&#60;br /&#62;
  score double,&#60;br /&#62;
  PRIMARY KEY (username, team_slug)&#60;br /&#62;
) WITH&#60;br /&#62;
  comment='' AND&#60;br /&#62;
  caching='KEYS_ONLY' AND&#60;br /&#62;
  read_repair_chance=0.100000 AND&#60;br /&#62;
  gc_grace_seconds=864000 AND&#60;br /&#62;
  replicate_on_write='true' AND&#60;br /&#62;
  compaction_strategy_class='SizeTieredCompactionStrategy' AND&#60;br /&#62;
  compression_parameters:sstable_compression='SnappyCompressor';&#60;/p&#62;
&#60;p&#62;I can run queries like:&#60;/p&#62;
&#60;p&#62;select * from user_team_scores where username='paulingalls';&#60;/p&#62;
&#60;p&#62;and it succeeds for some usernames, but fails for others with a timeout.  &#60;/p&#62;
&#60;p&#62;I'm running a 3 node cluster, and on the node I assume has the token range for the username that fails I see the following stack trace in the logs:&#60;/p&#62;
&#60;p&#62;ERROR [ReadStage:66211] 2013-01-03 00:11:26,169 AbstractCassandraDaemon.java (line 135) Exception in thread Thread[ReadStage:66211,5,main]&#60;br /&#62;
java.lang.AssertionError: DecoratedKey(82585475460624048733030438888619591812, 001373616e2d6672616e636973636f2d343965727300000573636f726500) != DecoratedKey(45868142482903708675972202481337602533, 7061756c696e67616c6c73) in /mnt/datadrive/lib/cassandra/fanzo/user_team_scores/fanzo-user_team_scores-hf-1-Data.db&#60;br /&#62;
	at org.apache.cassandra.db.columniterator.SSTableSliceIterator.&#38;lt;init&#38;gt;(SSTableSliceIterator.java:60)&#60;br /&#62;
	at org.apache.cassandra.db.filter.SliceQueryFilter.getSSTableColumnIterator(SliceQueryFilter.java:67)&#60;br /&#62;
	at org.apache.cassandra.db.filter.QueryFilter.getSSTableColumnIterator(QueryFilter.java:79)&#60;br /&#62;
	at org.apache.cassandra.db.CollationController.collectAllData(CollationController.java:256)&#60;br /&#62;
	at org.apache.cassandra.db.CollationController.getTopLevelColumns(CollationController.java:64)&#60;br /&#62;
	at org.apache.cassandra.db.ColumnFamilyStore.getTopLevelColumns(ColumnFamilyStore.java:1345)&#60;br /&#62;
	at org.apache.cassandra.db.ColumnFamilyStore.getColumnFamily(ColumnFamilyStore.java:1207)&#60;br /&#62;
	at org.apache.cassandra.db.ColumnFamilyStore.getColumnFamily(ColumnFamilyStore.java:1142)&#60;br /&#62;
	at org.apache.cassandra.db.Table.getRow(Table.java:378)&#60;br /&#62;
	at org.apache.cassandra.db.SliceFromReadCommand.getRow(SliceFromReadCommand.java:69)&#60;br /&#62;
	at org.apache.cassandra.db.ReadVerbHandler.doVerb(ReadVerbHandler.java:51)&#60;br /&#62;
	at org.apache.cassandra.net.MessageDeliveryTask.run(MessageDeliveryTask.java:59)&#60;br /&#62;
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)&#60;br /&#62;
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)&#60;br /&#62;
	at java.lang.Thread.run(Thread.java:662)&#60;/p&#62;
&#60;p&#62;I'm wondering if there is a way to fix this, or if I'm hosed....&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Paul
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
