mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
11 lines
353 B
JavaScript
11 lines
353 B
JavaScript
import http from 'k6/http';
|
|
import { sleep } from 'k6';
|
|
|
|
export default function () {
|
|
const params = {
|
|
timeout: '1800s',
|
|
};
|
|
|
|
let res = http.post(`http://${__ENV.DATANODE0}:10101/index/seg/query`, "GroupBy(Rows(education_level), Rows(gender), Rows(political_party), Rows(domain), aggregate=Sum(field=age))", params);
|
|
sleep(1);
|
|
}
|