Last active
January 11, 2016 09:35
-
-
Save pcmanus/64d8aaaf53817f01343d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stress profile to test for CASSANDRA-10657 | |
keyspace: ks | |
keyspace_definition: | | |
CREATE KEYSPACE ks WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}; | |
table: tbl | |
table_definition: | | |
CREATE TABLE tbl ( | |
key int PRIMARY KEY, | |
small_val1 int, | |
large_val1 blob, | |
small_val2 int, | |
large_val2 blob | |
) | |
WITH compression = { 'sstable_compression':'' }; | |
columnspec: | |
- name: small_val1 | |
size: fixed(10) | |
- name: large_val1 | |
size: fixed(100K) | |
- name: small_val2 | |
size: fixed(10) | |
- name: large_val2 | |
size: fixed(100K) | |
queries: | |
all_cols: | |
cql: select * from tbl where key = ? | |
only_small: | |
cql: select small_val1, small_val2 from tbl where key = ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment