forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix, clean up, test and optimize http.batch()
This adds a minor breaking change - if some of the requests in the http.batch() fail, now the first error would be returned instead of the last one.
- Loading branch information
Showing
7 changed files
with
177 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* | ||
*/ | ||
|
||
package http | ||
package lib | ||
|
||
import ( | ||
"sync" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* | ||
* k6 - a next-generation load testing tool | ||
* Copyright (C) 2019 Load Impact | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
package httpext | ||
|
||
import ( | ||
"context" | ||
"sync/atomic" | ||
|
||
"github.com/loadimpact/k6/lib" | ||
) | ||
|
||
// BatchParsedHTTPRequest extends the normal parsed HTTP request with a pointer | ||
// to a Response object, so that the batch goroutines can concurrently store the | ||
// responses they receive, without any locking. | ||
type BatchParsedHTTPRequest struct { | ||
*ParsedHTTPRequest | ||
Response *Response // this is modified by MakeBatchRequests() | ||
} | ||
|
||
// MakeBatchRequests concurrently makes multiple requests. It spawns | ||
// min(reqCount, globalLimit) goroutines that asynchronously process all | ||
// requests coming from the requests channel. Responses are recorded in the | ||
// pointers contained in each BatchParsedHTTPRequest object, so they need to be | ||
// pre-initialized. In addition, each processed request would emit either a nil | ||
// value, or an error, via the returned errors channel. The goroutines exit when | ||
// the requests channel is closed. | ||
func MakeBatchRequests( | ||
ctx context.Context, | ||
requests []BatchParsedHTTPRequest, | ||
reqCount, globalLimit, perHostLimit int, | ||
) <-chan error { | ||
workers := globalLimit | ||
if reqCount < workers { | ||
workers = reqCount | ||
} | ||
result := make(chan error, reqCount) | ||
perHostLimiter := lib.NewMultiSlotLimiter(perHostLimit) | ||
|
||
makeRequest := func(req BatchParsedHTTPRequest) { | ||
if hl := perHostLimiter.Slot(req.URL.GetURL().Host); hl != nil { | ||
hl.Begin() | ||
defer hl.End() | ||
} | ||
|
||
resp, err := MakeRequest(ctx, req.ParsedHTTPRequest) | ||
if resp != nil { | ||
*req.Response = *resp | ||
} | ||
result <- err | ||
} | ||
|
||
counter, i32reqCount := int32(-1), int32(reqCount) | ||
for i := 0; i < workers; i++ { | ||
go func() { | ||
for { | ||
reqNum := atomic.AddInt32(&counter, 1) | ||
if reqNum >= i32reqCount { | ||
return | ||
} | ||
makeRequest(requests[reqNum]) | ||
} | ||
}() | ||
} | ||
|
||
return result | ||
} |