Hi,
We ran this query against a 3 node cockroach cluster
select avg(median),avg(perc98),avg(max) from api where url like '%/rsrv_eag/1/0/devices/{ID}/AccountVerificationRequest%' group by 1;
The query killed the node it was running on :(.
The complete table definition is
root@sl73commapd003.visa.com:9080> show columns from api;
+-----------+-----------+-------+----------------+
| Field | Type | Null | Default |
+-----------+-----------+-------+----------------+
| id | INT | false | unique_rowid() |
| date | TIMESTAMP | true | NULL |
| caller | STRING | true | NULL |
| component | STRING | true | NULL |
| method | STRING | true | NULL |
| url | STRING | true | NULL |
| count | INT | true | NULL |
| min | INT | true | NULL |
| median | INT | true | NULL |
| perc90 | INT | true | NULL |
| perc95 | INT | true | NULL |
| perc96 | INT | true | NULL |
| perc97 | INT | true | NULL |
| perc98 | INT | true | NULL |
| perc99 | INT | true | NULL |
| max | INT | true | NULL |
| status | INT | true | NULL |
+-----------+-----------+-------+----------------+