diff --git a/CHANGES.txt b/CHANGES.txt index 52f33b3f82..137c0f1415 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -29,6 +29,7 @@ each IndexSummary opened from it (CASSANDRA-8757) * markCompacting only succeeds if the exact SSTableReader instances being marked are in the live set (CASSANDRA-8689) + * cassandra-stress support for varint (CASSANDRA-8882) Merged from 2.0: * Add offline tool to relevel sstables (CASSANDRA-8301) * Preserve stream ID for more protocol errors (CASSANDRA-8848) diff --git a/tools/stress/src/org/apache/cassandra/stress/StressProfile.java b/tools/stress/src/org/apache/cassandra/stress/StressProfile.java index 1517fcb52f..687b3ae0e3 100644 --- a/tools/stress/src/org/apache/cassandra/stress/StressProfile.java +++ b/tools/stress/src/org/apache/cassandra/stress/StressProfile.java @@ -481,8 +481,9 @@ public class StressProfile implements Serializable case INET: return new Inets(name, config); case INT: - case VARINT: return new Integers(name, config); + case VARINT: + return new BigIntegers(name, config); case TIMESTAMP: return new Dates(name, config); case UUID: diff --git a/tools/stress/src/org/apache/cassandra/stress/generate/values/BigIntegers.java b/tools/stress/src/org/apache/cassandra/stress/generate/values/BigIntegers.java new file mode 100644 index 0000000000..84a4c8f7a8 --- /dev/null +++ b/tools/stress/src/org/apache/cassandra/stress/generate/values/BigIntegers.java @@ -0,0 +1,39 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ +package org.apache.cassandra.stress.generate.values; + +import org.apache.cassandra.db.marshal.IntegerType; + +import java.math.BigInteger; + +public class BigIntegers extends Generator +{ + public BigIntegers(String name, GeneratorConfig config) + { + super(IntegerType.instance, config, name, BigInteger.class); + } + + @Override + public BigInteger generate() + { + return BigInteger.valueOf(identityDistribution.next()); + } +}