This commit is contained in:
Jonathan Shook 2021-11-10 15:41:21 -06:00
parent 3f607e0e8d
commit 123c41a9bc
5 changed files with 2572 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.nosqlbench/**
.run/**
workspaces/**
workshop/**

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 164 KiB

31
driver-directapi/pom.xml Normal file
View File

@ -0,0 +1,31 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>mvn-defaults</artifactId>
<groupId>io.nosqlbench</groupId>
<version>4.15.65-SNAPSHOT</version>
<relativePath>../mvn-defaults</relativePath>
</parent>
<artifactId>driver-directapi</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
A direct API nosqlbench ActivityType (AT) driver module
</description>
<dependencies>
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>drivers-api</artifactId>
<version>4.15.65-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,6 @@
name: alternate-format-test
scenarios:
default:
- run driver=cql cqldriver=oss protocol_version=v4 tags=phase:schema threads==1 cycles=UNDEF
- run driver=cql cqldriver=oss protocol_version=v4 tags=phase:rampup cycles=10000
- run driver=cql cqldriver=oss protocol_version=v4 tags=phase:main_mixed cycles=10000

View File

@ -30,7 +30,5 @@ import java.lang.annotation.Target;
@Target(ElementType.TYPE)
public @interface Service {
Class<?> value();
String selector();
}