I have one node up and running for some tests.
12HT cores, 64GB ram, 5TB SSD's in raid0 with xfs and kernel 4.5 on ubuntu 14.04
scylladb nigthly
We did some simple stress tests with cassandra-stress and we can scale the read iops if we increase the number of threads but it seems that there is some kind of limit on the performance when running less threads. I will put this on another post.
When making a query scylla times out.
[cqlsh 5.0.1 | Cassandra 2.1.8 | CQL spec 3.2.0 | Native protocol v3]
Use HELP for help.
cqlsh> SELECT count(*) from MY_KEYSPACE.MY_CF limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from MY_KEYSPACE.MY_CF limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from MY_KEYSPACE.MY_CF2 limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from keyspace1.standard1 limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from keyspace1.standard1 limit 10;
count
—---—
10
(1 rows)
cqlsh> SELECT count(*) from keyspace1.standard1 limit 100;
count
—---—
100
(1 rows)
cqlsh> SELECT count(*) from keyspace1.standard1 limit 1000;
count
—---—
1000
(1 rows)
cqlsh> SELECT count(*) from keyspace1.standard1 limit 10000;
count
—---—
10000
(1 rows)
cqlsh> SELECT count(*) from keyspace1.standard1 limit 100000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh>--
You received this message because you are subscribed to the Google Groups "ScyllaDB users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scylladb-user...@googlegroups.com.
To post to this group, send email to scyllad...@googlegroups.com.
Visit this group at https://groups.google.com/group/scylladb-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/scylladb-users/7dacef9c-4bd9-4614-ab2a-a27c8459b5af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
On 03/23/2016 02:25 PM, pedro.t...@movvo.com wrote:
I have one node up and running for some tests.
12HT cores, 64GB ram, 5TB SSD's in raid0 with xfs and kernel 4.5 on ubuntu 14.04
scylladb nigthly
We did some simple stress tests with cassandra-stress and we can scale the read iops if we increase the number of threads but it seems that there is some kind of limit on the performance when running less threads. I will put this on another post.
That's expected, with low concurrency it is hard to load many cores.
When making a query scylla times out.
[cqlsh 5.0.1 | Cassandra 2.1.8 | CQL spec 3.2.0 | Native protocol v3]
Use HELP for help.
cqlsh> SELECT count(*) from MY_KEYSPACE.MY_CF limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from MY_KEYSPACE.MY_CF limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from MY_KEYSPACE.MY_CF2 limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
cqlsh> SELECT count(*) from keyspace1.standard1 limit 100000000;
OperationTimedOut: errors={}, last_host=MY_IP
This is also expected, reading 100M rows cannot be achieved under the default timeout.
To view this discussion on the web visit https://groups.google.com/d/msgid/scylladb-users/56F28D4C.3030008%40scylladb.com.