diff --git a/driver-http/src/main/resources/activities/baselines/http-rest-tabular.yaml b/driver-http/src/main/resources/activities/baselines/http-rest-tabular.yaml index 8399e5944..31e9b48e7 100644 --- a/driver-http/src/main/resources/activities/baselines/http-rest-tabular.yaml +++ b/driver-http/src/main/resources/activities/baselines/http-rest-tabular.yaml @@ -1,6 +1,6 @@ # nb -v http-rest-tabular rampup-cycles=1E6 main-cycles=1E9 stargate_host=my_stargate_host host=my_stargate_host auth_token=$AUTH_TOKEN description: | - This workload emulates a time-series data model and access patterns. + This workload emulates a tabular workload with partitions, clusters, and data fields. This should be identical to the cql variant except for: - We need to URLEncode the `data` and `data_write` bindings because newlines can't be sent in REST calls. - There is no instrumentation with the http driver. diff --git a/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-keyvalue.yaml b/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-keyvalue.yaml index 73247ae41..ea7ea8669 100644 --- a/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-keyvalue.yaml +++ b/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-keyvalue.yaml @@ -37,7 +37,7 @@ blocks: X-Cassandra-Token: "<>" Content-Type: "application/json" body: | - {"query":"mutation {\n createKeyspace(name:\"<>\", replicas: <>, ifNotExists: true)\n}"} + {"query":"mutation {\n createKeyspace(name:\"<>\", replicas: <>, ifNotExists: true)\n}"} tags: name: create-keyspace - create-table: POST <>://{weighted_hosts}:<><>/graphql-schema diff --git a/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-tabular.yaml b/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-tabular.yaml index 6ccff6c18..f61679c87 100644 --- a/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-tabular.yaml +++ b/driver-http/src/main/resources/activities/graphql-cql-first/http-graphql-cql-tabular.yaml @@ -1,6 +1,6 @@ # nb -v http-graphql-cql-tabular rampup-cycles=1E6 main-cycles=1E9 stargate_host=my_stargate_host host=my_stargate_host auth_token=$AUTH_TOKEN description: | - This workload emulates a time-series data model and access patterns. + This workload emulates a tabular workload with partitions, clusters, and data fields. This should be identical to the cql variant except for: - We need to URLEncode the `data` and `data_write` bindings because newlines can't be sent in REST calls. - There is no instrumentation with the http driver. diff --git a/driver-http/src/main/resources/activities/graphql-schema-first/http-graphql-tabular.yaml b/driver-http/src/main/resources/activities/graphql-schema-first/http-graphql-tabular.yaml index 958264a0f..c388008c2 100644 --- a/driver-http/src/main/resources/activities/graphql-schema-first/http-graphql-tabular.yaml +++ b/driver-http/src/main/resources/activities/graphql-schema-first/http-graphql-tabular.yaml @@ -6,7 +6,7 @@ # - rest uses limit as it queries only by a single primary key, we can not map this to GQL (also should data be clustering key) description: | - This workload emulates a time-series data model and access patterns. + This workload emulates a tabular workload with partitions, clusters, and data fields. This should be identical to the cql variant except for: - We need to URLEncode the `data` and `data_write` bindings because newlines can't be sent in REST calls. - Schema creation GraphQL first, we don't use cql and thus can only create schema with limited options.