Thank you very much!
That also cleared my erroneous understanding of the size limitation before.
Hsiao
On Tue, Aug 21, 2012 at 5:03 PM, aaron morton wrote:
> I think the limit of the size per row in cassandra is 2G?
>
> That was a pre 0.7 restriction
> http://wiki.apache.org/cassandra/CassandraL
> I think the limit of the size per row in cassandra is 2G?
That was a pre 0.7 restriction
http://wiki.apache.org/cassandra/CassandraLimitations
> and I insert 1 columns into a row, each column has a 1MB data.
So a single row with 10GB of data. That's what we call a big one.
> /usr/local/
I think the limit of the size per row in cassandra is 2G?
1 x 1M = 10G.
Hsiao
On Mon, Aug 20, 2012 at 1:07 PM, oupfevph wrote:
> I setup cassandra with default configuration in clean AWS instance, and I
> insert 1 columns into a row, each column has a 1MB data. I use this
> ruby(versio
I setup cassandra with default configuration in clean AWS instance, and
I insert 1 columns into a row, each column has a 1MB data. I use
this ruby(version 1.9.3) script:
1.times do
key = rand(36**8).to_s(36)
value = rand(36**1024).to_s(36) * 1024
Cas_client.i