Re: nodetools cfstats question

2011-09-29 Thread Thamizh
please check [default@unknown] help create column family; These are default values,  until you explicitly mentioned on CF creation. Regards, Thamizhannal From: Sanjeev Kulkarni To: user@cassandra.apache.org Sent: Thursday, 29 September 2011 10:33 AM Subject: n

Re: Cassandra data modeling

2011-09-29 Thread Thamizh
If  the retrieval of URL is based on "TimeUUID". Then Model C with ByteOrderedPartitioner and rowkey as long type of "TimeUUID" can be correct choice and it helps you to apply range query based on TimeUUID. Regards, Thamizhannal P From: M Vieira To: user@cassa

Re: Bulk uploader issue on multi-node cluster

2011-09-29 Thread Thamizh
tion you should get a full stack trace printed if it fails, can you send that along as well.  It's probably some sort of config problem. Cheers - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 28/09/2011, at 3:44 AM, Thamizh w

Re: Bulk uploader issue on multi-node cluster

2011-09-27 Thread Thamizh
r, 2011, 9:01 PM On the sstableloader config, make sure you have the seed set and rpc_address and rpc_port pointing to your cassandra instance (127.0.0.2)  2011/9/23 Thamizh Hi All, I am using bulk-loading to upload data(from lab02) to multi-node cluster of 3 machines(lab02,lab03 & lab

Bulk uploader issue on multi-node cluster

2011-09-23 Thread Thamizh
Hi All, I am using bulk-loading to upload data(from lab02) to multi-node cluster of 3 machines(lab02,lab03 & lab04) with sigle ethernet card. I have created SSTable instance on lab02 by duplicating look back address( sudo ifconfig lo:2 127.0.0.2 netmask 255.0.0.0 up; ) "127.0.0.2" as rpc and st

Re: row key as long type

2011-09-09 Thread Thamizh
inly be of type long..you'd just have to set key_validataion_class to be LongType. However, doing list on column family would throw an error..please look at http://wiki.apache.org/cassandra/FAQ#a_long_is_exactly_8_bytes On Thu, Sep 8, 2011 at 8:14 AM, Thamizh wrote: Hi All,

row key as long type

2011-09-08 Thread Thamizh
Hi All, Is there a way to store number(longtype) as row key in Cassadra? I wanted to execute range query based on row key value. e.g $list info[12345:]; . It should list all the rowkeys which are >= 12345. Is there a way accompolish this in cassandra? Secondary index does not helped me. So I

Re: Secondary index update issue

2011-09-07 Thread Thamizh
really is no data for your query as given.  Hard to say without more details. On Wed, Sep 7, 2011 at 8:13 AM, Thamizh wrote: > > Hi All, > > I have created KS & CF using cassandra-0.7.8 and inserted some rows and > column values(around 1000 rows). Later, I wanted to index 2 c

Secondary index update issue

2011-09-07 Thread Thamizh
Hi All, I have created KS & CF using cassandra-0.7.8 and inserted some rows and column values(around 1000 rows). Later, I wanted to index 2 column values. So, I issued 'update column family..' command. After, when I query based on indexed value it says "Row does not found". After indexing 1. Iss

Reg Cassandra load balance

2011-09-06 Thread Thamizh
Hi All, I am using Cassandra-0.7.8 on cluster of 4 machines. I have uploaded some files using Map/Reduce. It looks files got distributed only among 2 nodes. When I used RF=3 it had got distributed to equally 4 nodes on below configuration. Here are some config info's: 1. ByteOrderedPartitioner

Cassandra BETWEEN & ORDER BY operations

2011-08-31 Thread Thamizh
Hi All, I wanted to perform SQL operations such as BETWEEN, ORDER BY with ASC/DSC order on Cassandra-0.7.8. As I know, Cassandra-0.7.8 does not have direct support to these operations. Kindly let me know is there a way to accomplish these by tweaking on secondary index? Below is my Data model

Reg CassandraBulkuploader

2011-08-31 Thread Thamizh
Hi All, I am using Cassandra-0.7.8 and trying to run "CassandraBulkLoader.java" at . But it ended up with below error. I have kept cassandra.yaml file on HDFS at /data/conf/cassandra.yaml . FYR, Attached the  CassandraBulkUploader.java, So, I made below Hadoop specific changes on DistributedCa

Re: multi-node cassandra config doubt

2011-08-25 Thread Thamizh
Hi All, It looks it is know issue with Cassandra-0.8.4. So either I have to wait till 0.8.5 to be released or have to switch to 0.7.8 if this has been resolved in that. Ref: https://issues.apache.org/jira/browse/CASSANDRA-3044 Regards, Thamizhannal P --- On Thu, 25/8/11, Thamizh wrote

Re: multi-node cassandra config doubt

2011-08-25 Thread Thamizh
the machine that raised the error and see if you can ssh to node01.  or try using ip address to see if they work.  Cheers -----Aaron MortonFreelance Cassandra Developer@aaronmortonhttp://www.thelastpickle.com On 24/08/2011, at 11:34 PM, Thamizh wrote: Hi Aaron, This is yet to be

Re: multi-node cassandra config doubt

2011-08-24 Thread Thamizh
te: Wednesday, 24 August, 2011, 2:40 PM Did you get this sorted ?  At a guess I would say there are no nodes listed in the Hadoop JobConf. Cheers -Aaron MortonFreelance Cassandra Developer@aaronmortonhttp://www.thelastpickle.com On 23/08/2011, at 9:51 PM, Thamizh wrote: Hi All,

multi-node cassandra config doubt

2011-08-23 Thread Thamizh
Hi All, This is regarding multi-node cluster configuration doubt. I have configured 3 nodes of cluster using Cassandra-0.8.4 and getting error when I ran Map/Reduce job which uploads records from HDFS to Cassandra. Here are my 3 nodes cluster config file (cassandra.yaml) for Cassandra: node01:

Re: Reg File upload to cassandra - connection refused error

2011-08-18 Thread Thamizh
File upload to cassandra - connection refused error To: user@cassandra.apache.org Date: Thursday, 18 August, 2011, 6:33 PM What is rpc_address set to in cassandra.yaml? Try setting these to 0.0.0.0 to be sure it's listening to external traffic. On Thu, Aug 18, 2011 at 8:37 AM, Thamizh wrote:

Reg File upload to cassandra - connection refused error

2011-08-18 Thread Thamizh
Hi All, This is regarding help to resolve "connection refused error" on Cassandra client API. I have installed cassandra-0.8.4 on three machines and tried to upload a file from HDFS to Cassandra by Hadoop map-reduce program and have caught up "connection refused" error. But, the same code is

Re: Reg row key sorting

2011-08-17 Thread Thamizh
- Original Message - From: "Thamizh" To: user@cassandra.apache.org Sent: Wednesday, August 17, 2011 5:47:45 AM Subject: Reg row limit & sorting Hi All, I have two questions on Cassandra, 1. Is there any limit(s) on total no. of rows in a single column family? I am u

Reg row limit & sorting

2011-08-17 Thread Thamizh
Hi All, I have two questions on Cassandra, 1. Is there any limit(s) on total no. of rows in a single column family? I am using Cassandra-0.8.4 version. [default@tutorials] list User; Using default limit of 100 It looks, here the default limit is 100. How shall I increas

Re: Reg loading of hdfs file to Cassandra

2011-08-16 Thread Thamizh
nesday, 10 August, 2011, 12:35 AM http://www.datastax.com/dev/blog/bulk-loading On Tue, Aug 9, 2011 at 1:56 PM, Thamizh wrote: Hi, I am newbie to Cassandra. I wanted to load a file present on HDFS to Cassandra using M/R program. I am using Cassandra 0.8.2 and Hadoop-0.20.2. Kindly share me

Reg loading of hdfs file to Cassandra

2011-08-09 Thread Thamizh
Hi, I am newbie to Cassandra. I wanted to load a file present on HDFS to Cassandra using M/R program. I am using Cassandra 0.8.2 and Hadoop-0.20.2. Kindly share me, Is there a document Or sample code available for this? Regards, Thamizh