Re: Unsubscribe

2017-02-27 Thread Ashish Disawal
Please send mail to. user-unsubscr...@cassandra.apache.org -- Ashish Disawal On Mon, Feb 27, 2017 at 5:57 PM, Sujeet Kumar wrote: >

Re: Unsubscribe

2017-02-27 Thread Ashish Disawal
Please send mail to. user-unsubscr...@cassandra.apache.org -- Ashish Disawal 2017-02-27 17:58 GMT+05:30 ROUVREAU Eric - externe < eric-externe.rouvr...@enedis.fr>: > > > > > Cordialement, > > *Eric **ROUVREAU* > > Prestataire Expert technique SGDB - CDC Middle

Re: [ANNOUNCEMENT] Website update

2016-09-11 Thread Ashish Disawal
Website looks great. Good job guys. -- Ashish Disawal On Mon, Sep 12, 2016 at 3:00 AM, Jens Rantil wrote: > Nice! The website also feels snappier! > > > On Friday, July 29, 2016, Sylvain Lebresne wrote: > >> Wanted to let everyone know that if you go to

Object Mapping VS Direct Queries

2015-10-21 Thread Ashish Soni
Hi All , Please let me know if there are any disadvantages of using Object Mapping instead of writing direct CQL queries. Ashish

Cassandra Object Mapper - Dynamically pass keyspace value

2015-10-20 Thread Ashish Soni
Hi All , is there any way i can specify value of keyspace during compile time like using maven build hard coding keyspace name inside the java class is bit not comfortable as if there a change and there are 1000's of files it become a big maintenance issue @UDT (keyspace = "complex", name = "addr

Example of JavaBeanColumnMapper

2015-10-04 Thread Ashish Soni
Hi All , Are there any Java examples of how to use JavaBeanColumnMapper or RowReader and RowWriter Factory. Any link to example code will be helpful. Ashish

JSON Order By

2015-10-01 Thread Ashish Soni
Hi All , I have a question related to JSON sorting I have a below structure stored in cassandra and i would like to get the internal array sorted by a property when i select it , Please let me know if there is way to do that . I need to sort the rules Array by property ruleOrder when i select CRE

Re: INSERT JSON TimeStamp

2015-09-28 Thread Ashish Soni
quot;, "rules": { "1": { * "condition": "BoardStation =='Lowell' ",* "action": "FareAmount=9.25", "ruleOrder": "1" } } }'; On Mon, Sep 28, 2015

INSERT JSON TimeStamp

2015-09-28 Thread Ashish Soni
If Anyone can help for below as i am getting the error effectiveStartDate and effectiveEndDate are TimeStamp INSERT INTO model.RuleSetSchedule JSON ' { "ruleSetName": "BOSTONRATES", "ruleSetId": "829aa84a-4bba-411f-a4fb-38167a987cda", "scheduleId":1, "effectiveStartDate": "01/01/2

Re: High loads only on one node in the cluster

2013-11-01 Thread Ashish Tyagi
ace to one from a lightly loaded > node. > > On Thu, Oct 31, 2013 at 7:12 PM, Ashish Tyagi > wrote: > > We have a 9 node cluster. 6 nodes are in one data-center and 3 nodes in > the > > other. All machines are Amazon M1.XLarge configuration. > > > > Datacenter

High loads only on one node in the cluster

2013-10-31 Thread Ashish Tyagi
://pastebin.com/ubp4cGUx 5. GC log lines - http://pastebin.com/Y0TKphsm Am I doing anything wrong. Any pointers will be appreciated. Thanks in advance, Ashish

Re: Bulk Loader in cassandra : String as row keys in cassandra

2013-10-15 Thread ashish sanadhya
Hey vivek ,thanks for your help. On Fri, Oct 11, 2013 at 4:47 PM, Vivek Mishra wrote: > Change key_validation_class to UTF8Type and > > usersWriter.newRow(ByteBufferUtil.bytes(String.valueOf(lineNumber))); > > > > On Fri, Oct 11, 2013 at 4:42 PM, ashish sanadhya > wrot

Re: Bulk Loader in cassandra : String as row keys in cassandra

2013-10-11 Thread ashish sanadhya
)); ? thanks. On Fri, Oct 11, 2013 at 4:30 PM, Vivek Mishra wrote: > I am not able to get your meaning for "*string as row keys" ? * > * > * > Row key values will be of type "key_validation_class" only > * > * > > On Fri, Oct 11, 2013 at 4:25

Re: Bulk Loader in cassandra : String as row keys in cassandra

2013-10-11 Thread ashish sanadhya
: > >> but i have changed my **key_validation_class=AsciiType** in order to >> make **string as row keys** >> >> why not key_validation_class=UTF8Type ? >> >> -Vivek >> >> >> On Fri, Oct 11, 2013 at 3:55 PM, ashish sanadhya >> wrote: &g

Bulk Loader in cassandra : String as row keys in cassandra

2013-10-11 Thread ashish sanadhya
I have done with bulk loader with key_validation_class=LexicalUUIDType for new row with the help of this [code][1] but i have changed my **key_validation_class=AsciiType** in order to make **string as row keys** create column family Users1 with key_validation_class=AsciiType and

Bulk Loader in Cassandra :NullPointerException-sstable.AbstractSSTableSimpleWriter.addColumn

2013-10-08 Thread ashish sanadhya
ng as argument"); System.exit(1); }*/ filename = "/home/ashish/USDJPY-2009-05.csv"; BufferedReader reader = new BufferedReader(new FileReader(filename)); String keyspace = "Demou"; File directory = new File(keyspace); if (!directo

Re: the java client problem

2011-01-26 Thread Ashish
I have no clue about this error.. look into log files. They might reveal something Anyone else can help here.? 2011/1/27 Raoyixuan (Shandy) > It shows error, I put it in the attachment > > > > *From:* Ashish [mailto:paliwalash...@gmail.com] > *Sent:* Wednesday, January

Re: the java client problem

2011-01-26 Thread Ashish
click on the loadSchema() button in right panel :) 2011/1/26 Raoyixuan (Shandy) > I had find the loasschemafrom yaml by jconsole,How to load the schema ? > > > > *From:* Ashish [mailto:paliwalash...@gmail.com] > *Sent:* Friday, January 21, 2011 8:10 PM > *To:* user

Re: the java client problem

2011-01-21 Thread Ashish
check cassandra-install-dir/conf/cassandra.yaml start cassandra connect via jconsole find MBeans -> org.apache.cassandra.db -> StorageService<http://wiki.apache.org/cassandra/StorageService> -> Operations -> loadSchemaFromYAML load the schema and then try the example again.

Re: the java client problem

2011-01-21 Thread Ashish
you are missing the column family in your keyspace. If you are using the default definitions of schema shipped with cassandra, ensure to load the schema from JMX. thanks ashish 2011/1/21 raoyixuan (Shandy) > I exec the code as below by hector client: > > >

Re: about the hector client

2011-01-18 Thread Ashish
Working fine for me. Can you pls try again. thanks ashish On Wed, Jan 19, 2011 at 11:42 AM, raoyixuan (Shandy) wrote: > The url is unavailable > > > > From: Aaron Morton [mailto:aa...@thelastpickle.com] > Sent: Wednesday, January 19, 2011 12:17 PM > To: user@cassandra.apa