Re: Read Entire row from cassandra

2014-04-17 Thread Chris Lohfink
The java client will automatically page the row for you. If your columns are large may want to tweak the .setFetchSize(##) on your Statement. --- Chris Lohfink On Apr 17, 2014, at 12:36 PM, abhinav chowdary wrote: > We have one use case where we need to pull the entire wide row from Cassandra

Re: Read Entire row from cassandra

2014-04-17 Thread Tupshin Harper
That is a good approach. I have no better alternative to suggest. -Tupshin On Apr 17, 2014 10:36 AM, "abhinav chowdary" wrote: > We have one use case where we need to pull the entire wide row from > Cassandra (using 2.0, DSE4.0 ). Is there a preferred way to do this? , > currently we are using

Read Entire row from cassandra

2014-04-17 Thread abhinav chowdary
We have one use case where we need to pull the entire wide row from Cassandra (using 2.0, DSE4.0 ). Is there a preferred way to do this? , currently we are using prepared statement with java driver..