2
# Keyspace Name
keyspace: demo1

# The CQL for creating a keyspace (optional if it already exists)
keyspace_definition: |
  CREATE KEYSPACE demo1;
# Table name
table: sample_test

# The CQL for creating a table you wish to stress (optional if it already exists)
table_definition: |
    CREATE TABLE sample_test (
        key1 blob PRIMARY KEY,
        value1 blob
    )

### Column Distribution Specifications ###

columnspec:
  - name: hash
    size: fixed(96)       #domain names are relatively short

  - name: body
    size: gaussian(100..300)    #the body of the blog post can be long
    population: uniform(1..10M)  #10M possible domains to pick from

同じキースペース内に別のテーブルを定義するにはどうすればよいですか? すべての例では、1 つのテーブルを定義するだけについて説明しています。上記のように別のテーブル定義とその列仕様も定義しようとしましたが、「com.datastax.driver.core.exceptions.InvalidQueryException: Batch too large」というエラーが発生します。

4

2 に答える 2