This repository was archived by the owner on Mar 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Checks
Alex Ott edited this page Nov 19, 2018
·
6 revisions
gatling-dse-plugin implements a number of additional checks that could be applied to executed query via check, withCheck, or withChecks functions. These checks are organized into several groups - common DSE checks, CQL-related checks, Graph-related checks.
| Name | Description |
|---|---|
exhausted |
true if this result set doesn't have more results |
applied |
if query contained a conditional update, return whether it was successfully applied |
rowCount |
Number of returned rows (note, that it will fetch all data!) |
These checks are used to get access to information in ExecutionInfo object
| Name | Description |
|---|---|
executionInfo |
ExecutionInfo object itself |
achievedCL |
achieved consistency level |
pagingState |
paging state of the query |
queriedHost |
Cassandra host that coordinated this query |
schemaAgreement |
true if the schema is in agreement after query execution |
successfulExecutionIndex |
index of the execution that completed this query |
triedHosts |
list of tried hosts for this query |
warnings |
server-side warnings for this query |
| Name | Description |
|---|---|
resultSet |
complete ResultSet object. Please note that other checks, like, rowCount, allRows, etc., may exhaust the ResultSet and it won't contain data |
allRows |
sequence of fetched Row objects |
oneRow |
first fetched Row
|
columnValue |
get a column by name from data returned by query |
| Name | Description |
|---|---|
graphResultSet |
|
allNodes |
|
oneNode |
|
edges |
|
vertexes |
|
paths |
|
properties |
|
vertexProperties |