1
0
mirror of https://github.com/wg/wrk synced 2025-01-23 04:02:59 +08:00

support pipelining via script request()

This commit is contained in:
Will 2013-12-08 19:17:06 +09:00
parent ade03d2348
commit 4facab702e
3 changed files with 32 additions and 11 deletions

16
scripts/pipeline.lua Normal file
View File

@ -0,0 +1,16 @@
-- example script demonstrating HTTP pipelining
init = function(args)
wrk.init(args)
local r = {}
r[1] = wrk.format(nil, "/?foo")
r[2] = wrk.format(nil, "/?bar")
r[3] = wrk.format(nil, "/?baz")
req = table.concat(r)
end
request = function()
return req
end

View File

@ -9,6 +9,7 @@ static struct config {
uint64_t connections;
uint64_t duration;
uint64_t timeout;
uint64_t pipeline;
bool latency;
bool dynamic;
char *script;
@ -145,7 +146,7 @@ int main(int argc, char **argv) {
script_init(t->L, cfg.script, argc - optind, &argv[optind]);
if (i == 0) {
script_verify_request(t->L);
cfg.pipeline = script_verify_request(t->L);
cfg.dynamic = !script_is_static(t->L);
if (script_want_response(t->L)) {
parser_settings.on_header_field = header_field;
@ -386,8 +387,6 @@ static int response_complete(http_parser *parser) {
thread->complete++;
thread->requests++;
stats_record(thread->latency, now - c->start);
if (status > 399) {
thread->errors.status++;
}
@ -403,15 +402,17 @@ static int response_complete(http_parser *parser) {
goto done;
}
if (!http_should_keep_alive(parser)) goto reconnect;
if (--c->pending == 0) {
stats_record(thread->latency, now - c->start);
aeCreateFileEvent(thread->loop, c->fd, AE_WRITABLE, socket_writeable, c);
}
if (!http_should_keep_alive(parser)) {
reconnect_socket(thread, c);
goto done;
}
http_parser_init(parser, HTTP_RESPONSE);
aeCreateFileEvent(thread->loop, c->fd, AE_WRITABLE, socket_writeable, c);
goto done;
reconnect:
reconnect_socket(thread, c);
done:
return 0;
@ -478,7 +479,10 @@ static void socket_writeable(aeEventLoop *loop, int fd, void *data, int mask) {
case RETRY: return;
}
if (!c->written) c->start = time_us();
if (!c->written) {
c->start = time_us();
c->pending = cfg.pipeline;
}
c->written += n;
if (c->written == c->length) {

View File

@ -53,6 +53,7 @@ typedef struct connection {
char *request;
size_t length;
size_t written;
uint64_t pending;
buffer headers;
buffer body;
char buf[RECVBUF];