<?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: kannanspec</title>
		<link><a href='http://www.datastax.com/support-forums/profile/kannanspec'>kannanspec</a></link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 23:52:53 +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>kannanspec on "Cassandra SStableloader - load key value instead of UUID"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-sstableloader-load-key-value-instead-of-uuid#post-8906</link>
			<pubDate>Mon, 04 Feb 2013 18:17:54 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">8906@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;This is my table &#60;/p&#62;
&#60;p&#62;CREATE COLUMNFAMILY OM_CDMA_SECTOR_1 (&#60;br /&#62;
           ...   KEY ascii PRIMARY KEY,&#60;br /&#62;
           ...   '2012dec10' ascii,&#60;br /&#62;
           ...   '2012dec11' ascii,&#60;br /&#62;
           ...   '2012dec12' ascii,&#60;br /&#62;
           ...   '2012dec13' ascii,&#60;br /&#62;
           ...   '2012dec14' ascii,&#60;br /&#62;
           ...   '2012dec15' ascii,&#60;br /&#62;
           ...   '2012dec16' ascii&#60;br /&#62;
           ... ) &#60;/p&#62;
&#60;p&#62;I need to load the key column (primary key )from the file instead of UUID &#60;/p&#62;
&#60;p&#62;i replaced &#60;/p&#62;
&#60;p&#62;   //      ByteBuffer uuid = ByteBuffer.wrap(decompose(entry.CorrelationID));&#60;br /&#62;
           eventWriter.newRow(uuid);&#60;/p&#62;
&#60;p&#62;to &#60;/p&#62;
&#60;p&#62;eventWriter.addColumn(bytes(&#34;KEY&#34;),bytes(entry.KEY), timestamp);&#60;/p&#62;
&#60;p&#62;it gives me below error&#60;/p&#62;
&#60;p&#62;[kmookaia@sql-xcc-vna2d01 apache-cassandra-1.1.0]$ ./run.sh cdma_sector_136.txt&#60;br /&#62;
Exception in thread &#34;main&#34; java.lang.NullPointerException&#60;br /&#62;
	at org.apache.cassandra.io.sstable.AbstractSSTableSimpleWriter.addColumn(AbstractSSTableSimpleWriter.java:115)&#60;br /&#62;
	at org.apache.cassandra.io.sstable.AbstractSSTableSimpleWriter.addColumn(AbstractSSTableSimpleWriter.java:130)&#60;br /&#62;
	at SSTableGenerator.main(SSTableGenerator.java:62)&#60;/p&#62;
&#60;p&#62;how do i load key value from a file using SSTableLoader?&#60;/p&#62;
&#60;p&#62;Any help appriciated
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chandu on "Cassandra - loading csv using sstableloader"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-loading-csv-using-sstableloader/page/3#post-8882</link>
			<pubDate>Sat, 02 Feb 2013 23:59:11 +0000</pubDate>
			<dc:creator>chandu</dc:creator>
			<guid isPermaLink="false">8882@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hello Group,&#60;/p&#62;
&#60;p&#62;I am  using bulkoutputformat to load from HadoopToCassandra. We changed configuration  like rpc port  to 9161  &#38;amp; storage port to 7002.&#60;br /&#62;
How to i pass storage port number  from Hadoop Driver.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
chandu
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Srini on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6730</link>
			<pubDate>Sun, 30 Sep 2012 16:10:43 +0000</pubDate>
			<dc:creator>Srini</dc:creator>
			<guid isPermaLink="false">6730@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;There is bug fix for similar issue. Check out&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://issues.apache.org/jira/browse/CASSANDRA-4219&#34; rel=&#34;nofollow&#34;&#62;https://issues.apache.org/jira/browse/CASSANDRA-4219&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6722</link>
			<pubDate>Fri, 28 Sep 2012 18:01:20 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">6722@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi, I created new column family with CQL3 option. but when i load the data using the SSTableLoader , which i used for cql2.0, i recieve below error on the column family,&#60;br /&#62;
any idea?&#60;/p&#62;
&#60;p&#62;cqlsh:xynergy&#38;gt; select * from seen_ships;&#60;br /&#62;
TSocket read 0 bytes&#60;br /&#62;
cqlsh:xynergy&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6622</link>
			<pubDate>Fri, 21 Sep 2012 20:47:58 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">6622@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I think you will have to re-create your ColumnFamily with CQL3 to use it properly and include &#34;Date&#34; field into PRIMARY KEY, because CQL3 makes use of composite comparators, e.g.&#60;/p&#62;
&#60;p&#62;CREATE COLUMNFAMILY &#34;OM_CDMA_SECTOR_DATA_MAIN&#34; (&#60;br /&#62;
    id &#38;lt;something&#38;gt;,&#60;br /&#62;
    day timestamp,&#60;br /&#62;
    PRIMARY KEY (id, day)&#60;br /&#62;
);
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6621</link>
			<pubDate>Fri, 21 Sep 2012 20:33:51 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">6621@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Yes i have below indexed columns set up already, is there anything missing&#60;/p&#62;
&#60;p&#62;CREATE INDEX IDX1 ON OM_CDMA_SECTOR_DATA_MAIN (Day);&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Kannan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6620</link>
			<pubDate>Fri, 21 Sep 2012 20:32:13 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">6620@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Right, because you have to set up indexed columns before doing any operations :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6619</link>
			<pubDate>Fri, 21 Sep 2012 20:21:21 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">6619@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi, I used CQL 3.0 but i still get the below error which i get in 2.0&#60;/p&#62;
&#60;p&#62;cqlsh:xynergy&#38;gt; select &#34;Day&#34; from &#34;OM_CDMA_SECTOR_DATA_MAIN&#34; where &#34;Day&#34; &#38;gt; '7/29/2012';&#60;br /&#62;
Bad Request: No indexed columns present in by-columns clause with Equal operator&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Kannan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6618</link>
			<pubDate>Fri, 21 Sep 2012 19:46:25 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">6618@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;To fix that you will have to double-quote ColumnFamily names in mixed case like this select * from &#34;OM_CDMA_SECTOR_NEW1&#34;;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6617</link>
			<pubDate>Fri, 21 Sep 2012 19:44:39 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">6617@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi Xedin thanks for the suggestion, it worked but i am not able to query the tables created using previous version, any suggestion?&#60;/p&#62;
&#60;p&#62;cqlsh&#38;gt; select * from OM_CDMA_SECTOR_NEW1;&#60;br /&#62;
Bad Request: unconfigured columnfamily om_cdma_sector_new1&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Kannan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6616</link>
			<pubDate>Fri, 21 Sep 2012 19:13:12 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">6616@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi, you can give cqlsh --cql3 option and if you use thrift you can setCQLVersion to &#34;3.0.0&#34; to enable it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "cql 3.0"</title>
			<link>http://www.datastax.com/support-forums/topic/cql-30#post-6615</link>
			<pubDate>Fri, 21 Sep 2012 18:53:51 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">6615@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi, How do i configure cassandra 1.1.0 to use cql 3.0?&#60;br /&#62;
or&#60;br /&#62;
what is the way to use CQL 3.0?&#60;br /&#62;
I wanted to use Less than and greater than operation in the where clause.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>thobbs on "Connect to cassandra"</title>
			<link>http://www.datastax.com/support-forums/topic/connect-to-cassandra#post-5813</link>
			<pubDate>Fri, 10 Aug 2012 20:10:10 +0000</pubDate>
			<dc:creator>thobbs</dc:creator>
			<guid isPermaLink="false">5813@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;We recommend FluentCassandra: &#60;a href=&#34;https://github.com/managedfusion/fluentcassandra&#34; rel=&#34;nofollow&#34;&#62;https://github.com/managedfusion/fluentcassandra&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "Connect to cassandra"</title>
			<link>http://www.datastax.com/support-forums/topic/connect-to-cassandra#post-5460</link>
			<pubDate>Tue, 07 Aug 2012 16:21:54 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">5460@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I am trying to connect to cassandra from C#, What is best way to connect?&#60;br /&#62;
Thanks for you help.&#60;/p&#62;
&#60;p&#62;Kannan.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kannanspec on "Cassandra - loading csv using sstableloader"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-loading-csv-using-sstableloader/page/3#post-2825</link>
			<pubDate>Mon, 09 Jul 2012 14:47:32 +0000</pubDate>
			<dc:creator>kannanspec</dc:creator>
			<guid isPermaLink="false">2825@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;hi,&#60;/p&#62;
&#60;p&#62;I cleaned up the data directories /var/lib/cassandra/data and restarted the cassandra and now i am able to load the csv using nodetool refresh. &#60;/p&#62;
&#60;p&#62;Thanks for you help. I am trying to load from different machine now. &#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Kannan.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
