Re: Recommended data size for Reads/Writes in Cassandra

2013-07-21 Thread aaron morton
hrift_max_message_length_in_mb), by > default it is 64m if I'm not mistaken. This is your limit. > > > On Thu, Jul 18, 2013 at 2:03 PM, hajjat wrote: > Hi, > > Is there a recommended data size for Reads/Writes in Cassandra? I tried > inserting 10 MB objects an

Re: Recommended data size for Reads/Writes in Cassandra

2013-07-18 Thread Tyler Hobbs
? I thought the max data size should be up to 2 GB? >>>> >>>> Thanks, >>>> Mohammad >>>> >>>> PS. Here is my python code I use to insert into Cassandra. I put my >>>> stopwatch timers around the insert statement: >>>>

Re: Recommended data size for Reads/Writes in Cassandra

2013-07-18 Thread Mohammad Hajjat
sert into Cassandra. I put my >>> stopwatch timers around the insert statement: >>> fh = open(TEST_FILE,'r') >>> data = str(fh.read()) >>> >>> POOL = ConnectionPool(keyspace, server_list=['localhost:9160'], >>> timeout=None) >>>

Re: Recommended data size for Reads/Writes in Cassandra

2013-07-18 Thread Tyler Hobbs
efault it is 64m if I'm not mistaken. This is your limit. > > > On Thu, Jul 18, 2013 at 2:03 PM, hajjat wrote: > >> Hi, >> >> Is there a recommended data size for Reads/Writes in Cassandra? I tried >> inserting 10 MB objects and the latency I got was pretty h

Re: Recommended data size for Reads/Writes in Cassandra

2013-07-18 Thread Andrey Ilinykh
there is a limit of thrift message ( thrift_max_message_length_in_mb), by default it is 64m if I'm not mistaken. This is your limit. On Thu, Jul 18, 2013 at 2:03 PM, hajjat wrote: > Hi, > > Is there a recommended data size for Reads/Writes in Cassandra? I tried > inserting

Recommended data size for Reads/Writes in Cassandra

2013-07-18 Thread hajjat
Hi, Is there a recommended data size for Reads/Writes in Cassandra? I tried inserting 10 MB objects and the latency I got was pretty high. Also, I was never able to insert larger objects (say 50 MB) since Cassandra kept crashing when I tried that. Here is my experiment setup: I used two Large