forked from apple/swift-nio-extras
-
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.
Performance testing for NIO PCAP logging (apple#98)
Motivation: It's useful to know the overhead we could be adding by including the PCAP handler. Modifications: Add a new executable based on the NIO performance testing executable. Result: There is a new executable which runs a short test of sending and receiving data through the HTTP/1 handler using multiple eventloops and showing three options. 1) Vanilla 2) With in memory PCAP never written to disk 3) With a disk based PCAP.
- Loading branch information
1 parent
d525d3b
commit 0f878f9
Showing
10 changed files
with
555 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2019 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
protocol Benchmark: class { | ||
func setUp() throws | ||
func tearDown() | ||
func run() throws -> Int | ||
} | ||
|
||
func measureAndPrint<B: Benchmark>(desc: String, benchmark bench: B) throws { | ||
try bench.setUp() | ||
defer { | ||
bench.tearDown() | ||
} | ||
try measureAndPrint(desc: desc) { | ||
return try bench.run() | ||
} | ||
} |
61 changes: 61 additions & 0 deletions
61
Sources/NIOExtrasPerformanceTester/HTTP1PCAPPerformanceTests.swift
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,61 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2020 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import NIO | ||
import NIOExtras | ||
import Foundation | ||
|
||
class HTTP1ThreadedPCapPerformanceTest: HTTP1ThreadedPerformanceTest { | ||
private class SinkHolder { | ||
var fileSink: NIOWritePCAPHandler.SynchronizedFileSink! | ||
|
||
func setUp() throws { | ||
let outputFile = NSTemporaryDirectory() + "/" + UUID().uuidString | ||
self.fileSink = try NIOWritePCAPHandler.SynchronizedFileSink.fileSinkWritingToFile(path: outputFile) { error in | ||
print("ERROR: \(error)") | ||
exit(1) | ||
} | ||
} | ||
|
||
func tearDown() { | ||
try! self.fileSink.syncClose() | ||
} | ||
} | ||
|
||
init() { | ||
let sinkHolder = SinkHolder() | ||
func addPCap(channel: Channel) -> EventLoopFuture<Void> { | ||
let pcapHandler = NIOWritePCAPHandler(mode: .client, | ||
fileSink: sinkHolder.fileSink.write) | ||
return channel.pipeline.addHandler(pcapHandler, position: .first) | ||
} | ||
|
||
self.sinkHolder = sinkHolder | ||
super.init(numberOfRepeats: 50, | ||
numberOfClients: System.coreCount, | ||
requestsPerClient: 500, | ||
extraInitialiser: { channel in return addPCap(channel: channel) }) | ||
} | ||
|
||
private let sinkHolder: SinkHolder | ||
|
||
override func run() throws -> Int { | ||
// Opening and closing the file included here as flushing data to disk is not known to complete until closed. | ||
try sinkHolder.setUp() | ||
defer { | ||
sinkHolder.tearDown() | ||
} | ||
return try super.run() | ||
} | ||
} |
203 changes: 203 additions & 0 deletions
203
Sources/NIOExtrasPerformanceTester/HTTP1PerformanceTestFramework.swift
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,203 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2020 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import NIO | ||
import NIOHTTP1 | ||
|
||
// MARK: Handlers | ||
final class SimpleHTTPServer: ChannelInboundHandler { | ||
typealias InboundIn = HTTPServerRequestPart | ||
typealias OutboundOut = HTTPServerResponsePart | ||
|
||
private var files: [String] = [] | ||
private var seenEnd = false | ||
private var sentEnd = false | ||
private var isOpen = true | ||
|
||
private let cachedHead: HTTPResponseHead | ||
private let cachedBody: [UInt8] | ||
private let bodyLength = 1024 | ||
private let numberOfAdditionalHeaders = 10 | ||
|
||
init() { | ||
var head = HTTPResponseHead(version: HTTPVersion(major: 1, minor: 1), status: .ok) | ||
head.headers.add(name: "Content-Length", value: "\(self.bodyLength)") | ||
for i in 0..<self.numberOfAdditionalHeaders { | ||
head.headers.add(name: "X-Random-Extra-Header", value: "\(i)") | ||
} | ||
self.cachedHead = head | ||
|
||
var body: [UInt8] = [] | ||
body.reserveCapacity(self.bodyLength) | ||
for i in 0..<self.bodyLength { | ||
body.append(UInt8(i % Int(UInt8.max))) | ||
} | ||
self.cachedBody = body | ||
} | ||
|
||
public func channelRead(context: ChannelHandlerContext, data: NIOAny) { | ||
if case .head(let req) = self.unwrapInboundIn(data) { | ||
switch req.uri { | ||
case "/perf-test-1": | ||
var buffer = context.channel.allocator.buffer(capacity: self.cachedBody.count) | ||
buffer.writeBytes(self.cachedBody) | ||
context.write(self.wrapOutboundOut(.head(self.cachedHead)), promise: nil) | ||
context.write(self.wrapOutboundOut(.body(.byteBuffer(buffer))), promise: nil) | ||
context.writeAndFlush(self.wrapOutboundOut(.end(nil)), promise: nil) | ||
return | ||
case "/perf-test-2": | ||
var req = HTTPResponseHead(version: HTTPVersion(major: 1, minor: 1), status: .ok) | ||
for i in 1...8 { | ||
req.headers.add(name: "X-ResponseHeader-\(i)", value: "foo") | ||
} | ||
req.headers.add(name: "content-length", value: "0") | ||
context.write(self.wrapOutboundOut(.head(req)), promise: nil) | ||
context.writeAndFlush(self.wrapOutboundOut(.end(nil)), promise: nil) | ||
return | ||
default: | ||
fatalError("unknown uri \(req.uri)") | ||
} | ||
} | ||
} | ||
} | ||
|
||
final class RepeatedRequests: ChannelInboundHandler { | ||
typealias InboundIn = HTTPClientResponsePart | ||
typealias OutboundOut = HTTPClientRequestPart | ||
|
||
private let numberOfRequests: Int | ||
private var remainingNumberOfRequests: Int | ||
private var doneRequests = 0 | ||
private let isDonePromise: EventLoopPromise<Int> | ||
private let head: HTTPRequestHead | ||
|
||
init(numberOfRequests: Int, eventLoop: EventLoop, head: HTTPRequestHead) { | ||
self.remainingNumberOfRequests = numberOfRequests | ||
self.numberOfRequests = numberOfRequests | ||
self.isDonePromise = eventLoop.makePromise() | ||
self.head = head | ||
} | ||
|
||
func wait() throws -> Int { | ||
let reqs = try self.isDonePromise.futureResult.wait() | ||
precondition(reqs == self.numberOfRequests) | ||
return reqs | ||
} | ||
|
||
var completedFuture: EventLoopFuture<Int> { return self.isDonePromise.futureResult } | ||
|
||
func errorCaught(context: ChannelHandlerContext, error: Error) { | ||
context.channel.close(promise: nil) | ||
self.isDonePromise.fail(error) | ||
} | ||
|
||
func channelRead(context: ChannelHandlerContext, data: NIOAny) { | ||
let reqPart = self.unwrapInboundIn(data) | ||
if case .end(nil) = reqPart { | ||
if self.remainingNumberOfRequests <= 0 { | ||
context.channel.close().map { self.doneRequests }.cascade(to: self.isDonePromise) | ||
} else { | ||
self.doneRequests += 1 | ||
self.remainingNumberOfRequests -= 1 | ||
|
||
context.write(self.wrapOutboundOut(.head(self.head)), promise: nil) | ||
context.writeAndFlush(self.wrapOutboundOut(.end(nil)), promise: nil) | ||
} | ||
} | ||
} | ||
} | ||
|
||
// MARK: ThreadedPerfTest | ||
class HTTP1ThreadedPerformanceTest: Benchmark { | ||
let numberOfRepeats: Int | ||
let numberOfClients: Int | ||
let requestsPerClient: Int | ||
let extraInitialiser: (Channel) -> EventLoopFuture<Void> | ||
|
||
let head: HTTPRequestHead | ||
|
||
init(numberOfRepeats: Int, | ||
numberOfClients: Int, | ||
requestsPerClient: Int, | ||
extraInitialiser: @escaping (Channel) -> EventLoopFuture<Void>) { | ||
self.numberOfRepeats = numberOfRepeats | ||
self.numberOfClients = numberOfClients | ||
self.requestsPerClient = requestsPerClient | ||
self.extraInitialiser = extraInitialiser | ||
|
||
var head = HTTPRequestHead(version: HTTPVersion(major: 1, minor: 1), method: .GET, uri: "/perf-test-1") | ||
head.headers.add(name: "Host", value: "localhost") | ||
self.head = head | ||
} | ||
|
||
var group: MultiThreadedEventLoopGroup! | ||
var serverChannel: Channel! | ||
|
||
func setUp() throws { | ||
self.group = MultiThreadedEventLoopGroup(numberOfThreads: System.coreCount) | ||
self.serverChannel = try ServerBootstrap(group: self.group) | ||
.serverChannelOption(ChannelOptions.socketOption(.so_reuseaddr), value: 1) | ||
.childChannelInitializer { channel in | ||
channel.pipeline.configureHTTPServerPipeline(withPipeliningAssistance: true).flatMap { | ||
channel.pipeline.addHandler(SimpleHTTPServer()) | ||
} | ||
}.bind(host: "127.0.0.1", port: 0).wait() | ||
} | ||
|
||
func tearDown() { | ||
try! self.serverChannel.close().wait() | ||
try! self.group.syncShutdownGracefully() | ||
} | ||
|
||
func run() throws -> Int { | ||
var reqs: [Int] = [] | ||
reqs.reserveCapacity(self.numberOfRepeats) | ||
for _ in 0..<self.numberOfRepeats { | ||
var requestHandlers: [RepeatedRequests] = [] | ||
requestHandlers.reserveCapacity(self.numberOfClients) | ||
var clientChannels: [Channel] = [] | ||
clientChannels.reserveCapacity(self.numberOfClients) | ||
for _ in 0 ..< self.numberOfClients { | ||
let clientChannel = try! ClientBootstrap(group: self.group) | ||
.channelInitializer { channel in | ||
channel.pipeline.addHTTPClientHandlers().flatMap { | ||
let repeatedRequestsHandler = RepeatedRequests(numberOfRequests: self.requestsPerClient, | ||
eventLoop: channel.eventLoop, | ||
head: self.head) | ||
requestHandlers.append(repeatedRequestsHandler) | ||
return channel.pipeline.addHandler(repeatedRequestsHandler) | ||
}.flatMap { | ||
self.extraInitialiser(channel) | ||
} | ||
} | ||
.connect(to: self.serverChannel.localAddress!) | ||
.wait() | ||
clientChannels.append(clientChannel) | ||
} | ||
|
||
var writeFutures: [EventLoopFuture<Void>] = [] | ||
for clientChannel in clientChannels { | ||
clientChannel.write(NIOAny(HTTPClientRequestPart.head(self.head)), promise: nil) | ||
writeFutures.append(clientChannel.writeAndFlush(NIOAny(HTTPClientRequestPart.end(nil)))) | ||
} | ||
let allWrites = EventLoopFuture<Void>.andAllComplete(writeFutures, on: writeFutures.first!.eventLoop) | ||
try! allWrites.wait() | ||
|
||
let streamCompletedFutures = requestHandlers.map { rh in rh.completedFuture } | ||
let requestsServed = EventLoopFuture<Int>.reduce(0, streamCompletedFutures, on: streamCompletedFutures.first!.eventLoop, +) | ||
reqs.append(try! requestsServed.wait()) | ||
} | ||
return reqs.reduce(0, +) / self.numberOfRepeats | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
Sources/NIOExtrasPerformanceTester/HTTP1RawPerformanceTests.swift
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,26 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2020 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import NIO | ||
import NIOExtras | ||
import NIOHTTP1 | ||
|
||
class HTTP1ThreadedRawPerformanceTest: HTTP1ThreadedPerformanceTest { | ||
init() { | ||
super.init(numberOfRepeats: 50, | ||
numberOfClients: System.coreCount, | ||
requestsPerClient: 500, | ||
extraInitialiser: { channel in return channel.eventLoop.makeSucceededFuture(()) }) | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
Sources/NIOExtrasPerformanceTester/HTTP1RollingPCAPPerformanceTests.swift
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,33 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2020 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import NIO | ||
import NIOExtras | ||
|
||
class HTTP1ThreadedRollingPCapPerformanceTest: HTTP1ThreadedPerformanceTest { | ||
init() { | ||
func addRollingPCap(channel: Channel) -> EventLoopFuture<Void> { | ||
let pcapRingBuffer = NIOPCAPRingBuffer(maximumFragments: 25, | ||
maximumBytes: 1_000_000) | ||
let pcapHandler = NIOWritePCAPHandler(mode: .client, | ||
fileSink: pcapRingBuffer.addFragment) | ||
return channel.pipeline.addHandler(pcapHandler, position: .first) | ||
} | ||
|
||
super.init(numberOfRepeats: 50, | ||
numberOfClients: System.coreCount, | ||
requestsPerClient: 500, | ||
extraInitialiser: { channel in return addRollingPCap(channel: channel) }) | ||
} | ||
} |
Oops, something went wrong.