-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix numbers stated in benchmark README.md (#5002)
These numbers have drifted over time as the benchmarks have been tweaked. The number stated in the README.md files are no longer correct. Instead of trying to keep these in sync, this commit just removes any mention of iterations from the README files.
- Loading branch information
Showing
11 changed files
with
12 additions
and
12 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This creates 50000 promises in a chain using the latest version of `bluebird`. | ||
This creates a lot of promises in a chain using the latest version of `bluebird`. | ||
|
||
The variants are with the tracer and without it. | ||
The variants are with the tracer and without it. |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Runs `dns.lookup('localhost', cb)` 10000 times. In the `with-tracer` variant, | ||
Runs `dns.lookup('localhost', cb)` many times. In the `with-tracer` variant, | ||
tracing is enabled. Iteration count is set to 10. |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
This creates 1,000 HTTP requests from client to server. | ||
This benchmarks HTTP requests from client to server. | ||
|
||
The variants are with the tracer and without it, and instrumenting on the server | ||
and the client separately. |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Creates 1000 connections between a net server and net client, doing a simple | ||
Benchmarks connections between a net server and net client, doing a simple | ||
echo request. Since we only instrument client-side net connections, our variants | ||
are having the client with and without the tracer. |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This creates 50000 promises in a chain using the latest version of `q`. | ||
This benchmarks promises in a chain using the latest version of `q`. | ||
|
||
The variants are with the tracer and without it. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
This test initializes a tracer with the no-op scope manager. It then creates | ||
100000 spans, and depending on the variant, either finishes all of them as they | ||
many spans, and depending on the variant, either finishes all of them as they | ||
are created, or later on once they're all created. Prior to creating any spans, | ||
it modifies the processor instance so that no span processing (or exporting) is | ||
done, and it simply stops storing the spans. |