<?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; Topic: Crash in Cassandra-CLI</title>
		<link>http://www.datastax.com/support-forums/topic/crash-in-cassandra-cli</link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 05:49:59 +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/topic/crash-in-cassandra-cli" rel="self" type="application/rss+xml" />

		<item>
			<title>vs on "Crash in Cassandra-CLI"</title>
			<link>http://www.datastax.com/support-forums/topic/crash-in-cassandra-cli#post-6674</link>
			<pubDate>Wed, 26 Sep 2012 12:30:11 +0000</pubDate>
			<dc:creator>vs</dc:creator>
			<guid isPermaLink="false">6674@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;C:\Development\apache-cassandra-1.1.3\bin -- The bin directory&#60;/p&#62;
&#60;p&#62;Cassandra.yaml in&#60;br /&#62;
C:\Development\apache-cassandra-1.1.3\conf
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "Crash in Cassandra-CLI"</title>
			<link>http://www.datastax.com/support-forums/topic/crash-in-cassandra-cli#post-6673</link>
			<pubDate>Wed, 26 Sep 2012 12:25:21 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">6673@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;That's weird, where do you keep your cassandra.yaml config? Could be a packaging issue...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vs on "Crash in Cassandra-CLI"</title>
			<link>http://www.datastax.com/support-forums/topic/crash-in-cassandra-cli#post-6671</link>
			<pubDate>Wed, 26 Sep 2012 12:20:35 +0000</pubDate>
			<dc:creator>vs</dc:creator>
			<guid isPermaLink="false">6671@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I observe a similar behavior with CQLsh spec 2.0 as well which is a bit strange. &#60;/p&#62;
&#60;p&#62;A get query in Cassandra-CLI works fine after adding the index on column 'age' from CQLsh:&#60;br /&#62;
[default@usertable] get users where age=30;&#60;/p&#62;
&#60;p&#62;Somehow, the combined use of CQLsh and CLI doesn't seem to be getting along fine.&#60;br /&#62;
Just curious to know if someone else has tried this and observed a similar behavior.&#60;/p&#62;
&#60;p&#62;I tried running Cassandra-CLI from root directory, still the same!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
VS
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "Crash in Cassandra-CLI"</title>
			<link>http://www.datastax.com/support-forums/topic/crash-in-cassandra-cli#post-6670</link>
			<pubDate>Wed, 26 Sep 2012 12:08:38 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">6670@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi, there is incompatibility  between CQL3 and Thrift (which CLI uses) because CQL3 defined ColumnFamilies don't share some of the information to Thrift interface (e.g. component_index field of column which is essential for building a correct column name). But your exception is different - can you try running cassandra-cli from the cassandra root dir like ./bin/cassandra-cli ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vs on "Crash in Cassandra-CLI"</title>
			<link>http://www.datastax.com/support-forums/topic/crash-in-cassandra-cli#post-6669</link>
			<pubDate>Wed, 26 Sep 2012 12:03:49 +0000</pubDate>
			<dc:creator>vs</dc:creator>
			<guid isPermaLink="false">6669@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;  I created a table in CQLsh -3.0 and inserted values into it.&#60;/p&#62;
&#60;p&#62;create table users (&#60;br /&#62;
	Id uuid PRIMARY KEY,&#60;br /&#62;
	Name varchar,&#60;br /&#62;
	Age int&#60;br /&#62;
);&#60;/p&#62;
&#60;p&#62;insert into users(Id, Name, Age) values ('001', 'XYZ', '30');&#60;br /&#62;
:&#60;br /&#62;
:&#60;/p&#62;
&#60;p&#62;cqlsh:usertable&#38;gt; select * from users;&#60;br /&#62;
 id                                   &#124; age &#124; name&#60;br /&#62;
--------------------------------------+-----+--------&#60;br /&#62;
 1381b530-1dd2-11b2-0000-242d50cf1ffd &#124;  30 &#124; XYZ&#60;br /&#62;
 13816710-1dd2-11b2-0000-242d50cf1ffd &#124;  28 &#124; ABC&#60;br /&#62;
 13818e20-1dd2-11b2-0000-242d50cf1ffd &#124;  30 &#124; PQR&#60;/p&#62;
&#60;p&#62;However, when I attempt to insert new rows into this table from Cassandra-CLI interface, it crashes:&#60;/p&#62;
&#60;p&#62;[default@unknown] use usertable;&#60;br /&#62;
Authenticated to keyspace: usertable&#60;br /&#62;
[default@usertable]&#60;br /&#62;
[default@usertable] set users['005']['name'] = 'MNO';&#60;br /&#62;
log4j:WARN No appenders could be found for logger (org.apache.cassandra.config.DatabaseDescriptor).&#60;br /&#62;
log4j:WARN Please initialize the log4j system properly.&#60;br /&#62;
log4j:WARN See &#60;a href=&#34;http://logging.apache.org/log4j/1.2/faq.html#noconfig&#34; rel=&#34;nofollow&#34;&#62;http://logging.apache.org/log4j/1.2/faq.html#noconfig&#60;/a&#62; for more info.&#60;br /&#62;
Cannot locate cassandra.yaml&#60;br /&#62;
Fatal configuration error; unable to start server.  See log for stacktrace.&#60;/p&#62;
&#60;p&#62;C:\Development\apache-cassandra-1.1.3\bin&#38;gt;&#60;/p&#62;
&#60;p&#62;Has anyone else observed a similar behavior.? Is there some incompatibility between CQLsh 3.0 and Cassandra-CLI?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
VS
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
